commit 9efbe702292e325b2c22e3d18be387b8a8827499 Author: octospacc Date: Tue Mar 5 12:59:26 2024 +0100 Init from https://web.archive.org/web/20230306234836/https://codeload.github.com/citra-emu/citra-games-wiki/zip/refs/heads/master diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d1433ca --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +validation/node_modules diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..12a9694 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: node_js + +node_js: + - "node" + +install: + - cd validation + - npm install +script: + - node app.js diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..97f39ac --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,178 @@ +# Contributing +Contributions to the Citra Games Wiki are welcomed, as keeping all of the data up to date and accurate is a community effort. + +**Table of Contents**: +- [Info About This Wiki](#info-about-this-wiki) + - [Angle Brackets](#angle-brackets) + - [Citra Version](#citra-version) + - [Dates](#dates) + - [GitHub Issues](#github-issues) + - [Screenshots](#screenshots) + - [Title IDs](#title-ids) + - [TOML](#toml) +- [Code](#code) + - [Metadata](#metadata) + - [Icon](#icon) + - [Boxart](#boxart) + - [Game Screenshots](#game-screenshots) + - [Savefiles](#savefiles) + - [Save Metadata](#save-metadata) + - [Save Data](#save-data) +- [Wiki](#wiki) + +## Info About This Wiki + +### Angle Brackets +Throughout this guide, code blocks like `` are used. This means that "Value" should be replaced by something, and the "<>" should be deleted. + +### Citra Version +All data must be collected from the latest official Citra nightly, downloaded from [here](https://citra-emu.org/download/). + +### Dates +All dates follow the format `<4-Digit Year>-<2-Digit Month>-<2-Digit Day>`. For example, June 3rd 2017 would be "2017-06-03". + +### GitHub Issues +Game issues can be found [here](https://github.com/citra-emu/citra/issues). The ID of the issue can be found at the end of the URL. For example, [SNES Virtual Console Games - Crash on Boot](https://github.com/citra-emu/citra/issues/2782)'s ID is 2782. + +### Screenshots +The recommended application for capturing the icon, boxart, and screenshots is [ShareX](https://github.com/ShareX/ShareX). Screenshots can not be compressed, and must be in the PNG format. + +### Title IDs +The title ID for a game is a unique ID representing that release of the game. Often, games released in multiple regions will have a different title ID for each, with the exception of some games like the main series Pokémon games. A database of such releases and their title IDs can be found [here](http://3dsdb.com/). + +To find the title ID of your release, it can be found near the top of a log when running a game. For example, this is what it looks like for The Legend of Zelda: Ocarina of Time, `0004000000033500`: `[ 0.019882] Loader core/loader/ncch.cpp:Load:340: Program ID: 0004000000033500`. + +### TOML +In this repo, DAT files follow the [TOML](https://github.com/toml-lang/toml) syntax, where each line consists of the creation of a piece of data. The simplest form of this is assigning a value to a key (` = `). The data types used for these `Value`s in this wiki are: + - Booleans, true or false (Example: `true`.) + - Integers, numbers (Example: `5`.) + - Strings, characters with surrounding quotes (Example: `"Hi!"`.) + - Arrays, collection of booleans, integers, or strings (Example for an array of integers: `[33, 2398, 234]`.) + +These key/value pairs can be grouped together using an array of tables (Example: `[[ Stuff ]]`, with the pairs on the next lines.). These can be used more than once in a TOML file. + +## Code +The code consists of the actual files in the Github repisitory. To modify them, you have to fork this repo, make your changes, and send a pull request. + +At the root, there's a folder for each game. The names of these folders should follow these specifications: +- Only use letters, numbers, and hyphens (No spaces!), because they will be linked to on the site. +- Names should be lowercase to ensure consistency. +- Have a wiki page with the same name. + +### Metadata +The metadata for the game is located at `//game.dat`. This is required info about the game, all feilds are mandatory unless noted otherwise. The DAT values (See: [TOML](#toml)) are: +- `title` (String): English title of the game. This doesn't have to match the wiki or folder name, so there can be spaces. +- `description` (String): Get these from [Wikipedia](https://en.wikipedia.org/wiki/List_of_Nintendo_3DS_games). Short, 2-3 line description of the game. +- `github_issues` (Array of integers): The GitHub issue IDs for the game. See: [GitHub Issues](#github-issues). +- `needs_system_files` (Boolean): Whether the game requests the system files or not, regardless of whether it could be played without them (See: [Citra Version](#citra-version)). +- `needs_shared_font` (Boolean): Whether the game requests the shared font or not, regardless of whether it could be played without them (See: [Citra Version](#citra-version)). +- `game_type` (String): Whether the game has a retail release, `"3ds"`, is an E-Shop **exclusive**, `"eshop"`, a Virtual Console game, `"vc"`, or DSiWare, `"dsi"`. This line is optional for retail releases. +- `releases` (Array of tables): Info about each release of the game. **The USA release should come first.** + - `title` (String): Title ID of this release of the game. See: [Title IDs](#title-ids). + - `region` (String): Region of the game. Possible values are: + - `aus` + - `chn` + - `eur` + - `jpn` + - `kor` + - `twn` + - `usa` + - `all` (Don't tag a game released in multiple regions as `all`. This is reserved for specific games released as such.) + - `release_date` (String): When the game was released in this region. See: [Dates](#dates). + +An example of a game metadata file is the one for [The Legend of Zelda: Majora's Mask](https://github.com/citra-emu/citra-games-wiki/blob/master/games/legend-of-zelda-majoras-mask/game.dat): +```toml +title = "The Legend of Zelda: Majora's Mask 3D" +description = "The Legend of Zelda: Majora's Mask 3D is an action-adventure video game co-developed by Grezzo and Nintendo for the Nintendo 3DS handheld game console. The game is an enhanced remake of The Legend of Zelda: Majora's Mask, which was originally released for the Nintendo 64 home console in 2000. The game was released worldwide in February 2015" +github_issues = [2517] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000125500" +region = "usa" +release_date = "2015-02-13" + +[[ releases ]] +title = "0004000000125600" +region = "eur" +release_date = "2015-02-13" +``` + +### Icon +The icon for a game is located at `//icon.png` (See: [Screenshots](#screenshots). The suggested process for getting one is: +- Make sure the ROM for the game is in your Citra game directory. +- Take a screenshot of Citra's library listing (See: [Citra Version](#citra-version)). +- Crop out the game icon. +- The icon should be `48x48`. + +### Boxart +The boxart for the game is located at `//boxart.png`. The suggested process for getting retail boxart is: +- Download a scan from [GameTDB](http://www.gametdb.com/), preferably with the `Nintendo 3DS` logo on the right. +- The boxart should be from the USA. +- Downsize it to `328x300` using [PicResize](http://www.picresize.com/). +- Compress it using [TinyPNG](https://tinypng.com/). + +The required process for getting eShop only boxart is: +- Run the game in Citra (See: [Citra Version](#citra-version)). +- Use 1x internal resolution. +- Increase the window size of Citra to fill most of your monitor. +- Screenshot the title screen, which should only be the top screen. +- Downsize it to `500x300` using [PicResize](http://www.picresize.com/). +- Compress it using [TinyPNG](https://tinypng.com/). +- Examples are [Fairune](https://github.com/citra-emu/citra-games-wiki/blob/master/games/fairune/boxart.png) and [Pokémon Picross](https://github.com/citra-emu/citra-games-wiki/blob/master/games/pokemon-picross/boxart.png) + +The required process for getting virtual console boxart is: +- Run the game in Citra (See: [Citra Version](#citra-version)). +- Use 1x internal resolution. +- Increase the window size of Citra to fill most of your monitor. +- Screenshot the title screen, which should only be the top screen. +- Downsize it to `328x300` using [PicResize](http://www.picresize.com/). +- Compress it using [TinyPNG](https://tinypng.com/). +- Examples are [Legend of Zelda](https://github.com/citra-emu/citra-games-wiki/blob/master/games/legend-of-zelda/boxart.png) and [Tetris](https://github.com/citra-emu/citra-games-wiki/blob/master/games/tetris/boxart.png) + +### Game Screenshots +The screenshots for the game are located in `//screenshots/` (See: [Screenshots](#screenshots)). Screenshots **must** follow these specifications: + - Native resolution. + - Smallest window size. + - Have variety. In addition to, say, the title screen, you should also have screenshots of different areas of gameplay, unless the game crashes before then. + - Accurate file name. The file name should provide a general idea of what's being shown (e.g. `title-screen.png`, `lost-woods.png`, `level-3-4.png`). + - Black background (For the blank space left and right of the bottom screen.). This is the default setting, but if you've changed it, go to the [User Directory](https://citra-emu.org/wiki/user-directory/), and from there navigate to the `config` directory. Open qt-config.ini with a text editor, and set bg_blue, bg_green, and bg_red to 0. + +Additionally, if a game has a rating of 3 or higher, **you must include at least 3 screenshots**, otherwise 1 screenshot is acceptable. + +### Savefiles +#### Save Metadata +The metadata for a save is located at `//savefiles/.dat`. This is info about the save. The DAT values (See: [TOML](#toml)) are: +- `title` (String): The location of the save ingame. +- `description` (String): A brief explanation about the save. +- `author` (String): Your forum account name, if you have one. If you don't, don't include this line. +- `title_id` (String): Title ID of the game. See: [Title IDs](#title-ids). + +#### Save Data +The save data is located at `//savefiles/.zip` (See: [Citra Version](#citra-version)). To make a ZIP file, the process is: +- Make sure the ROM for the game is in your Citra game directory. +- Right click on the game and click `Open Save Data Location`. This should open a folder named `data`. +- Note the folder that the `data` folder is in. This is the low Title ID. As an example, the low Title ID for The Legend of Zelda: Ocarina of Time is `00033500`. +- The folder that the low Title ID folder is in should be named `00040000`, the high Title ID. +- Copy the high title ID folder elsewhere. +- Delete everything from the high title ID folder except for the low Title ID folder. +- Compress the high title ID folder into a ZIP. + +## Wiki +The wiki contains info about specific game problems, and can be modified by anyone. They use [Markdown](https://guides.github.com/features/mastering-markdown/) formatting. + +Each page's title should match the game's respective folder in the code section, except with hyphens in the code changed to spaces on the wiki. **Don't use the following characters in your wiki page's titles: \ / : * ? " < > |.** + +The format of each page is as follows: +- H2 header with text saying `Summary`. +- Brief summary of how the game performs: graphically, auditorily, and frame rate (with general hardware comparison - see MK7 example). This should be written objectively, without the use of words like "I". See: [Citra Version](#citra-version). + +An example of a game wiki page is the one for [Mario Kart 7](https://github.com/citra-emu/citra-games-wiki/wiki/Mario-Kart-7): +```markdown +## Summary +Mario Kart 7 has some problems in Citra. Graphically, the game suffers from minor issues, +but requires decent hardware to obtain near full speed. It suffers from minor audio issues at times, +but this does not hinder gameplay in any way. You may experience crashes on some tracks, slow down, +and may need to transfer save files from Citra to your 3DS to complete certain tracks. +``` diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..23cb790 --- /dev/null +++ b/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + {signature of Ty Coon}, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..79ece10 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Citra Games Wiki +This is a database of how games will work in the Citra Nintendo 3DS Emulator using TOML. The site generated from this info can be found [here](https://citra-emu.org/game/). + +If you interested in contributing, take a look at the [Contributing Guide](https://github.com/citra-emu/citra-games-wiki/blob/master/CONTRIBUTING.md). + +For more info about Citra, go [here](https://citra-emu.org/). The repository for the Citra emulator can be found [here](https://github.com/citra-emu/citra), and the Citra website [here](https://github.com/citra-emu/citra-web). diff --git a/cheats/000400000007AF00.txt b/cheats/000400000007AF00.txt new file mode 100644 index 0000000..38831a2 --- /dev/null +++ b/cheats/000400000007AF00.txt @@ -0,0 +1,147 @@ +[L and R add 100000 coins] +DD000000 00000300 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +000000B0 000186A0 +D2000000 00000000 + +[Fire Mario R and UP] +DD000000 00000140 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000002 +D2000000 00000000 + +[Mini Mario R and DOWN] +DD000000 00000180 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000003 +D2000000 00000000 + +[Raccoon Mario R and LEFT] +DD000000 00000120 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000004 +D2000000 00000000 + +[Invincibe Mario R and RIGHT] +DD000000 00000110 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000007 +D2000000 00000000 + +[Gold Mario L and UP] +DD000000 00000240 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000006 +D2000000 00000000 + +[Big Mario L and DOWN] +DD000000 00000280 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000001 +D2000000 00000000 + +[Small Mario L and LEFT] +DD000000 00000220 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +40000364 14000000 +B0000364 00000000 +20000015 00000000 +D2000000 00000000 + +[Invincible L+RIGHT BrowserCastle] +DD000000 00000210 +D3000000 00000000 +605E61E8 00000000 +B05E61E8 00000000 +30000364 14000000 +B00003B0 00000000 +20000015 00000007 +D2000000 00000000 + +[Max Infinite Lives] +D3000000 00000000 +204101E9 00000010 + +[Rapid Fireballs] +D3000000 00000000 +202E9140 00000000 +202E9160 00000000 + +[999 lives by sigma (Amended By Darren)] +D3000000 10000000 +16771F50 000003E7 + +[9999999 Coin Counter by sigma] +D3000000 16000000 +00762054 0098967F + +[Max Coins By Darren] +D3000000 10000000 +041691D4 0000270F +D3000000 10000000 +241691D8 00000063 + +[Max Score By Darren] +D3000000 10000000 +14169110 00000334 +D3000000 10000000 +15B81454 00000334 + +[999 Piece star by alexandreou] +D3000000 16000000 +00761D48 000003E7 + +[PLAY AS (World 1): by alexandreou] +00000000 00000000 + +[Small Mario (Amended By Darren)] +D3000000 14000000 +0016D775 00000000 + +[Normal Mario (Amended By Darren)] +D3000000 14000000 +0016D775 00000001 + +[Fire Mario (Amended By Darren)] +D3000000 14000000 +0016D775 00000002 + +[Mini Mario (Amended By Darren)] +D3000000 14000000 +0016D775 00000003 + +[Racoon Mario (Amended By Darren)] +D3000000 14000000 +0016D775 00000004 + +[Gold Mario (Amended By Darren)] +D3000000 14000000 +0016D775 00000006 \ No newline at end of file diff --git a/data/CTR-A22/art.jpg b/data/CTR-A22/art.jpg new file mode 100644 index 0000000..66f920d Binary files /dev/null and b/data/CTR-A22/art.jpg differ diff --git a/data/CTR-A22/data.yml b/data/CTR-A22/data.yml new file mode 100644 index 0000000..a5d7687 --- /dev/null +++ b/data/CTR-A22/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001CC400 + name: 牧場物語 ふたごの村+ + updates: + - id: 0004000E001CC400 + name: 更新データ Ver. 1.3 牧場物語 ふたごの村+ diff --git a/data/CTR-A22/icon.jpg b/data/CTR-A22/icon.jpg new file mode 100644 index 0000000..4ff118c Binary files /dev/null and b/data/CTR-A22/icon.jpg differ diff --git a/data/CTR-A2A/art.jpg b/data/CTR-A2A/art.jpg new file mode 100644 index 0000000..fbc2b54 Binary files /dev/null and b/data/CTR-A2A/art.jpg differ diff --git a/data/CTR-A2A/data.yml b/data/CTR-A2A/data.yml new file mode 100644 index 0000000..038a190 --- /dev/null +++ b/data/CTR-A2A/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 00040000001B5000 + name: Pokémon Ultra Sun + updates: + - id: 0004000E001B5000 + name: Pokémon™ Ultra Sun Update Ver. 1.2 diff --git a/data/CTR-A2A/icon.jpg b/data/CTR-A2A/icon.jpg new file mode 100644 index 0000000..b46b054 Binary files /dev/null and b/data/CTR-A2A/icon.jpg differ diff --git a/data/CTR-A2B/art.jpg b/data/CTR-A2B/art.jpg new file mode 100644 index 0000000..3b94eb1 Binary files /dev/null and b/data/CTR-A2B/art.jpg differ diff --git a/data/CTR-A2B/data.yml b/data/CTR-A2B/data.yml new file mode 100644 index 0000000..ee6b91a --- /dev/null +++ b/data/CTR-A2B/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 00040000001B5100 + name: Pokémon Ultra Moon + updates: + - id: 0004000E001B5100 + name: Pokémon™ Ultra Moon Update Ver. 1.2 diff --git a/data/CTR-A2B/icon.jpg b/data/CTR-A2B/icon.jpg new file mode 100644 index 0000000..725ab59 Binary files /dev/null and b/data/CTR-A2B/icon.jpg differ diff --git a/data/CTR-A2P/art.jpg b/data/CTR-A2P/art.jpg new file mode 100644 index 0000000..7423ede Binary files /dev/null and b/data/CTR-A2P/art.jpg differ diff --git a/data/CTR-A2P/data.yml b/data/CTR-A2P/data.yml new file mode 100644 index 0000000..ee641c6 --- /dev/null +++ b/data/CTR-A2P/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C4600 + name: 12歳。とろけるパズル ふたりのハーモニー + updates: [] diff --git a/data/CTR-A2P/icon.jpg b/data/CTR-A2P/icon.jpg new file mode 100644 index 0000000..9c563dc Binary files /dev/null and b/data/CTR-A2P/icon.jpg differ diff --git a/data/CTR-A3K/art.jpg b/data/CTR-A3K/art.jpg new file mode 100644 index 0000000..ff558aa Binary files /dev/null and b/data/CTR-A3K/art.jpg differ diff --git a/data/CTR-A3K/data.yml b/data/CTR-A3K/data.yml new file mode 100644 index 0000000..e394c4c --- /dev/null +++ b/data/CTR-A3K/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001CFE00 + name: たのしく・おもしろく 漢検小学生 + updates: [] diff --git a/data/CTR-A3K/icon.jpg b/data/CTR-A3K/icon.jpg new file mode 100644 index 0000000..39dd829 Binary files /dev/null and b/data/CTR-A3K/icon.jpg differ diff --git a/data/CTR-A3R/art.jpg b/data/CTR-A3R/art.jpg new file mode 100644 index 0000000..c60083a Binary files /dev/null and b/data/CTR-A3R/art.jpg differ diff --git a/data/CTR-A3R/data.yml b/data/CTR-A3R/data.yml new file mode 100644 index 0000000..1780ba4 --- /dev/null +++ b/data/CTR-A3R/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001D1500 + name: 'Mario & Luigi: Bowser’s Inside Story + Bowser Jr.’s Journey' + updates: + - id: 0004000E001D1500 + name: "Mario & Luigi: Bowser's Inside Story: Update" +- regions: + - JP + id: 00040000001CA900 + name: マリオ&ルイージRPG3 DX + updates: + - id: 0004000E001CA900 + name: 更新データ Ver. 1.2 マリオ&ルイージRPG3 DX +- regions: + - US + id: 00040000001D1400 + name: Mario & Luigi™:Bowser’s Inside Story + Bowser Jr.’s Journey + updates: + - id: 0004000E001D1400 + name: 'Mario & Luigi™: Bowser’s Inside Story Update Ver. 1.2 ' diff --git a/data/CTR-A3R/icon.jpg b/data/CTR-A3R/icon.jpg new file mode 100644 index 0000000..29b7206 Binary files /dev/null and b/data/CTR-A3R/icon.jpg differ diff --git a/data/CTR-A55/art.jpg b/data/CTR-A55/art.jpg new file mode 100644 index 0000000..6199b00 Binary files /dev/null and b/data/CTR-A55/art.jpg differ diff --git a/data/CTR-A55/data.yml b/data/CTR-A55/data.yml new file mode 100644 index 0000000..fb7e908 --- /dev/null +++ b/data/CTR-A55/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DC100 + name: Pinball Breaker V + updates: [] +- regions: + - US + id: 00040000001DC200 + name: Pinball Breaker V + updates: [] diff --git a/data/CTR-A55/icon.jpg b/data/CTR-A55/icon.jpg new file mode 100644 index 0000000..eba578d Binary files /dev/null and b/data/CTR-A55/icon.jpg differ diff --git a/data/CTR-A57/art.jpg b/data/CTR-A57/art.jpg new file mode 100644 index 0000000..a5a183f Binary files /dev/null and b/data/CTR-A57/art.jpg differ diff --git a/data/CTR-A57/data.yml b/data/CTR-A57/data.yml new file mode 100644 index 0000000..feab918 --- /dev/null +++ b/data/CTR-A57/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DCF00 + name: Bricks Pinball 2 + updates: [] diff --git a/data/CTR-A57/icon.jpg b/data/CTR-A57/icon.jpg new file mode 100644 index 0000000..3b14a49 Binary files /dev/null and b/data/CTR-A57/icon.jpg differ diff --git a/data/CTR-A66/art.jpg b/data/CTR-A66/art.jpg new file mode 100644 index 0000000..595bddd Binary files /dev/null and b/data/CTR-A66/art.jpg differ diff --git a/data/CTR-A66/data.yml b/data/CTR-A66/data.yml new file mode 100644 index 0000000..72593e6 --- /dev/null +++ b/data/CTR-A66/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000031E00 + name: 戦国無双 Chronicle + updates: [] +- regions: + - US + id: 0004000000034D00 + name: 'SAMURAI WARRIORS®: Chronicles' + updates: [] diff --git a/data/CTR-A66/icon.jpg b/data/CTR-A66/icon.jpg new file mode 100644 index 0000000..d88c63a Binary files /dev/null and b/data/CTR-A66/icon.jpg differ diff --git a/data/CTR-A67/art.jpg b/data/CTR-A67/art.jpg new file mode 100644 index 0000000..a0ee26e Binary files /dev/null and b/data/CTR-A67/art.jpg differ diff --git a/data/CTR-A67/data.yml b/data/CTR-A67/data.yml new file mode 100644 index 0000000..aff9922 --- /dev/null +++ b/data/CTR-A67/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DBC00 + name: Quarters, Please! Vol. 2 + updates: [] +- regions: + - US + id: 00040000001DB700 + name: Quarters, Please! Vol. 2 + updates: [] diff --git a/data/CTR-A67/icon.jpg b/data/CTR-A67/icon.jpg new file mode 100644 index 0000000..76417b0 Binary files /dev/null and b/data/CTR-A67/icon.jpg differ diff --git a/data/CTR-A78/art.jpg b/data/CTR-A78/art.jpg new file mode 100644 index 0000000..3dbafa0 Binary files /dev/null and b/data/CTR-A78/art.jpg differ diff --git a/data/CTR-A78/data.yml b/data/CTR-A78/data.yml new file mode 100644 index 0000000..49575aa --- /dev/null +++ b/data/CTR-A78/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000039800 + name: GUNDAM THE 3D BATTLE + updates: [] diff --git a/data/CTR-A78/icon.jpg b/data/CTR-A78/icon.jpg new file mode 100644 index 0000000..8515c45 Binary files /dev/null and b/data/CTR-A78/icon.jpg differ diff --git a/data/CTR-A8F/art.jpg b/data/CTR-A8F/art.jpg new file mode 100644 index 0000000..6e3c3c2 Binary files /dev/null and b/data/CTR-A8F/art.jpg differ diff --git a/data/CTR-A8F/data.yml b/data/CTR-A8F/data.yml new file mode 100644 index 0000000..8528ede --- /dev/null +++ b/data/CTR-A8F/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B7500 + name: Farming Simulator 18 + updates: [] +- regions: + - JP + id: 00040000001BDE00 + name: ファーミングシミュレーター18 ポケット農園4 + updates: [] +- regions: + - US + id: 00040000001B7900 + name: Farming Simulator 18 + updates: [] diff --git a/data/CTR-A8F/icon.jpg b/data/CTR-A8F/icon.jpg new file mode 100644 index 0000000..43e9fc2 Binary files /dev/null and b/data/CTR-A8F/icon.jpg differ diff --git a/data/CTR-A98/art.jpg b/data/CTR-A98/art.jpg new file mode 100644 index 0000000..1a87675 Binary files /dev/null and b/data/CTR-A98/art.jpg differ diff --git a/data/CTR-A98/data.yml b/data/CTR-A98/data.yml new file mode 100644 index 0000000..bd3590c --- /dev/null +++ b/data/CTR-A98/data.yml @@ -0,0 +1,10 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - TW + - US + id: 00040000001C1E00 + name: Detective Pikachu + updates: [] diff --git a/data/CTR-A98/icon.jpg b/data/CTR-A98/icon.jpg new file mode 100644 index 0000000..be64138 Binary files /dev/null and b/data/CTR-A98/icon.jpg differ diff --git a/data/CTR-A9A/art.jpg b/data/CTR-A9A/art.jpg new file mode 100644 index 0000000..2e28f4f Binary files /dev/null and b/data/CTR-A9A/art.jpg differ diff --git a/data/CTR-A9A/data.yml b/data/CTR-A9A/data.yml new file mode 100644 index 0000000..47d73d7 --- /dev/null +++ b/data/CTR-A9A/data.yml @@ -0,0 +1,20 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001BFB00 + name: 'Metroid™: Samus Returns' + updates: [] +- regions: + - JP + - KR + id: 00040000001BFC00 + name: メトロイド サムスリターンズ + updates: [] +- regions: + - KR + - TW + - US + id: 00040000001BB200 + name: 'Metroid™: Samus Returns' + updates: [] diff --git a/data/CTR-A9A/icon.jpg b/data/CTR-A9A/icon.jpg new file mode 100644 index 0000000..6186524 Binary files /dev/null and b/data/CTR-A9A/icon.jpg differ diff --git a/data/CTR-A9C/art.jpg b/data/CTR-A9C/art.jpg new file mode 100644 index 0000000..20b1a48 Binary files /dev/null and b/data/CTR-A9C/art.jpg differ diff --git a/data/CTR-A9C/data.yml b/data/CTR-A9C/data.yml new file mode 100644 index 0000000..e5ab6ff --- /dev/null +++ b/data/CTR-A9C/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D2E00 + name: Cube Creator DX + updates: [] +- regions: + - JP + id: 00040000001B4A00 + name: キューブクリエイターDX + updates: + - id: 0004000E001B4A00 + name: 更新データ Ver. 1.1.3 キューブクリエイターDX +- regions: + - KR + id: 00040000001C7800 + name: Cube Creator DX + updates: + - id: 0004000E001C7800 + name: Cube Creator DX 업데이트 데이터 ver.1.1.1 +- regions: + - US + id: 00040000001C7F00 + name: Cube Creator DX + updates: [] diff --git a/data/CTR-A9C/icon.jpg b/data/CTR-A9C/icon.jpg new file mode 100644 index 0000000..29bc90b Binary files /dev/null and b/data/CTR-A9C/icon.jpg differ diff --git a/data/CTR-A9E/art.jpg b/data/CTR-A9E/art.jpg new file mode 100644 index 0000000..6db223c Binary files /dev/null and b/data/CTR-A9E/art.jpg differ diff --git a/data/CTR-A9E/data.yml b/data/CTR-A9E/data.yml new file mode 100644 index 0000000..a26acb4 --- /dev/null +++ b/data/CTR-A9E/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CF400 + name: Dillon's Dead-Heat Breakers™ + updates: [] +- regions: + - JP + id: 00040000001C4900 + name: ザ・デッドヒートブレイカーズ + updates: [] +- regions: + - US + id: 00040000001CF300 + name: Dillon’s Dead-Heat Breakers™ + updates: [] diff --git a/data/CTR-A9E/icon.jpg b/data/CTR-A9E/icon.jpg new file mode 100644 index 0000000..93af0d5 Binary files /dev/null and b/data/CTR-A9E/icon.jpg differ diff --git a/data/CTR-AA2/art.jpg b/data/CTR-AA2/art.jpg new file mode 100644 index 0000000..71f93d9 Binary files /dev/null and b/data/CTR-AA2/art.jpg differ diff --git a/data/CTR-AA2/data.yml b/data/CTR-AA2/data.yml new file mode 100644 index 0000000..5fc9d80 --- /dev/null +++ b/data/CTR-AA2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000081200 + name: ドラえもん のび太と奇跡の島 ~アニマル アドベンチャー~ + updates: [] diff --git a/data/CTR-AA2/icon.jpg b/data/CTR-AA2/icon.jpg new file mode 100644 index 0000000..23715e6 Binary files /dev/null and b/data/CTR-AA2/icon.jpg differ diff --git a/data/CTR-AA6/art.jpg b/data/CTR-AA6/art.jpg new file mode 100644 index 0000000..9c32100 Binary files /dev/null and b/data/CTR-AA6/art.jpg differ diff --git a/data/CTR-AA6/data.yml b/data/CTR-AA6/data.yml new file mode 100644 index 0000000..4880c9f --- /dev/null +++ b/data/CTR-AA6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D1400 + name: I Love My Pets + updates: [] diff --git a/data/CTR-AA6/icon.jpg b/data/CTR-AA6/icon.jpg new file mode 100644 index 0000000..4c68157 Binary files /dev/null and b/data/CTR-AA6/icon.jpg differ diff --git a/data/CTR-AA8/art.jpg b/data/CTR-AA8/art.jpg new file mode 100644 index 0000000..130798f Binary files /dev/null and b/data/CTR-AA8/art.jpg differ diff --git a/data/CTR-AA8/data.yml b/data/CTR-AA8/data.yml new file mode 100644 index 0000000..5bfc165 --- /dev/null +++ b/data/CTR-AA8/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000AD600 + name: LEGO® City Undercover The Chase Begins + updates: [] +- regions: + - JP + id: 0004000000154700 + name: レゴ®シティ アンダーカバー チェイス ビギンズ + updates: [] +- regions: + - KR + id: 0004000000159100 + name: '레고®시티 언더커버: 더 체이스 비긴즈' + updates: [] +- regions: + - US + id: 00040000000AD500 + name: 'LEGO® City Undercover: The Chase Begins' + updates: [] diff --git a/data/CTR-AA8/icon.jpg b/data/CTR-AA8/icon.jpg new file mode 100644 index 0000000..82647db Binary files /dev/null and b/data/CTR-AA8/icon.jpg differ diff --git a/data/CTR-AAB/art.jpg b/data/CTR-AAB/art.jpg new file mode 100644 index 0000000..5bad6e1 Binary files /dev/null and b/data/CTR-AAB/art.jpg differ diff --git a/data/CTR-AAB/data.yml b/data/CTR-AAB/data.yml new file mode 100644 index 0000000..baba320 --- /dev/null +++ b/data/CTR-AAB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004A700 + name: テイルズ オブ ジ アビス + updates: [] +- regions: + - US + id: 0004000000061300 + name: Tales of the Abyss 3D + updates: [] diff --git a/data/CTR-AAB/icon.jpg b/data/CTR-AAB/icon.jpg new file mode 100644 index 0000000..0980ec9 Binary files /dev/null and b/data/CTR-AAB/icon.jpg differ diff --git a/data/CTR-AAC/art.jpg b/data/CTR-AAC/art.jpg new file mode 100644 index 0000000..0045f88 Binary files /dev/null and b/data/CTR-AAC/art.jpg differ diff --git a/data/CTR-AAC/data.yml b/data/CTR-AAC/data.yml new file mode 100644 index 0000000..358509e --- /dev/null +++ b/data/CTR-AAC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000084F00 + name: New Art Academy™ + updates: [] +- regions: + - JP + id: 0004000000095700 + name: 新 絵心教室 + updates: [] +- regions: + - US + id: 0004000000095800 + name: 'Art Academy™: Lessons for Everyone!' + updates: [] diff --git a/data/CTR-AAC/icon.jpg b/data/CTR-AAC/icon.jpg new file mode 100644 index 0000000..51464e3 Binary files /dev/null and b/data/CTR-AAC/icon.jpg differ diff --git a/data/CTR-AAE/art.jpg b/data/CTR-AAE/art.jpg new file mode 100644 index 0000000..9360ecc Binary files /dev/null and b/data/CTR-AAE/art.jpg differ diff --git a/data/CTR-AAE/data.yml b/data/CTR-AAE/data.yml new file mode 100644 index 0000000..5a60025 --- /dev/null +++ b/data/CTR-AAE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000CD000 + name: Games Festival 1 + updates: [] diff --git a/data/CTR-AAE/icon.jpg b/data/CTR-AAE/icon.jpg new file mode 100644 index 0000000..1ae1bc6 Binary files /dev/null and b/data/CTR-AAE/icon.jpg differ diff --git a/data/CTR-AAF/art.jpg b/data/CTR-AAF/art.jpg new file mode 100644 index 0000000..2799de9 Binary files /dev/null and b/data/CTR-AAF/art.jpg differ diff --git a/data/CTR-AAF/data.yml b/data/CTR-AAF/data.yml new file mode 100644 index 0000000..71da4e0 --- /dev/null +++ b/data/CTR-AAF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000CD100 + name: Games Festival 2 + updates: [] diff --git a/data/CTR-AAF/icon.jpg b/data/CTR-AAF/icon.jpg new file mode 100644 index 0000000..05bc207 Binary files /dev/null and b/data/CTR-AAF/icon.jpg differ diff --git a/data/CTR-AAG/art.jpg b/data/CTR-AAG/art.jpg new file mode 100644 index 0000000..9f78d48 Binary files /dev/null and b/data/CTR-AAG/art.jpg differ diff --git a/data/CTR-AAG/data.yml b/data/CTR-AAG/data.yml new file mode 100644 index 0000000..8a12db7 --- /dev/null +++ b/data/CTR-AAG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000000D4D00 + name: Puzzler Brain Games + updates: [] diff --git a/data/CTR-AAG/icon.jpg b/data/CTR-AAG/icon.jpg new file mode 100644 index 0000000..caa9c1f Binary files /dev/null and b/data/CTR-AAG/icon.jpg differ diff --git a/data/CTR-AAH/art.jpg b/data/CTR-AAH/art.jpg new file mode 100644 index 0000000..8bc6b5c Binary files /dev/null and b/data/CTR-AAH/art.jpg differ diff --git a/data/CTR-AAH/data.yml b/data/CTR-AAH/data.yml new file mode 100644 index 0000000..5597d1b --- /dev/null +++ b/data/CTR-AAH/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001BC600 + name: Monster Hunter Stories™ + updates: [] +- regions: + - JP + id: 000400000016E100 + name: モンスターハンター ストーリーズ + updates: + - id: 0004000E0016E100 + name: 更新データ Ver. 1.3.0 モンスターハンター ストーリーズ +- regions: + - TW + id: 0004000000199C00 + name: MONSTER HUNTER STORIES™ (日文版) + updates: + - id: 0004000E00199C00 + name: 更新資料 Ver. 1.3.0 MONSTER HUNTER STORIES +- regions: + - US + id: 00040000001BC500 + name: Monster Hunter Stories™ + updates: [] diff --git a/data/CTR-AAH/icon.jpg b/data/CTR-AAH/icon.jpg new file mode 100644 index 0000000..abfb51b Binary files /dev/null and b/data/CTR-AAH/icon.jpg differ diff --git a/data/CTR-AAK/art.jpg b/data/CTR-AAK/art.jpg new file mode 100644 index 0000000..3ddc08d Binary files /dev/null and b/data/CTR-AAK/art.jpg differ diff --git a/data/CTR-AAK/data.yml b/data/CTR-AAK/data.yml new file mode 100644 index 0000000..01712c4 --- /dev/null +++ b/data/CTR-AAK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000D1200 + name: 獣電戦隊キョウリュウジャー ゲームでガブリンチョ!! + updates: [] diff --git a/data/CTR-AAK/icon.jpg b/data/CTR-AAK/icon.jpg new file mode 100644 index 0000000..7d97d07 Binary files /dev/null and b/data/CTR-AAK/icon.jpg differ diff --git a/data/CTR-AAL/art.jpg b/data/CTR-AAL/art.jpg new file mode 100644 index 0000000..4726988 Binary files /dev/null and b/data/CTR-AAL/art.jpg differ diff --git a/data/CTR-AAL/data.yml b/data/CTR-AAL/data.yml new file mode 100644 index 0000000..2d71cfa --- /dev/null +++ b/data/CTR-AAL/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000153B00 + name: 'A-Train™ 3D: City Simulator' + updates: [] +- regions: + - JP + id: 000400000005E600 + name: A列車で行こう3D + updates: + - id: 0004000E0005E600 + name: 更新データ Ver. 2.0.0 A列車で行こう3D +- regions: + - US + id: 0004000000155700 + name: 'A-Train™ 3D: City Simulator' + updates: [] diff --git a/data/CTR-AAL/icon.jpg b/data/CTR-AAL/icon.jpg new file mode 100644 index 0000000..378b50d Binary files /dev/null and b/data/CTR-AAL/icon.jpg differ diff --git a/data/CTR-AAP/art.jpg b/data/CTR-AAP/art.jpg new file mode 100644 index 0000000..01930c8 Binary files /dev/null and b/data/CTR-AAP/art.jpg differ diff --git a/data/CTR-AAP/data.yml b/data/CTR-AAP/data.yml new file mode 100644 index 0000000..6e405a5 --- /dev/null +++ b/data/CTR-AAP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D4800 + name: My Riding Stables 3D– Jumping for the Team + updates: [] diff --git a/data/CTR-AAP/icon.jpg b/data/CTR-AAP/icon.jpg new file mode 100644 index 0000000..dcb49d3 Binary files /dev/null and b/data/CTR-AAP/icon.jpg differ diff --git a/data/CTR-AAQ/art.jpg b/data/CTR-AAQ/art.jpg new file mode 100644 index 0000000..044f4c3 Binary files /dev/null and b/data/CTR-AAQ/art.jpg differ diff --git a/data/CTR-AAQ/data.yml b/data/CTR-AAQ/data.yml new file mode 100644 index 0000000..b76ba6a --- /dev/null +++ b/data/CTR-AAQ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D6F00 + name: 'Mystery Case Files Ravenhearst® ' + updates: [] +- regions: + - US + id: 00040000000DDF00 + name: Mystery Case Files® Ravenhearst + updates: [] diff --git a/data/CTR-AAQ/icon.jpg b/data/CTR-AAQ/icon.jpg new file mode 100644 index 0000000..16d772a Binary files /dev/null and b/data/CTR-AAQ/icon.jpg differ diff --git a/data/CTR-AAS/art.jpg b/data/CTR-AAS/art.jpg new file mode 100644 index 0000000..491708f Binary files /dev/null and b/data/CTR-AAS/art.jpg differ diff --git a/data/CTR-AAS/data.yml b/data/CTR-AAS/data.yml new file mode 100644 index 0000000..fba1d50 --- /dev/null +++ b/data/CTR-AAS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D7200 + name: Hidden Expedition® Titanic + updates: [] +- regions: + - US + id: 00040000000DDA00 + name: Hidden Expedition Titanic + updates: [] diff --git a/data/CTR-AAS/icon.jpg b/data/CTR-AAS/icon.jpg new file mode 100644 index 0000000..59e8871 Binary files /dev/null and b/data/CTR-AAS/icon.jpg differ diff --git a/data/CTR-AAT/art.jpg b/data/CTR-AAT/art.jpg new file mode 100644 index 0000000..9095580 Binary files /dev/null and b/data/CTR-AAT/art.jpg differ diff --git a/data/CTR-AAT/data.yml b/data/CTR-AAT/data.yml new file mode 100644 index 0000000..794dfc7 --- /dev/null +++ b/data/CTR-AAT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000DBA00 + name: キラ★メキ おしゃれサロン! ~わたしのしごとは美容師さん~ + updates: [] diff --git a/data/CTR-AAT/icon.jpg b/data/CTR-AAT/icon.jpg new file mode 100644 index 0000000..87f4eaa Binary files /dev/null and b/data/CTR-AAT/icon.jpg differ diff --git a/data/CTR-AAU/art.jpg b/data/CTR-AAU/art.jpg new file mode 100644 index 0000000..61215ae Binary files /dev/null and b/data/CTR-AAU/art.jpg differ diff --git a/data/CTR-AAU/data.yml b/data/CTR-AAU/data.yml new file mode 100644 index 0000000..5c78bd3 --- /dev/null +++ b/data/CTR-AAU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000DBD00 + name: SIMPLEシリーズ for ニンテンドー3DS Vol.1 THE 麻雀 + updates: + - id: 0004000E000DBD00 + name: 更新データ Ver. 1.3 SIMPLEシリーズ for ニンテンドー3DS Vol.1 THE 麻雀 diff --git a/data/CTR-AAU/icon.jpg b/data/CTR-AAU/icon.jpg new file mode 100644 index 0000000..87bde9e Binary files /dev/null and b/data/CTR-AAU/icon.jpg differ diff --git a/data/CTR-AAX/art.jpg b/data/CTR-AAX/art.jpg new file mode 100644 index 0000000..bc96c5f Binary files /dev/null and b/data/CTR-AAX/art.jpg differ diff --git a/data/CTR-AAX/data.yml b/data/CTR-AAX/data.yml new file mode 100644 index 0000000..d2f30c2 --- /dev/null +++ b/data/CTR-AAX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000DBB00 + name: Starry☆Sky~in Spring~3D + updates: [] diff --git a/data/CTR-AAX/icon.jpg b/data/CTR-AAX/icon.jpg new file mode 100644 index 0000000..4cf1693 Binary files /dev/null and b/data/CTR-AAX/icon.jpg differ diff --git a/data/CTR-AB5/art.jpg b/data/CTR-AB5/art.jpg new file mode 100644 index 0000000..ed021bb Binary files /dev/null and b/data/CTR-AB5/art.jpg differ diff --git a/data/CTR-AB5/data.yml b/data/CTR-AB5/data.yml new file mode 100644 index 0000000..981d203 --- /dev/null +++ b/data/CTR-AB5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 00040000000A7300 + name: 'Bratz®: Fashion Boutique' + updates: [] diff --git a/data/CTR-AB5/icon.jpg b/data/CTR-AB5/icon.jpg new file mode 100644 index 0000000..846e02c Binary files /dev/null and b/data/CTR-AB5/icon.jpg differ diff --git a/data/CTR-AB6/art.jpg b/data/CTR-AB6/art.jpg new file mode 100644 index 0000000..6f70650 Binary files /dev/null and b/data/CTR-AB6/art.jpg differ diff --git a/data/CTR-AB6/data.yml b/data/CTR-AB6/data.yml new file mode 100644 index 0000000..2e0526c --- /dev/null +++ b/data/CTR-AB6/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000092100 + name: Bowling Bonanza 3D + updates: [] +- regions: + - US + id: 00040000000C7E00 + name: Bowling Bonanza 3D + updates: [] diff --git a/data/CTR-AB6/icon.jpg b/data/CTR-AB6/icon.jpg new file mode 100644 index 0000000..5a769b6 Binary files /dev/null and b/data/CTR-AB6/icon.jpg differ diff --git a/data/CTR-AB7/art.jpg b/data/CTR-AB7/art.jpg new file mode 100644 index 0000000..306a649 Binary files /dev/null and b/data/CTR-AB7/art.jpg differ diff --git a/data/CTR-AB7/data.yml b/data/CTR-AB7/data.yml new file mode 100644 index 0000000..88191c5 --- /dev/null +++ b/data/CTR-AB7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008A000 + name: Cocoto Alien Brick Breaker + updates: [] +- regions: + - JP + id: 0004000000152D00 + name: 小悪魔ココトの宇宙人くずし + updates: [] +- regions: + - US + id: 00040000000BF400 + name: Cocoto Alien Brick Breaker + updates: [] diff --git a/data/CTR-AB7/icon.jpg b/data/CTR-AB7/icon.jpg new file mode 100644 index 0000000..0b22c2c Binary files /dev/null and b/data/CTR-AB7/icon.jpg differ diff --git a/data/CTR-AB9/art.jpg b/data/CTR-AB9/art.jpg new file mode 100644 index 0000000..63f2f27 Binary files /dev/null and b/data/CTR-AB9/art.jpg differ diff --git a/data/CTR-AB9/data.yml b/data/CTR-AB9/data.yml new file mode 100644 index 0000000..aa548c8 --- /dev/null +++ b/data/CTR-AB9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000039F00 + name: ビックリマン漢熟覇王 三位動乱戦創紀 + updates: [] diff --git a/data/CTR-AB9/icon.jpg b/data/CTR-AB9/icon.jpg new file mode 100644 index 0000000..67c0ea2 Binary files /dev/null and b/data/CTR-AB9/icon.jpg differ diff --git a/data/CTR-ABA/art.jpg b/data/CTR-ABA/art.jpg new file mode 100644 index 0000000..f0da669 Binary files /dev/null and b/data/CTR-ABA/art.jpg differ diff --git a/data/CTR-ABA/data.yml b/data/CTR-ABA/data.yml new file mode 100644 index 0000000..2115fa3 --- /dev/null +++ b/data/CTR-ABA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 000400000004C300 + name: Imagine® Babyz® + updates: [] diff --git a/data/CTR-ABA/icon.jpg b/data/CTR-ABA/icon.jpg new file mode 100644 index 0000000..7028df4 Binary files /dev/null and b/data/CTR-ABA/icon.jpg differ diff --git a/data/CTR-ABB/art.jpg b/data/CTR-ABB/art.jpg new file mode 100644 index 0000000..8aaed19 Binary files /dev/null and b/data/CTR-ABB/art.jpg differ diff --git a/data/CTR-ABB/data.yml b/data/CTR-ABB/data.yml new file mode 100644 index 0000000..8e0d52f --- /dev/null +++ b/data/CTR-ABB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000033800 + name: PUZZLE BOBBLE UNIVERSE™ + updates: [] +- regions: + - JP + id: 0004000000032A00 + name: とびだす!パズルボブル 3D + updates: [] +- regions: + - US + id: 0004000000035E00 + name: BUST-A-MOVE UNIVERSE + updates: [] diff --git a/data/CTR-ABB/icon.jpg b/data/CTR-ABB/icon.jpg new file mode 100644 index 0000000..448da73 Binary files /dev/null and b/data/CTR-ABB/icon.jpg differ diff --git a/data/CTR-ABC/art.jpg b/data/CTR-ABC/art.jpg new file mode 100644 index 0000000..1285de0 Binary files /dev/null and b/data/CTR-ABC/art.jpg differ diff --git a/data/CTR-ABC/data.yml b/data/CTR-ABC/data.yml new file mode 100644 index 0000000..22745ac --- /dev/null +++ b/data/CTR-ABC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000059C00 + name: 超速変形ジャイロゼッター アルバロスの翼 + updates: [] diff --git a/data/CTR-ABC/icon.jpg b/data/CTR-ABC/icon.jpg new file mode 100644 index 0000000..f597ee7 Binary files /dev/null and b/data/CTR-ABC/icon.jpg differ diff --git a/data/CTR-ABE/art.jpg b/data/CTR-ABE/art.jpg new file mode 100644 index 0000000..4fa5eaf Binary files /dev/null and b/data/CTR-ABE/art.jpg differ diff --git a/data/CTR-ABE/data.yml b/data/CTR-ABE/data.yml new file mode 100644 index 0000000..82e7708 --- /dev/null +++ b/data/CTR-ABE/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000007AF00 + name: New Super Mario Bros.™ 2 + updates: [] +- regions: + - JP + id: 000400000007AD00 + name: New スーパーマリオブラザーズ 2 + updates: [] +- regions: + - KR + id: 00040000000B8900 + name: 뉴 슈퍼 마리오브라더스 2 + updates: [] +- regions: + - TW + id: 00040000000B8A00 + name: New 超級瑪利歐兄弟 2 + updates: [] +- regions: + - US + id: 000400000007AE00 + name: New Super Mario Bros.™ 2 + updates: [] diff --git a/data/CTR-ABE/icon.jpg b/data/CTR-ABE/icon.jpg new file mode 100644 index 0000000..82d3772 Binary files /dev/null and b/data/CTR-ABE/icon.jpg differ diff --git a/data/CTR-ABH/art.jpg b/data/CTR-ABH/art.jpg new file mode 100644 index 0000000..d656be1 Binary files /dev/null and b/data/CTR-ABH/art.jpg differ diff --git a/data/CTR-ABH/data.yml b/data/CTR-ABH/data.yml new file mode 100644 index 0000000..7b67a8c --- /dev/null +++ b/data/CTR-ABH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000051B00 + name: 閃乱カグラ -少女達の真影- + updates: [] diff --git a/data/CTR-ABH/icon.jpg b/data/CTR-ABH/icon.jpg new file mode 100644 index 0000000..7fdeb8f Binary files /dev/null and b/data/CTR-ABH/icon.jpg differ diff --git a/data/CTR-ABL/art.jpg b/data/CTR-ABL/art.jpg new file mode 100644 index 0000000..2fbbd59 Binary files /dev/null and b/data/CTR-ABL/art.jpg differ diff --git a/data/CTR-ABL/data.yml b/data/CTR-ABL/data.yml new file mode 100644 index 0000000..2b9e4c0 --- /dev/null +++ b/data/CTR-ABL/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000034A00 + name: BLAZBLUE CONTINUUM SHIFT Ⅱ + updates: [] +- regions: + - KR + id: 0004000000130C00 + name: 블레이 블루 컨티뉴엄 시프트 2 + updates: + - id: 0004000E00130C00 + name: 업데이트 데이터 Ver. 1.1 블레이 블루 컨티뉴엄 시프트 2 +- regions: + - US + id: 000400000004AC00 + name: 'BlazBlue: Continuum Shift II' + updates: [] diff --git a/data/CTR-ABL/icon.jpg b/data/CTR-ABL/icon.jpg new file mode 100644 index 0000000..f27ffd8 Binary files /dev/null and b/data/CTR-ABL/icon.jpg differ diff --git a/data/CTR-ABM/art.jpg b/data/CTR-ABM/art.jpg new file mode 100644 index 0000000..475148a Binary files /dev/null and b/data/CTR-ABM/art.jpg differ diff --git a/data/CTR-ABM/data.yml b/data/CTR-ABM/data.yml new file mode 100644 index 0000000..1158dda --- /dev/null +++ b/data/CTR-ABM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000038B00 + name: Resident Evil™ The Mercenaries 3D + updates: [] +- regions: + - JP + id: 0004000000043E00 + name: バイオハザード ザ・マーセナリーズ 3D + updates: [] +- regions: + - US + id: 0004000000035900 + name: 'Resident Evil®: The Mercenaries 3D' + updates: [] diff --git a/data/CTR-ABM/icon.jpg b/data/CTR-ABM/icon.jpg new file mode 100644 index 0000000..5df90ff Binary files /dev/null and b/data/CTR-ABM/icon.jpg differ diff --git a/data/CTR-ABN/art.jpg b/data/CTR-ABN/art.jpg new file mode 100644 index 0000000..03d1010 Binary files /dev/null and b/data/CTR-ABN/art.jpg differ diff --git a/data/CTR-ABN/data.yml b/data/CTR-ABN/data.yml new file mode 100644 index 0000000..b3d37e5 --- /dev/null +++ b/data/CTR-ABN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000040700 + name: Ben 10™ Galactic Racing + updates: [] diff --git a/data/CTR-ABN/icon.jpg b/data/CTR-ABN/icon.jpg new file mode 100644 index 0000000..46c81cc Binary files /dev/null and b/data/CTR-ABN/icon.jpg differ diff --git a/data/CTR-ABP/art.jpg b/data/CTR-ABP/art.jpg new file mode 100644 index 0000000..fa30870 Binary files /dev/null and b/data/CTR-ABP/art.jpg differ diff --git a/data/CTR-ABP/data.yml b/data/CTR-ABP/data.yml new file mode 100644 index 0000000..3849502 --- /dev/null +++ b/data/CTR-ABP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000035C00 + name: Balloon Pop® 2 + updates: [] diff --git a/data/CTR-ABP/icon.jpg b/data/CTR-ABP/icon.jpg new file mode 100644 index 0000000..301c62c Binary files /dev/null and b/data/CTR-ABP/icon.jpg differ diff --git a/data/CTR-ABQ/art.jpg b/data/CTR-ABQ/art.jpg new file mode 100644 index 0000000..6185138 Binary files /dev/null and b/data/CTR-ABQ/art.jpg differ diff --git a/data/CTR-ABQ/data.yml b/data/CTR-ABQ/data.yml new file mode 100644 index 0000000..5831f9b --- /dev/null +++ b/data/CTR-ABQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000EAE00 + name: 'Harvest Moon: A New Beginning' + updates: [] +- regions: + - JP + id: 0004000000073700 + name: 牧場物語 はじまりの大地 + updates: [] +- regions: + - US + id: 00040000000A5900 + name: 'Harvest Moon® 3D: A New Beginning' + updates: [] diff --git a/data/CTR-ABQ/icon.jpg b/data/CTR-ABQ/icon.jpg new file mode 100644 index 0000000..3a81eb8 Binary files /dev/null and b/data/CTR-ABQ/icon.jpg differ diff --git a/data/CTR-ABR/art.jpg b/data/CTR-ABR/art.jpg new file mode 100644 index 0000000..eccb959 Binary files /dev/null and b/data/CTR-ABR/art.jpg differ diff --git a/data/CTR-ABR/data.yml b/data/CTR-ABR/data.yml new file mode 100644 index 0000000..7bb276d --- /dev/null +++ b/data/CTR-ABR/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000005EE00 + name: Resident Evil™ Revelations + updates: [] +- regions: + - JP + id: 0004000000053B00 + name: バイオハザード リベレーションズ + updates: [] +- regions: + - KR + id: 000400000009FF00 + name: 바이오하자드 레벌레이션스 + updates: [] +- regions: + - TW + id: 00040000000A0000 + name: BIOHAZARD REVELATIONS + updates: [] +- regions: + - US + id: 0004000000060200 + name: Resident Evil® Revelations + updates: [] diff --git a/data/CTR-ABR/icon.jpg b/data/CTR-ABR/icon.jpg new file mode 100644 index 0000000..fd1e00f Binary files /dev/null and b/data/CTR-ABR/icon.jpg differ diff --git a/data/CTR-ABS/art.jpg b/data/CTR-ABS/art.jpg new file mode 100644 index 0000000..175b326 Binary files /dev/null and b/data/CTR-ABS/art.jpg differ diff --git a/data/CTR-ABS/data.yml b/data/CTR-ABS/data.yml new file mode 100644 index 0000000..0ef9cd9 --- /dev/null +++ b/data/CTR-ABS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000071700 + name: BATTLESHIP® + updates: [] diff --git a/data/CTR-ABS/icon.jpg b/data/CTR-ABS/icon.jpg new file mode 100644 index 0000000..b7eb85a Binary files /dev/null and b/data/CTR-ABS/icon.jpg differ diff --git a/data/CTR-ABT/art.jpg b/data/CTR-ABT/art.jpg new file mode 100644 index 0000000..3ff3323 Binary files /dev/null and b/data/CTR-ABT/art.jpg differ diff --git a/data/CTR-ABT/data.yml b/data/CTR-ABT/data.yml new file mode 100644 index 0000000..c581311 --- /dev/null +++ b/data/CTR-ABT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000075F00 + name: BIT.TRIP SAGA + updates: [] +- regions: + - US + id: 0004000000045F00 + name: BIT.TRIP SAGA + updates: [] diff --git a/data/CTR-ABT/icon.jpg b/data/CTR-ABT/icon.jpg new file mode 100644 index 0000000..9a8f91d Binary files /dev/null and b/data/CTR-ABT/icon.jpg differ diff --git a/data/CTR-ABU/art.jpg b/data/CTR-ABU/art.jpg new file mode 100644 index 0000000..10a340f Binary files /dev/null and b/data/CTR-ABU/art.jpg differ diff --git a/data/CTR-ABU/data.yml b/data/CTR-ABU/data.yml new file mode 100644 index 0000000..03896a1 --- /dev/null +++ b/data/CTR-ABU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E5E00 + name: My Exotic Farm + updates: [] +- regions: + - US + id: 00040000000E7000 + name: My Exotic Farm + updates: [] diff --git a/data/CTR-ABU/icon.jpg b/data/CTR-ABU/icon.jpg new file mode 100644 index 0000000..5a8da31 Binary files /dev/null and b/data/CTR-ABU/icon.jpg differ diff --git a/data/CTR-ABV/art.jpg b/data/CTR-ABV/art.jpg new file mode 100644 index 0000000..7a4e0ef Binary files /dev/null and b/data/CTR-ABV/art.jpg differ diff --git a/data/CTR-ABV/data.yml b/data/CTR-ABV/data.yml new file mode 100644 index 0000000..1684953 --- /dev/null +++ b/data/CTR-ABV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 000400000009D000 + name: Ben 10 Omniverse + updates: [] diff --git a/data/CTR-ABV/icon.jpg b/data/CTR-ABV/icon.jpg new file mode 100644 index 0000000..45e4202 Binary files /dev/null and b/data/CTR-ABV/icon.jpg differ diff --git a/data/CTR-ABZ/art.jpg b/data/CTR-ABZ/art.jpg new file mode 100644 index 0000000..8a776d1 Binary files /dev/null and b/data/CTR-ABZ/art.jpg differ diff --git a/data/CTR-ABZ/data.yml b/data/CTR-ABZ/data.yml new file mode 100644 index 0000000..7f5b66f --- /dev/null +++ b/data/CTR-ABZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011E700 + name: バルダーダッシュXL 3D + updates: [] diff --git a/data/CTR-ABZ/icon.jpg b/data/CTR-ABZ/icon.jpg new file mode 100644 index 0000000..a93c40c Binary files /dev/null and b/data/CTR-ABZ/icon.jpg differ diff --git a/data/CTR-AC2/art.jpg b/data/CTR-AC2/art.jpg new file mode 100644 index 0000000..47bd84d Binary files /dev/null and b/data/CTR-AC2/art.jpg differ diff --git a/data/CTR-AC2/data.yml b/data/CTR-AC2/data.yml new file mode 100644 index 0000000..d5b0abb --- /dev/null +++ b/data/CTR-AC2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000009E700 + name: Crash City Mayhem + updates: [] +- regions: + - US + id: 000400000004CD00 + name: Crash City Mayhem + updates: [] diff --git a/data/CTR-AC2/icon.jpg b/data/CTR-AC2/icon.jpg new file mode 100644 index 0000000..329b78e Binary files /dev/null and b/data/CTR-AC2/icon.jpg differ diff --git a/data/CTR-AC3/art.jpg b/data/CTR-AC3/art.jpg new file mode 100644 index 0000000..554fbd4 Binary files /dev/null and b/data/CTR-AC3/art.jpg differ diff --git a/data/CTR-AC3/data.yml b/data/CTR-AC3/data.yml new file mode 100644 index 0000000..bc71b2a --- /dev/null +++ b/data/CTR-AC3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000064700 + name: エースコンバット 3D クロスランブル + updates: [] +- regions: + - US + id: 0004000000064900 + name: ACE COMBAT® Assault Horizon Legacy + updates: [] diff --git a/data/CTR-AC3/icon.jpg b/data/CTR-AC3/icon.jpg new file mode 100644 index 0000000..c5571af Binary files /dev/null and b/data/CTR-AC3/icon.jpg differ diff --git a/data/CTR-AC7/art.jpg b/data/CTR-AC7/art.jpg new file mode 100644 index 0000000..ff5a6e3 Binary files /dev/null and b/data/CTR-AC7/art.jpg differ diff --git a/data/CTR-AC7/data.yml b/data/CTR-AC7/data.yml new file mode 100644 index 0000000..e634454 --- /dev/null +++ b/data/CTR-AC7/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 00040000000CB500 + name: Code of Princess + updates: [] +- regions: + - JP + id: 0004000000068000 + name: CODE OF PRINCESS + updates: [] diff --git a/data/CTR-AC7/icon.jpg b/data/CTR-AC7/icon.jpg new file mode 100644 index 0000000..cbda191 Binary files /dev/null and b/data/CTR-AC7/icon.jpg differ diff --git a/data/CTR-ACA/art.jpg b/data/CTR-ACA/art.jpg new file mode 100644 index 0000000..376d08b Binary files /dev/null and b/data/CTR-ACA/art.jpg differ diff --git a/data/CTR-ACA/data.yml b/data/CTR-ACA/data.yml new file mode 100644 index 0000000..72b0e35 --- /dev/null +++ b/data/CTR-ACA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000040600 + name: 'Captain America™: Super Soldier' + updates: [] diff --git a/data/CTR-ACA/icon.jpg b/data/CTR-ACA/icon.jpg new file mode 100644 index 0000000..1e6349c Binary files /dev/null and b/data/CTR-ACA/icon.jpg differ diff --git a/data/CTR-ACB/art.jpg b/data/CTR-ACB/art.jpg new file mode 100644 index 0000000..c15a786 Binary files /dev/null and b/data/CTR-ACB/art.jpg differ diff --git a/data/CTR-ACB/data.yml b/data/CTR-ACB/data.yml new file mode 100644 index 0000000..4235868 --- /dev/null +++ b/data/CTR-ACB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000039A00 + name: カルドセプト® + updates: + - id: 0004000E00039A00 + name: 更新データ Ver. 1.1 カルドセプト® diff --git a/data/CTR-ACB/icon.jpg b/data/CTR-ACB/icon.jpg new file mode 100644 index 0000000..c68fe9c Binary files /dev/null and b/data/CTR-ACB/icon.jpg differ diff --git a/data/CTR-ACC/art.jpg b/data/CTR-ACC/art.jpg new file mode 100644 index 0000000..c7d483b Binary files /dev/null and b/data/CTR-ACC/art.jpg differ diff --git a/data/CTR-ACC/data.yml b/data/CTR-ACC/data.yml new file mode 100644 index 0000000..dd38da8 --- /dev/null +++ b/data/CTR-ACC/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000066D00 + name: Super Pokémon™ Rumble + updates: [] +- regions: + - JP + id: 000400000004D700 + name: スーパーポケモンスクランブル + updates: [] +- regions: + - KR + id: 000400000009AA00 + name: 슈퍼 포켓몬 대격돌 + updates: [] +- regions: + - US + id: 0004000000066C00 + name: Pokémon™ Rumble Blast + updates: [] diff --git a/data/CTR-ACC/icon.jpg b/data/CTR-ACC/icon.jpg new file mode 100644 index 0000000..3749b8e Binary files /dev/null and b/data/CTR-ACC/icon.jpg differ diff --git a/data/CTR-ACF/art.jpg b/data/CTR-ACF/art.jpg new file mode 100644 index 0000000..4877603 Binary files /dev/null and b/data/CTR-ACF/art.jpg differ diff --git a/data/CTR-ACF/data.yml b/data/CTR-ACF/data.yml new file mode 100644 index 0000000..054417f --- /dev/null +++ b/data/CTR-ACF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000009E500 + name: 'Castlevania: Lords of Shadow Mirror of Fate' + updates: [] +- regions: + - JP + id: 00040000000BAC00 + name: Castlevania - Lords of Shadow - 宿命の魔鏡 + updates: [] +- regions: + - US + id: 0004000000096600 + name: 'Castlevania: Lords of Shadow - Mirror of Fate' + updates: [] diff --git a/data/CTR-ACF/icon.jpg b/data/CTR-ACF/icon.jpg new file mode 100644 index 0000000..a9d3d15 Binary files /dev/null and b/data/CTR-ACF/icon.jpg differ diff --git a/data/CTR-ACG/art.jpg b/data/CTR-ACG/art.jpg new file mode 100644 index 0000000..3649289 Binary files /dev/null and b/data/CTR-ACG/art.jpg differ diff --git a/data/CTR-ACG/data.yml b/data/CTR-ACG/data.yml new file mode 100644 index 0000000..d0ccdd9 --- /dev/null +++ b/data/CTR-ACG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 0004000000091700 + name: 'Classic Games Overload: Card & Puzzle Edition' + updates: [] diff --git a/data/CTR-ACG/icon.jpg b/data/CTR-ACG/icon.jpg new file mode 100644 index 0000000..69ffd5e Binary files /dev/null and b/data/CTR-ACG/icon.jpg differ diff --git a/data/CTR-ACH/art.jpg b/data/CTR-ACH/art.jpg new file mode 100644 index 0000000..d791833 Binary files /dev/null and b/data/CTR-ACH/art.jpg differ diff --git a/data/CTR-ACH/data.yml b/data/CTR-ACH/data.yml new file mode 100644 index 0000000..7061ca8 --- /dev/null +++ b/data/CTR-ACH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000071F00 + name: クレヨンしんちゃん 宇宙DE アチョー!? 友情のおバカラテ!! + updates: [] +- regions: + - KR + id: 00040000000FD700 + name: 짱구는 못말려 판타스틱-! 우주별 대모험!! + updates: [] diff --git a/data/CTR-ACH/icon.jpg b/data/CTR-ACH/icon.jpg new file mode 100644 index 0000000..b9d73c3 Binary files /dev/null and b/data/CTR-ACH/icon.jpg differ diff --git a/data/CTR-ACJ/art.jpg b/data/CTR-ACJ/art.jpg new file mode 100644 index 0000000..d4ec8cb Binary files /dev/null and b/data/CTR-ACJ/art.jpg differ diff --git a/data/CTR-ACJ/data.yml b/data/CTR-ACJ/data.yml new file mode 100644 index 0000000..87fb176 --- /dev/null +++ b/data/CTR-ACJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000065900 + name: ガールズRPG シンデレライフ + updates: [] diff --git a/data/CTR-ACJ/icon.jpg b/data/CTR-ACJ/icon.jpg new file mode 100644 index 0000000..9cd7f3e Binary files /dev/null and b/data/CTR-ACJ/icon.jpg differ diff --git a/data/CTR-ACL/art.jpg b/data/CTR-ACL/art.jpg new file mode 100644 index 0000000..02f7cdc Binary files /dev/null and b/data/CTR-ACL/art.jpg differ diff --git a/data/CTR-ACL/data.yml b/data/CTR-ACL/data.yml new file mode 100644 index 0000000..513e368 --- /dev/null +++ b/data/CTR-ACL/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000A9000 + name: Nintendo presents New Style Boutique™ + updates: + - id: 0004000E000A9000 + name: New Style Boutique™ Update +- regions: + - JP + id: 000400000005D100 + name: わがままファッション GIRLS MO DE よくばり宣言! トキメキUP! + updates: + - id: 0004000E0005D100 + name: 更新データ Ver. 1.2 わがままファッション GIRLS MODE よくばり宣言! +- regions: + - KR + id: 00040000000C4F00 + name: Girls Style 패션 리더 선언! + updates: [] +- regions: + - US + id: 00040000000A9100 + name: 'Style Savvy: Trendsetters' + updates: + - id: 0004000E000A9100 + name: 'Style Savvy: Trendsetters Update Ver. 1.1' diff --git a/data/CTR-ACL/icon.jpg b/data/CTR-ACL/icon.jpg new file mode 100644 index 0000000..c43f600 Binary files /dev/null and b/data/CTR-ACL/icon.jpg differ diff --git a/data/CTR-ACM/art.jpg b/data/CTR-ACM/art.jpg new file mode 100644 index 0000000..f2351e0 Binary files /dev/null and b/data/CTR-ACM/art.jpg differ diff --git a/data/CTR-ACM/data.yml b/data/CTR-ACM/data.yml new file mode 100644 index 0000000..b2a6b40 --- /dev/null +++ b/data/CTR-ACM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000032500 + name: マリオ&ソニック AT ロンドンオリンピック™ + updates: [] +- regions: + - KR + id: 0004000000053500 + name: 마리오와 소닉 런던 올림픽™ + updates: [] diff --git a/data/CTR-ACM/icon.jpg b/data/CTR-ACM/icon.jpg new file mode 100644 index 0000000..4b777b1 Binary files /dev/null and b/data/CTR-ACM/icon.jpg differ diff --git a/data/CTR-ACN/art.jpg b/data/CTR-ACN/art.jpg new file mode 100644 index 0000000..29c7e8f Binary files /dev/null and b/data/CTR-ACN/art.jpg differ diff --git a/data/CTR-ACN/data.yml b/data/CTR-ACN/data.yml new file mode 100644 index 0000000..481c4c1 --- /dev/null +++ b/data/CTR-ACN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000043900 + name: Cartoon Network Punch Time Explosion + updates: [] diff --git a/data/CTR-ACN/icon.jpg b/data/CTR-ACN/icon.jpg new file mode 100644 index 0000000..ebe1efa Binary files /dev/null and b/data/CTR-ACN/icon.jpg differ diff --git a/data/CTR-ACP/art.jpg b/data/CTR-ACP/art.jpg new file mode 100644 index 0000000..111ea68 Binary files /dev/null and b/data/CTR-ACP/art.jpg differ diff --git a/data/CTR-ACP/data.yml b/data/CTR-ACP/data.yml new file mode 100644 index 0000000..44cfb73 --- /dev/null +++ b/data/CTR-ACP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 000400000004AD00 + name: 'Centipede: Infestation ' + updates: [] diff --git a/data/CTR-ACP/icon.jpg b/data/CTR-ACP/icon.jpg new file mode 100644 index 0000000..1e343db Binary files /dev/null and b/data/CTR-ACP/icon.jpg differ diff --git a/data/CTR-ACQ/art.jpg b/data/CTR-ACQ/art.jpg new file mode 100644 index 0000000..63f0b00 Binary files /dev/null and b/data/CTR-ACQ/art.jpg differ diff --git a/data/CTR-ACQ/data.yml b/data/CTR-ACQ/data.yml new file mode 100644 index 0000000..9c0144d --- /dev/null +++ b/data/CTR-ACQ/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000005ED00 + name: Cooking Mama 4 + updates: [] +- regions: + - JP + id: 0004000000056A00 + name: クッキングママ 4 + updates: [] +- regions: + - KR + id: 00040000000BF500 + name: 쿠킹마마 마마와 나의 요리 시간 ! + updates: [] +- regions: + - US + id: 000400000004E400 + name: 'Cooking Mama 4: Kitchen Magic' + updates: [] diff --git a/data/CTR-ACQ/icon.jpg b/data/CTR-ACQ/icon.jpg new file mode 100644 index 0000000..44e4253 Binary files /dev/null and b/data/CTR-ACQ/icon.jpg differ diff --git a/data/CTR-ACR/art.jpg b/data/CTR-ACR/art.jpg new file mode 100644 index 0000000..941f83e Binary files /dev/null and b/data/CTR-ACR/art.jpg differ diff --git a/data/CTR-ACR/data.yml b/data/CTR-ACR/data.yml new file mode 100644 index 0000000..abb9b83 --- /dev/null +++ b/data/CTR-ACR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000040400 + name: CRUSH™3D + updates: [] +- regions: + - JP + id: 000400000004CB00 + name: ナイトメアパズル クラッシュ3D + updates: [] +- regions: + - US + id: 0004000000037100 + name: Crush™3D + updates: [] diff --git a/data/CTR-ACR/icon.jpg b/data/CTR-ACR/icon.jpg new file mode 100644 index 0000000..7786765 Binary files /dev/null and b/data/CTR-ACR/icon.jpg differ diff --git a/data/CTR-ACT/art.jpg b/data/CTR-ACT/art.jpg new file mode 100644 index 0000000..b43cd5d Binary files /dev/null and b/data/CTR-ACT/art.jpg differ diff --git a/data/CTR-ACT/data.yml b/data/CTR-ACT/data.yml new file mode 100644 index 0000000..e69c530 --- /dev/null +++ b/data/CTR-ACT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000077800 + name: かわいい仔犬3D + updates: [] +- regions: + - US + id: 000400000004E000 + name: Puppies 3D + updates: [] diff --git a/data/CTR-ACT/icon.jpg b/data/CTR-ACT/icon.jpg new file mode 100644 index 0000000..e5a9922 Binary files /dev/null and b/data/CTR-ACT/icon.jpg differ diff --git a/data/CTR-ACU/art.jpg b/data/CTR-ACU/art.jpg new file mode 100644 index 0000000..4eb6691 Binary files /dev/null and b/data/CTR-ACU/art.jpg differ diff --git a/data/CTR-ACU/data.yml b/data/CTR-ACU/data.yml new file mode 100644 index 0000000..73f729d --- /dev/null +++ b/data/CTR-ACU/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000084D00 + name: AeternoBlade + updates: + - id: 0004000E00084D00 + name: AeternoBlade Update +- regions: + - JP + id: 0004000000114B00 + name: タイムアベンジャー + updates: + - id: 0004000E00114B00 + name: 更新データ Ver. 1.1 タイムアベンジャー +- regions: + - US + id: 00040000000CD300 + name: AeternoBlade + updates: + - id: 0004000E000CD300 + name: AeternoBlade Update Ver. 1.0 diff --git a/data/CTR-ACU/icon.jpg b/data/CTR-ACU/icon.jpg new file mode 100644 index 0000000..b15d115 Binary files /dev/null and b/data/CTR-ACU/icon.jpg differ diff --git a/data/CTR-ACV/art.jpg b/data/CTR-ACV/art.jpg new file mode 100644 index 0000000..d1f8bdc Binary files /dev/null and b/data/CTR-ACV/art.jpg differ diff --git a/data/CTR-ACV/data.yml b/data/CTR-ACV/data.yml new file mode 100644 index 0000000..097cb3d --- /dev/null +++ b/data/CTR-ACV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000004D200 + name: Cave Story 3D + updates: [] +- regions: + - JP + id: 0004000000084C00 + name: 洞窟物語3D + updates: [] +- regions: + - US + id: 000400000004A100 + name: Cave Story 3D + updates: [] diff --git a/data/CTR-ACV/icon.jpg b/data/CTR-ACV/icon.jpg new file mode 100644 index 0000000..e432a08 Binary files /dev/null and b/data/CTR-ACV/icon.jpg differ diff --git a/data/CTR-ACW/art.jpg b/data/CTR-ACW/art.jpg new file mode 100644 index 0000000..9ec1324 Binary files /dev/null and b/data/CTR-ACW/art.jpg differ diff --git a/data/CTR-ACW/data.yml b/data/CTR-ACW/data.yml new file mode 100644 index 0000000..c99d0b2 --- /dev/null +++ b/data/CTR-ACW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000006A800 + name: Chevrolet Camaro Wild Ride 3D + updates: [] diff --git a/data/CTR-ACW/icon.jpg b/data/CTR-ACW/icon.jpg new file mode 100644 index 0000000..f5bac01 Binary files /dev/null and b/data/CTR-ACW/icon.jpg differ diff --git a/data/CTR-ACZ/art.jpg b/data/CTR-ACZ/art.jpg new file mode 100644 index 0000000..7c9608d Binary files /dev/null and b/data/CTR-ACZ/art.jpg differ diff --git a/data/CTR-ACZ/data.yml b/data/CTR-ACZ/data.yml new file mode 100644 index 0000000..d48b376 --- /dev/null +++ b/data/CTR-ACZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000055A00 + name: The Cube + updates: [] diff --git a/data/CTR-ACZ/icon.jpg b/data/CTR-ACZ/icon.jpg new file mode 100644 index 0000000..ddad8a7 Binary files /dev/null and b/data/CTR-ACZ/icon.jpg differ diff --git a/data/CTR-AD2/art.jpg b/data/CTR-AD2/art.jpg new file mode 100644 index 0000000..ecccca9 Binary files /dev/null and b/data/CTR-AD2/art.jpg differ diff --git a/data/CTR-AD2/data.yml b/data/CTR-AD2/data.yml new file mode 100644 index 0000000..5272183 --- /dev/null +++ b/data/CTR-AD2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000DC500 + name: Deer Drive Legends + updates: [] +- regions: + - US + id: 0004000000061F00 + name: Deer Drive Legends + updates: [] diff --git a/data/CTR-AD2/icon.jpg b/data/CTR-AD2/icon.jpg new file mode 100644 index 0000000..d8342f8 Binary files /dev/null and b/data/CTR-AD2/icon.jpg differ diff --git a/data/CTR-AD3/art.jpg b/data/CTR-AD3/art.jpg new file mode 100644 index 0000000..53864a9 Binary files /dev/null and b/data/CTR-AD3/art.jpg differ diff --git a/data/CTR-AD3/data.yml b/data/CTR-AD3/data.yml new file mode 100644 index 0000000..0ad7cfe --- /dev/null +++ b/data/CTR-AD3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D5C00 + name: 3D Game Collection + updates: [] +- regions: + - JP + id: 000400000010EE00 + name: ゲームざんまい + updates: [] +- regions: + - US + id: 00040000000C0500 + name: 3D Game Collection + updates: [] diff --git a/data/CTR-AD3/icon.jpg b/data/CTR-AD3/icon.jpg new file mode 100644 index 0000000..e6ae1b1 Binary files /dev/null and b/data/CTR-AD3/icon.jpg differ diff --git a/data/CTR-AD6/art.jpg b/data/CTR-AD6/art.jpg new file mode 100644 index 0000000..401ae00 Binary files /dev/null and b/data/CTR-AD6/art.jpg differ diff --git a/data/CTR-AD6/data.yml b/data/CTR-AD6/data.yml new file mode 100644 index 0000000..0b88f7c --- /dev/null +++ b/data/CTR-AD6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 00040000000D2300 + name: 'Scribblenauts™ Unmasked: A DC Comics Adventure' + updates: [] diff --git a/data/CTR-AD6/icon.jpg b/data/CTR-AD6/icon.jpg new file mode 100644 index 0000000..a9c9a72 Binary files /dev/null and b/data/CTR-AD6/icon.jpg differ diff --git a/data/CTR-AD7/art.jpg b/data/CTR-AD7/art.jpg new file mode 100644 index 0000000..094f092 Binary files /dev/null and b/data/CTR-AD7/art.jpg differ diff --git a/data/CTR-AD7/data.yml b/data/CTR-AD7/data.yml new file mode 100644 index 0000000..24b3393 --- /dev/null +++ b/data/CTR-AD7/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000018F000 + name: 'Dragon Quest® VII: Fragments of the Forgotten Past' + updates: [] +- regions: + - JP + id: 0004000000065E00 + name: ドラゴンクエストⅦ エデンの戦士たち + updates: + - id: 0004000E00065E00 + name: 更新データ Ver. 1.1 ドラゴンクエストⅦ エデンの戦士たち +- regions: + - KR + id: 0004000000198600 + name: 'DRAGON QUEST VII: Fragments of the Forgotten Past' + updates: [] +- regions: + - US + id: 000400000018EF00 + name: 'Dragon Quest® VII: Fragments of the Forgotten Past' + updates: [] diff --git a/data/CTR-AD7/icon.jpg b/data/CTR-AD7/icon.jpg new file mode 100644 index 0000000..95cb159 Binary files /dev/null and b/data/CTR-AD7/icon.jpg differ diff --git a/data/CTR-AD8/art.jpg b/data/CTR-AD8/art.jpg new file mode 100644 index 0000000..91e0d97 Binary files /dev/null and b/data/CTR-AD8/art.jpg differ diff --git a/data/CTR-AD8/data.yml b/data/CTR-AD8/data.yml new file mode 100644 index 0000000..e122db9 --- /dev/null +++ b/data/CTR-AD8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000A1E00 + name: ちび☆デビ! + updates: [] diff --git a/data/CTR-AD8/icon.jpg b/data/CTR-AD8/icon.jpg new file mode 100644 index 0000000..14b097b Binary files /dev/null and b/data/CTR-AD8/icon.jpg differ diff --git a/data/CTR-AD9/art.jpg b/data/CTR-AD9/art.jpg new file mode 100644 index 0000000..1bcb95e Binary files /dev/null and b/data/CTR-AD9/art.jpg differ diff --git a/data/CTR-AD9/data.yml b/data/CTR-AD9/data.yml new file mode 100644 index 0000000..38ba72a --- /dev/null +++ b/data/CTR-AD9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000CF700 + name: ドラえもん のび太のひみつ道具博物館 + updates: [] diff --git a/data/CTR-AD9/icon.jpg b/data/CTR-AD9/icon.jpg new file mode 100644 index 0000000..0a56b2e Binary files /dev/null and b/data/CTR-AD9/icon.jpg differ diff --git a/data/CTR-ADA/art.jpg b/data/CTR-ADA/art.jpg new file mode 100644 index 0000000..76d7f48 Binary files /dev/null and b/data/CTR-ADA/art.jpg differ diff --git a/data/CTR-ADA/data.yml b/data/CTR-ADA/data.yml new file mode 100644 index 0000000..1ae27ae --- /dev/null +++ b/data/CTR-ADA/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000030C00 + name: Golden Retriever & New Friends + updates: [] +- regions: + - JP + id: 0004000000030B00 + name: nintendogs + cats 柴 & Newフレンズ + updates: [] +- regions: + - KR + id: 0004000000030F00 + name: nintendogs + cats 시바 이누 & NEW친구들 + updates: [] +- regions: + - TW + id: 0004000000090700 + name: 任天狗狗 + 貓貓 柴犬與新伙伴們 + updates: [] +- regions: + - US + id: 0004000000030D00 + name: 'nintendogs™ + cats: Golden Retriever' + updates: [] diff --git a/data/CTR-ADA/icon.jpg b/data/CTR-ADA/icon.jpg new file mode 100644 index 0000000..1b4bc49 Binary files /dev/null and b/data/CTR-ADA/icon.jpg differ diff --git a/data/CTR-ADB/art.jpg b/data/CTR-ADB/art.jpg new file mode 100644 index 0000000..58ac5d9 Binary files /dev/null and b/data/CTR-ADB/art.jpg differ diff --git a/data/CTR-ADB/data.yml b/data/CTR-ADB/data.yml new file mode 100644 index 0000000..a04eb09 --- /dev/null +++ b/data/CTR-ADB/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000031100 + name: French Bulldog & New Friends + updates: [] +- regions: + - JP + id: 0004000000031000 + name: nintendogs + cats フレンチ・ブル & Newフレンズ + updates: [] +- regions: + - KR + id: 0004000000031400 + name: nintendogs + cats 프렌치 불 & NEW친구들 + updates: [] +- regions: + - TW + id: 0004000000090800 + name: 任天狗狗 + 貓貓 法國鬥牛犬與新伙伴們 + updates: [] +- regions: + - US + id: 0004000000031200 + name: 'nintendogs™ + cats: French Bulldog' + updates: [] diff --git a/data/CTR-ADB/icon.jpg b/data/CTR-ADB/icon.jpg new file mode 100644 index 0000000..65a9f8f Binary files /dev/null and b/data/CTR-ADB/icon.jpg differ diff --git a/data/CTR-ADC/art.jpg b/data/CTR-ADC/art.jpg new file mode 100644 index 0000000..79bbfa0 Binary files /dev/null and b/data/CTR-ADC/art.jpg differ diff --git a/data/CTR-ADC/data.yml b/data/CTR-ADC/data.yml new file mode 100644 index 0000000..ad69f5f --- /dev/null +++ b/data/CTR-ADC/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000031600 + name: Toy Poodle & New Friends + updates: [] +- regions: + - JP + id: 0004000000031500 + name: nintendogs + cats トイ・プードル & Newフレンズ + updates: [] +- regions: + - KR + id: 0004000000031900 + name: nintendogs + cats 푸들 & NEW친구들 + updates: [] +- regions: + - TW + id: 0004000000090900 + name: 任天狗狗 + 貓貓 玩具貴賓犬與新伙伴們 + updates: [] +- regions: + - US + id: 0004000000031700 + name: 'nintendogs™ + cats: Toy Poodle' + updates: [] diff --git a/data/CTR-ADC/icon.jpg b/data/CTR-ADC/icon.jpg new file mode 100644 index 0000000..5e14cb5 Binary files /dev/null and b/data/CTR-ADC/icon.jpg differ diff --git a/data/CTR-ADD/art.jpg b/data/CTR-ADD/art.jpg new file mode 100644 index 0000000..cbbfc8e Binary files /dev/null and b/data/CTR-ADD/art.jpg differ diff --git a/data/CTR-ADD/data.yml b/data/CTR-ADD/data.yml new file mode 100644 index 0000000..bca48b6 --- /dev/null +++ b/data/CTR-ADD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000038A00 + name: Dead or Alive Dimensions + updates: [] +- regions: + - JP + id: 0004000000032000 + name: DEAD OR ALIVE Dimensions + updates: [] +- regions: + - US + id: 0004000000034F00 + name: DEAD OR ALIVE Dimensions + updates: [] diff --git a/data/CTR-ADD/icon.jpg b/data/CTR-ADD/icon.jpg new file mode 100644 index 0000000..c6c2522 Binary files /dev/null and b/data/CTR-ADD/icon.jpg differ diff --git a/data/CTR-ADE/art.jpg b/data/CTR-ADE/art.jpg new file mode 100644 index 0000000..1d59672 Binary files /dev/null and b/data/CTR-ADE/art.jpg differ diff --git a/data/CTR-ADE/data.yml b/data/CTR-ADE/data.yml new file mode 100644 index 0000000..15a6238 --- /dev/null +++ b/data/CTR-ADE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000043300 + name: Sports Island 3D + updates: [] +- regions: + - JP + id: 0004000000033700 + name: DECA SPORTA 3D SPORTS (デカスポルタ 3Dスポーツ) + updates: [] +- regions: + - US + id: 0004000000044600 + name: Deca Sports Extreme + updates: [] diff --git a/data/CTR-ADE/icon.jpg b/data/CTR-ADE/icon.jpg new file mode 100644 index 0000000..fffecff Binary files /dev/null and b/data/CTR-ADE/icon.jpg differ diff --git a/data/CTR-ADG/art.jpg b/data/CTR-ADG/art.jpg new file mode 100644 index 0000000..5a4462f Binary files /dev/null and b/data/CTR-ADG/art.jpg differ diff --git a/data/CTR-ADG/data.yml b/data/CTR-ADG/data.yml new file mode 100644 index 0000000..413fa05 --- /dev/null +++ b/data/CTR-ADG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000AD900 + name: ドラゴンボールヒーローズ アルティメットミッション + updates: [] diff --git a/data/CTR-ADG/icon.jpg b/data/CTR-ADG/icon.jpg new file mode 100644 index 0000000..2b9fc5b Binary files /dev/null and b/data/CTR-ADG/icon.jpg differ diff --git a/data/CTR-ADH/art.jpg b/data/CTR-ADH/art.jpg new file mode 100644 index 0000000..9f1fc4d Binary files /dev/null and b/data/CTR-ADH/art.jpg differ diff --git a/data/CTR-ADH/data.yml b/data/CTR-ADH/data.yml new file mode 100644 index 0000000..4fb40d9 --- /dev/null +++ b/data/CTR-ADH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2A00 + name: Mystery Case Files Dire Grove + updates: [] +- regions: + - US + id: 00040000000DDE00 + name: Mystery Case Files Dire Grove + updates: [] diff --git a/data/CTR-ADH/icon.jpg b/data/CTR-ADH/icon.jpg new file mode 100644 index 0000000..669b517 Binary files /dev/null and b/data/CTR-ADH/icon.jpg differ diff --git a/data/CTR-ADJ/art.jpg b/data/CTR-ADJ/art.jpg new file mode 100644 index 0000000..59666b0 Binary files /dev/null and b/data/CTR-ADJ/art.jpg differ diff --git a/data/CTR-ADJ/data.yml b/data/CTR-ADJ/data.yml new file mode 100644 index 0000000..f06149f --- /dev/null +++ b/data/CTR-ADJ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000AFC00 + name: デジモンワールド Re:Digitize Decode + updates: + - id: 0004000E000AFC00 + name: 更新データ Ver. 1.1 デジモンワールド Re:Digitize Decode diff --git a/data/CTR-ADJ/icon.jpg b/data/CTR-ADJ/icon.jpg new file mode 100644 index 0000000..aa61f65 Binary files /dev/null and b/data/CTR-ADJ/icon.jpg differ diff --git a/data/CTR-ADL/art.jpg b/data/CTR-ADL/art.jpg new file mode 100644 index 0000000..fc954e0 Binary files /dev/null and b/data/CTR-ADL/art.jpg differ diff --git a/data/CTR-ADL/data.yml b/data/CTR-ADL/data.yml new file mode 100644 index 0000000..191c55a --- /dev/null +++ b/data/CTR-ADL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000034800 + name: ドクターロートレックと 忘却の騎士団 + updates: [] +- regions: + - US + id: 0004000000036800 + name: Doctor Lautrec and the Forgotten Knights + updates: [] diff --git a/data/CTR-ADL/icon.jpg b/data/CTR-ADL/icon.jpg new file mode 100644 index 0000000..f90c007 Binary files /dev/null and b/data/CTR-ADL/icon.jpg differ diff --git a/data/CTR-ADN/art.jpg b/data/CTR-ADN/art.jpg new file mode 100644 index 0000000..962dcea Binary files /dev/null and b/data/CTR-ADN/art.jpg differ diff --git a/data/CTR-ADN/data.yml b/data/CTR-ADN/data.yml new file mode 100644 index 0000000..3c1ab4c --- /dev/null +++ b/data/CTR-ADN/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000147200 + name: Little Battlers eXperience™ + updates: [] +- regions: + - JP + id: 0004000000078500 + name: ダンボール戦機 爆ブースト + updates: + - id: 0004000E00078500 + name: 更新データ Ver. 1.2 ダンボール戦機 爆ブースト +- regions: + - US + id: 0004000000147100 + name: Little Battlers eXperience™ + updates: [] diff --git a/data/CTR-ADN/icon.jpg b/data/CTR-ADN/icon.jpg new file mode 100644 index 0000000..72634b2 Binary files /dev/null and b/data/CTR-ADN/icon.jpg differ diff --git a/data/CTR-ADQ/art.jpg b/data/CTR-ADQ/art.jpg new file mode 100644 index 0000000..025e910 Binary files /dev/null and b/data/CTR-ADQ/art.jpg differ diff --git a/data/CTR-ADQ/data.yml b/data/CTR-ADQ/data.yml new file mode 100644 index 0000000..9e49118 --- /dev/null +++ b/data/CTR-ADQ/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B4F00 + name: Miitopia™ + updates: [] +- regions: + - JP + id: 0004000000178800 + name: Miitopia(ミートピア) + updates: + - id: 0004000E00178800 + name: 更新データ Ver. 1.1 Miitopia(ミートピア) +- regions: + - US + id: 00040000001B4E00 + name: Miitopia™ + updates: [] diff --git a/data/CTR-ADQ/icon.jpg b/data/CTR-ADQ/icon.jpg new file mode 100644 index 0000000..4696e7e Binary files /dev/null and b/data/CTR-ADQ/icon.jpg differ diff --git a/data/CTR-ADR/art.jpg b/data/CTR-ADR/art.jpg new file mode 100644 index 0000000..64520e0 Binary files /dev/null and b/data/CTR-ADR/art.jpg differ diff --git a/data/CTR-ADR/data.yml b/data/CTR-ADR/data.yml new file mode 100644 index 0000000..072a3b2 --- /dev/null +++ b/data/CTR-ADR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000037800 + name: DRIVER® RENEGADE 3D + updates: [] +- regions: + - JP + id: 000400000004F000 + name: ドライバー:レネゲイド 3D + updates: [] +- regions: + - US + id: 0004000000036000 + name: DRIVER® RENEGADE + updates: [] diff --git a/data/CTR-ADR/icon.jpg b/data/CTR-ADR/icon.jpg new file mode 100644 index 0000000..def615c Binary files /dev/null and b/data/CTR-ADR/icon.jpg differ diff --git a/data/CTR-ADS/art.jpg b/data/CTR-ADS/art.jpg new file mode 100644 index 0000000..42b7e14 Binary files /dev/null and b/data/CTR-ADS/art.jpg differ diff --git a/data/CTR-ADS/data.yml b/data/CTR-ADS/data.yml new file mode 100644 index 0000000..0a43409 --- /dev/null +++ b/data/CTR-ADS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000DC900 + name: ちび☆デビ!2 ~魔法のゆめえほん~ + updates: [] diff --git a/data/CTR-ADS/icon.jpg b/data/CTR-ADS/icon.jpg new file mode 100644 index 0000000..413ed20 Binary files /dev/null and b/data/CTR-ADS/icon.jpg differ diff --git a/data/CTR-ADT/art.jpg b/data/CTR-ADT/art.jpg new file mode 100644 index 0000000..a9b3933 Binary files /dev/null and b/data/CTR-ADT/art.jpg differ diff --git a/data/CTR-ADT/data.yml b/data/CTR-ADT/data.yml new file mode 100644 index 0000000..cdc3e38 --- /dev/null +++ b/data/CTR-ADT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000004C800 + name: Dream Trigger 3D + updates: [] +- regions: + - US + id: 0004000000043600 + name: Dream Trigger™ 3D + updates: [] diff --git a/data/CTR-ADT/icon.jpg b/data/CTR-ADT/icon.jpg new file mode 100644 index 0000000..b2aaf9d Binary files /dev/null and b/data/CTR-ADT/icon.jpg differ diff --git a/data/CTR-ADV/art.jpg b/data/CTR-ADV/art.jpg new file mode 100644 index 0000000..0775153 Binary files /dev/null and b/data/CTR-ADV/art.jpg differ diff --git a/data/CTR-ADV/data.yml b/data/CTR-ADV/data.yml new file mode 100644 index 0000000..cdbaf59 --- /dev/null +++ b/data/CTR-ADV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000004D900 + name: デビルサバイバー オーバークロック + updates: [] diff --git a/data/CTR-ADV/icon.jpg b/data/CTR-ADV/icon.jpg new file mode 100644 index 0000000..6f4ffad Binary files /dev/null and b/data/CTR-ADV/icon.jpg differ diff --git a/data/CTR-ADW/art.jpg b/data/CTR-ADW/art.jpg new file mode 100644 index 0000000..1ecbf82 Binary files /dev/null and b/data/CTR-ADW/art.jpg differ diff --git a/data/CTR-ADW/data.yml b/data/CTR-ADW/data.yml new file mode 100644 index 0000000..80d0598 --- /dev/null +++ b/data/CTR-ADW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000078300 + name: ドラかず のび太のすうじ大冒険 + updates: [] +- regions: + - KR + id: 00040000000F5F00 + name: 도라에몽 진구의 수학 대모험 + updates: [] +- regions: + - TW + id: 00040000000F6000 + name: 哆啦A夢 大雄的數字大冒險 + updates: [] diff --git a/data/CTR-ADW/icon.jpg b/data/CTR-ADW/icon.jpg new file mode 100644 index 0000000..e1d2005 Binary files /dev/null and b/data/CTR-ADW/icon.jpg differ diff --git a/data/CTR-ADX/art.jpg b/data/CTR-ADX/art.jpg new file mode 100644 index 0000000..9aa697e Binary files /dev/null and b/data/CTR-ADX/art.jpg differ diff --git a/data/CTR-ADX/data.yml b/data/CTR-ADX/data.yml new file mode 100644 index 0000000..78d49ce --- /dev/null +++ b/data/CTR-ADX/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016E600 + name: 'Shin Megami Tensei: Devil Survivor 2: Record Breaker' + updates: [] +- regions: + - JP + id: 00040000000C3A00 + name: デビルサバイバー2 ブレイクレコード + updates: + - id: 0004000E000C3A00 + name: 更新データ Ver. 1.1 デビルサバイバー2 ブレイクレコード +- regions: + - KR + id: 000400000015EC00 + name: 데빌 서바이버2 브레이크 레코드 + updates: + - id: 0004000E0015EC00 + name: 업데이트 데이터 Ver. 1.1 데빌 서바이버2 브레이크 레코드 +- regions: + - US + id: 0004000000159500 + name: 'Shin Megami Tensei: Devil Survivor 2: Record Breaker' + updates: [] diff --git a/data/CTR-ADX/icon.jpg b/data/CTR-ADX/icon.jpg new file mode 100644 index 0000000..3756204 Binary files /dev/null and b/data/CTR-ADX/icon.jpg differ diff --git a/data/CTR-ADY/art.jpg b/data/CTR-ADY/art.jpg new file mode 100644 index 0000000..26f3c10 Binary files /dev/null and b/data/CTR-ADY/art.jpg differ diff --git a/data/CTR-ADY/data.yml b/data/CTR-ADY/data.yml new file mode 100644 index 0000000..0ca0127 --- /dev/null +++ b/data/CTR-ADY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000111700 + name: ディズニーインフィニティ トイ・ボックス・チャレンジ + updates: [] diff --git a/data/CTR-ADY/icon.jpg b/data/CTR-ADY/icon.jpg new file mode 100644 index 0000000..80002e1 Binary files /dev/null and b/data/CTR-ADY/icon.jpg differ diff --git a/data/CTR-ADZ/art.jpg b/data/CTR-ADZ/art.jpg new file mode 100644 index 0000000..a57f9d8 Binary files /dev/null and b/data/CTR-ADZ/art.jpg differ diff --git a/data/CTR-ADZ/data.yml b/data/CTR-ADZ/data.yml new file mode 100644 index 0000000..f344ff5 --- /dev/null +++ b/data/CTR-ADZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000B3800 + name: でんぢゃらすじーさんと1000人のお友だち邪 + updates: [] diff --git a/data/CTR-ADZ/icon.jpg b/data/CTR-ADZ/icon.jpg new file mode 100644 index 0000000..aaaccdb Binary files /dev/null and b/data/CTR-ADZ/icon.jpg differ diff --git a/data/CTR-AE2/art.jpg b/data/CTR-AE2/art.jpg new file mode 100644 index 0000000..b6ddace Binary files /dev/null and b/data/CTR-AE2/art.jpg differ diff --git a/data/CTR-AE2/data.yml b/data/CTR-AE2/data.yml new file mode 100644 index 0000000..683b7f9 --- /dev/null +++ b/data/CTR-AE2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000061700 + name: PES 2012 3D + updates: [] +- regions: + - JP + id: 0004000000059F00 + name: ワールドサッカー ウイニングイレブン 2012 + updates: [] +- regions: + - US + id: 0004000000067500 + name: Pro Evolution Soccer 2012 3D + updates: [] diff --git a/data/CTR-AE2/icon.jpg b/data/CTR-AE2/icon.jpg new file mode 100644 index 0000000..1f5463e Binary files /dev/null and b/data/CTR-AE2/icon.jpg differ diff --git a/data/CTR-AE3/art.jpg b/data/CTR-AE3/art.jpg new file mode 100644 index 0000000..47ae5a7 Binary files /dev/null and b/data/CTR-AE3/art.jpg differ diff --git a/data/CTR-AE3/data.yml b/data/CTR-AE3/data.yml new file mode 100644 index 0000000..c5d3555 --- /dev/null +++ b/data/CTR-AE3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004BE00 + name: お茶犬といつもなかよし + updates: [] diff --git a/data/CTR-AE3/icon.jpg b/data/CTR-AE3/icon.jpg new file mode 100644 index 0000000..e655060 Binary files /dev/null and b/data/CTR-AE3/icon.jpg differ diff --git a/data/CTR-AE4/art.jpg b/data/CTR-AE4/art.jpg new file mode 100644 index 0000000..eacd0de Binary files /dev/null and b/data/CTR-AE4/art.jpg differ diff --git a/data/CTR-AE4/data.yml b/data/CTR-AE4/data.yml new file mode 100644 index 0000000..72ce125 --- /dev/null +++ b/data/CTR-AE4/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000112F00 + name: 'Inazuma Eleven® GO: Light' + updates: [] +- regions: + - JP + id: 000400000006D400 + name: イナズマイレブンGO シャイン + updates: [] diff --git a/data/CTR-AE4/icon.jpg b/data/CTR-AE4/icon.jpg new file mode 100644 index 0000000..7524f71 Binary files /dev/null and b/data/CTR-AE4/icon.jpg differ diff --git a/data/CTR-AED/art.jpg b/data/CTR-AED/art.jpg new file mode 100644 index 0000000..13ffc10 Binary files /dev/null and b/data/CTR-AED/art.jpg differ diff --git a/data/CTR-AED/data.yml b/data/CTR-AED/data.yml new file mode 100644 index 0000000..5a597a3 --- /dev/null +++ b/data/CTR-AED/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000113000 + name: 'Inazuma Eleven® GO: Shadow' + updates: [] +- regions: + - JP + id: 000400000006D300 + name: イナズマイレブンGO ダーク + updates: [] diff --git a/data/CTR-AED/icon.jpg b/data/CTR-AED/icon.jpg new file mode 100644 index 0000000..213875d Binary files /dev/null and b/data/CTR-AED/icon.jpg differ diff --git a/data/CTR-AEE/art.jpg b/data/CTR-AEE/art.jpg new file mode 100644 index 0000000..6316bbf Binary files /dev/null and b/data/CTR-AEE/art.jpg differ diff --git a/data/CTR-AEE/data.yml b/data/CTR-AEE/data.yml new file mode 100644 index 0000000..338bde6 --- /dev/null +++ b/data/CTR-AEE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000037C00 + name: PES 2011 3D + updates: [] +- regions: + - JP + id: 0004000000032900 + name: ウイニングイレブン 3DSoccer + updates: [] diff --git a/data/CTR-AEE/icon.jpg b/data/CTR-AEE/icon.jpg new file mode 100644 index 0000000..5063684 Binary files /dev/null and b/data/CTR-AEE/icon.jpg differ diff --git a/data/CTR-AEH/art.jpg b/data/CTR-AEH/art.jpg new file mode 100644 index 0000000..55fcb5e Binary files /dev/null and b/data/CTR-AEH/art.jpg differ diff --git a/data/CTR-AEH/data.yml b/data/CTR-AEH/data.yml new file mode 100644 index 0000000..323d599 --- /dev/null +++ b/data/CTR-AEH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000172100 + name: アナと雪の女王 オラフの贈りもの + updates: [] diff --git a/data/CTR-AEH/icon.jpg b/data/CTR-AEH/icon.jpg new file mode 100644 index 0000000..86481cf Binary files /dev/null and b/data/CTR-AEH/icon.jpg differ diff --git a/data/CTR-AEJ/art.jpg b/data/CTR-AEJ/art.jpg new file mode 100644 index 0000000..b168854 Binary files /dev/null and b/data/CTR-AEJ/art.jpg differ diff --git a/data/CTR-AEJ/data.yml b/data/CTR-AEJ/data.yml new file mode 100644 index 0000000..79622d4 --- /dev/null +++ b/data/CTR-AEJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F4300 + name: PAC-MAN and the Ghostly Adventures + updates: [] +- regions: + - JP + id: 00040000000F5400 + name: パックワールド + updates: [] +- regions: + - US + id: 00040000000F1200 + name: PAC-MAN and the Ghostly Adventures + updates: [] diff --git a/data/CTR-AEJ/icon.jpg b/data/CTR-AEJ/icon.jpg new file mode 100644 index 0000000..6c15aeb Binary files /dev/null and b/data/CTR-AEJ/icon.jpg differ diff --git a/data/CTR-AEK/art.jpg b/data/CTR-AEK/art.jpg new file mode 100644 index 0000000..91678c1 Binary files /dev/null and b/data/CTR-AEK/art.jpg differ diff --git a/data/CTR-AEK/data.yml b/data/CTR-AEK/data.yml new file mode 100644 index 0000000..804efb6 --- /dev/null +++ b/data/CTR-AEK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000A7800 + name: アイカツ!シンデレラレッスン + updates: [] diff --git a/data/CTR-AEK/icon.jpg b/data/CTR-AEK/icon.jpg new file mode 100644 index 0000000..abfbee5 Binary files /dev/null and b/data/CTR-AEK/icon.jpg differ diff --git a/data/CTR-AEN/art.jpg b/data/CTR-AEN/art.jpg new file mode 100644 index 0000000..466134e Binary files /dev/null and b/data/CTR-AEN/art.jpg differ diff --git a/data/CTR-AEN/data.yml b/data/CTR-AEN/data.yml new file mode 100644 index 0000000..1acdabc --- /dev/null +++ b/data/CTR-AEN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004BF00 + name: みんなの縁日 + updates: [] diff --git a/data/CTR-AEN/icon.jpg b/data/CTR-AEN/icon.jpg new file mode 100644 index 0000000..a5655fc Binary files /dev/null and b/data/CTR-AEN/icon.jpg differ diff --git a/data/CTR-AEP/art.jpg b/data/CTR-AEP/art.jpg new file mode 100644 index 0000000..c459b51 Binary files /dev/null and b/data/CTR-AEP/art.jpg differ diff --git a/data/CTR-AEP/data.yml b/data/CTR-AEP/data.yml new file mode 100644 index 0000000..05875b9 --- /dev/null +++ b/data/CTR-AEP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000005A000 + name: Earthpedia(アースペディア) + updates: [] diff --git a/data/CTR-AEP/icon.jpg b/data/CTR-AEP/icon.jpg new file mode 100644 index 0000000..9f607e6 Binary files /dev/null and b/data/CTR-AEP/icon.jpg differ diff --git a/data/CTR-AER/art.jpg b/data/CTR-AER/art.jpg new file mode 100644 index 0000000..ae7719d Binary files /dev/null and b/data/CTR-AER/art.jpg differ diff --git a/data/CTR-AER/data.yml b/data/CTR-AER/data.yml new file mode 100644 index 0000000..ed1b207 --- /dev/null +++ b/data/CTR-AER/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F1C00 + name: My Vet Practice 3D - In the Country + updates: [] diff --git a/data/CTR-AER/icon.jpg b/data/CTR-AER/icon.jpg new file mode 100644 index 0000000..0a13708 Binary files /dev/null and b/data/CTR-AER/icon.jpg differ diff --git a/data/CTR-AET/art.jpg b/data/CTR-AET/art.jpg new file mode 100644 index 0000000..e643e96 Binary files /dev/null and b/data/CTR-AET/art.jpg differ diff --git a/data/CTR-AET/data.yml b/data/CTR-AET/data.yml new file mode 100644 index 0000000..e6e189b --- /dev/null +++ b/data/CTR-AET/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000BB800 + name: イナズマイレブン1・2・3!! 円堂守伝説 + updates: + - id: 0004000E000BB800 + name: 更新データ Ver. 1.1 イナズマイレブン1・2・3!! 円堂守伝説 diff --git a/data/CTR-AET/icon.jpg b/data/CTR-AET/icon.jpg new file mode 100644 index 0000000..34be297 Binary files /dev/null and b/data/CTR-AET/icon.jpg differ diff --git a/data/CTR-AEU/art.jpg b/data/CTR-AEU/art.jpg new file mode 100644 index 0000000..7c394f1 Binary files /dev/null and b/data/CTR-AEU/art.jpg differ diff --git a/data/CTR-AEU/data.yml b/data/CTR-AEU/data.yml new file mode 100644 index 0000000..2e64feb --- /dev/null +++ b/data/CTR-AEU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000ACE00 + name: エルミナージュゴシック3D REMIX ~ウルム・ザキールと闇の儀式~ + updates: [] diff --git a/data/CTR-AEU/icon.jpg b/data/CTR-AEU/icon.jpg new file mode 100644 index 0000000..bb44c65 Binary files /dev/null and b/data/CTR-AEU/icon.jpg differ diff --git a/data/CTR-AEV/art.jpg b/data/CTR-AEV/art.jpg new file mode 100644 index 0000000..b100e75 Binary files /dev/null and b/data/CTR-AEV/art.jpg differ diff --git a/data/CTR-AEV/data.yml b/data/CTR-AEV/data.yml new file mode 100644 index 0000000..3eb5213 --- /dev/null +++ b/data/CTR-AEV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AE100 + name: 進撃の巨人 死地からの脱出 + updates: [] diff --git a/data/CTR-AEV/icon.jpg b/data/CTR-AEV/icon.jpg new file mode 100644 index 0000000..c49c7da Binary files /dev/null and b/data/CTR-AEV/icon.jpg differ diff --git a/data/CTR-AEW/art.jpg b/data/CTR-AEW/art.jpg new file mode 100644 index 0000000..c87bc58 Binary files /dev/null and b/data/CTR-AEW/art.jpg differ diff --git a/data/CTR-AEW/data.yml b/data/CTR-AEW/data.yml new file mode 100644 index 0000000..069bc7c --- /dev/null +++ b/data/CTR-AEW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000C8F00 + name: アンパンマンとあそぼ NEWあいうえお教室 + updates: [] diff --git a/data/CTR-AEW/icon.jpg b/data/CTR-AEW/icon.jpg new file mode 100644 index 0000000..9b40688 Binary files /dev/null and b/data/CTR-AEW/icon.jpg differ diff --git a/data/CTR-AEY/art.jpg b/data/CTR-AEY/art.jpg new file mode 100644 index 0000000..409ea1c Binary files /dev/null and b/data/CTR-AEY/art.jpg differ diff --git a/data/CTR-AEY/data.yml b/data/CTR-AEY/data.yml new file mode 100644 index 0000000..2b51944 --- /dev/null +++ b/data/CTR-AEY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F1D00 + name: My Baby Pet Hotel 3D + updates: [] diff --git a/data/CTR-AEY/icon.jpg b/data/CTR-AEY/icon.jpg new file mode 100644 index 0000000..9649fd7 Binary files /dev/null and b/data/CTR-AEY/icon.jpg differ diff --git a/data/CTR-AEZ/art.jpg b/data/CTR-AEZ/art.jpg new file mode 100644 index 0000000..e0cc190 Binary files /dev/null and b/data/CTR-AEZ/art.jpg differ diff --git a/data/CTR-AEZ/data.yml b/data/CTR-AEZ/data.yml new file mode 100644 index 0000000..3d507a1 --- /dev/null +++ b/data/CTR-AEZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000054D00 + name: ESSEらくらく家計簿 + updates: [] diff --git a/data/CTR-AEZ/icon.jpg b/data/CTR-AEZ/icon.jpg new file mode 100644 index 0000000..46d4e67 Binary files /dev/null and b/data/CTR-AEZ/icon.jpg differ diff --git a/data/CTR-AF3/art.jpg b/data/CTR-AF3/art.jpg new file mode 100644 index 0000000..df5deda Binary files /dev/null and b/data/CTR-AF3/art.jpg differ diff --git a/data/CTR-AF3/data.yml b/data/CTR-AF3/data.yml new file mode 100644 index 0000000..34715a8 --- /dev/null +++ b/data/CTR-AF3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000047800 + name: Imagine® Fashion Life + updates: [] diff --git a/data/CTR-AF3/icon.jpg b/data/CTR-AF3/icon.jpg new file mode 100644 index 0000000..a79a672 Binary files /dev/null and b/data/CTR-AF3/icon.jpg differ diff --git a/data/CTR-AF4/art.jpg b/data/CTR-AF4/art.jpg new file mode 100644 index 0000000..039b093 Binary files /dev/null and b/data/CTR-AF4/art.jpg differ diff --git a/data/CTR-AF4/data.yml b/data/CTR-AF4/data.yml new file mode 100644 index 0000000..8e0e1b9 --- /dev/null +++ b/data/CTR-AF4/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000006A600 + name: 'F1 2011™ ' + updates: [] +- regions: + - JP + id: 0004000000067B00 + name: F1 2011 + updates: [] diff --git a/data/CTR-AF4/icon.jpg b/data/CTR-AF4/icon.jpg new file mode 100644 index 0000000..88b1352 Binary files /dev/null and b/data/CTR-AF4/icon.jpg differ diff --git a/data/CTR-AF6/art.jpg b/data/CTR-AF6/art.jpg new file mode 100644 index 0000000..2ad0cea Binary files /dev/null and b/data/CTR-AF6/art.jpg differ diff --git a/data/CTR-AF6/data.yml b/data/CTR-AF6/data.yml new file mode 100644 index 0000000..4bcfc5b --- /dev/null +++ b/data/CTR-AF6/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2C00 + name: 50 Classic Games 3D + updates: [] +- regions: + - US + id: 00040000000BF300 + name: 50 Classic Games 3D + updates: [] diff --git a/data/CTR-AF6/icon.jpg b/data/CTR-AF6/icon.jpg new file mode 100644 index 0000000..01d3084 Binary files /dev/null and b/data/CTR-AF6/icon.jpg differ diff --git a/data/CTR-AFA/art.jpg b/data/CTR-AFA/art.jpg new file mode 100644 index 0000000..51a97bd Binary files /dev/null and b/data/CTR-AFA/art.jpg differ diff --git a/data/CTR-AFA/data.yml b/data/CTR-AFA/data.yml new file mode 100644 index 0000000..9600301 --- /dev/null +++ b/data/CTR-AFA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 00040000000DD800 + name: FISH ON 3D + updates: [] +- regions: + - JP + id: 000400000004B800 + name: FISH ON + updates: [] diff --git a/data/CTR-AFA/icon.jpg b/data/CTR-AFA/icon.jpg new file mode 100644 index 0000000..9965310 Binary files /dev/null and b/data/CTR-AFA/icon.jpg differ diff --git a/data/CTR-AFB/art.jpg b/data/CTR-AFB/art.jpg new file mode 100644 index 0000000..1d6550c Binary files /dev/null and b/data/CTR-AFB/art.jpg differ diff --git a/data/CTR-AFB/data.yml b/data/CTR-AFB/data.yml new file mode 100644 index 0000000..a3309f6 --- /dev/null +++ b/data/CTR-AFB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000066200 + name: Crash Time 3D + updates: [] diff --git a/data/CTR-AFB/icon.jpg b/data/CTR-AFB/icon.jpg new file mode 100644 index 0000000..0b27a16 Binary files /dev/null and b/data/CTR-AFB/icon.jpg differ diff --git a/data/CTR-AFC/art.jpg b/data/CTR-AFC/art.jpg new file mode 100644 index 0000000..accb331 Binary files /dev/null and b/data/CTR-AFC/art.jpg differ diff --git a/data/CTR-AFC/data.yml b/data/CTR-AFC/data.yml new file mode 100644 index 0000000..4c0d89d --- /dev/null +++ b/data/CTR-AFC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000037200 + name: 'Face Racers: Photo Finish' + updates: [] diff --git a/data/CTR-AFC/icon.jpg b/data/CTR-AFC/icon.jpg new file mode 100644 index 0000000..0ff8ddb Binary files /dev/null and b/data/CTR-AFC/icon.jpg differ diff --git a/data/CTR-AFD/art.jpg b/data/CTR-AFD/art.jpg new file mode 100644 index 0000000..855303c Binary files /dev/null and b/data/CTR-AFD/art.jpg differ diff --git a/data/CTR-AFD/data.yml b/data/CTR-AFD/data.yml new file mode 100644 index 0000000..7a4d1fc --- /dev/null +++ b/data/CTR-AFD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000044200 + name: 'Angler’s Club: Ultimate Bass Fishing™ 3D' + updates: [] +- regions: + - JP + id: 0004000000043F00 + name: フィッシング3D + updates: [] +- regions: + - US + id: 0004000000048200 + name: "Angler's Club: Ultimate Bass Fishing™ 3D" + updates: [] diff --git a/data/CTR-AFD/icon.jpg b/data/CTR-AFD/icon.jpg new file mode 100644 index 0000000..471765d Binary files /dev/null and b/data/CTR-AFD/icon.jpg differ diff --git a/data/CTR-AFE/art.jpg b/data/CTR-AFE/art.jpg new file mode 100644 index 0000000..5f451ef Binary files /dev/null and b/data/CTR-AFE/art.jpg differ diff --git a/data/CTR-AFE/data.yml b/data/CTR-AFE/data.yml new file mode 100644 index 0000000..996f612 --- /dev/null +++ b/data/CTR-AFE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000009F100 + name: 'Fire Emblem™: Awakening' + updates: [] +- regions: + - JP + id: 0004000000072000 + name: ファイアーエムブレム 覚醒 + updates: [] +- regions: + - US + id: 00040000000A0500 + name: Fire Emblem™ Awakening + updates: [] diff --git a/data/CTR-AFE/icon.jpg b/data/CTR-AFE/icon.jpg new file mode 100644 index 0000000..e7c10b0 Binary files /dev/null and b/data/CTR-AFE/icon.jpg differ diff --git a/data/CTR-AFF/art.jpg b/data/CTR-AFF/art.jpg new file mode 100644 index 0000000..65ac382 Binary files /dev/null and b/data/CTR-AFF/art.jpg differ diff --git a/data/CTR-AFF/data.yml b/data/CTR-AFF/data.yml new file mode 100644 index 0000000..67fb2e7 --- /dev/null +++ b/data/CTR-AFF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000005E900 + name: BRAVELY DEFAULT -FLYING FAIRY- + updates: + - id: 0004000E0005E900 + name: 更新データ Ver.1.1 BRAVELY DEFAULT -FLYING FAIRY- diff --git a/data/CTR-AFF/icon.jpg b/data/CTR-AFF/icon.jpg new file mode 100644 index 0000000..cd8ae3f Binary files /dev/null and b/data/CTR-AFF/icon.jpg differ diff --git a/data/CTR-AFH/art.jpg b/data/CTR-AFH/art.jpg new file mode 100644 index 0000000..9c7261a Binary files /dev/null and b/data/CTR-AFH/art.jpg differ diff --git a/data/CTR-AFH/data.yml b/data/CTR-AFH/data.yml new file mode 100644 index 0000000..acd385b --- /dev/null +++ b/data/CTR-AFH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 00040000000B6200 + name: 'Fast & Furious™: Showdown' + updates: [] diff --git a/data/CTR-AFH/icon.jpg b/data/CTR-AFH/icon.jpg new file mode 100644 index 0000000..b6fcac4 Binary files /dev/null and b/data/CTR-AFH/icon.jpg differ diff --git a/data/CTR-AFJ/art.jpg b/data/CTR-AFJ/art.jpg new file mode 100644 index 0000000..9a955cf Binary files /dev/null and b/data/CTR-AFJ/art.jpg differ diff --git a/data/CTR-AFJ/data.yml b/data/CTR-AFJ/data.yml new file mode 100644 index 0000000..193ef1d --- /dev/null +++ b/data/CTR-AFJ/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000102000 + name: The LEGO Movie Videogame + updates: + - id: 0004000E00102000 + name: The LEGO Movie Videogame Software Update +- regions: + - JP + id: 0004000000154100 + name: LEGO®ムービー ザ・ゲーム + updates: [] +- regions: + - US + id: 0004000000105A00 + name: The LEGO® Movie Videogame + updates: [] diff --git a/data/CTR-AFJ/icon.jpg b/data/CTR-AFJ/icon.jpg new file mode 100644 index 0000000..8458164 Binary files /dev/null and b/data/CTR-AFJ/icon.jpg differ diff --git a/data/CTR-AFL/art.jpg b/data/CTR-AFL/art.jpg new file mode 100644 index 0000000..1b8cc86 Binary files /dev/null and b/data/CTR-AFL/art.jpg differ diff --git a/data/CTR-AFL/data.yml b/data/CTR-AFL/data.yml new file mode 100644 index 0000000..e52c8ac --- /dev/null +++ b/data/CTR-AFL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000113100 + name: Fantasy Life™ + updates: [] +- regions: + - US + id: 0004000000113200 + name: Fantasy Life™ + updates: [] diff --git a/data/CTR-AFL/icon.jpg b/data/CTR-AFL/icon.jpg new file mode 100644 index 0000000..0e53f97 Binary files /dev/null and b/data/CTR-AFL/icon.jpg differ diff --git a/data/CTR-AFM/art.jpg b/data/CTR-AFM/art.jpg new file mode 100644 index 0000000..1a64d75 Binary files /dev/null and b/data/CTR-AFM/art.jpg differ diff --git a/data/CTR-AFM/data.yml b/data/CTR-AFM/data.yml new file mode 100644 index 0000000..8ddaecc --- /dev/null +++ b/data/CTR-AFM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000078600 + name: ハッピー☆アニマル牧場 + updates: [] diff --git a/data/CTR-AFM/icon.jpg b/data/CTR-AFM/icon.jpg new file mode 100644 index 0000000..63d26f7 Binary files /dev/null and b/data/CTR-AFM/icon.jpg differ diff --git a/data/CTR-AFN/art.jpg b/data/CTR-AFN/art.jpg new file mode 100644 index 0000000..e5c1703 Binary files /dev/null and b/data/CTR-AFN/art.jpg differ diff --git a/data/CTR-AFN/data.yml b/data/CTR-AFN/data.yml new file mode 100644 index 0000000..091d160 --- /dev/null +++ b/data/CTR-AFN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D6500 + name: Funfair Party Games + updates: [] +- regions: + - US + id: 00040000000C7600 + name: Funfair Party Games + updates: [] diff --git a/data/CTR-AFN/icon.jpg b/data/CTR-AFN/icon.jpg new file mode 100644 index 0000000..59c96c7 Binary files /dev/null and b/data/CTR-AFN/icon.jpg differ diff --git a/data/CTR-AFR/art.jpg b/data/CTR-AFR/art.jpg new file mode 100644 index 0000000..a2a9ddf Binary files /dev/null and b/data/CTR-AFR/art.jpg differ diff --git a/data/CTR-AFR/data.yml b/data/CTR-AFR/data.yml new file mode 100644 index 0000000..be3fc84 --- /dev/null +++ b/data/CTR-AFR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000056100 + name: Frogger 3D + updates: [] +- regions: + - JP + id: 0004000000053800 + name: フロッガー3D + updates: [] +- regions: + - US + id: 0004000000036900 + name: Frogger 3D + updates: [] diff --git a/data/CTR-AFR/icon.jpg b/data/CTR-AFR/icon.jpg new file mode 100644 index 0000000..ca997ff Binary files /dev/null and b/data/CTR-AFR/icon.jpg differ diff --git a/data/CTR-AFS/art.jpg b/data/CTR-AFS/art.jpg new file mode 100644 index 0000000..c51c777 Binary files /dev/null and b/data/CTR-AFS/art.jpg differ diff --git a/data/CTR-AFS/data.yml b/data/CTR-AFS/data.yml new file mode 100644 index 0000000..ff95d59 --- /dev/null +++ b/data/CTR-AFS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000039600 + name: プロ野球 ファミスタ2011 + updates: [] diff --git a/data/CTR-AFS/icon.jpg b/data/CTR-AFS/icon.jpg new file mode 100644 index 0000000..874b2b0 Binary files /dev/null and b/data/CTR-AFS/icon.jpg differ diff --git a/data/CTR-AFU/art.jpg b/data/CTR-AFU/art.jpg new file mode 100644 index 0000000..9645b96 Binary files /dev/null and b/data/CTR-AFU/art.jpg differ diff --git a/data/CTR-AFU/data.yml b/data/CTR-AFU/data.yml new file mode 100644 index 0000000..6bc1973 --- /dev/null +++ b/data/CTR-AFU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000C6500 + name: 初心者から日本一まで そろばん・あんざん・フラッシュ暗算 + updates: + - id: 0004000E000C6500 + name: 更新データ Ver. 1.1 初心者から日本一まで そろばん・あんざん・フラッシュ暗算 diff --git a/data/CTR-AFU/icon.jpg b/data/CTR-AFU/icon.jpg new file mode 100644 index 0000000..c0f85ae Binary files /dev/null and b/data/CTR-AFU/icon.jpg differ diff --git a/data/CTR-AFV/art.jpg b/data/CTR-AFV/art.jpg new file mode 100644 index 0000000..9148bb0 Binary files /dev/null and b/data/CTR-AFV/art.jpg differ diff --git a/data/CTR-AFV/data.yml b/data/CTR-AFV/data.yml new file mode 100644 index 0000000..6d92d4f --- /dev/null +++ b/data/CTR-AFV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000071D00 + name: FabStyle + updates: [] diff --git a/data/CTR-AFV/icon.jpg b/data/CTR-AFV/icon.jpg new file mode 100644 index 0000000..1919264 Binary files /dev/null and b/data/CTR-AFV/icon.jpg differ diff --git a/data/CTR-AFW/art.jpg b/data/CTR-AFW/art.jpg new file mode 100644 index 0000000..7bdc721 Binary files /dev/null and b/data/CTR-AFW/art.jpg differ diff --git a/data/CTR-AFW/data.yml b/data/CTR-AFW/data.yml new file mode 100644 index 0000000..eacf332 --- /dev/null +++ b/data/CTR-AFW/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001C1D00 + name: 'Sushi Striker™: The Way of Sushido' + updates: [] +- regions: + - JP + id: 0004000000196700 + name: 超回転 寿司ストライカー The Way of Sushido + updates: + - id: 0004000E00196700 + name: 更新データ Ver. 1.1.0 超回転 寿司ストライカー The Way of Sushido +- regions: + - US + id: 00040000001C1C00 + name: 'Sushi Striker™: The Way of Sushido' + updates: [] diff --git a/data/CTR-AFW/icon.jpg b/data/CTR-AFW/icon.jpg new file mode 100644 index 0000000..17d4707 Binary files /dev/null and b/data/CTR-AFW/icon.jpg differ diff --git a/data/CTR-AFX/art.jpg b/data/CTR-AFX/art.jpg new file mode 100644 index 0000000..182ad05 Binary files /dev/null and b/data/CTR-AFX/art.jpg differ diff --git a/data/CTR-AFX/data.yml b/data/CTR-AFX/data.yml new file mode 100644 index 0000000..f578cdc --- /dev/null +++ b/data/CTR-AFX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000118700 + name: 'Hollywood Fame: Hidden Object Adventure ' + updates: [] +- regions: + - US + id: 000400000011D300 + name: 'Hollywood Fame: Hidden Object Adventure' + updates: [] diff --git a/data/CTR-AFX/icon.jpg b/data/CTR-AFX/icon.jpg new file mode 100644 index 0000000..81d40ac Binary files /dev/null and b/data/CTR-AFX/icon.jpg differ diff --git a/data/CTR-AFZ/art.jpg b/data/CTR-AFZ/art.jpg new file mode 100644 index 0000000..f950fd2 Binary files /dev/null and b/data/CTR-AFZ/art.jpg differ diff --git a/data/CTR-AFZ/data.yml b/data/CTR-AFZ/data.yml new file mode 100644 index 0000000..ab1b33f --- /dev/null +++ b/data/CTR-AFZ/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B1700 + name: Phonics Fun with Biff, Chip & Kipper vol. 1 + updates: + - id: 0004000E000B1700 + name: 'Phonics Fun with Biff, Chip & Kipper vol. 1: Update' +- regions: + - JP + id: 00040000000D4300 + name: キッパーのえいご教室 Floppy's Phonics vol.1 キッパー編 + updates: + - id: 0004000E000D4300 + name: 更新データ Ver. 1.1 キッパーのえいご教室 Floppy's Phonics 1 キッパー編 diff --git a/data/CTR-AFZ/icon.jpg b/data/CTR-AFZ/icon.jpg new file mode 100644 index 0000000..8bdd518 Binary files /dev/null and b/data/CTR-AFZ/icon.jpg differ diff --git a/data/CTR-AG2/art.jpg b/data/CTR-AG2/art.jpg new file mode 100644 index 0000000..aaae8a2 Binary files /dev/null and b/data/CTR-AG2/art.jpg differ diff --git a/data/CTR-AG2/data.yml b/data/CTR-AG2/data.yml new file mode 100644 index 0000000..02550c6 --- /dev/null +++ b/data/CTR-AG2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D5D00 + name: 3D MahJongg + updates: [] +- regions: + - JP + id: 000400000011FF00 + name: 上海3D + updates: [] +- regions: + - US + id: 00040000000C1000 + name: 3D MahJongg + updates: [] diff --git a/data/CTR-AG2/icon.jpg b/data/CTR-AG2/icon.jpg new file mode 100644 index 0000000..e3edc5e Binary files /dev/null and b/data/CTR-AG2/icon.jpg differ diff --git a/data/CTR-AG3/art.jpg b/data/CTR-AG3/art.jpg new file mode 100644 index 0000000..2495d79 Binary files /dev/null and b/data/CTR-AG3/art.jpg differ diff --git a/data/CTR-AG3/data.yml b/data/CTR-AG3/data.yml new file mode 100644 index 0000000..f9d6c9d --- /dev/null +++ b/data/CTR-AG3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000005F500 + name: Gabrielle's Ghostly Groove 3D + updates: [] +- regions: + - JP + id: 0004000000046A00 + name: うしみつモンストルオ リンゼと魔法のリズム + updates: [] +- regions: + - US + id: 0004000000046400 + name: Gabrielle's Ghostly Groove™ 3D + updates: [] diff --git a/data/CTR-AG3/icon.jpg b/data/CTR-AG3/icon.jpg new file mode 100644 index 0000000..280e230 Binary files /dev/null and b/data/CTR-AG3/icon.jpg differ diff --git a/data/CTR-AG4/art.jpg b/data/CTR-AG4/art.jpg new file mode 100644 index 0000000..bfe92e3 Binary files /dev/null and b/data/CTR-AG4/art.jpg differ diff --git a/data/CTR-AG4/data.yml b/data/CTR-AG4/data.yml new file mode 100644 index 0000000..855ee86 --- /dev/null +++ b/data/CTR-AG4/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AE500 + name: ピカピカナース物語 小児科はいつも大騒ぎ + updates: + - id: 0004000E001AE500 + name: 更新データ Ver. 1.1 ピカピカ ナース物語 小児科はいつも大騒ぎ diff --git a/data/CTR-AG4/icon.jpg b/data/CTR-AG4/icon.jpg new file mode 100644 index 0000000..6636d5a Binary files /dev/null and b/data/CTR-AG4/icon.jpg differ diff --git a/data/CTR-AG5/art.jpg b/data/CTR-AG5/art.jpg new file mode 100644 index 0000000..671e6d3 Binary files /dev/null and b/data/CTR-AG5/art.jpg differ diff --git a/data/CTR-AG5/data.yml b/data/CTR-AG5/data.yml new file mode 100644 index 0000000..bf12c60 --- /dev/null +++ b/data/CTR-AG5/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000A5F00 + name: 'Paper Mario™: Sticker Star' + updates: [] +- regions: + - JP + id: 00040000000A5D00 + name: ペーパーマリオ スーパーシール + updates: [] +- regions: + - KR + id: 00040000000C6800 + name: 페이퍼 마리오 스티커 스타 + updates: [] +- regions: + - TW + id: 00040000000C8100 + name: 紙片瑪利歐 超級貼紙 + updates: [] +- regions: + - US + id: 00040000000A5E00 + name: 'Paper Mario™: Sticker Star' + updates: [] diff --git a/data/CTR-AG5/icon.jpg b/data/CTR-AG5/icon.jpg new file mode 100644 index 0000000..e88ff1e Binary files /dev/null and b/data/CTR-AG5/icon.jpg differ diff --git a/data/CTR-AG6/art.jpg b/data/CTR-AG6/art.jpg new file mode 100644 index 0000000..c77cb22 Binary files /dev/null and b/data/CTR-AG6/art.jpg differ diff --git a/data/CTR-AG6/data.yml b/data/CTR-AG6/data.yml new file mode 100644 index 0000000..222ff4a --- /dev/null +++ b/data/CTR-AG6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000091D00 + name: Skylanders Giants™ + updates: [] diff --git a/data/CTR-AG6/icon.jpg b/data/CTR-AG6/icon.jpg new file mode 100644 index 0000000..6b3ad8f Binary files /dev/null and b/data/CTR-AG6/icon.jpg differ diff --git a/data/CTR-AG7/art.jpg b/data/CTR-AG7/art.jpg new file mode 100644 index 0000000..af277dd Binary files /dev/null and b/data/CTR-AG7/art.jpg differ diff --git a/data/CTR-AG7/data.yml b/data/CTR-AG7/data.yml new file mode 100644 index 0000000..8fba438 --- /dev/null +++ b/data/CTR-AG7/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000074700 + name: ゴン バクバクバクバクアドベンチャー + updates: [] +- regions: + - KR + id: 00040000000BC800 + name: 곤 와구와구 어드벤처 + updates: [] diff --git a/data/CTR-AG7/icon.jpg b/data/CTR-AG7/icon.jpg new file mode 100644 index 0000000..d1c6fcd Binary files /dev/null and b/data/CTR-AG7/icon.jpg differ diff --git a/data/CTR-AG8/art.jpg b/data/CTR-AG8/art.jpg new file mode 100644 index 0000000..0489621 Binary files /dev/null and b/data/CTR-AG8/art.jpg differ diff --git a/data/CTR-AG8/data.yml b/data/CTR-AG8/data.yml new file mode 100644 index 0000000..35ff48b --- /dev/null +++ b/data/CTR-AG8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000110900 + name: Gardenscapes つくろう!大庭園 + updates: [] +- regions: + - US + id: 00040000000C0E00 + name: Gardenscapes + updates: [] diff --git a/data/CTR-AG8/icon.jpg b/data/CTR-AG8/icon.jpg new file mode 100644 index 0000000..6d7376b Binary files /dev/null and b/data/CTR-AG8/icon.jpg differ diff --git a/data/CTR-AG9/art.jpg b/data/CTR-AG9/art.jpg new file mode 100644 index 0000000..a796aa6 Binary files /dev/null and b/data/CTR-AG9/art.jpg differ diff --git a/data/CTR-AG9/data.yml b/data/CTR-AG9/data.yml new file mode 100644 index 0000000..5b92489 --- /dev/null +++ b/data/CTR-AG9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000082900 + name: GUILD01 + updates: [] diff --git a/data/CTR-AG9/icon.jpg b/data/CTR-AG9/icon.jpg new file mode 100644 index 0000000..20f2692 Binary files /dev/null and b/data/CTR-AG9/icon.jpg differ diff --git a/data/CTR-AGA/art.jpg b/data/CTR-AGA/art.jpg new file mode 100644 index 0000000..df7e430 Binary files /dev/null and b/data/CTR-AGA/art.jpg differ diff --git a/data/CTR-AGA/data.yml b/data/CTR-AGA/data.yml new file mode 100644 index 0000000..89b7c13 --- /dev/null +++ b/data/CTR-AGA/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000007C800 + name: MARIO TENNIS™ OPEN + updates: [] +- regions: + - JP + id: 0004000000064D00 + name: マリオテニス オープン + updates: [] +- regions: + - KR + id: 00040000000B8800 + name: 마리오 테니스 오픈 + updates: [] +- regions: + - TW + id: 00040000000B9100 + name: 瑪利歐網球 公開賽 + updates: [] +- regions: + - US + id: 000400000007C700 + name: Mario Tennis™ Open + updates: [] diff --git a/data/CTR-AGA/icon.jpg b/data/CTR-AGA/icon.jpg new file mode 100644 index 0000000..b679818 Binary files /dev/null and b/data/CTR-AGA/icon.jpg differ diff --git a/data/CTR-AGF/art.jpg b/data/CTR-AGF/art.jpg new file mode 100644 index 0000000..03518a4 Binary files /dev/null and b/data/CTR-AGF/art.jpg differ diff --git a/data/CTR-AGF/data.yml b/data/CTR-AGF/data.yml new file mode 100644 index 0000000..b3fb305 --- /dev/null +++ b/data/CTR-AGF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014D900 + name: Gravity Falls - Legend of the Gnome Gemulets + updates: [] diff --git a/data/CTR-AGF/icon.jpg b/data/CTR-AGF/icon.jpg new file mode 100644 index 0000000..ddfddae Binary files /dev/null and b/data/CTR-AGF/icon.jpg differ diff --git a/data/CTR-AGG/art.jpg b/data/CTR-AGG/art.jpg new file mode 100644 index 0000000..54531a1 Binary files /dev/null and b/data/CTR-AGG/art.jpg differ diff --git a/data/CTR-AGG/data.yml b/data/CTR-AGG/data.yml new file mode 100644 index 0000000..4f0313b --- /dev/null +++ b/data/CTR-AGG/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000076500 + name: Luigi’s Mansion™ 2 + updates: [] +- regions: + - JP + id: 0004000000076400 + name: ルイージマンション2 + updates: [] +- regions: + - KR + id: 00040000000CFF00 + name: 루이지 맨션 다크 문 + updates: [] +- regions: + - TW + id: 00040000000D0000 + name: 路易吉洋樓2 + updates: [] +- regions: + - US + id: 0004000000055F00 + name: "Luigi's Mansion™: Dark Moon " + updates: [] diff --git a/data/CTR-AGG/icon.jpg b/data/CTR-AGG/icon.jpg new file mode 100644 index 0000000..8d9dd94 Binary files /dev/null and b/data/CTR-AGG/icon.jpg differ diff --git a/data/CTR-AGH/art.jpg b/data/CTR-AGH/art.jpg new file mode 100644 index 0000000..dac957b Binary files /dev/null and b/data/CTR-AGH/art.jpg differ diff --git a/data/CTR-AGH/data.yml b/data/CTR-AGH/data.yml new file mode 100644 index 0000000..982aca8 --- /dev/null +++ b/data/CTR-AGH/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145500 + name: 役満 鳳凰 + updates: + - id: 0004000E00145500 + name: 更新データ Ver. 1.1.1 役満 鳳凰 diff --git a/data/CTR-AGH/icon.jpg b/data/CTR-AGH/icon.jpg new file mode 100644 index 0000000..fed700a Binary files /dev/null and b/data/CTR-AGH/icon.jpg differ diff --git a/data/CTR-AGJ/art.jpg b/data/CTR-AGJ/art.jpg new file mode 100644 index 0000000..e85ede1 Binary files /dev/null and b/data/CTR-AGJ/art.jpg differ diff --git a/data/CTR-AGJ/data.yml b/data/CTR-AGJ/data.yml new file mode 100644 index 0000000..c5db5ce --- /dev/null +++ b/data/CTR-AGJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000071A00 + name: SDガンダム GGENERATION 3D + updates: [] diff --git a/data/CTR-AGJ/icon.jpg b/data/CTR-AGJ/icon.jpg new file mode 100644 index 0000000..39af5bd Binary files /dev/null and b/data/CTR-AGJ/icon.jpg differ diff --git a/data/CTR-AGK/art.jpg b/data/CTR-AGK/art.jpg new file mode 100644 index 0000000..f4d804b Binary files /dev/null and b/data/CTR-AGK/art.jpg differ diff --git a/data/CTR-AGK/data.yml b/data/CTR-AGK/data.yml new file mode 100644 index 0000000..b193e2d --- /dev/null +++ b/data/CTR-AGK/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F1E00 + name: 'Phoenix Wright™: Ace Attorney™ – Dual Destinies' + updates: [] +- regions: + - JP + id: 00040000000BAA00 + name: 逆転裁判5 + updates: [] +- regions: + - KR + id: 00040000000FEB00 + name: 'Phoenix Wright: Ace Attorney - Dual Destinies' + updates: [] +- regions: + - TW + id: 00040000000FD300 + name: 逆轉裁判 5 (英文版) + updates: [] +- regions: + - US + id: 00040000000F1400 + name: 'Phoenix Wright®: Ace Attorney® - Dual Destinies' + updates: [] diff --git a/data/CTR-AGK/icon.jpg b/data/CTR-AGK/icon.jpg new file mode 100644 index 0000000..5b81177 Binary files /dev/null and b/data/CTR-AGK/icon.jpg differ diff --git a/data/CTR-AGL/art.jpg b/data/CTR-AGL/art.jpg new file mode 100644 index 0000000..a543fae Binary files /dev/null and b/data/CTR-AGL/art.jpg differ diff --git a/data/CTR-AGL/data.yml b/data/CTR-AGL/data.yml new file mode 100644 index 0000000..55c1965 --- /dev/null +++ b/data/CTR-AGL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000035300 + name: 'Green Lantern™: Rise of the Manhunters' + updates: [] diff --git a/data/CTR-AGL/icon.jpg b/data/CTR-AGL/icon.jpg new file mode 100644 index 0000000..6101311 Binary files /dev/null and b/data/CTR-AGL/icon.jpg differ diff --git a/data/CTR-AGP/art.jpg b/data/CTR-AGP/art.jpg new file mode 100644 index 0000000..5c0a6d8 Binary files /dev/null and b/data/CTR-AGP/art.jpg differ diff --git a/data/CTR-AGP/data.yml b/data/CTR-AGP/data.yml new file mode 100644 index 0000000..24d7313 --- /dev/null +++ b/data/CTR-AGP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000168900 + name: Garfield Kart + updates: [] +- regions: + - US + id: 0004000000169800 + name: Garfield Kart + updates: [] diff --git a/data/CTR-AGP/icon.jpg b/data/CTR-AGP/icon.jpg new file mode 100644 index 0000000..14b0c56 Binary files /dev/null and b/data/CTR-AGP/icon.jpg differ diff --git a/data/CTR-AGQ/art.jpg b/data/CTR-AGQ/art.jpg new file mode 100644 index 0000000..ec98c7d Binary files /dev/null and b/data/CTR-AGQ/art.jpg differ diff --git a/data/CTR-AGQ/data.yml b/data/CTR-AGQ/data.yml new file mode 100644 index 0000000..2d4dedb --- /dev/null +++ b/data/CTR-AGQ/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000197100 + name: モンスターハンターダブルクロス + updates: + - id: 0004000E00197100 + name: 更新データ Ver. 1.4.0 モンスターハンターダブルクロス +- regions: + - TW + id: 00040000001B8100 + name: MONSTER HUNTER XX™ (日文版) + updates: + - id: 0004000E001B8100 + name: 更新資料 Ver. 1.4.0 MONSTER HUNTER XX diff --git a/data/CTR-AGQ/icon.jpg b/data/CTR-AGQ/icon.jpg new file mode 100644 index 0000000..38fee87 Binary files /dev/null and b/data/CTR-AGQ/icon.jpg differ diff --git a/data/CTR-AGR/art.jpg b/data/CTR-AGR/art.jpg new file mode 100644 index 0000000..084aace Binary files /dev/null and b/data/CTR-AGR/art.jpg differ diff --git a/data/CTR-AGR/data.yml b/data/CTR-AGR/data.yml new file mode 100644 index 0000000..5f86d1d --- /dev/null +++ b/data/CTR-AGR/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000037500 + name: Tom Clancy's Ghost Recon® Shadow Wars + updates: [] +- regions: + - JP + id: 0004000000034600 + name: ゴーストリコン シャドーウォー + updates: [] +- regions: + - KR + id: 00040000000C7F00 + name: 톰 클랜시의 고스트 리콘 섀도우 워즈 + updates: [] +- regions: + - US + id: 0004000000035A00 + name: Tom Clancy’s Ghost Recon® Shadow Wars + updates: [] diff --git a/data/CTR-AGR/icon.jpg b/data/CTR-AGR/icon.jpg new file mode 100644 index 0000000..d953deb Binary files /dev/null and b/data/CTR-AGR/icon.jpg differ diff --git a/data/CTR-AGT/art.jpg b/data/CTR-AGT/art.jpg new file mode 100644 index 0000000..b97e546 Binary files /dev/null and b/data/CTR-AGT/art.jpg differ diff --git a/data/CTR-AGT/data.yml b/data/CTR-AGT/data.yml new file mode 100644 index 0000000..0342db3 --- /dev/null +++ b/data/CTR-AGT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000043B00 + name: 'Thor™: God of Thunder' + updates: [] +- regions: + - US + id: 0004000000040500 + name: 'Thor™: God of Thunder' + updates: [] diff --git a/data/CTR-AGT/icon.jpg b/data/CTR-AGT/icon.jpg new file mode 100644 index 0000000..1dd6787 Binary files /dev/null and b/data/CTR-AGT/icon.jpg differ diff --git a/data/CTR-AGU/art.jpg b/data/CTR-AGU/art.jpg new file mode 100644 index 0000000..4e95310 Binary files /dev/null and b/data/CTR-AGU/art.jpg differ diff --git a/data/CTR-AGU/data.yml b/data/CTR-AGU/data.yml new file mode 100644 index 0000000..61fc406 --- /dev/null +++ b/data/CTR-AGU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000065D00 + name: ガールズファッション3D☆ めざせ!トップスタイリスト + updates: [] diff --git a/data/CTR-AGU/icon.jpg b/data/CTR-AGU/icon.jpg new file mode 100644 index 0000000..73a4ddf Binary files /dev/null and b/data/CTR-AGU/icon.jpg differ diff --git a/data/CTR-AGV/art.jpg b/data/CTR-AGV/art.jpg new file mode 100644 index 0000000..f57726d Binary files /dev/null and b/data/CTR-AGV/art.jpg differ diff --git a/data/CTR-AGV/data.yml b/data/CTR-AGV/data.yml new file mode 100644 index 0000000..1725831 --- /dev/null +++ b/data/CTR-AGV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000092000 + name: Gummy Bears Magical Medallion + updates: [] +- regions: + - US + id: 00040000000CFC00 + name: Gummy Bears Magical Medallion + updates: [] diff --git a/data/CTR-AGV/icon.jpg b/data/CTR-AGV/icon.jpg new file mode 100644 index 0000000..b8e32ff Binary files /dev/null and b/data/CTR-AGV/icon.jpg differ diff --git a/data/CTR-AGW/art.jpg b/data/CTR-AGW/art.jpg new file mode 100644 index 0000000..6ad6e25 Binary files /dev/null and b/data/CTR-AGW/art.jpg differ diff --git a/data/CTR-AGW/data.yml b/data/CTR-AGW/data.yml new file mode 100644 index 0000000..c49f23b --- /dev/null +++ b/data/CTR-AGW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000D8F00 + name: まめゴマ はっぴー!スイーツファーム + updates: + - id: 0004000E000D8F00 + name: 更新データ Ver. 1.1 まめゴマ はっぴー!スイーツファーム diff --git a/data/CTR-AGW/icon.jpg b/data/CTR-AGW/icon.jpg new file mode 100644 index 0000000..d6470a4 Binary files /dev/null and b/data/CTR-AGW/icon.jpg differ diff --git a/data/CTR-AGX/art.jpg b/data/CTR-AGX/art.jpg new file mode 100644 index 0000000..f42dcdb Binary files /dev/null and b/data/CTR-AGX/art.jpg differ diff --git a/data/CTR-AGX/data.yml b/data/CTR-AGX/data.yml new file mode 100644 index 0000000..a4dcc14 --- /dev/null +++ b/data/CTR-AGX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000036C00 + name: 'Generator Rex: Agent of Providence' + updates: [] diff --git a/data/CTR-AGX/icon.jpg b/data/CTR-AGX/icon.jpg new file mode 100644 index 0000000..a779183 Binary files /dev/null and b/data/CTR-AGX/icon.jpg differ diff --git a/data/CTR-AGY/art.jpg b/data/CTR-AGY/art.jpg new file mode 100644 index 0000000..c1a70a5 Binary files /dev/null and b/data/CTR-AGY/art.jpg differ diff --git a/data/CTR-AGY/data.yml b/data/CTR-AGY/data.yml new file mode 100644 index 0000000..a065b98 --- /dev/null +++ b/data/CTR-AGY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000ACC00 + name: ガイストクラッシャー + updates: [] diff --git a/data/CTR-AGY/icon.jpg b/data/CTR-AGY/icon.jpg new file mode 100644 index 0000000..4af9142 Binary files /dev/null and b/data/CTR-AGY/icon.jpg differ diff --git a/data/CTR-AH4/art.jpg b/data/CTR-AH4/art.jpg new file mode 100644 index 0000000..19407e0 Binary files /dev/null and b/data/CTR-AH4/art.jpg differ diff --git a/data/CTR-AH4/data.yml b/data/CTR-AH4/data.yml new file mode 100644 index 0000000..1d4a93e --- /dev/null +++ b/data/CTR-AH4/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004B500 + name: モンスターハンター4 + updates: + - id: 0004000E0004B500 + name: 更新データ Ver. 1.1 モンスターハンター4 +- regions: + - KR + id: 0004000000105000 + name: 몬스터헌터 4 + updates: + - id: 0004000E00105000 + name: 업데이트 데이터 Ver. 1.1 몬스터헌터 4 +- regions: + - TW + id: 0004000000100900 + name: MONSTER HUNTER 4 (日文版) + updates: + - id: 0004000E00100900 + name: 更新資料 Ver. 1.1 MONSTER HUNTER 4 diff --git a/data/CTR-AH4/icon.jpg b/data/CTR-AH4/icon.jpg new file mode 100644 index 0000000..49214bc Binary files /dev/null and b/data/CTR-AH4/icon.jpg differ diff --git a/data/CTR-AH6/art.jpg b/data/CTR-AH6/art.jpg new file mode 100644 index 0000000..b2ff0b4 Binary files /dev/null and b/data/CTR-AH6/art.jpg differ diff --git a/data/CTR-AH6/data.yml b/data/CTR-AH6/data.yml new file mode 100644 index 0000000..8a137c8 --- /dev/null +++ b/data/CTR-AH6/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000074000 + name: Heroes of Ruin™ + updates: [] +- regions: + - US + id: 0004000000075100 + name: Heroes of Ruin™ + updates: [] diff --git a/data/CTR-AH6/icon.jpg b/data/CTR-AH6/icon.jpg new file mode 100644 index 0000000..5f581de Binary files /dev/null and b/data/CTR-AH6/icon.jpg differ diff --git a/data/CTR-AH7/art.jpg b/data/CTR-AH7/art.jpg new file mode 100644 index 0000000..2952815 Binary files /dev/null and b/data/CTR-AH7/art.jpg differ diff --git a/data/CTR-AH7/data.yml b/data/CTR-AH7/data.yml new file mode 100644 index 0000000..8442004 --- /dev/null +++ b/data/CTR-AH7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000071E00 + name: ぼくは航空管制官 エアポート ヒーロー3D 羽田 with JAL + updates: [] diff --git a/data/CTR-AH7/icon.jpg b/data/CTR-AH7/icon.jpg new file mode 100644 index 0000000..d3ee226 Binary files /dev/null and b/data/CTR-AH7/icon.jpg differ diff --git a/data/CTR-AH8/art.jpg b/data/CTR-AH8/art.jpg new file mode 100644 index 0000000..14914f7 Binary files /dev/null and b/data/CTR-AH8/art.jpg differ diff --git a/data/CTR-AH8/data.yml b/data/CTR-AH8/data.yml new file mode 100644 index 0000000..7ecb9a7 --- /dev/null +++ b/data/CTR-AH8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 00040000000A2600 + name: Hotel Transylvania + updates: [] diff --git a/data/CTR-AH8/icon.jpg b/data/CTR-AH8/icon.jpg new file mode 100644 index 0000000..3f46f5d Binary files /dev/null and b/data/CTR-AH8/icon.jpg differ diff --git a/data/CTR-AH9/art.jpg b/data/CTR-AH9/art.jpg new file mode 100644 index 0000000..4705a7f Binary files /dev/null and b/data/CTR-AH9/art.jpg differ diff --git a/data/CTR-AH9/data.yml b/data/CTR-AH9/data.yml new file mode 100644 index 0000000..98f5fe5 --- /dev/null +++ b/data/CTR-AH9/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000FCE00 + name: Hakuoki + updates: + - id: 0004000E000FCE00 + name: 'Hakuoki: Memories of the Shinsengumi Update' +- regions: + - JP + id: 000400000005DD00 + name: 薄桜鬼 3D + updates: [] +- regions: + - US + id: 00040000000DD900 + name: 'Hakuoki: Memories of the Shinsengumi' + updates: + - id: 0004000E000DD900 + name: 'Hakuoki: Memories of the Shinsengumi Update' diff --git a/data/CTR-AH9/icon.jpg b/data/CTR-AH9/icon.jpg new file mode 100644 index 0000000..0b58d16 Binary files /dev/null and b/data/CTR-AH9/icon.jpg differ diff --git a/data/CTR-AHA/art.jpg b/data/CTR-AHA/art.jpg new file mode 100644 index 0000000..24977d4 Binary files /dev/null and b/data/CTR-AHA/art.jpg differ diff --git a/data/CTR-AHA/data.yml b/data/CTR-AHA/data.yml new file mode 100644 index 0000000..a595ecb --- /dev/null +++ b/data/CTR-AHA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000D4000 + name: シャーロック・ホームズ パズルシティ + updates: [] diff --git a/data/CTR-AHA/icon.jpg b/data/CTR-AHA/icon.jpg new file mode 100644 index 0000000..bee84bc Binary files /dev/null and b/data/CTR-AHA/icon.jpg differ diff --git a/data/CTR-AHB/art.jpg b/data/CTR-AHB/art.jpg new file mode 100644 index 0000000..80a2b3e Binary files /dev/null and b/data/CTR-AHB/art.jpg differ diff --git a/data/CTR-AHB/data.yml b/data/CTR-AHB/data.yml new file mode 100644 index 0000000..72956d9 --- /dev/null +++ b/data/CTR-AHB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000106200 + name: Nintendo Pocket Football Club™ + updates: [] +- regions: + - JP + id: 0004000000039B00 + name: ポケットサッカーリーグ カルチョビット + updates: [] diff --git a/data/CTR-AHB/icon.jpg b/data/CTR-AHB/icon.jpg new file mode 100644 index 0000000..58f89ac Binary files /dev/null and b/data/CTR-AHB/icon.jpg differ diff --git a/data/CTR-AHC/art.jpg b/data/CTR-AHC/art.jpg new file mode 100644 index 0000000..c5abab1 Binary files /dev/null and b/data/CTR-AHC/art.jpg differ diff --git a/data/CTR-AHC/data.yml b/data/CTR-AHC/data.yml new file mode 100644 index 0000000..14d49d5 --- /dev/null +++ b/data/CTR-AHC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000036100 + name: James Noir's Hollywood Crimes™ + updates: [] diff --git a/data/CTR-AHC/icon.jpg b/data/CTR-AHC/icon.jpg new file mode 100644 index 0000000..a4de57b Binary files /dev/null and b/data/CTR-AHC/icon.jpg differ diff --git a/data/CTR-AHD/art.jpg b/data/CTR-AHD/art.jpg new file mode 100644 index 0000000..0c9c7bf Binary files /dev/null and b/data/CTR-AHD/art.jpg differ diff --git a/data/CTR-AHD/data.yml b/data/CTR-AHD/data.yml new file mode 100644 index 0000000..bfebfdb --- /dev/null +++ b/data/CTR-AHD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000037300 + name: The Hidden + updates: [] diff --git a/data/CTR-AHD/icon.jpg b/data/CTR-AHD/icon.jpg new file mode 100644 index 0000000..8a81a11 Binary files /dev/null and b/data/CTR-AHD/icon.jpg differ diff --git a/data/CTR-AHE/art.jpg b/data/CTR-AHE/art.jpg new file mode 100644 index 0000000..0a0d014 Binary files /dev/null and b/data/CTR-AHE/art.jpg differ diff --git a/data/CTR-AHE/data.yml b/data/CTR-AHE/data.yml new file mode 100644 index 0000000..8e5c49b --- /dev/null +++ b/data/CTR-AHE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 000400000009C900 + name: Spy Hunter™ + updates: [] diff --git a/data/CTR-AHE/icon.jpg b/data/CTR-AHE/icon.jpg new file mode 100644 index 0000000..d2f1484 Binary files /dev/null and b/data/CTR-AHE/icon.jpg differ diff --git a/data/CTR-AHG/art.jpg b/data/CTR-AHG/art.jpg new file mode 100644 index 0000000..3b88085 Binary files /dev/null and b/data/CTR-AHG/art.jpg differ diff --git a/data/CTR-AHG/data.yml b/data/CTR-AHG/data.yml new file mode 100644 index 0000000..6323161 --- /dev/null +++ b/data/CTR-AHG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000006DB00 + name: 姫ギャル♥パラダイス メチカワ! アゲ盛り↑センセーション! + updates: [] diff --git a/data/CTR-AHG/icon.jpg b/data/CTR-AHG/icon.jpg new file mode 100644 index 0000000..7a9a31d Binary files /dev/null and b/data/CTR-AHG/icon.jpg differ diff --git a/data/CTR-AHK/art.jpg b/data/CTR-AHK/art.jpg new file mode 100644 index 0000000..5467bf6 Binary files /dev/null and b/data/CTR-AHK/art.jpg differ diff --git a/data/CTR-AHK/data.yml b/data/CTR-AHK/data.yml new file mode 100644 index 0000000..025ae96 --- /dev/null +++ b/data/CTR-AHK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B7600 + name: Around the World with Hello Kitty and Friends + updates: [] +- regions: + - JP + id: 0004000000080700 + name: ハローキティとせかいりょこう! いろんなくにへ おでかけしましょ! + updates: [] +- regions: + - US + id: 00040000000B0500 + name: Travel Adventures with Hello Kitty® + updates: [] diff --git a/data/CTR-AHK/icon.jpg b/data/CTR-AHK/icon.jpg new file mode 100644 index 0000000..3736dc5 Binary files /dev/null and b/data/CTR-AHK/icon.jpg differ diff --git a/data/CTR-AHL/art.jpg b/data/CTR-AHL/art.jpg new file mode 100644 index 0000000..541320e Binary files /dev/null and b/data/CTR-AHL/art.jpg differ diff --git a/data/CTR-AHL/data.yml b/data/CTR-AHL/data.yml new file mode 100644 index 0000000..44de3e1 --- /dev/null +++ b/data/CTR-AHL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 00040000000A8100 + name: Hello Kitty Picnic with Sanrio Friends + updates: [] diff --git a/data/CTR-AHL/icon.jpg b/data/CTR-AHL/icon.jpg new file mode 100644 index 0000000..b1cf088 Binary files /dev/null and b/data/CTR-AHL/icon.jpg differ diff --git a/data/CTR-AHM/art.jpg b/data/CTR-AHM/art.jpg new file mode 100644 index 0000000..88320d2 Binary files /dev/null and b/data/CTR-AHM/art.jpg differ diff --git a/data/CTR-AHM/data.yml b/data/CTR-AHM/data.yml new file mode 100644 index 0000000..7f455ad --- /dev/null +++ b/data/CTR-AHM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BEF00 + name: Brilliant Hamsters! + updates: [] +- regions: + - JP + id: 0004000000078900 + name: おしゃれハムスターと暮らそう いっしょにおでかけ + updates: [] +- regions: + - US + id: 00040000000C1B00 + name: Brilliant Hamsters! + updates: [] diff --git a/data/CTR-AHM/icon.jpg b/data/CTR-AHM/icon.jpg new file mode 100644 index 0000000..f5f58f4 Binary files /dev/null and b/data/CTR-AHM/icon.jpg differ diff --git a/data/CTR-AHN/art.jpg b/data/CTR-AHN/art.jpg new file mode 100644 index 0000000..a81f727 Binary files /dev/null and b/data/CTR-AHN/art.jpg differ diff --git a/data/CTR-AHN/data.yml b/data/CTR-AHN/data.yml new file mode 100644 index 0000000..77772cb --- /dev/null +++ b/data/CTR-AHN/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000CC400 + name: 初音ミク Project mirai 2 + updates: + - id: 0004000E000CC400 + name: 更新データ Ver. 1.1 初音ミク Project mirai 2 +- regions: + - TW + id: 000400000010DC00 + name: 初音未來 Project mirai 2 (日文版) + updates: [] diff --git a/data/CTR-AHN/icon.jpg b/data/CTR-AHN/icon.jpg new file mode 100644 index 0000000..95dce9f Binary files /dev/null and b/data/CTR-AHN/icon.jpg differ diff --git a/data/CTR-AHP/art.jpg b/data/CTR-AHP/art.jpg new file mode 100644 index 0000000..21024fa Binary files /dev/null and b/data/CTR-AHP/art.jpg differ diff --git a/data/CTR-AHP/data.yml b/data/CTR-AHP/data.yml new file mode 100644 index 0000000..b2e62c6 --- /dev/null +++ b/data/CTR-AHP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000049200 + name: 'LEGO® Harry Potter™: Years 5-7' + updates: [] +- regions: + - US + id: 000400000004A400 + name: 'LEGO® Harry Potter™: Years 5-7' + updates: [] diff --git a/data/CTR-AHP/icon.jpg b/data/CTR-AHP/icon.jpg new file mode 100644 index 0000000..6562bac Binary files /dev/null and b/data/CTR-AHP/icon.jpg differ diff --git a/data/CTR-AHQ/art.jpg b/data/CTR-AHQ/art.jpg new file mode 100644 index 0000000..f288d71 Binary files /dev/null and b/data/CTR-AHQ/art.jpg differ diff --git a/data/CTR-AHQ/data.yml b/data/CTR-AHQ/data.yml new file mode 100644 index 0000000..58ceb00 --- /dev/null +++ b/data/CTR-AHQ/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F5500 + name: Soul Hackers + updates: [] +- regions: + - JP + id: 0004000000091000 + name: デビルサマナー ソウルハッカーズ + updates: + - id: 0004000E00091000 + name: 更新データ Ver. 1.1 デビルサマナー ソウルハッカーズ +- regions: + - US + id: 00040000000C5600 + name: 'Shin Megami Tensei®: Devil Summoner®: Soul Hackers' + updates: [] diff --git a/data/CTR-AHQ/icon.jpg b/data/CTR-AHQ/icon.jpg new file mode 100644 index 0000000..5dfb5a3 Binary files /dev/null and b/data/CTR-AHQ/icon.jpg differ diff --git a/data/CTR-AHR/art.jpg b/data/CTR-AHR/art.jpg new file mode 100644 index 0000000..250bd1e Binary files /dev/null and b/data/CTR-AHR/art.jpg differ diff --git a/data/CTR-AHR/data.yml b/data/CTR-AHR/data.yml new file mode 100644 index 0000000..cae942d --- /dev/null +++ b/data/CTR-AHR/data.yml @@ -0,0 +1,29 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000145400 + name: Fossil Fighters™ Frontier + updates: [] +- regions: + - JP + id: 00040000000AA700 + name: カセキホリダー ムゲンギア + updates: + - id: 0004000E000AA700 + name: 更新データ Ver. 1.1 カセキホリダー ムゲンギア +- regions: + - KR + id: 0004000000143700 + name: 화석 파이터 + updates: [] +- regions: + - TW + id: 0004000000141F00 + name: 'Fossil Fighters™: Frontier(英文版)' + updates: [] +- regions: + - US + id: 000400000012DB00 + name: 'Fossil Fighters™: Frontier' + updates: [] diff --git a/data/CTR-AHR/icon.jpg b/data/CTR-AHR/icon.jpg new file mode 100644 index 0000000..be992d0 Binary files /dev/null and b/data/CTR-AHR/icon.jpg differ diff --git a/data/CTR-AHT/art.jpg b/data/CTR-AHT/art.jpg new file mode 100644 index 0000000..fd29931 Binary files /dev/null and b/data/CTR-AHT/art.jpg differ diff --git a/data/CTR-AHT/data.yml b/data/CTR-AHT/data.yml new file mode 100644 index 0000000..9c0b423 --- /dev/null +++ b/data/CTR-AHT/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004B700 + name: G1グランプリ + updates: + - id: 0004000E0004B700 + name: '更新データ Ver. 1.1 G1グランプリ ' diff --git a/data/CTR-AHT/icon.jpg b/data/CTR-AHT/icon.jpg new file mode 100644 index 0000000..9b584b0 Binary files /dev/null and b/data/CTR-AHT/icon.jpg differ diff --git a/data/CTR-AHU/art.jpg b/data/CTR-AHU/art.jpg new file mode 100644 index 0000000..1b166cd Binary files /dev/null and b/data/CTR-AHU/art.jpg differ diff --git a/data/CTR-AHU/data.yml b/data/CTR-AHU/data.yml new file mode 100644 index 0000000..d3fe72d --- /dev/null +++ b/data/CTR-AHU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000084B00 + name: Cats and Dogs 3D Pets at play + updates: [] +- regions: + - US + id: 0004000000187200 + name: MY PETS + updates: [] diff --git a/data/CTR-AHU/icon.jpg b/data/CTR-AHU/icon.jpg new file mode 100644 index 0000000..1d3daf1 Binary files /dev/null and b/data/CTR-AHU/icon.jpg differ diff --git a/data/CTR-AHV/art.jpg b/data/CTR-AHV/art.jpg new file mode 100644 index 0000000..ecd6633 Binary files /dev/null and b/data/CTR-AHV/art.jpg differ diff --git a/data/CTR-AHV/data.yml b/data/CTR-AHV/data.yml new file mode 100644 index 0000000..06a3f4a --- /dev/null +++ b/data/CTR-AHV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000009CC00 + name: HEAVY FIRE THE CHOSEN FEW + updates: [] diff --git a/data/CTR-AHV/icon.jpg b/data/CTR-AHV/icon.jpg new file mode 100644 index 0000000..8558a32 Binary files /dev/null and b/data/CTR-AHV/icon.jpg differ diff --git a/data/CTR-AHW/art.jpg b/data/CTR-AHW/art.jpg new file mode 100644 index 0000000..cb45da3 Binary files /dev/null and b/data/CTR-AHW/art.jpg differ diff --git a/data/CTR-AHW/data.yml b/data/CTR-AHW/data.yml new file mode 100644 index 0000000..1da6266 --- /dev/null +++ b/data/CTR-AHW/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BF700 + name: I am an air traffic controller AIRPORT HERO HAWAII + updates: [] +- regions: + - JP + id: 00040000000AC800 + name: ぼくは航空管制官 エアポートヒーロー3D ホノルル + updates: [] +- regions: + - US + id: 00040000000FC100 + name: I am an Air Traffic Controller Airport Hero Hawaii + updates: + - id: 0004000E000FC100 + name: I am an Air Traffic Controller Airport Hero Hawaii Update Ver. 1.1 diff --git a/data/CTR-AHW/icon.jpg b/data/CTR-AHW/icon.jpg new file mode 100644 index 0000000..c9316ba Binary files /dev/null and b/data/CTR-AHW/icon.jpg differ diff --git a/data/CTR-AHX/art.jpg b/data/CTR-AHX/art.jpg new file mode 100644 index 0000000..12d2469 Binary files /dev/null and b/data/CTR-AHX/art.jpg differ diff --git a/data/CTR-AHX/data.yml b/data/CTR-AHX/data.yml new file mode 100644 index 0000000..3872d3e --- /dev/null +++ b/data/CTR-AHX/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000121000 + name: Hometown Story + updates: [] +- regions: + - JP + id: 00040000000EB800 + name: ホームタウンストーリー + updates: + - id: 0004000E000EB800 + name: 更新データ Ver. 1.2 ホームタウンストーリー +- regions: + - US + id: 00040000000F9900 + name: Hometown Story™ + updates: [] diff --git a/data/CTR-AHX/icon.jpg b/data/CTR-AHX/icon.jpg new file mode 100644 index 0000000..4ea5fa1 Binary files /dev/null and b/data/CTR-AHX/icon.jpg differ diff --git a/data/CTR-AHY/art.jpg b/data/CTR-AHY/art.jpg new file mode 100644 index 0000000..7825adf Binary files /dev/null and b/data/CTR-AHY/art.jpg differ diff --git a/data/CTR-AHY/data.yml b/data/CTR-AHY/data.yml new file mode 100644 index 0000000..b312c42 --- /dev/null +++ b/data/CTR-AHY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D9A00 + name: 'Shakedown: Hawaii' + updates: [] +- regions: + - US + id: 00040000001A9600 + name: 'Shakedown: Hawaii' + updates: [] diff --git a/data/CTR-AHY/icon.jpg b/data/CTR-AHY/icon.jpg new file mode 100644 index 0000000..9efe8c2 Binary files /dev/null and b/data/CTR-AHY/icon.jpg differ diff --git a/data/CTR-AHZ/art.jpg b/data/CTR-AHZ/art.jpg new file mode 100644 index 0000000..dacf335 Binary files /dev/null and b/data/CTR-AHZ/art.jpg differ diff --git a/data/CTR-AHZ/data.yml b/data/CTR-AHZ/data.yml new file mode 100644 index 0000000..91fc591 --- /dev/null +++ b/data/CTR-AHZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000AB300 + name: ハローキティといっしょ! ブロッククラッシュZ + updates: [] diff --git a/data/CTR-AHZ/icon.jpg b/data/CTR-AHZ/icon.jpg new file mode 100644 index 0000000..5d0b85b Binary files /dev/null and b/data/CTR-AHZ/icon.jpg differ diff --git a/data/CTR-AJ2/art.jpg b/data/CTR-AJ2/art.jpg new file mode 100644 index 0000000..99cfc5c Binary files /dev/null and b/data/CTR-AJ2/art.jpg differ diff --git a/data/CTR-AJ2/data.yml b/data/CTR-AJ2/data.yml new file mode 100644 index 0000000..ccd47f8 --- /dev/null +++ b/data/CTR-AJ2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AE200 + name: 大逆転裁判2 -成歩堂龍ノ介の覺悟- + updates: [] diff --git a/data/CTR-AJ2/icon.jpg b/data/CTR-AJ2/icon.jpg new file mode 100644 index 0000000..1c2b7c1 Binary files /dev/null and b/data/CTR-AJ2/icon.jpg differ diff --git a/data/CTR-AJ3/art.jpg b/data/CTR-AJ3/art.jpg new file mode 100644 index 0000000..ae4c7a7 Binary files /dev/null and b/data/CTR-AJ3/art.jpg differ diff --git a/data/CTR-AJ3/data.yml b/data/CTR-AJ3/data.yml new file mode 100644 index 0000000..3d1148f --- /dev/null +++ b/data/CTR-AJ3/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000DCE00 + name: Mario Golf™ World Tour + updates: [] +- regions: + - JP + id: 00040000000A5300 + name: マリオゴルフ ワールドツアー + updates: [] +- regions: + - KR + id: 0004000000106300 + name: 마리오 골프 월드 투어 + updates: [] +- regions: + - US + id: 00040000000DCD00 + name: 'Mario Golf™: World Tour' + updates: [] diff --git a/data/CTR-AJ3/icon.jpg b/data/CTR-AJ3/icon.jpg new file mode 100644 index 0000000..e035be4 Binary files /dev/null and b/data/CTR-AJ3/icon.jpg differ diff --git a/data/CTR-AJ4/art.jpg b/data/CTR-AJ4/art.jpg new file mode 100644 index 0000000..f0459cd Binary files /dev/null and b/data/CTR-AJ4/art.jpg differ diff --git a/data/CTR-AJ4/data.yml b/data/CTR-AJ4/data.yml new file mode 100644 index 0000000..b886ce3 --- /dev/null +++ b/data/CTR-AJ4/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006CE00 + name: Jewel Quest 4 Heritage + updates: [] +- regions: + - US + id: 00040000000DDC00 + name: Jewel Quest 4 Heritage + updates: [] diff --git a/data/CTR-AJ4/icon.jpg b/data/CTR-AJ4/icon.jpg new file mode 100644 index 0000000..62f64d9 Binary files /dev/null and b/data/CTR-AJ4/icon.jpg differ diff --git a/data/CTR-AJ5/art.jpg b/data/CTR-AJ5/art.jpg new file mode 100644 index 0000000..10b06ec Binary files /dev/null and b/data/CTR-AJ5/art.jpg differ diff --git a/data/CTR-AJ5/data.yml b/data/CTR-AJ5/data.yml new file mode 100644 index 0000000..d587b76 --- /dev/null +++ b/data/CTR-AJ5/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D7700 + name: Jewel Master Atlantis 3D + updates: [] +- regions: + - JP + id: 00040000000F9E00 + name: ジュエルマスター + updates: [] diff --git a/data/CTR-AJ5/icon.jpg b/data/CTR-AJ5/icon.jpg new file mode 100644 index 0000000..be5f875 Binary files /dev/null and b/data/CTR-AJ5/icon.jpg differ diff --git a/data/CTR-AJ6/art.jpg b/data/CTR-AJ6/art.jpg new file mode 100644 index 0000000..ef5d2dd Binary files /dev/null and b/data/CTR-AJ6/art.jpg differ diff --git a/data/CTR-AJ6/data.yml b/data/CTR-AJ6/data.yml new file mode 100644 index 0000000..ba79f5f --- /dev/null +++ b/data/CTR-AJ6/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006CF00 + name: Jewel Quest The Sapphire Dragon + updates: + - id: 0004000E0006CF00 + name: Jewel Quest The Sapphire Dragon - Update +- regions: + - US + id: 00040000000DDD00 + name: Jewel Quest 6 - The Sapphire Dragon + updates: [] diff --git a/data/CTR-AJ6/icon.jpg b/data/CTR-AJ6/icon.jpg new file mode 100644 index 0000000..2b09454 Binary files /dev/null and b/data/CTR-AJ6/icon.jpg differ diff --git a/data/CTR-AJ8/art.jpg b/data/CTR-AJ8/art.jpg new file mode 100644 index 0000000..2ae630e Binary files /dev/null and b/data/CTR-AJ8/art.jpg differ diff --git a/data/CTR-AJ8/data.yml b/data/CTR-AJ8/data.yml new file mode 100644 index 0000000..0ee3bb3 --- /dev/null +++ b/data/CTR-AJ8/data.yml @@ -0,0 +1,29 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001C2100 + name: Kirby™ Battle Royale + updates: + - id: 0004000E001C2100 + name: 'Kirby™ Battle Royale: Update' +- regions: + - JP + id: 00040000001A8B00 + name: カービィ バトルデラックス! + updates: + - id: 0004000E001A8B00 + name: 更新データ Ver. 3.0 カービィ バトルデラックス! +- regions: + - KR + id: 00040000001C2200 + name: 커비 배틀 디럭스! + updates: [] +- regions: + - TW + - US + id: 00040000001C2000 + name: Kirby™ Battle Royale + updates: + - id: 0004000E001C2000 + name: Kirby™ Battle Royale Update Ver. 3.0 diff --git a/data/CTR-AJ8/icon.jpg b/data/CTR-AJ8/icon.jpg new file mode 100644 index 0000000..40d951b Binary files /dev/null and b/data/CTR-AJ8/icon.jpg differ diff --git a/data/CTR-AJ9/art.jpg b/data/CTR-AJ9/art.jpg new file mode 100644 index 0000000..69282f1 Binary files /dev/null and b/data/CTR-AJ9/art.jpg differ diff --git a/data/CTR-AJ9/data.yml b/data/CTR-AJ9/data.yml new file mode 100644 index 0000000..22105ec --- /dev/null +++ b/data/CTR-AJ9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CE100 + name: 'Shin Megami Tensei: Strange Journey Redux' + updates: [] +- regions: + - JP + id: 00040000001B2400 + name: 真・女神転生 DEEP STRANGE JOURNEY + updates: [] +- regions: + - US + id: 00040000001CD200 + name: 'Shin Megami Tensei: Strange Journey Redux' + updates: [] diff --git a/data/CTR-AJ9/icon.jpg b/data/CTR-AJ9/icon.jpg new file mode 100644 index 0000000..88ca45c Binary files /dev/null and b/data/CTR-AJ9/icon.jpg differ diff --git a/data/CTR-AJB/art.jpg b/data/CTR-AJB/art.jpg new file mode 100644 index 0000000..d0135bf Binary files /dev/null and b/data/CTR-AJB/art.jpg differ diff --git a/data/CTR-AJB/data.yml b/data/CTR-AJB/data.yml new file mode 100644 index 0000000..148282c --- /dev/null +++ b/data/CTR-AJB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C2600 + name: 'Nintendo presents: New Style Boutique™ 3' + updates: [] +- regions: + - JP + id: 000400000019F600 + name: Girls Mode 4 スター☆スタイリスト + updates: [] +- regions: + - US + id: 00040000001C2500 + name: 'Style Savvy: Styling Star' + updates: [] diff --git a/data/CTR-AJB/icon.jpg b/data/CTR-AJB/icon.jpg new file mode 100644 index 0000000..2364e50 Binary files /dev/null and b/data/CTR-AJB/icon.jpg differ diff --git a/data/CTR-AJC/art.jpg b/data/CTR-AJC/art.jpg new file mode 100644 index 0000000..569dd34 Binary files /dev/null and b/data/CTR-AJC/art.jpg differ diff --git a/data/CTR-AJC/data.yml b/data/CTR-AJC/data.yml new file mode 100644 index 0000000..3afb37d --- /dev/null +++ b/data/CTR-AJC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C3200 + name: 35 Junior Games + updates: [] diff --git a/data/CTR-AJC/icon.jpg b/data/CTR-AJC/icon.jpg new file mode 100644 index 0000000..f04a0d6 Binary files /dev/null and b/data/CTR-AJC/icon.jpg differ diff --git a/data/CTR-AJE/art.jpg b/data/CTR-AJE/art.jpg new file mode 100644 index 0000000..c8017f7 Binary files /dev/null and b/data/CTR-AJE/art.jpg differ diff --git a/data/CTR-AJE/data.yml b/data/CTR-AJE/data.yml new file mode 100644 index 0000000..60f5d8b --- /dev/null +++ b/data/CTR-AJE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000A7C00 + name: Jewel Master Cradle Of Egypt 2 3D + updates: [] +- regions: + - US + id: 00040000000B4400 + name: 'Jewel Master: Cradle Of Egypt 2 3D' + updates: [] diff --git a/data/CTR-AJE/icon.jpg b/data/CTR-AJE/icon.jpg new file mode 100644 index 0000000..3da4732 Binary files /dev/null and b/data/CTR-AJE/icon.jpg differ diff --git a/data/CTR-AJG/art.jpg b/data/CTR-AJG/art.jpg new file mode 100644 index 0000000..05853ac Binary files /dev/null and b/data/CTR-AJG/art.jpg differ diff --git a/data/CTR-AJG/data.yml b/data/CTR-AJG/data.yml new file mode 100644 index 0000000..faf547f --- /dev/null +++ b/data/CTR-AJG/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000074500 + name: 探偵 神宮寺三郎 復讐の輪舞 + updates: + - id: 0004000E00074500 + name: 更新データ Ver. 1.1 探偵 神宮寺三郎 復讐の輪舞 diff --git a/data/CTR-AJG/icon.jpg b/data/CTR-AJG/icon.jpg new file mode 100644 index 0000000..c57061c Binary files /dev/null and b/data/CTR-AJG/icon.jpg differ diff --git a/data/CTR-AJH/art.jpg b/data/CTR-AJH/art.jpg new file mode 100644 index 0000000..09507d7 Binary files /dev/null and b/data/CTR-AJH/art.jpg differ diff --git a/data/CTR-AJH/data.yml b/data/CTR-AJH/data.yml new file mode 100644 index 0000000..28f7b72 --- /dev/null +++ b/data/CTR-AJH/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A0500 + name: Super Mario Maker™ for Nintendo 3DS + updates: + - id: 0004000E001A0500 + name: 'Super Mario Maker™ for Nintendo 3DS: Update' +- regions: + - JP + id: 00040000001A0300 + name: スーパーマリオメーカー for ニンテンドー3DS + updates: + - id: 0004000E001A0300 + name: 更新データ Ver. 1.04 スーパーマリオメーカー for ニンテンドー3DS +- regions: + - KR + id: 00040000001BB800 + name: 슈퍼 마리오 메이커 for 닌텐도 3DS + updates: + - id: 0004000E001BB800 + name: 슈퍼 마리오 메이커 for 닌텐도 3DS 업데이트 데이터 ver.1.04 +- regions: + - US + id: 00040000001A0400 + name: Super Mario Maker™ for Nintendo 3DS + updates: + - id: 0004000E001A0400 + name: Super Mario Maker™ for Nintendo 3DS Update Ver. 1.04 diff --git a/data/CTR-AJH/icon.jpg b/data/CTR-AJH/icon.jpg new file mode 100644 index 0000000..ff97cf2 Binary files /dev/null and b/data/CTR-AJH/icon.jpg differ diff --git a/data/CTR-AJJ/art.jpg b/data/CTR-AJJ/art.jpg new file mode 100644 index 0000000..6cc2106 Binary files /dev/null and b/data/CTR-AJJ/art.jpg differ diff --git a/data/CTR-AJJ/data.yml b/data/CTR-AJJ/data.yml new file mode 100644 index 0000000..09f572d --- /dev/null +++ b/data/CTR-AJJ/data.yml @@ -0,0 +1,35 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B4100 + name: 'Fire Emblem™ Echoes: Shadows of Valentia' + updates: + - id: 0004000E001B4100 + name: 'Fire Emblem™ Echoes: Shadows of Valentia: Update' +- regions: + - JP + id: 00040000001A2B00 + name: ファイアーエムブレム Echoes もうひとりの英雄王 + updates: + - id: 0004000E001A2B00 + name: 更新データ Ver. 1.1 ファイアーエムブレム Echoes もうひとりの英雄王 +- regions: + - KR + id: 00040000001C6800 + name: 파이어 엠블렘 Echoes 또 하나의 영웅왕 + updates: [] +- regions: + - TW + id: 00040000001BC900 + name: FIRE EMBLEM Echoes 另一位英雄王 (中日版) + updates: + - id: 0004000E001BC900 + name: 『FIRE EMBLEM Echoes 另一位英雄王 (中日版)』更新資料 Ver.1.1 +- regions: + - US + id: 00040000001B4000 + name: 'Fire Emblem™ Echoes: Shadows of Valentia' + updates: + - id: 0004000E001B4000 + name: 'Fire Emblem Echoes: Shadows of Valentia Update Ver. 1.1' diff --git a/data/CTR-AJJ/icon.jpg b/data/CTR-AJJ/icon.jpg new file mode 100644 index 0000000..3e4e074 Binary files /dev/null and b/data/CTR-AJJ/icon.jpg differ diff --git a/data/CTR-AJL/art.jpg b/data/CTR-AJL/art.jpg new file mode 100644 index 0000000..cda265e Binary files /dev/null and b/data/CTR-AJL/art.jpg differ diff --git a/data/CTR-AJL/data.yml b/data/CTR-AJL/data.yml new file mode 100644 index 0000000..cefcc67 --- /dev/null +++ b/data/CTR-AJL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000084A00 + name: Jewel Master Cradle Of Rome 2 + updates: [] +- regions: + - US + id: 000400000009D100 + name: 'Jewel Master: Cradle of Rome 2' + updates: [] diff --git a/data/CTR-AJL/icon.jpg b/data/CTR-AJL/icon.jpg new file mode 100644 index 0000000..2754eb4 Binary files /dev/null and b/data/CTR-AJL/icon.jpg differ diff --git a/data/CTR-AJN/art.jpg b/data/CTR-AJN/art.jpg new file mode 100644 index 0000000..401f69d Binary files /dev/null and b/data/CTR-AJN/art.jpg differ diff --git a/data/CTR-AJN/data.yml b/data/CTR-AJN/data.yml new file mode 100644 index 0000000..56d63fe --- /dev/null +++ b/data/CTR-AJN/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A4200 + name: Poochy & Yoshi's™ Woolly World + updates: [] +- regions: + - JP + id: 00040000001A3200 + name: ポチと! ヨッシー ウールワールド + updates: [] +- regions: + - KR + id: 00040000001B3300 + name: 포치와! 요시 울리 월드 + updates: [] +- regions: + - US + id: 00040000001A4100 + name: Poochy & Yoshi’s Woolly World + updates: [] diff --git a/data/CTR-AJN/icon.jpg b/data/CTR-AJN/icon.jpg new file mode 100644 index 0000000..dedfce0 Binary files /dev/null and b/data/CTR-AJN/icon.jpg differ diff --git a/data/CTR-AJP/art.jpg b/data/CTR-AJP/art.jpg new file mode 100644 index 0000000..f0be379 Binary files /dev/null and b/data/CTR-AJP/art.jpg differ diff --git a/data/CTR-AJP/data.yml b/data/CTR-AJP/data.yml new file mode 100644 index 0000000..d6b2140 --- /dev/null +++ b/data/CTR-AJP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000060800 + name: ジュエルペット 魔法のリズムでイェイッ! + updates: [] diff --git a/data/CTR-AJP/icon.jpg b/data/CTR-AJP/icon.jpg new file mode 100644 index 0000000..db35043 Binary files /dev/null and b/data/CTR-AJP/icon.jpg differ diff --git a/data/CTR-AJQ/art.jpg b/data/CTR-AJQ/art.jpg new file mode 100644 index 0000000..56b482b Binary files /dev/null and b/data/CTR-AJQ/art.jpg differ diff --git a/data/CTR-AJQ/data.yml b/data/CTR-AJQ/data.yml new file mode 100644 index 0000000..c989034 --- /dev/null +++ b/data/CTR-AJQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000006CD00 + name: Jewel Quest Mysteries 3 - The Seventh Gate + updates: [] diff --git a/data/CTR-AJQ/icon.jpg b/data/CTR-AJQ/icon.jpg new file mode 100644 index 0000000..b196d89 Binary files /dev/null and b/data/CTR-AJQ/icon.jpg differ diff --git a/data/CTR-AJR/art.jpg b/data/CTR-AJR/art.jpg new file mode 100644 index 0000000..f16bcc0 Binary files /dev/null and b/data/CTR-AJR/art.jpg differ diff --git a/data/CTR-AJR/data.yml b/data/CTR-AJR/data.yml new file mode 100644 index 0000000..82d5059 --- /dev/null +++ b/data/CTR-AJR/data.yml @@ -0,0 +1,33 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000125600 + name: "The Legend of Zelda™: Majora's Mask 3D" + updates: + - id: 0004000E00125600 + name: "The Legend of Zelda™: Majora's Mask 3D: Update" +- regions: + - JP + id: 00040000000D6E00 + name: ゼルダの伝説 ムジュラの仮面 3D + updates: + - id: 0004000E000D6E00 + name: 更新データ Ver. 1.1 ゼルダの伝説 ムジュラの仮面 3D +- regions: + - KR + id: 0004000000185D00 + name: 젤다의 전설 무쥬라의 가면 3D + updates: [] +- regions: + - TW + id: 0004000000185C00 + name: "The Legend of Zelda™ : Majora's Mask 3D(英文版)" + updates: [] +- regions: + - US + id: 0004000000125500 + name: 'The Legend of Zelda™: Majora’s Mask 3D' + updates: + - id: 0004000E00125500 + name: 'The Legend of Zelda™: Majora’s Mask 3D Update Ver. 1.1' diff --git a/data/CTR-AJR/icon.jpg b/data/CTR-AJR/icon.jpg new file mode 100644 index 0000000..f1346d4 Binary files /dev/null and b/data/CTR-AJR/icon.jpg differ diff --git a/data/CTR-AJS/art.jpg b/data/CTR-AJS/art.jpg new file mode 100644 index 0000000..3eb411a Binary files /dev/null and b/data/CTR-AJS/art.jpg differ diff --git a/data/CTR-AJS/data.yml b/data/CTR-AJS/data.yml new file mode 100644 index 0000000..2cabe32 --- /dev/null +++ b/data/CTR-AJS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000199900 + name: 超・戦闘中 究極の忍と バトルプレイヤー頂上決戦! + updates: [] diff --git a/data/CTR-AJS/icon.jpg b/data/CTR-AJS/icon.jpg new file mode 100644 index 0000000..45af9a8 Binary files /dev/null and b/data/CTR-AJS/icon.jpg differ diff --git a/data/CTR-AJU/art.jpg b/data/CTR-AJU/art.jpg new file mode 100644 index 0000000..bf41c32 Binary files /dev/null and b/data/CTR-AJU/art.jpg differ diff --git a/data/CTR-AJU/data.yml b/data/CTR-AJU/data.yml new file mode 100644 index 0000000..b353c7b --- /dev/null +++ b/data/CTR-AJU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D6400 + name: Jewel Match 3 + updates: [] +- regions: + - US + id: 00040000000CFE00 + name: Jewel Match 3 + updates: [] diff --git a/data/CTR-AJU/icon.jpg b/data/CTR-AJU/icon.jpg new file mode 100644 index 0000000..b5aa89b Binary files /dev/null and b/data/CTR-AJU/icon.jpg differ diff --git a/data/CTR-AJW/art.jpg b/data/CTR-AJW/art.jpg new file mode 100644 index 0000000..148ffde Binary files /dev/null and b/data/CTR-AJW/art.jpg differ diff --git a/data/CTR-AJW/data.yml b/data/CTR-AJW/data.yml new file mode 100644 index 0000000..4fbb205 --- /dev/null +++ b/data/CTR-AJW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000048600 + name: 'Jaws: Ultimate Predator' + updates: [] diff --git a/data/CTR-AJW/icon.jpg b/data/CTR-AJW/icon.jpg new file mode 100644 index 0000000..d04c4a2 Binary files /dev/null and b/data/CTR-AJW/icon.jpg differ diff --git a/data/CTR-AJX/art.jpg b/data/CTR-AJX/art.jpg new file mode 100644 index 0000000..acbdde3 Binary files /dev/null and b/data/CTR-AJX/art.jpg differ diff --git a/data/CTR-AJX/data.yml b/data/CTR-AJX/data.yml new file mode 100644 index 0000000..24ad150 --- /dev/null +++ b/data/CTR-AJX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000115300 + name: 熟語 速引辞典 + updates: [] diff --git a/data/CTR-AJX/icon.jpg b/data/CTR-AJX/icon.jpg new file mode 100644 index 0000000..20b2466 Binary files /dev/null and b/data/CTR-AJX/icon.jpg differ diff --git a/data/CTR-AJY/art.jpg b/data/CTR-AJY/art.jpg new file mode 100644 index 0000000..3eec553 Binary files /dev/null and b/data/CTR-AJY/art.jpg differ diff --git a/data/CTR-AJY/data.yml b/data/CTR-AJY/data.yml new file mode 100644 index 0000000..ab947b7 --- /dev/null +++ b/data/CTR-AJY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000A7B00 + name: ジュエルペット 魔法でおしゃれにダンス☆デコ~! + updates: [] diff --git a/data/CTR-AJY/icon.jpg b/data/CTR-AJY/icon.jpg new file mode 100644 index 0000000..a551ced Binary files /dev/null and b/data/CTR-AJY/icon.jpg differ diff --git a/data/CTR-AK2/art.jpg b/data/CTR-AK2/art.jpg new file mode 100644 index 0000000..3445815 Binary files /dev/null and b/data/CTR-AK2/art.jpg differ diff --git a/data/CTR-AK2/data.yml b/data/CTR-AK2/data.yml new file mode 100644 index 0000000..fb61316 --- /dev/null +++ b/data/CTR-AK2/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A2F00 + name: 'River City: Tokyo Rumble' + updates: [] +- regions: + - JP + id: 00040000000DC700 + name: 熱血硬派くにおくんSP 乱闘協奏曲 + updates: + - id: 0004000E000DC700 + name: 更新データ Ver. 1.1 熱血硬派くにおくんSP 乱闘協奏曲 +- regions: + - KR + id: 0004000000188A00 + name: 열혈경파 쿠니오군SP 난투협주곡 + updates: + - id: 0004000E00188A00 + name: 업데이트 데이터 Ver. 1.2 열혈경파 쿠니오군SP 난투협주곡 +- regions: + - US + id: 0004000000197700 + name: 'River City: Tokyo Rumble' + updates: [] diff --git a/data/CTR-AK2/icon.jpg b/data/CTR-AK2/icon.jpg new file mode 100644 index 0000000..28ba047 Binary files /dev/null and b/data/CTR-AK2/icon.jpg differ diff --git a/data/CTR-AK3/art.jpg b/data/CTR-AK3/art.jpg new file mode 100644 index 0000000..b2cd583 Binary files /dev/null and b/data/CTR-AK3/art.jpg differ diff --git a/data/CTR-AK3/data.yml b/data/CTR-AK3/data.yml new file mode 100644 index 0000000..76ba05f --- /dev/null +++ b/data/CTR-AK3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000019A700 + name: SEGA 3D Classics Collection + updates: [] +- regions: + - JP + id: 0004000000180E00 + name: セガ3D復刻アーカイブス2 + updates: [] +- regions: + - US + id: 0004000000185E00 + name: SEGA 3D Classics Collection + updates: [] diff --git a/data/CTR-AK3/icon.jpg b/data/CTR-AK3/icon.jpg new file mode 100644 index 0000000..1fd6538 Binary files /dev/null and b/data/CTR-AK3/icon.jpg differ diff --git a/data/CTR-AK4/art.jpg b/data/CTR-AK4/art.jpg new file mode 100644 index 0000000..21c3623 Binary files /dev/null and b/data/CTR-AK4/art.jpg differ diff --git a/data/CTR-AK4/data.yml b/data/CTR-AK4/data.yml new file mode 100644 index 0000000..9d0d881 --- /dev/null +++ b/data/CTR-AK4/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000169D00 + name: アイカツ!My No.1 Stage! + updates: + - id: 0004000E00169D00 + name: 更新データ Ver. 1.1.0 アイカツ!My No.1 Stage! diff --git a/data/CTR-AK4/icon.jpg b/data/CTR-AK4/icon.jpg new file mode 100644 index 0000000..65114c9 Binary files /dev/null and b/data/CTR-AK4/icon.jpg differ diff --git a/data/CTR-AK5/art.jpg b/data/CTR-AK5/art.jpg new file mode 100644 index 0000000..5a316c1 Binary files /dev/null and b/data/CTR-AK5/art.jpg differ diff --git a/data/CTR-AK5/data.yml b/data/CTR-AK5/data.yml new file mode 100644 index 0000000..3fba8a5 --- /dev/null +++ b/data/CTR-AK5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015E500 + name: 黒子のバスケ 未来へのキズナ + updates: [] diff --git a/data/CTR-AK5/icon.jpg b/data/CTR-AK5/icon.jpg new file mode 100644 index 0000000..293fac5 Binary files /dev/null and b/data/CTR-AK5/icon.jpg differ diff --git a/data/CTR-AK7/art.jpg b/data/CTR-AK7/art.jpg new file mode 100644 index 0000000..7ad0250 Binary files /dev/null and b/data/CTR-AK7/art.jpg differ diff --git a/data/CTR-AK7/data.yml b/data/CTR-AK7/data.yml new file mode 100644 index 0000000..025d6ff --- /dev/null +++ b/data/CTR-AK7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000B6C00 + name: オレ様キングダム イケメン彼氏をゲットしよ! + updates: [] diff --git a/data/CTR-AK7/icon.jpg b/data/CTR-AK7/icon.jpg new file mode 100644 index 0000000..c6fd99e Binary files /dev/null and b/data/CTR-AK7/icon.jpg differ diff --git a/data/CTR-AK8/art.jpg b/data/CTR-AK8/art.jpg new file mode 100644 index 0000000..985e1ef Binary files /dev/null and b/data/CTR-AK8/art.jpg differ diff --git a/data/CTR-AK8/data.yml b/data/CTR-AK8/data.yml new file mode 100644 index 0000000..fb25ee5 --- /dev/null +++ b/data/CTR-AK8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000A8C00 + name: 哭牙 KOKUGA + updates: [] +- regions: + - KR + id: 00040000000C4100 + name: KOKUGA + updates: [] +- regions: + - US + id: 00040000000EAD00 + name: Kokuga + updates: [] diff --git a/data/CTR-AK8/icon.jpg b/data/CTR-AK8/icon.jpg new file mode 100644 index 0000000..9e62c0a Binary files /dev/null and b/data/CTR-AK8/icon.jpg differ diff --git a/data/CTR-AK9/art.jpg b/data/CTR-AK9/art.jpg new file mode 100644 index 0000000..c50a908 Binary files /dev/null and b/data/CTR-AK9/art.jpg differ diff --git a/data/CTR-AK9/data.yml b/data/CTR-AK9/data.yml new file mode 100644 index 0000000..fcb5dec --- /dev/null +++ b/data/CTR-AK9/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000005E300 + name: 熱血硬派くにおくん すぺしゃる + updates: [] +- regions: + - KR + id: 000400000009CF00 + name: 열혈경파 쿠니오군 스페셜 + updates: [] diff --git a/data/CTR-AK9/icon.jpg b/data/CTR-AK9/icon.jpg new file mode 100644 index 0000000..96150fe Binary files /dev/null and b/data/CTR-AK9/icon.jpg differ diff --git a/data/CTR-AKA/art.jpg b/data/CTR-AKA/art.jpg new file mode 100644 index 0000000..2e8528e Binary files /dev/null and b/data/CTR-AKA/art.jpg differ diff --git a/data/CTR-AKA/data.yml b/data/CTR-AKA/data.yml new file mode 100644 index 0000000..87601a4 --- /dev/null +++ b/data/CTR-AKA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001A0D00 + name: 斉木楠雄のΨ難 史上Ψ大のΨ難!? + updates: [] diff --git a/data/CTR-AKA/icon.jpg b/data/CTR-AKA/icon.jpg new file mode 100644 index 0000000..d64edb1 Binary files /dev/null and b/data/CTR-AKA/icon.jpg differ diff --git a/data/CTR-AKB/art.jpg b/data/CTR-AKB/art.jpg new file mode 100644 index 0000000..80d9ca0 Binary files /dev/null and b/data/CTR-AKB/art.jpg differ diff --git a/data/CTR-AKB/data.yml b/data/CTR-AKB/data.yml new file mode 100644 index 0000000..8f9401f --- /dev/null +++ b/data/CTR-AKB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A7700 + name: AKB48+Me + updates: [] diff --git a/data/CTR-AKB/icon.jpg b/data/CTR-AKB/icon.jpg new file mode 100644 index 0000000..b6d0fb1 Binary files /dev/null and b/data/CTR-AKB/icon.jpg differ diff --git a/data/CTR-AKC/art.jpg b/data/CTR-AKC/art.jpg new file mode 100644 index 0000000..2033469 Binary files /dev/null and b/data/CTR-AKC/art.jpg differ diff --git a/data/CTR-AKC/data.yml b/data/CTR-AKC/data.yml new file mode 100644 index 0000000..9516e18 --- /dev/null +++ b/data/CTR-AKC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000C1E00 + name: かわいい子猫3D + updates: [] diff --git a/data/CTR-AKC/icon.jpg b/data/CTR-AKC/icon.jpg new file mode 100644 index 0000000..b8f5439 Binary files /dev/null and b/data/CTR-AKC/icon.jpg differ diff --git a/data/CTR-AKD/art.jpg b/data/CTR-AKD/art.jpg new file mode 100644 index 0000000..2dff91d Binary files /dev/null and b/data/CTR-AKD/art.jpg differ diff --git a/data/CTR-AKD/data.yml b/data/CTR-AKD/data.yml new file mode 100644 index 0000000..f257378 --- /dev/null +++ b/data/CTR-AKD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000030200 + name: 'Kid Icarus™: Uprising' + updates: [] +- regions: + - JP + id: 0004000000030000 + name: 新・光神話 パルテナの鏡 + updates: [] +- regions: + - US + id: 0004000000030100 + name: 'Kid Icarus™: Uprising' + updates: [] diff --git a/data/CTR-AKD/icon.jpg b/data/CTR-AKD/icon.jpg new file mode 100644 index 0000000..8fd7f68 Binary files /dev/null and b/data/CTR-AKD/icon.jpg differ diff --git a/data/CTR-AKF/art.jpg b/data/CTR-AKF/art.jpg new file mode 100644 index 0000000..f92f49c Binary files /dev/null and b/data/CTR-AKF/art.jpg differ diff --git a/data/CTR-AKF/data.yml b/data/CTR-AKF/data.yml new file mode 100644 index 0000000..2353f87 --- /dev/null +++ b/data/CTR-AKF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000197200 + name: アイカツスターズ! Myスペシャルアピール + updates: [] diff --git a/data/CTR-AKF/icon.jpg b/data/CTR-AKF/icon.jpg new file mode 100644 index 0000000..f1b99a0 Binary files /dev/null and b/data/CTR-AKF/icon.jpg differ diff --git a/data/CTR-AKG/art.jpg b/data/CTR-AKG/art.jpg new file mode 100644 index 0000000..0ed19c4 Binary files /dev/null and b/data/CTR-AKG/art.jpg differ diff --git a/data/CTR-AKG/data.yml b/data/CTR-AKG/data.yml new file mode 100644 index 0000000..3dc312d --- /dev/null +++ b/data/CTR-AKG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000AEB00 + name: Virtue's Last Reward + updates: [] +- regions: + - JP + id: 000400000005DE00 + name: 極限脱出ADV 善人シボウデス + updates: [] +- regions: + - US + id: 0004000000096700 + name: "Zero Escape: Virtue's Last Reward" + updates: [] diff --git a/data/CTR-AKG/icon.jpg b/data/CTR-AKG/icon.jpg new file mode 100644 index 0000000..f5de98a Binary files /dev/null and b/data/CTR-AKG/icon.jpg differ diff --git a/data/CTR-AKH/art.jpg b/data/CTR-AKH/art.jpg new file mode 100644 index 0000000..edbb82e Binary files /dev/null and b/data/CTR-AKH/art.jpg differ diff --git a/data/CTR-AKH/data.yml b/data/CTR-AKH/data.yml new file mode 100644 index 0000000..cecaad7 --- /dev/null +++ b/data/CTR-AKH/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000095500 + name: KINGDOM HEARTS 3D [Dream Drop Distance] + updates: [] +- regions: + - JP + id: 000400000004EE00 + name: KINGDOM HEARTS 3D [Dream Drop Distance] + updates: + - id: 0004000E0004EE00 + name: 更新データ Ver. 1.1 KINGDOM HEARTS 3D [Dream Drop Distance] +- regions: + - US + id: 000400000008D300 + name: KINGDOM HEARTS 3D [Dream Drop Distance] + updates: [] diff --git a/data/CTR-AKH/icon.jpg b/data/CTR-AKH/icon.jpg new file mode 100644 index 0000000..7d5fb0d Binary files /dev/null and b/data/CTR-AKH/icon.jpg differ diff --git a/data/CTR-AKJ/art.jpg b/data/CTR-AKJ/art.jpg new file mode 100644 index 0000000..e059e93 Binary files /dev/null and b/data/CTR-AKJ/art.jpg differ diff --git a/data/CTR-AKJ/data.yml b/data/CTR-AKJ/data.yml new file mode 100644 index 0000000..be27a22 --- /dev/null +++ b/data/CTR-AKJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000164E00 + name: 怪盗ジョーカー 時を超える怪盗と失われた宝石 + updates: [] diff --git a/data/CTR-AKJ/icon.jpg b/data/CTR-AKJ/icon.jpg new file mode 100644 index 0000000..5b1011a Binary files /dev/null and b/data/CTR-AKJ/icon.jpg differ diff --git a/data/CTR-AKK/art.jpg b/data/CTR-AKK/art.jpg new file mode 100644 index 0000000..330cde6 Binary files /dev/null and b/data/CTR-AKK/art.jpg differ diff --git a/data/CTR-AKK/data.yml b/data/CTR-AKK/data.yml new file mode 100644 index 0000000..288ddc7 --- /dev/null +++ b/data/CTR-AKK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000A8600 + name: Professor Layton and the Miracle Mask + updates: [] +- regions: + - JP + id: 0004000000031F00 + name: レイトン教授と奇跡の仮面 + updates: [] +- regions: + - US + id: 00040000000A8500 + name: 'Professor Layton and the Miracle Mask™ ' + updates: [] diff --git a/data/CTR-AKK/icon.jpg b/data/CTR-AKK/icon.jpg new file mode 100644 index 0000000..a3efd9c Binary files /dev/null and b/data/CTR-AKK/icon.jpg differ diff --git a/data/CTR-AKM/art.jpg b/data/CTR-AKM/art.jpg new file mode 100644 index 0000000..0b81461 Binary files /dev/null and b/data/CTR-AKM/art.jpg differ diff --git a/data/CTR-AKM/data.yml b/data/CTR-AKM/data.yml new file mode 100644 index 0000000..5dda71d --- /dev/null +++ b/data/CTR-AKM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000179300 + name: Teddy Together + updates: [] +- regions: + - JP + id: 00040000000AC900 + name: クマ・トモ + updates: [] diff --git a/data/CTR-AKM/icon.jpg b/data/CTR-AKM/icon.jpg new file mode 100644 index 0000000..e90fe00 Binary files /dev/null and b/data/CTR-AKM/icon.jpg differ diff --git a/data/CTR-AKN/art.jpg b/data/CTR-AKN/art.jpg new file mode 100644 index 0000000..e02bb08 Binary files /dev/null and b/data/CTR-AKN/art.jpg differ diff --git a/data/CTR-AKN/data.yml b/data/CTR-AKN/data.yml new file mode 100644 index 0000000..9de7802 --- /dev/null +++ b/data/CTR-AKN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004D800 + name: 剣と魔法と学園モノ。3D + updates: [] diff --git a/data/CTR-AKN/icon.jpg b/data/CTR-AKN/icon.jpg new file mode 100644 index 0000000..d09ba08 Binary files /dev/null and b/data/CTR-AKN/icon.jpg differ diff --git a/data/CTR-AKP/art.jpg b/data/CTR-AKP/art.jpg new file mode 100644 index 0000000..c619b09 Binary files /dev/null and b/data/CTR-AKP/art.jpg differ diff --git a/data/CTR-AKP/data.yml b/data/CTR-AKP/data.yml new file mode 100644 index 0000000..3b26559 --- /dev/null +++ b/data/CTR-AKP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AA200 + name: 進撃の巨人2~未来の座標~ + updates: + - id: 0004000E001AA200 + name: 更新データ Ver1.1 進撃の巨人2~未来の座標~ diff --git a/data/CTR-AKP/icon.jpg b/data/CTR-AKP/icon.jpg new file mode 100644 index 0000000..9278cd8 Binary files /dev/null and b/data/CTR-AKP/icon.jpg differ diff --git a/data/CTR-AKQ/art.jpg b/data/CTR-AKQ/art.jpg new file mode 100644 index 0000000..fbe97bc Binary files /dev/null and b/data/CTR-AKQ/art.jpg differ diff --git a/data/CTR-AKQ/data.yml b/data/CTR-AKQ/data.yml new file mode 100644 index 0000000..5b86319 --- /dev/null +++ b/data/CTR-AKQ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001ADD00 + name: 桃太郎電鉄2017 たちあがれ日本!! + updates: + - id: 0004000E001ADD00 + name: 更新データ Ver. 1.1 桃太郎電鉄2017 たちあがれ日本!! diff --git a/data/CTR-AKQ/icon.jpg b/data/CTR-AKQ/icon.jpg new file mode 100644 index 0000000..c668abb Binary files /dev/null and b/data/CTR-AKQ/icon.jpg differ diff --git a/data/CTR-AKS/art.jpg b/data/CTR-AKS/art.jpg new file mode 100644 index 0000000..fc6a28b Binary files /dev/null and b/data/CTR-AKS/art.jpg differ diff --git a/data/CTR-AKS/data.yml b/data/CTR-AKS/data.yml new file mode 100644 index 0000000..c2ccc66 --- /dev/null +++ b/data/CTR-AKS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000196900 + name: ショベルナイト + updates: + - id: 0004000E00196900 + name: 更新データ Ver. 4.0 ショベルナイト diff --git a/data/CTR-AKS/icon.jpg b/data/CTR-AKS/icon.jpg new file mode 100644 index 0000000..4e3eaba Binary files /dev/null and b/data/CTR-AKS/icon.jpg differ diff --git a/data/CTR-AKT/art.jpg b/data/CTR-AKT/art.jpg new file mode 100644 index 0000000..0bfe7f7 Binary files /dev/null and b/data/CTR-AKT/art.jpg differ diff --git a/data/CTR-AKT/data.yml b/data/CTR-AKT/data.yml new file mode 100644 index 0000000..6e80baf --- /dev/null +++ b/data/CTR-AKT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000039400 + name: 空間さがしもの系脳力開発 3D脳トレーニング + updates: [] diff --git a/data/CTR-AKT/icon.jpg b/data/CTR-AKT/icon.jpg new file mode 100644 index 0000000..0a4395d Binary files /dev/null and b/data/CTR-AKT/icon.jpg differ diff --git a/data/CTR-AKV/art.jpg b/data/CTR-AKV/art.jpg new file mode 100644 index 0000000..b350a7c Binary files /dev/null and b/data/CTR-AKV/art.jpg differ diff --git a/data/CTR-AKV/data.yml b/data/CTR-AKV/data.yml new file mode 100644 index 0000000..ca29cce --- /dev/null +++ b/data/CTR-AKV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000095B00 + name: こびとづかん こびと観察セット + updates: [] diff --git a/data/CTR-AKV/icon.jpg b/data/CTR-AKV/icon.jpg new file mode 100644 index 0000000..00670da Binary files /dev/null and b/data/CTR-AKV/icon.jpg differ diff --git a/data/CTR-AKW/art.jpg b/data/CTR-AKW/art.jpg new file mode 100644 index 0000000..951487d Binary files /dev/null and b/data/CTR-AKW/art.jpg differ diff --git a/data/CTR-AKW/data.yml b/data/CTR-AKW/data.yml new file mode 100644 index 0000000..00bdb4e --- /dev/null +++ b/data/CTR-AKW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A9A00 + name: ディズニーアートアカデミー 特別体験版 + updates: [] diff --git a/data/CTR-AKW/icon.jpg b/data/CTR-AKW/icon.jpg new file mode 100644 index 0000000..9dffede Binary files /dev/null and b/data/CTR-AKW/icon.jpg differ diff --git a/data/CTR-AKX/art.jpg b/data/CTR-AKX/art.jpg new file mode 100644 index 0000000..ab3a276 Binary files /dev/null and b/data/CTR-AKX/art.jpg differ diff --git a/data/CTR-AKX/data.yml b/data/CTR-AKX/data.yml new file mode 100644 index 0000000..4e4b780 --- /dev/null +++ b/data/CTR-AKX/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C1F00 + name: I am an air traffic controller AIRPORT HERO OSAKA-KIX + updates: [] +- regions: + - JP + id: 0004000000127A00 + name: ぼくは航空管制官 エアポート ヒーロー3D 関空 SKY STORY + updates: + - id: 0004000E00127A00 + name: 更新データ Ver. 1.1 ぼくは航空管制官 エアポートヒーロー3D 関空 SKY STORY +- regions: + - US + id: 00040000001C3F00 + name: I am an air traffic controller AIRPORT HERO OSAKA-KIX + updates: [] diff --git a/data/CTR-AKX/icon.jpg b/data/CTR-AKX/icon.jpg new file mode 100644 index 0000000..3ddbcb2 Binary files /dev/null and b/data/CTR-AKX/icon.jpg differ diff --git a/data/CTR-AL3/art.jpg b/data/CTR-AL3/art.jpg new file mode 100644 index 0000000..7a63235 Binary files /dev/null and b/data/CTR-AL3/art.jpg differ diff --git a/data/CTR-AL3/data.yml b/data/CTR-AL3/data.yml new file mode 100644 index 0000000..92c3987 --- /dev/null +++ b/data/CTR-AL3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000086100 + name: Farming Simulator 2012 3D + updates: [] +- regions: + - JP + id: 00040000000D4100 + name: Farming Simulator 3D ポケット農園 + updates: [] diff --git a/data/CTR-AL3/icon.jpg b/data/CTR-AL3/icon.jpg new file mode 100644 index 0000000..7a87dd3 Binary files /dev/null and b/data/CTR-AL3/icon.jpg differ diff --git a/data/CTR-AL4/art.jpg b/data/CTR-AL4/art.jpg new file mode 100644 index 0000000..db3656d Binary files /dev/null and b/data/CTR-AL4/art.jpg differ diff --git a/data/CTR-AL4/data.yml b/data/CTR-AL4/data.yml new file mode 100644 index 0000000..33f9dee --- /dev/null +++ b/data/CTR-AL4/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CF500 + name: The Alliance Alive + updates: [] +- regions: + - JP + id: 00040000001B4500 + name: アライアンス・アライブ + updates: + - id: 0004000E001B4500 + name: 更新データ Ver. 1.1 アライアンス・アライブ +- regions: + - US + id: 00040000001CCD00 + name: The Alliance Alive + updates: [] diff --git a/data/CTR-AL4/icon.jpg b/data/CTR-AL4/icon.jpg new file mode 100644 index 0000000..183c89c Binary files /dev/null and b/data/CTR-AL4/icon.jpg differ diff --git a/data/CTR-AL5/art.jpg b/data/CTR-AL5/art.jpg new file mode 100644 index 0000000..9924f39 Binary files /dev/null and b/data/CTR-AL5/art.jpg differ diff --git a/data/CTR-AL5/data.yml b/data/CTR-AL5/data.yml new file mode 100644 index 0000000..b5f5320 --- /dev/null +++ b/data/CTR-AL5/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D1500 + name: LEGO Marvel Super Heroes Universe In Peril + updates: [] +- regions: + - JP + id: 000400000015A900 + name: LEGO® マーベル スーパー・ヒーローズ ザ・ゲーム + updates: [] +- regions: + - US + id: 00040000000D2000 + name: 'LEGO® Marvel™ Super Heroes: Universe in Peril' + updates: [] diff --git a/data/CTR-AL5/icon.jpg b/data/CTR-AL5/icon.jpg new file mode 100644 index 0000000..37d2f13 Binary files /dev/null and b/data/CTR-AL5/icon.jpg differ diff --git a/data/CTR-AL6/art.jpg b/data/CTR-AL6/art.jpg new file mode 100644 index 0000000..2608c72 Binary files /dev/null and b/data/CTR-AL6/art.jpg differ diff --git a/data/CTR-AL6/data.yml b/data/CTR-AL6/data.yml new file mode 100644 index 0000000..09f5f57 --- /dev/null +++ b/data/CTR-AL6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F3000 + name: Professor Layton and the Azran Legacy™ + updates: [] +- regions: + - JP + id: 00040000000C0200 + name: レイトン教授と超文明Aの遺産 + updates: [] +- regions: + - US + id: 00040000000F2F00 + name: Professor Layton and the Azran Legacy™ + updates: [] diff --git a/data/CTR-AL6/icon.jpg b/data/CTR-AL6/icon.jpg new file mode 100644 index 0000000..4dd08ed Binary files /dev/null and b/data/CTR-AL6/icon.jpg differ diff --git a/data/CTR-AL8/art.jpg b/data/CTR-AL8/art.jpg new file mode 100644 index 0000000..d416497 Binary files /dev/null and b/data/CTR-AL8/art.jpg differ diff --git a/data/CTR-AL8/data.yml b/data/CTR-AL8/data.yml new file mode 100644 index 0000000..538c179 --- /dev/null +++ b/data/CTR-AL8/data.yml @@ -0,0 +1,60 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D5700 + name: 'Nintendo 3DS™ Guide: Louvre (German Version)' + updates: + - id: 0004000E000CB900 + name: 'Nintendo 3DS™ Guide: Louvre (English Version) Update' + - id: 0004000E000D5600 + name: 'Nintendo 3DS™ Guide: Louvre (French Version) Update' + - id: 0004000E000D5900 + name: 'Nintendo 3DS™ Guide: Louvre (Spanish Version) Update' + - id: 0004000E000D5700 + name: 'Nintendo 3DS™ Guide: Louvre (German Version) Update' + - id: 0004000E000D5800 + name: 'Nintendo 3DS™ Guide: Louvre (Italian Version) Update' +- regions: + - EU + - US + id: 00040000000D5600 + name: 'Nintendo 3DS™ Guide: Louvre (French Version)' + updates: + - id: 0004000E000CB900 + name: 'Nintendo 3DS™ Guide: Louvre (English Version) Update Ver. 1.1' + - id: 0004000E000D5600 + name: 'Nintendo 3DS™ Guide: Louvre (French Version) Update Ver. 1.1' + - id: 0004000E000D5900 + name: 'Nintendo 3DS™ Guide: Louvre (Spanish Version) Update Ver. 1.1' +- regions: + - EU + id: 00040000000D5800 + name: 'Nintendo 3DS™ Guide: Louvre (Italian Version)' + updates: [] +- regions: + - EU + - US + id: 00040000000CB900 + name: 'Nintendo 3DS™ Guide: Louvre (English Version)' + updates: [] +- regions: + - EU + - US + id: 00040000000D5900 + name: 'Nintendo 3DS™ Guide: Louvre (Spanish Version)' + updates: [] +- regions: + - JP + id: 00040000000CB700 + name: ニンテンドー3DSガイド ルーヴル美術館 + updates: + - id: 0004000E000CB700 + name: 更新データ Ver. 1.1 ニンテンドー3DSガイド ルーヴル美術館 +- regions: + - KR + id: 00040000000CBA00 + name: 닌텐도 3DS 가이드 루브르 박물관 + updates: + - id: 0004000E000CBA00 + name: 업데이트 데이터 Ver. 1.1 닌텐도 3DS 가이드 루브르 박물관 diff --git a/data/CTR-AL8/icon.jpg b/data/CTR-AL8/icon.jpg new file mode 100644 index 0000000..f113042 Binary files /dev/null and b/data/CTR-AL8/icon.jpg differ diff --git a/data/CTR-ALA/art.jpg b/data/CTR-ALA/art.jpg new file mode 100644 index 0000000..2db238e Binary files /dev/null and b/data/CTR-ALA/art.jpg differ diff --git a/data/CTR-ALA/data.yml b/data/CTR-ALA/data.yml new file mode 100644 index 0000000..d1e8830 --- /dev/null +++ b/data/CTR-ALA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000007AA00 + name: LEGO® The Lord of the Rings™ + updates: [] diff --git a/data/CTR-ALA/icon.jpg b/data/CTR-ALA/icon.jpg new file mode 100644 index 0000000..814b9dd Binary files /dev/null and b/data/CTR-ALA/icon.jpg differ diff --git a/data/CTR-ALB/art.jpg b/data/CTR-ALB/art.jpg new file mode 100644 index 0000000..1a9b385 Binary files /dev/null and b/data/CTR-ALB/art.jpg differ diff --git a/data/CTR-ALB/data.yml b/data/CTR-ALB/data.yml new file mode 100644 index 0000000..59a363c --- /dev/null +++ b/data/CTR-ALB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000005A400 + name: 'LEGO® Batman 2™: DC Super Heroes' + updates: [] +- regions: + - KR + id: 00040000000C6A00 + name: '레고 배트맨2: DC 슈퍼 히어로즈' + updates: [] +- regions: + - US + id: 000400000005A200 + name: 'LEGO® Batman™ 2: DC Super Heroes' + updates: [] diff --git a/data/CTR-ALB/icon.jpg b/data/CTR-ALB/icon.jpg new file mode 100644 index 0000000..729877b Binary files /dev/null and b/data/CTR-ALB/icon.jpg differ diff --git a/data/CTR-ALC/art.jpg b/data/CTR-ALC/art.jpg new file mode 100644 index 0000000..56a8697 Binary files /dev/null and b/data/CTR-ALC/art.jpg differ diff --git a/data/CTR-ALC/data.yml b/data/CTR-ALC/data.yml new file mode 100644 index 0000000..fe97de1 --- /dev/null +++ b/data/CTR-ALC/data.yml @@ -0,0 +1,18 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000079500 + name: 'Spirit Camera: The Cursed Memoir' + updates: [] +- regions: + - JP + id: 0004000000040300 + name: 心霊カメラ ~憑いてる手帳~ + updates: [] +- regions: + - TW + - US + id: 000400000007B000 + name: 'Spirit Camera™: The Cursed Memoir' + updates: [] diff --git a/data/CTR-ALC/icon.jpg b/data/CTR-ALC/icon.jpg new file mode 100644 index 0000000..49c3f2f Binary files /dev/null and b/data/CTR-ALC/icon.jpg differ diff --git a/data/CTR-ALE/art.jpg b/data/CTR-ALE/art.jpg new file mode 100644 index 0000000..c246410 Binary files /dev/null and b/data/CTR-ALE/art.jpg differ diff --git a/data/CTR-ALE/data.yml b/data/CTR-ALE/data.yml new file mode 100644 index 0000000..1d7546a --- /dev/null +++ b/data/CTR-ALE/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000168000 + name: LEGO® Marvel Avengers + updates: + - id: 0004000E00168000 + name: 'LEGO® Marvel Avengers: Update' +- regions: + - JP + id: 000400000018E300 + name: LEGO®マーベル アベンジャーズ + updates: + - id: 0004000E0018E300 + name: 更新データ Ver. 1.1 LEGO®マーベル アベンジャーズ +- regions: + - US + id: 0004000000168500 + name: LEGO® Marvel's Avengers + updates: + - id: 0004000E00168500 + name: LEGO® Marvel's Avengers Update Ver. 1.2.0 diff --git a/data/CTR-ALE/icon.jpg b/data/CTR-ALE/icon.jpg new file mode 100644 index 0000000..37bbe9d Binary files /dev/null and b/data/CTR-ALE/icon.jpg differ diff --git a/data/CTR-ALF/art.jpg b/data/CTR-ALF/art.jpg new file mode 100644 index 0000000..2fe0a4b Binary files /dev/null and b/data/CTR-ALF/art.jpg differ diff --git a/data/CTR-ALF/data.yml b/data/CTR-ALF/data.yml new file mode 100644 index 0000000..98dc11c --- /dev/null +++ b/data/CTR-ALF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000047E00 + name: ワンピース アンリミテッド クルーズ スペシャル + updates: [] diff --git a/data/CTR-ALF/icon.jpg b/data/CTR-ALF/icon.jpg new file mode 100644 index 0000000..0d105a0 Binary files /dev/null and b/data/CTR-ALF/icon.jpg differ diff --git a/data/CTR-ALG/art.jpg b/data/CTR-ALG/art.jpg new file mode 100644 index 0000000..2f2f8d6 Binary files /dev/null and b/data/CTR-ALG/art.jpg differ diff --git a/data/CTR-ALG/data.yml b/data/CTR-ALG/data.yml new file mode 100644 index 0000000..5a6528a --- /dev/null +++ b/data/CTR-ALG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000038C00 + name: 'LEGO® Star Wars® III: The Clone Wars™ ' + updates: [] +- regions: + - US + id: 0004000000035400 + name: 'LEGO® Star Wars® III: The Clone Wars™' + updates: [] diff --git a/data/CTR-ALG/icon.jpg b/data/CTR-ALG/icon.jpg new file mode 100644 index 0000000..70f0e43 Binary files /dev/null and b/data/CTR-ALG/icon.jpg differ diff --git a/data/CTR-ALH/art.jpg b/data/CTR-ALH/art.jpg new file mode 100644 index 0000000..7c57d19 Binary files /dev/null and b/data/CTR-ALH/art.jpg differ diff --git a/data/CTR-ALH/data.yml b/data/CTR-ALH/data.yml new file mode 100644 index 0000000..7016105 --- /dev/null +++ b/data/CTR-ALH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000090E00 + name: ロストヒーローズ + updates: [] diff --git a/data/CTR-ALH/icon.jpg b/data/CTR-ALH/icon.jpg new file mode 100644 index 0000000..52a1756 Binary files /dev/null and b/data/CTR-ALH/icon.jpg differ diff --git a/data/CTR-ALJ/art.jpg b/data/CTR-ALJ/art.jpg new file mode 100644 index 0000000..f663e40 Binary files /dev/null and b/data/CTR-ALJ/art.jpg differ diff --git a/data/CTR-ALJ/data.yml b/data/CTR-ALJ/data.yml new file mode 100644 index 0000000..1812e65 --- /dev/null +++ b/data/CTR-ALJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000168A00 + name: Lucky Luke & The Daltons + updates: [] diff --git a/data/CTR-ALJ/icon.jpg b/data/CTR-ALJ/icon.jpg new file mode 100644 index 0000000..94d4db4 Binary files /dev/null and b/data/CTR-ALJ/icon.jpg differ diff --git a/data/CTR-ALK/art.jpg b/data/CTR-ALK/art.jpg new file mode 100644 index 0000000..efbc876 Binary files /dev/null and b/data/CTR-ALK/art.jpg differ diff --git a/data/CTR-ALK/data.yml b/data/CTR-ALK/data.yml new file mode 100644 index 0000000..c9b82a2 --- /dev/null +++ b/data/CTR-ALK/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000167100 + name: I Love My Cats + updates: [] +- regions: + - US + id: 0004000000167300 + name: I Love My Cats + updates: [] diff --git a/data/CTR-ALK/icon.jpg b/data/CTR-ALK/icon.jpg new file mode 100644 index 0000000..62f70c3 Binary files /dev/null and b/data/CTR-ALK/icon.jpg differ diff --git a/data/CTR-ALL/art.jpg b/data/CTR-ALL/art.jpg new file mode 100644 index 0000000..788f38a Binary files /dev/null and b/data/CTR-ALL/art.jpg differ diff --git a/data/CTR-ALL/data.yml b/data/CTR-ALL/data.yml new file mode 100644 index 0000000..4a4cad8 --- /dev/null +++ b/data/CTR-ALL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000008FC00 + name: Sonic & All-Stars Racing Transformed™ + updates: [] +- regions: + - US + id: 00040000000B3500 + name: Sonic & All-Stars Racing Transformed + updates: [] diff --git a/data/CTR-ALL/icon.jpg b/data/CTR-ALL/icon.jpg new file mode 100644 index 0000000..807f610 Binary files /dev/null and b/data/CTR-ALL/icon.jpg differ diff --git a/data/CTR-ALM/art.jpg b/data/CTR-ALM/art.jpg new file mode 100644 index 0000000..6598a4f Binary files /dev/null and b/data/CTR-ALM/art.jpg differ diff --git a/data/CTR-ALM/data.yml b/data/CTR-ALM/data.yml new file mode 100644 index 0000000..88d462a --- /dev/null +++ b/data/CTR-ALM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000C0100 + name: マギ はじまりの迷宮 + updates: + - id: 0004000E000C0100 + name: 更新データ Ver. 2.0 マギ はじまりの迷宮 diff --git a/data/CTR-ALM/icon.jpg b/data/CTR-ALM/icon.jpg new file mode 100644 index 0000000..0ffa08d Binary files /dev/null and b/data/CTR-ALM/icon.jpg differ diff --git a/data/CTR-ALN/art.jpg b/data/CTR-ALN/art.jpg new file mode 100644 index 0000000..b4dad24 Binary files /dev/null and b/data/CTR-ALN/art.jpg differ diff --git a/data/CTR-ALN/data.yml b/data/CTR-ALN/data.yml new file mode 100644 index 0000000..65b1ac1 --- /dev/null +++ b/data/CTR-ALN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000178B00 + name: I Love My Pony + updates: [] +- regions: + - US + id: 0004000000178C00 + name: I Love My Pony + updates: [] diff --git a/data/CTR-ALN/icon.jpg b/data/CTR-ALN/icon.jpg new file mode 100644 index 0000000..5196cdf Binary files /dev/null and b/data/CTR-ALN/icon.jpg differ diff --git a/data/CTR-ALP/art.jpg b/data/CTR-ALP/art.jpg new file mode 100644 index 0000000..eecb52f Binary files /dev/null and b/data/CTR-ALP/art.jpg differ diff --git a/data/CTR-ALP/data.yml b/data/CTR-ALP/data.yml new file mode 100644 index 0000000..18e9e93 --- /dev/null +++ b/data/CTR-ALP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000032100 + name: NEWラブプラス + updates: + - id: 0004000E00032100 + name: 更新データ Ver. 1.2 NEWラブプラス diff --git a/data/CTR-ALP/icon.jpg b/data/CTR-ALP/icon.jpg new file mode 100644 index 0000000..f401737 Binary files /dev/null and b/data/CTR-ALP/icon.jpg differ diff --git a/data/CTR-ALT/art.jpg b/data/CTR-ALT/art.jpg new file mode 100644 index 0000000..eadd160 Binary files /dev/null and b/data/CTR-ALT/art.jpg differ diff --git a/data/CTR-ALT/data.yml b/data/CTR-ALT/data.yml new file mode 100644 index 0000000..2602629 --- /dev/null +++ b/data/CTR-ALT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000053700 + name: エクストルーパーズ + updates: [] diff --git a/data/CTR-ALT/icon.jpg b/data/CTR-ALT/icon.jpg new file mode 100644 index 0000000..82a0cc2 Binary files /dev/null and b/data/CTR-ALT/icon.jpg differ diff --git a/data/CTR-ALV/art.jpg b/data/CTR-ALV/art.jpg new file mode 100644 index 0000000..2b6f486 Binary files /dev/null and b/data/CTR-ALV/art.jpg differ diff --git a/data/CTR-ALV/data.yml b/data/CTR-ALV/data.yml new file mode 100644 index 0000000..023fe36 --- /dev/null +++ b/data/CTR-ALV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000065C00 + name: ラビリンスの彼方 + updates: [] diff --git a/data/CTR-ALV/icon.jpg b/data/CTR-ALV/icon.jpg new file mode 100644 index 0000000..f8a8cc4 Binary files /dev/null and b/data/CTR-ALV/icon.jpg differ diff --git a/data/CTR-ALW/art.jpg b/data/CTR-ALW/art.jpg new file mode 100644 index 0000000..53049d5 Binary files /dev/null and b/data/CTR-ALW/art.jpg differ diff --git a/data/CTR-ALW/data.yml b/data/CTR-ALW/data.yml new file mode 100644 index 0000000..95a7302 --- /dev/null +++ b/data/CTR-ALW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000167000 + name: I Love My Dogs + updates: [] +- regions: + - US + id: 0004000000167200 + name: I Love My Dogs + updates: [] diff --git a/data/CTR-ALW/icon.jpg b/data/CTR-ALW/icon.jpg new file mode 100644 index 0000000..a52d0de Binary files /dev/null and b/data/CTR-ALW/icon.jpg differ diff --git a/data/CTR-ALX/art.jpg b/data/CTR-ALX/art.jpg new file mode 100644 index 0000000..2ac35dc Binary files /dev/null and b/data/CTR-ALX/art.jpg differ diff --git a/data/CTR-ALX/data.yml b/data/CTR-ALX/data.yml new file mode 100644 index 0000000..0d4c730 --- /dev/null +++ b/data/CTR-ALX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006D100 + name: Luxor + updates: [] +- regions: + - US + id: 00040000000F1100 + name: Luxor™ + updates: [] diff --git a/data/CTR-ALX/icon.jpg b/data/CTR-ALX/icon.jpg new file mode 100644 index 0000000..95911b2 Binary files /dev/null and b/data/CTR-ALX/icon.jpg differ diff --git a/data/CTR-ALY/art.jpg b/data/CTR-ALY/art.jpg new file mode 100644 index 0000000..32abad2 Binary files /dev/null and b/data/CTR-ALY/art.jpg differ diff --git a/data/CTR-ALY/data.yml b/data/CTR-ALY/data.yml new file mode 100644 index 0000000..6baa1a7 --- /dev/null +++ b/data/CTR-ALY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 00040000000AE300 + name: 'Lalaloopsy™: Carnival of Friends' + updates: [] diff --git a/data/CTR-ALY/icon.jpg b/data/CTR-ALY/icon.jpg new file mode 100644 index 0000000..7358cfb Binary files /dev/null and b/data/CTR-ALY/icon.jpg differ diff --git a/data/CTR-ALZ/art.jpg b/data/CTR-ALZ/art.jpg new file mode 100644 index 0000000..b72f373 Binary files /dev/null and b/data/CTR-ALZ/art.jpg differ diff --git a/data/CTR-ALZ/data.yml b/data/CTR-ALZ/data.yml new file mode 100644 index 0000000..4877234 --- /dev/null +++ b/data/CTR-ALZ/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001D6800 + name: YO-KAI WATCH™ 3 + updates: + - id: 0004000E001D6800 + name: 'YO-KAI WATCH™ 3: Update' +- regions: + - JP + id: 00040000001AF400 + name: 妖怪ウォッチ3 スキヤキ + updates: + - id: 0004000E001AF400 + name: 更新データ Ver. 4.0 妖怪ウォッチ3 スキヤキ +- regions: + - US + id: 00040000001D6700 + name: YO-KAI WATCH ™ 3 + updates: + - id: 0004000E001D6700 + name: YO-KAI WATCH ™ 3 Update Ver. 1.3 diff --git a/data/CTR-ALZ/icon.jpg b/data/CTR-ALZ/icon.jpg new file mode 100644 index 0000000..158915f Binary files /dev/null and b/data/CTR-ALZ/icon.jpg differ diff --git a/data/CTR-AM3/art.jpg b/data/CTR-AM3/art.jpg new file mode 100644 index 0000000..a0dff82 Binary files /dev/null and b/data/CTR-AM3/art.jpg differ diff --git a/data/CTR-AM3/data.yml b/data/CTR-AM3/data.yml new file mode 100644 index 0000000..189f52b --- /dev/null +++ b/data/CTR-AM3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000073C00 + name: My Foal 3D + updates: [] +- regions: + - EU + id: 0004000000064E00 + name: The Whitakers present Milton & Friends 3D + updates: [] diff --git a/data/CTR-AM3/icon.jpg b/data/CTR-AM3/icon.jpg new file mode 100644 index 0000000..2075bf1 Binary files /dev/null and b/data/CTR-AM3/icon.jpg differ diff --git a/data/CTR-AM4/art.jpg b/data/CTR-AM4/art.jpg new file mode 100644 index 0000000..be88969 Binary files /dev/null and b/data/CTR-AM4/art.jpg differ diff --git a/data/CTR-AM4/data.yml b/data/CTR-AM4/data.yml new file mode 100644 index 0000000..b5c7143 --- /dev/null +++ b/data/CTR-AM4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000048700 + name: Monster 4x4 3D + updates: [] diff --git a/data/CTR-AM4/icon.jpg b/data/CTR-AM4/icon.jpg new file mode 100644 index 0000000..0ae6339 Binary files /dev/null and b/data/CTR-AM4/icon.jpg differ diff --git a/data/CTR-AM5/art.jpg b/data/CTR-AM5/art.jpg new file mode 100644 index 0000000..f5c7780 Binary files /dev/null and b/data/CTR-AM5/art.jpg differ diff --git a/data/CTR-AM5/data.yml b/data/CTR-AM5/data.yml new file mode 100644 index 0000000..ac5aed4 --- /dev/null +++ b/data/CTR-AM5/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C3100 + name: Mahjong Mysteries - Ancient Athena + updates: [] +- regions: + - US + id: 00040000000C0F00 + name: Mahjong Mysteries - Ancient Athena + updates: [] diff --git a/data/CTR-AM5/icon.jpg b/data/CTR-AM5/icon.jpg new file mode 100644 index 0000000..340b554 Binary files /dev/null and b/data/CTR-AM5/icon.jpg differ diff --git a/data/CTR-AM6/art.jpg b/data/CTR-AM6/art.jpg new file mode 100644 index 0000000..2abe869 Binary files /dev/null and b/data/CTR-AM6/art.jpg differ diff --git a/data/CTR-AM6/data.yml b/data/CTR-AM6/data.yml new file mode 100644 index 0000000..0bffad3 --- /dev/null +++ b/data/CTR-AM6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000008D500 + name: まめゴマ よいこ まるいこ げんきなこ! + updates: [] diff --git a/data/CTR-AM6/icon.jpg b/data/CTR-AM6/icon.jpg new file mode 100644 index 0000000..d6e9ff8 Binary files /dev/null and b/data/CTR-AM6/icon.jpg differ diff --git a/data/CTR-AM7/art.jpg b/data/CTR-AM7/art.jpg new file mode 100644 index 0000000..62ab1da Binary files /dev/null and b/data/CTR-AM7/art.jpg differ diff --git a/data/CTR-AM7/data.yml b/data/CTR-AM7/data.yml new file mode 100644 index 0000000..839c6a1 --- /dev/null +++ b/data/CTR-AM7/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000008FB00 + name: MYST + updates: [] +- regions: + - US + id: 000400000007C200 + name: Myst + updates: [] diff --git a/data/CTR-AM7/icon.jpg b/data/CTR-AM7/icon.jpg new file mode 100644 index 0000000..4a1a7d0 Binary files /dev/null and b/data/CTR-AM7/icon.jpg differ diff --git a/data/CTR-AM8/art.jpg b/data/CTR-AM8/art.jpg new file mode 100644 index 0000000..a2a1f9d Binary files /dev/null and b/data/CTR-AM8/art.jpg differ diff --git a/data/CTR-AM8/data.yml b/data/CTR-AM8/data.yml new file mode 100644 index 0000000..1a779d6 --- /dev/null +++ b/data/CTR-AM8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D6100 + name: Murder on the Titanic + updates: [] +- regions: + - JP + id: 0004000000114300 + name: タイタニック殺人事件 + updates: [] +- regions: + - US + id: 00040000000C1100 + name: Murder on the Titanic + updates: [] diff --git a/data/CTR-AM8/icon.jpg b/data/CTR-AM8/icon.jpg new file mode 100644 index 0000000..72ccfea Binary files /dev/null and b/data/CTR-AM8/icon.jpg differ diff --git a/data/CTR-AM9/art.jpg b/data/CTR-AM9/art.jpg new file mode 100644 index 0000000..d703713 Binary files /dev/null and b/data/CTR-AM9/art.jpg differ diff --git a/data/CTR-AM9/data.yml b/data/CTR-AM9/data.yml new file mode 100644 index 0000000..b9ac8b7 --- /dev/null +++ b/data/CTR-AM9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000048000 + name: 初音ミク and Future Stars Project mirai + updates: [] diff --git a/data/CTR-AM9/icon.jpg b/data/CTR-AM9/icon.jpg new file mode 100644 index 0000000..31452a7 Binary files /dev/null and b/data/CTR-AM9/icon.jpg differ diff --git a/data/CTR-AMA/art.jpg b/data/CTR-AMA/art.jpg new file mode 100644 index 0000000..d9997e7 Binary files /dev/null and b/data/CTR-AMA/art.jpg differ diff --git a/data/CTR-AMA/data.yml b/data/CTR-AMA/data.yml new file mode 100644 index 0000000..576202f --- /dev/null +++ b/data/CTR-AMA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000064A00 + name: 萌え萌え大戦争☆げんだいばーん 3D + updates: [] diff --git a/data/CTR-AMA/icon.jpg b/data/CTR-AMA/icon.jpg new file mode 100644 index 0000000..6127775 Binary files /dev/null and b/data/CTR-AMA/icon.jpg differ diff --git a/data/CTR-AMC/art.jpg b/data/CTR-AMC/art.jpg new file mode 100644 index 0000000..f2db1b3 Binary files /dev/null and b/data/CTR-AMC/art.jpg differ diff --git a/data/CTR-AMC/data.yml b/data/CTR-AMC/data.yml new file mode 100644 index 0000000..95a9f5f --- /dev/null +++ b/data/CTR-AMC/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000AB700 + name: マダガスカル3 + updates: [] +- regions: + - US + id: 0004000000087D00 + name: 'Madagascar 3: The Video Game' + updates: [] diff --git a/data/CTR-AMC/icon.jpg b/data/CTR-AMC/icon.jpg new file mode 100644 index 0000000..ce844e5 Binary files /dev/null and b/data/CTR-AMC/icon.jpg differ diff --git a/data/CTR-AMD/art.jpg b/data/CTR-AMD/art.jpg new file mode 100644 index 0000000..46653ed Binary files /dev/null and b/data/CTR-AMD/art.jpg differ diff --git a/data/CTR-AMD/data.yml b/data/CTR-AMD/data.yml new file mode 100644 index 0000000..3078fc1 --- /dev/null +++ b/data/CTR-AMD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000033E00 + name: Madden NFL Football + updates: [] +- regions: + - US + id: 0004000000035500 + name: Madden NFL Football + updates: [] diff --git a/data/CTR-AMD/icon.jpg b/data/CTR-AMD/icon.jpg new file mode 100644 index 0000000..f8e1301 Binary files /dev/null and b/data/CTR-AMD/icon.jpg differ diff --git a/data/CTR-AME/art.jpg b/data/CTR-AME/art.jpg new file mode 100644 index 0000000..49fe854 Binary files /dev/null and b/data/CTR-AME/art.jpg differ diff --git a/data/CTR-AME/data.yml b/data/CTR-AME/data.yml new file mode 100644 index 0000000..a1e2278 --- /dev/null +++ b/data/CTR-AME/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000053D00 + name: 豆しば + updates: [] diff --git a/data/CTR-AME/icon.jpg b/data/CTR-AME/icon.jpg new file mode 100644 index 0000000..23e541e Binary files /dev/null and b/data/CTR-AME/icon.jpg differ diff --git a/data/CTR-AMG/art.jpg b/data/CTR-AMG/art.jpg new file mode 100644 index 0000000..9b00248 Binary files /dev/null and b/data/CTR-AMG/art.jpg differ diff --git a/data/CTR-AMG/data.yml b/data/CTR-AMG/data.yml new file mode 100644 index 0000000..140e399 --- /dev/null +++ b/data/CTR-AMG/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000082400 + name: 'Metal Gear Solid: Snake Eater 3D' + updates: [] +- regions: + - JP + id: 000400000007A000 + name: METAL GEAR SOLID SNAKE EATER 3D + updates: + - id: 0004000E0007A000 + name: 更新データ Ver. 1.1 METAL GEAR SOLID SNAKE EATER 3D +- regions: + - US + id: 0004000000081E00 + name: METAL GEAR SOLID SNAKE EATER 3D + updates: + - id: 0004000E00081E00 + name: METAL GEAR SOLID SNAKE EATER 3D Update Ver. 1.1 diff --git a/data/CTR-AMG/icon.jpg b/data/CTR-AMG/icon.jpg new file mode 100644 index 0000000..84d151b Binary files /dev/null and b/data/CTR-AMG/icon.jpg differ diff --git a/data/CTR-AMH/art.jpg b/data/CTR-AMH/art.jpg new file mode 100644 index 0000000..67c586c Binary files /dev/null and b/data/CTR-AMH/art.jpg differ diff --git a/data/CTR-AMH/data.yml b/data/CTR-AMH/data.yml new file mode 100644 index 0000000..8d71d9e --- /dev/null +++ b/data/CTR-AMH/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B1D00 + name: Monster Hunter™ 3 Ultimate + updates: [] +- regions: + - JP + id: 0004000000048100 + name: モンスターハンター3(トライ)G + updates: [] +- regions: + - KR + id: 00040000000D2E00 + name: MONSTER HUNTER 3 ULTIMATE + updates: [] +- regions: + - US + id: 00040000000AE400 + name: Monster Hunter™ 3 Ultimate + updates: [] diff --git a/data/CTR-AMH/icon.jpg b/data/CTR-AMH/icon.jpg new file mode 100644 index 0000000..e205c23 Binary files /dev/null and b/data/CTR-AMH/icon.jpg differ diff --git a/data/CTR-AMJ/art.jpg b/data/CTR-AMJ/art.jpg new file mode 100644 index 0000000..0a58518 Binary files /dev/null and b/data/CTR-AMJ/art.jpg differ diff --git a/data/CTR-AMJ/data.yml b/data/CTR-AMJ/data.yml new file mode 100644 index 0000000..d5e813d --- /dev/null +++ b/data/CTR-AMJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000048500 + name: Michael Jackson The Experience + updates: [] diff --git a/data/CTR-AMJ/icon.jpg b/data/CTR-AMJ/icon.jpg new file mode 100644 index 0000000..0f12528 Binary files /dev/null and b/data/CTR-AMJ/icon.jpg differ diff --git a/data/CTR-AMK/art.jpg b/data/CTR-AMK/art.jpg new file mode 100644 index 0000000..db47494 Binary files /dev/null and b/data/CTR-AMK/art.jpg differ diff --git a/data/CTR-AMK/data.yml b/data/CTR-AMK/data.yml new file mode 100644 index 0000000..506e645 --- /dev/null +++ b/data/CTR-AMK/data.yml @@ -0,0 +1,33 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000030700 + name: Mario Kart™ 7 + updates: + - id: 0004000E00030700 + name: Mario Kart 7 Update data +- regions: + - JP + id: 0004000000030600 + name: マリオカート7 + updates: + - id: 0004000E00030600 + name: 更新データ Ver. 1.1 マリオカート7 +- regions: + - KR + id: 0004000000030A00 + name: 마리오 카트 7 + updates: [] +- regions: + - TW + id: 000400000008B400 + name: 瑪利歐賽車7 + updates: [] +- regions: + - US + id: 0004000000030800 + name: Mario Kart™ 7 + updates: + - id: 0004000E00030800 + name: Mario Kart™ 7 Update Ver. 1.1 diff --git a/data/CTR-AMK/icon.jpg b/data/CTR-AMK/icon.jpg new file mode 100644 index 0000000..56e0787 Binary files /dev/null and b/data/CTR-AMK/icon.jpg differ diff --git a/data/CTR-AMP/art.jpg b/data/CTR-AMP/art.jpg new file mode 100644 index 0000000..057daa7 Binary files /dev/null and b/data/CTR-AMP/art.jpg differ diff --git a/data/CTR-AMP/data.yml b/data/CTR-AMP/data.yml new file mode 100644 index 0000000..b5461f3 --- /dev/null +++ b/data/CTR-AMP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000056800 + name: びっくり!とびだす!魔法のペン + updates: [] diff --git a/data/CTR-AMP/icon.jpg b/data/CTR-AMP/icon.jpg new file mode 100644 index 0000000..8f39e24 Binary files /dev/null and b/data/CTR-AMP/icon.jpg differ diff --git a/data/CTR-AMQ/art.jpg b/data/CTR-AMQ/art.jpg new file mode 100644 index 0000000..ad4df76 Binary files /dev/null and b/data/CTR-AMQ/art.jpg differ diff --git a/data/CTR-AMQ/data.yml b/data/CTR-AMQ/data.yml new file mode 100644 index 0000000..37e9199 --- /dev/null +++ b/data/CTR-AMQ/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D4B00 + name: Disney Magical World + updates: [] +- regions: + - JP + id: 0004000000095C00 + name: ディズニー マジックキャッスル マイ・ハッピー・ライフ + updates: + - id: 0004000E00095C00 + name: 更新データ Ver. 1.1 ディズニー マジックキャッスル +- regions: + - KR + id: 000400000012C700 + name: DISNEY MAGICAL WORLD + updates: [] +- regions: + - US + id: 00040000000EA900 + name: Disney Magical World + updates: + - id: 0004000E000EA900 + name: Disney Magical World Update Ver. 1.1 diff --git a/data/CTR-AMQ/icon.jpg b/data/CTR-AMQ/icon.jpg new file mode 100644 index 0000000..7f497ab Binary files /dev/null and b/data/CTR-AMQ/icon.jpg differ diff --git a/data/CTR-AMR/art.jpg b/data/CTR-AMR/art.jpg new file mode 100644 index 0000000..c177ae7 Binary files /dev/null and b/data/CTR-AMR/art.jpg differ diff --git a/data/CTR-AMR/data.yml b/data/CTR-AMR/data.yml new file mode 100644 index 0000000..ddc9acf --- /dev/null +++ b/data/CTR-AMR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000005C300 + name: スライムもりもり ドラゴンクエスト3 + updates: [] diff --git a/data/CTR-AMR/icon.jpg b/data/CTR-AMR/icon.jpg new file mode 100644 index 0000000..766a6cc Binary files /dev/null and b/data/CTR-AMR/icon.jpg differ diff --git a/data/CTR-AMT/art.jpg b/data/CTR-AMT/art.jpg new file mode 100644 index 0000000..6db595d Binary files /dev/null and b/data/CTR-AMT/art.jpg differ diff --git a/data/CTR-AMT/data.yml b/data/CTR-AMT/data.yml new file mode 100644 index 0000000..f45dc5e --- /dev/null +++ b/data/CTR-AMT/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000009C000 + name: 'Shin Megami Tensei: Devil Survivor Overclocked' + updates: + - id: 0004000E0009C000 + name: 'Shin Megami Tensei: Devil Survivor Overclocked Patch' +- regions: + - US + id: 0004000000038800 + name: 'Shin Megami Tensei®: Devil Survivor Overclocked™' + updates: [] diff --git a/data/CTR-AMT/icon.jpg b/data/CTR-AMT/icon.jpg new file mode 100644 index 0000000..021cf3a Binary files /dev/null and b/data/CTR-AMT/icon.jpg differ diff --git a/data/CTR-AMU/art.jpg b/data/CTR-AMU/art.jpg new file mode 100644 index 0000000..9983fd5 Binary files /dev/null and b/data/CTR-AMU/art.jpg differ diff --git a/data/CTR-AMU/data.yml b/data/CTR-AMU/data.yml new file mode 100644 index 0000000..2997341 --- /dev/null +++ b/data/CTR-AMU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000009D300 + name: Riding Stables 3D + updates: [] diff --git a/data/CTR-AMU/icon.jpg b/data/CTR-AMU/icon.jpg new file mode 100644 index 0000000..79533f4 Binary files /dev/null and b/data/CTR-AMU/icon.jpg differ diff --git a/data/CTR-AMX/art.jpg b/data/CTR-AMX/art.jpg new file mode 100644 index 0000000..e13a86d Binary files /dev/null and b/data/CTR-AMX/art.jpg differ diff --git a/data/CTR-AMX/data.yml b/data/CTR-AMX/data.yml new file mode 100644 index 0000000..c8307be --- /dev/null +++ b/data/CTR-AMX/data.yml @@ -0,0 +1,29 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000141C00 + name: Shin Megami Tensei IV + updates: [] +- regions: + - JP + id: 0004000000088A00 + name: 真・女神転生Ⅳ + updates: [] +- regions: + - KR + id: 00040000000F6100 + name: 진 여신전생Ⅳ + updates: [] +- regions: + - TW + id: 00040000000D6D00 + name: 真・女神轉生Ⅳ (日文版) + updates: [] +- regions: + - US + id: 00040000000E5C00 + name: Shin Megami Tensei® IV + updates: + - id: 0004000E000E5C00 + name: Shin Megami Tensei® IV Update diff --git a/data/CTR-AMX/icon.jpg b/data/CTR-AMX/icon.jpg new file mode 100644 index 0000000..814c3dc Binary files /dev/null and b/data/CTR-AMX/icon.jpg differ diff --git a/data/CTR-AMZ/art.jpg b/data/CTR-AMZ/art.jpg new file mode 100644 index 0000000..1185165 Binary files /dev/null and b/data/CTR-AMZ/art.jpg differ diff --git a/data/CTR-AMZ/data.yml b/data/CTR-AMZ/data.yml new file mode 100644 index 0000000..7a8f0fe --- /dev/null +++ b/data/CTR-AMZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000064F00 + name: Mahjong 3D Warriors of the Emperor + updates: [] diff --git a/data/CTR-AMZ/icon.jpg b/data/CTR-AMZ/icon.jpg new file mode 100644 index 0000000..35991fe Binary files /dev/null and b/data/CTR-AMZ/icon.jpg differ diff --git a/data/CTR-AN3/art.jpg b/data/CTR-AN3/art.jpg new file mode 100644 index 0000000..c160412 Binary files /dev/null and b/data/CTR-AN3/art.jpg differ diff --git a/data/CTR-AN3/data.yml b/data/CTR-AN3/data.yml new file mode 100644 index 0000000..70956ed --- /dev/null +++ b/data/CTR-AN3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000008D400 + name: NANO ASSAULT + updates: [] +- regions: + - US + id: 0004000000047B00 + name: Nano Assault + updates: [] diff --git a/data/CTR-AN3/icon.jpg b/data/CTR-AN3/icon.jpg new file mode 100644 index 0000000..f74da77 Binary files /dev/null and b/data/CTR-AN3/icon.jpg differ diff --git a/data/CTR-AN4/art.jpg b/data/CTR-AN4/art.jpg new file mode 100644 index 0000000..2bec694 Binary files /dev/null and b/data/CTR-AN4/art.jpg differ diff --git a/data/CTR-AN4/data.yml b/data/CTR-AN4/data.yml new file mode 100644 index 0000000..d5c8a65 --- /dev/null +++ b/data/CTR-AN4/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 00040000000C4400 + name: NARUTO Powerful Shippuden + updates: [] +- regions: + - JP + id: 00040000000AFE00 + name: NARUTO-ナルト-SD パワフル疾風伝 + updates: [] +- regions: + - TW + id: 00040000000C1F00 + name: 火影忍者 SD 力量全開疾風傳 (日文版) + updates: [] diff --git a/data/CTR-AN4/icon.jpg b/data/CTR-AN4/icon.jpg new file mode 100644 index 0000000..6959fd2 Binary files /dev/null and b/data/CTR-AN4/icon.jpg differ diff --git a/data/CTR-AN6/art.jpg b/data/CTR-AN6/art.jpg new file mode 100644 index 0000000..b18fb46 Binary files /dev/null and b/data/CTR-AN6/art.jpg differ diff --git a/data/CTR-AN6/data.yml b/data/CTR-AN6/data.yml new file mode 100644 index 0000000..d9c3189 --- /dev/null +++ b/data/CTR-AN6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BFA00 + name: I am an air traffic controller AIRPORT HERO NARITA + updates: [] +- regions: + - JP + id: 00040000000BFF00 + name: ぼくは航空管制官 エアポート ヒーロー3D 成田 with ANA + updates: [] +- regions: + - US + id: 0004000000173E00 + name: I am an Air Traffic Controller Airport Hero Narita + updates: [] diff --git a/data/CTR-AN6/icon.jpg b/data/CTR-AN6/icon.jpg new file mode 100644 index 0000000..064837f Binary files /dev/null and b/data/CTR-AN6/icon.jpg differ diff --git a/data/CTR-AN7/art.jpg b/data/CTR-AN7/art.jpg new file mode 100644 index 0000000..e3d7b3f Binary files /dev/null and b/data/CTR-AN7/art.jpg differ diff --git a/data/CTR-AN7/data.yml b/data/CTR-AN7/data.yml new file mode 100644 index 0000000..413ab00 --- /dev/null +++ b/data/CTR-AN7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000C3700 + name: おさわり探偵小沢里奈 ライジング3 なめこはバナナの夢を見るか? + updates: [] diff --git a/data/CTR-AN7/icon.jpg b/data/CTR-AN7/icon.jpg new file mode 100644 index 0000000..c69973a Binary files /dev/null and b/data/CTR-AN7/icon.jpg differ diff --git a/data/CTR-AN9/art.jpg b/data/CTR-AN9/art.jpg new file mode 100644 index 0000000..429d84e Binary files /dev/null and b/data/CTR-AN9/art.jpg differ diff --git a/data/CTR-AN9/data.yml b/data/CTR-AN9/data.yml new file mode 100644 index 0000000..33ab33f --- /dev/null +++ b/data/CTR-AN9/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A9800 + name: nicola監修 モデル☆おしゃれ オーディション プラチナ + updates: + - id: 0004000E000A9800 + name: 更新データ Ver. 1.1 nicola監修 モデル☆おしゃれオーディション プラチナ diff --git a/data/CTR-AN9/icon.jpg b/data/CTR-AN9/icon.jpg new file mode 100644 index 0000000..35eb2c8 Binary files /dev/null and b/data/CTR-AN9/icon.jpg differ diff --git a/data/CTR-ANA/art.jpg b/data/CTR-ANA/art.jpg new file mode 100644 index 0000000..19ba12b Binary files /dev/null and b/data/CTR-ANA/art.jpg differ diff --git a/data/CTR-ANA/data.yml b/data/CTR-ANA/data.yml new file mode 100644 index 0000000..1812028 --- /dev/null +++ b/data/CTR-ANA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000ADA00 + name: ピカピカナース物語2 + updates: + - id: 0004000E000ADA00 + name: 更新データ Ver. 1.1 ピカピカナース物語2 diff --git a/data/CTR-ANA/icon.jpg b/data/CTR-ANA/icon.jpg new file mode 100644 index 0000000..158648c Binary files /dev/null and b/data/CTR-ANA/icon.jpg differ diff --git a/data/CTR-ANC/art.jpg b/data/CTR-ANC/art.jpg new file mode 100644 index 0000000..252895f Binary files /dev/null and b/data/CTR-ANC/art.jpg differ diff --git a/data/CTR-ANC/data.yml b/data/CTR-ANC/data.yml new file mode 100644 index 0000000..aca2aa0 --- /dev/null +++ b/data/CTR-ANC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000047D00 + name: NCIS™ 3D BASED ON THE TV SERIES + updates: [] diff --git a/data/CTR-ANC/icon.jpg b/data/CTR-ANC/icon.jpg new file mode 100644 index 0000000..e73b290 Binary files /dev/null and b/data/CTR-ANC/icon.jpg differ diff --git a/data/CTR-ANE/art.jpg b/data/CTR-ANE/art.jpg new file mode 100644 index 0000000..c3b958a Binary files /dev/null and b/data/CTR-ANE/art.jpg differ diff --git a/data/CTR-ANE/data.yml b/data/CTR-ANE/data.yml new file mode 100644 index 0000000..b2fc0bf --- /dev/null +++ b/data/CTR-ANE/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A0B00 + name: 大合奏!バンドブラザーズP + updates: + - id: 0004000E000A0B00 + name: 更新データ Ver. 2.1 大合奏!バンドブラザーズP diff --git a/data/CTR-ANE/icon.jpg b/data/CTR-ANE/icon.jpg new file mode 100644 index 0000000..1a0b086 Binary files /dev/null and b/data/CTR-ANE/icon.jpg differ diff --git a/data/CTR-ANK/art.jpg b/data/CTR-ANK/art.jpg new file mode 100644 index 0000000..f73c801 Binary files /dev/null and b/data/CTR-ANK/art.jpg differ diff --git a/data/CTR-ANK/data.yml b/data/CTR-ANK/data.yml new file mode 100644 index 0000000..7667f9e --- /dev/null +++ b/data/CTR-ANK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000061200 + name: Nicktoons MLB® 3D + updates: [] diff --git a/data/CTR-ANK/icon.jpg b/data/CTR-ANK/icon.jpg new file mode 100644 index 0000000..f58fd32 Binary files /dev/null and b/data/CTR-ANK/icon.jpg differ diff --git a/data/CTR-ANL/art.jpg b/data/CTR-ANL/art.jpg new file mode 100644 index 0000000..06fb879 Binary files /dev/null and b/data/CTR-ANL/art.jpg differ diff --git a/data/CTR-ANL/data.yml b/data/CTR-ANL/data.yml new file mode 100644 index 0000000..aab910c --- /dev/null +++ b/data/CTR-ANL/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B4800 + name: Girls' Fashion Shoot + updates: [] +- regions: + - JP + id: 0004000000065700 + name: nicola監修 モデル☆おしゃれオーディション 2 + updates: [] +- regions: + - KR + id: 0004000000091F00 + name: 전국민 모델★오디션 슈퍼스타 2 + updates: [] +- regions: + - US + id: 00040000000B6300 + name: Girls' Fashion Shoot + updates: [] diff --git a/data/CTR-ANL/icon.jpg b/data/CTR-ANL/icon.jpg new file mode 100644 index 0000000..5fd7cb5 Binary files /dev/null and b/data/CTR-ANL/icon.jpg differ diff --git a/data/CTR-ANM/art.jpg b/data/CTR-ANM/art.jpg new file mode 100644 index 0000000..dd039ff Binary files /dev/null and b/data/CTR-ANM/art.jpg differ diff --git a/data/CTR-ANM/data.yml b/data/CTR-ANM/data.yml new file mode 100644 index 0000000..cb57778 --- /dev/null +++ b/data/CTR-ANM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000039500 + name: アニマルリゾート 動物園をつくろう!! + updates: [] diff --git a/data/CTR-ANM/icon.jpg b/data/CTR-ANM/icon.jpg new file mode 100644 index 0000000..48cd71c Binary files /dev/null and b/data/CTR-ANM/icon.jpg differ diff --git a/data/CTR-ANN/art.jpg b/data/CTR-ANN/art.jpg new file mode 100644 index 0000000..eb2c975 Binary files /dev/null and b/data/CTR-ANN/art.jpg differ diff --git a/data/CTR-ANN/data.yml b/data/CTR-ANN/data.yml new file mode 100644 index 0000000..9fd41b9 --- /dev/null +++ b/data/CTR-ANN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000D3F00 + name: 忍者じゃじゃ丸くん さくら姫と火竜のひみつ + updates: [] diff --git a/data/CTR-ANN/icon.jpg b/data/CTR-ANN/icon.jpg new file mode 100644 index 0000000..918b8bf Binary files /dev/null and b/data/CTR-ANN/icon.jpg differ diff --git a/data/CTR-ANP/art.jpg b/data/CTR-ANP/art.jpg new file mode 100644 index 0000000..2f6721b Binary files /dev/null and b/data/CTR-ANP/art.jpg differ diff --git a/data/CTR-ANP/data.yml b/data/CTR-ANP/data.yml new file mode 100644 index 0000000..b5a9f56 --- /dev/null +++ b/data/CTR-ANP/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000136C00 + name: 'Inazuma Eleven® GO Chrono Stones: Wildfire' + updates: [] +- regions: + - JP + id: 00040000000A1B00 + name: イナズマイレブンGO2 クロノ・ストーン ネップウ + updates: + - id: 0004000E000A1B00 + name: 更新データ Ver. 1.3 イナズマイレブン GO2 クロノ・ストーン ネップウ diff --git a/data/CTR-ANP/icon.jpg b/data/CTR-ANP/icon.jpg new file mode 100644 index 0000000..8755774 Binary files /dev/null and b/data/CTR-ANP/icon.jpg differ diff --git a/data/CTR-ANQ/art.jpg b/data/CTR-ANQ/art.jpg new file mode 100644 index 0000000..0a4c0b3 Binary files /dev/null and b/data/CTR-ANQ/art.jpg differ diff --git a/data/CTR-ANQ/data.yml b/data/CTR-ANQ/data.yml new file mode 100644 index 0000000..3c33726 --- /dev/null +++ b/data/CTR-ANQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000039700 + name: ニコリの数独3D ~8つのパズルで1000問~ + updates: [] diff --git a/data/CTR-ANQ/icon.jpg b/data/CTR-ANQ/icon.jpg new file mode 100644 index 0000000..1b8d0ae Binary files /dev/null and b/data/CTR-ANQ/icon.jpg differ diff --git a/data/CTR-ANR/art.jpg b/data/CTR-ANR/art.jpg new file mode 100644 index 0000000..4cc67cf Binary files /dev/null and b/data/CTR-ANR/art.jpg differ diff --git a/data/CTR-ANR/data.yml b/data/CTR-ANR/data.yml new file mode 100644 index 0000000..787bb94 --- /dev/null +++ b/data/CTR-ANR/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000049100 + name: Star Fox 64™ 3D + updates: [] +- regions: + - JP + id: 0004000000030400 + name: スターフォックス64 3D + updates: [] +- regions: + - KR + id: 0004000000080E00 + name: 스타폭스 64 3D + updates: [] +- regions: + - TW + id: 0004000000080A00 + name: 星際火狐64 3D + updates: [] +- regions: + - US + id: 0004000000049000 + name: Star Fox 64™ 3D + updates: [] diff --git a/data/CTR-ANR/icon.jpg b/data/CTR-ANR/icon.jpg new file mode 100644 index 0000000..4362f29 Binary files /dev/null and b/data/CTR-ANR/icon.jpg differ diff --git a/data/CTR-ANS/art.jpg b/data/CTR-ANS/art.jpg new file mode 100644 index 0000000..759638c Binary files /dev/null and b/data/CTR-ANS/art.jpg differ diff --git a/data/CTR-ANS/data.yml b/data/CTR-ANS/data.yml new file mode 100644 index 0000000..40594e6 --- /dev/null +++ b/data/CTR-ANS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000051500 + name: 'Need for Speed: The Run' + updates: [] +- regions: + - JP + id: 000400000006E200 + name: ニード・フォー・スピード ザ・ラン + updates: [] +- regions: + - US + id: 0004000000051400 + name: 'Need For Speed™: The Run' + updates: [] diff --git a/data/CTR-ANS/icon.jpg b/data/CTR-ANS/icon.jpg new file mode 100644 index 0000000..f0d79cc Binary files /dev/null and b/data/CTR-ANS/icon.jpg differ diff --git a/data/CTR-ANT/art.jpg b/data/CTR-ANT/art.jpg new file mode 100644 index 0000000..3bd01c0 Binary files /dev/null and b/data/CTR-ANT/art.jpg differ diff --git a/data/CTR-ANT/data.yml b/data/CTR-ANT/data.yml new file mode 100644 index 0000000..0d010a1 --- /dev/null +++ b/data/CTR-ANT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000035B00 + name: NARUTO-ナルト- 疾風伝 忍立体絵巻! 最強忍界決戦!! + updates: [] diff --git a/data/CTR-ANT/icon.jpg b/data/CTR-ANT/icon.jpg new file mode 100644 index 0000000..e07a168 Binary files /dev/null and b/data/CTR-ANT/icon.jpg differ diff --git a/data/CTR-ANU/art.jpg b/data/CTR-ANU/art.jpg new file mode 100644 index 0000000..596d349 Binary files /dev/null and b/data/CTR-ANU/art.jpg differ diff --git a/data/CTR-ANU/data.yml b/data/CTR-ANU/data.yml new file mode 100644 index 0000000..351e15d --- /dev/null +++ b/data/CTR-ANU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B8D00 + name: 'Miitopia™: Casting Call' + updates: [] +- regions: + - JP + id: 00040000001B1700 + name: 好きなMiiで見る Miitopia (ミートピア) 予告編 + updates: [] +- regions: + - US + id: 00040000001B8C00 + name: 'Miitopia™: Casting Call' + updates: [] diff --git a/data/CTR-ANU/icon.jpg b/data/CTR-ANU/icon.jpg new file mode 100644 index 0000000..8adab9e Binary files /dev/null and b/data/CTR-ANU/icon.jpg differ diff --git a/data/CTR-ANW/art.jpg b/data/CTR-ANW/art.jpg new file mode 100644 index 0000000..14c731b Binary files /dev/null and b/data/CTR-ANW/art.jpg differ diff --git a/data/CTR-ANW/data.yml b/data/CTR-ANW/data.yml new file mode 100644 index 0000000..88140d0 --- /dev/null +++ b/data/CTR-ANW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000053200 + name: 謎惑館 音の間に間に + updates: [] diff --git a/data/CTR-ANW/icon.jpg b/data/CTR-ANW/icon.jpg new file mode 100644 index 0000000..e364f2f Binary files /dev/null and b/data/CTR-ANW/icon.jpg differ diff --git a/data/CTR-AP2/art.jpg b/data/CTR-AP2/art.jpg new file mode 100644 index 0000000..703b34e Binary files /dev/null and b/data/CTR-AP2/art.jpg differ diff --git a/data/CTR-AP2/data.yml b/data/CTR-AP2/data.yml new file mode 100644 index 0000000..91051b0 --- /dev/null +++ b/data/CTR-AP2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000056600 + name: ぷよぷよ!! + updates: [] diff --git a/data/CTR-AP2/icon.jpg b/data/CTR-AP2/icon.jpg new file mode 100644 index 0000000..d767429 Binary files /dev/null and b/data/CTR-AP2/icon.jpg differ diff --git a/data/CTR-AP3/art.jpg b/data/CTR-AP3/art.jpg new file mode 100644 index 0000000..d711dd5 Binary files /dev/null and b/data/CTR-AP3/art.jpg differ diff --git a/data/CTR-AP3/data.yml b/data/CTR-AP3/data.yml new file mode 100644 index 0000000..88fdf8c --- /dev/null +++ b/data/CTR-AP3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000006D700 + name: Pets Resort 3D + updates: [] diff --git a/data/CTR-AP3/icon.jpg b/data/CTR-AP3/icon.jpg new file mode 100644 index 0000000..80bd1fb Binary files /dev/null and b/data/CTR-AP3/icon.jpg differ diff --git a/data/CTR-AP4/art.jpg b/data/CTR-AP4/art.jpg new file mode 100644 index 0000000..7388a16 Binary files /dev/null and b/data/CTR-AP4/art.jpg differ diff --git a/data/CTR-AP4/data.yml b/data/CTR-AP4/data.yml new file mode 100644 index 0000000..c9d037d --- /dev/null +++ b/data/CTR-AP4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000053A00 + name: ポヨポヨ観察日記 + updates: [] diff --git a/data/CTR-AP4/icon.jpg b/data/CTR-AP4/icon.jpg new file mode 100644 index 0000000..8ad8a5b Binary files /dev/null and b/data/CTR-AP4/icon.jpg differ diff --git a/data/CTR-AP5/art.jpg b/data/CTR-AP5/art.jpg new file mode 100644 index 0000000..99dbee1 Binary files /dev/null and b/data/CTR-AP5/art.jpg differ diff --git a/data/CTR-AP5/data.yml b/data/CTR-AP5/data.yml new file mode 100644 index 0000000..88821de --- /dev/null +++ b/data/CTR-AP5/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000053600 + name: ペンギンの問題 ザ・ウォーズ + updates: + - id: 0004000E00053600 + name: 更新データ Ver. 1.1 ペンギンの問題 ザ・ウォ―ズ diff --git a/data/CTR-AP5/icon.jpg b/data/CTR-AP5/icon.jpg new file mode 100644 index 0000000..4a5ff44 Binary files /dev/null and b/data/CTR-AP5/icon.jpg differ diff --git a/data/CTR-AP6/art.jpg b/data/CTR-AP6/art.jpg new file mode 100644 index 0000000..5d581bd Binary files /dev/null and b/data/CTR-AP6/art.jpg differ diff --git a/data/CTR-AP6/data.yml b/data/CTR-AP6/data.yml new file mode 100644 index 0000000..780d2b0 --- /dev/null +++ b/data/CTR-AP6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000084900 + name: Purr Pals Purrfection + updates: [] diff --git a/data/CTR-AP6/icon.jpg b/data/CTR-AP6/icon.jpg new file mode 100644 index 0000000..0cdbb3f Binary files /dev/null and b/data/CTR-AP6/icon.jpg differ diff --git a/data/CTR-AP9/art.jpg b/data/CTR-AP9/art.jpg new file mode 100644 index 0000000..739aa24 Binary files /dev/null and b/data/CTR-AP9/art.jpg differ diff --git a/data/CTR-AP9/data.yml b/data/CTR-AP9/data.yml new file mode 100644 index 0000000..ea00f8e --- /dev/null +++ b/data/CTR-AP9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000056900 + name: パックマンパーティ 3D + updates: [] diff --git a/data/CTR-AP9/icon.jpg b/data/CTR-AP9/icon.jpg new file mode 100644 index 0000000..2b11913 Binary files /dev/null and b/data/CTR-AP9/icon.jpg differ diff --git a/data/CTR-APB/art.jpg b/data/CTR-APB/art.jpg new file mode 100644 index 0000000..6932b89 Binary files /dev/null and b/data/CTR-APB/art.jpg differ diff --git a/data/CTR-APB/data.yml b/data/CTR-APB/data.yml new file mode 100644 index 0000000..d9d0cf9 --- /dev/null +++ b/data/CTR-APB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 000400000004C600 + name: 'Pinball Hall of Fame: The Williams Collection' + updates: [] diff --git a/data/CTR-APB/icon.jpg b/data/CTR-APB/icon.jpg new file mode 100644 index 0000000..3f818ea Binary files /dev/null and b/data/CTR-APB/icon.jpg differ diff --git a/data/CTR-APC/art.jpg b/data/CTR-APC/art.jpg new file mode 100644 index 0000000..077c007 Binary files /dev/null and b/data/CTR-APC/art.jpg differ diff --git a/data/CTR-APC/data.yml b/data/CTR-APC/data.yml new file mode 100644 index 0000000..eaafddf --- /dev/null +++ b/data/CTR-APC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000045600 + name: 'LEGO® Pirates of the Caribbean: The Video Game' + updates: [] diff --git a/data/CTR-APC/icon.jpg b/data/CTR-APC/icon.jpg new file mode 100644 index 0000000..63b68c6 Binary files /dev/null and b/data/CTR-APC/icon.jpg differ diff --git a/data/CTR-APD/art.jpg b/data/CTR-APD/art.jpg new file mode 100644 index 0000000..2790e1b Binary files /dev/null and b/data/CTR-APD/art.jpg differ diff --git a/data/CTR-APD/data.yml b/data/CTR-APD/data.yml new file mode 100644 index 0000000..8ea2e60 --- /dev/null +++ b/data/CTR-APD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000BA900 + name: 'Pokémon™ Mystery Dungeon: Gates to Infinity' + updates: [] +- regions: + - JP + id: 0004000000095000 + name: ポケモン不思議のダンジョン ~マグナゲートと∞迷宮~ + updates: [] +- regions: + - US + id: 00040000000BA800 + name: 'Pokémon Mystery Dungeon: Gates to Infinity' + updates: [] diff --git a/data/CTR-APD/icon.jpg b/data/CTR-APD/icon.jpg new file mode 100644 index 0000000..c1b8143 Binary files /dev/null and b/data/CTR-APD/icon.jpg differ diff --git a/data/CTR-APF/art.jpg b/data/CTR-APF/art.jpg new file mode 100644 index 0000000..95c0fc8 Binary files /dev/null and b/data/CTR-APF/art.jpg differ diff --git a/data/CTR-APF/data.yml b/data/CTR-APF/data.yml new file mode 100644 index 0000000..020156d --- /dev/null +++ b/data/CTR-APF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000004A300 + name: Petz Fantasy 3D + updates: [] +- regions: + - KR + id: 00040000000BE900 + name: 펫츠 판타지 3D + updates: [] +- regions: + - US + id: 0004000000044B00 + name: Petz Fantasy™ 3D + updates: [] diff --git a/data/CTR-APF/icon.jpg b/data/CTR-APF/icon.jpg new file mode 100644 index 0000000..e21917a Binary files /dev/null and b/data/CTR-APF/icon.jpg differ diff --git a/data/CTR-APG/art.jpg b/data/CTR-APG/art.jpg new file mode 100644 index 0000000..1a5ad27 Binary files /dev/null and b/data/CTR-APG/art.jpg differ diff --git a/data/CTR-APG/data.yml b/data/CTR-APG/data.yml new file mode 100644 index 0000000..f7725ab --- /dev/null +++ b/data/CTR-APG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000045D00 + name: PAC-MAN™ & Galaga™ Dimensions + updates: [] +- regions: + - JP + id: 0004000000039900 + name: パックマン&ギャラガ ディメンションズ + updates: [] +- regions: + - US + id: 0004000000036300 + name: PAC-MAN® & Galaga® Dimensions + updates: [] diff --git a/data/CTR-APG/icon.jpg b/data/CTR-APG/icon.jpg new file mode 100644 index 0000000..65cc384 Binary files /dev/null and b/data/CTR-APG/icon.jpg differ diff --git a/data/CTR-API/art.jpg b/data/CTR-API/art.jpg new file mode 100644 index 0000000..5b57e7a Binary files /dev/null and b/data/CTR-API/art.jpg differ diff --git a/data/CTR-API/data.yml b/data/CTR-API/data.yml new file mode 100644 index 0000000..f70886c --- /dev/null +++ b/data/CTR-API/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000008CB00 + name: Petz® Beach + updates: [] +- regions: + - JP + id: 00040000000C1C00 + name: オシャレでかわいい 子犬と遊ぼ!-海編- + updates: + - id: 0004000E000C1C00 + name: 更新データ Ver. 1.1 オシャレで かわいい 子犬と遊ぼ!-海編- +- regions: + - US + id: 0004000000077C00 + name: Petz® Beach + updates: [] diff --git a/data/CTR-API/icon.jpg b/data/CTR-API/icon.jpg new file mode 100644 index 0000000..2ef5c0c Binary files /dev/null and b/data/CTR-API/icon.jpg differ diff --git a/data/CTR-APJ/art.jpg b/data/CTR-APJ/art.jpg new file mode 100644 index 0000000..2cff6aa Binary files /dev/null and b/data/CTR-APJ/art.jpg differ diff --git a/data/CTR-APJ/data.yml b/data/CTR-APJ/data.yml new file mode 100644 index 0000000..6238fea --- /dev/null +++ b/data/CTR-APJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000178300 + name: プリパラ めざせ! アイドル☆グランプリNo.1! + updates: [] diff --git a/data/CTR-APJ/icon.jpg b/data/CTR-APJ/icon.jpg new file mode 100644 index 0000000..56cfb00 Binary files /dev/null and b/data/CTR-APJ/icon.jpg differ diff --git a/data/CTR-APM/art.jpg b/data/CTR-APM/art.jpg new file mode 100644 index 0000000..fc6bd62 Binary files /dev/null and b/data/CTR-APM/art.jpg differ diff --git a/data/CTR-APM/data.yml b/data/CTR-APM/data.yml new file mode 100644 index 0000000..e830afc --- /dev/null +++ b/data/CTR-APM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000C1900 + name: おさわり探偵 なめこ大繁殖 + updates: [] diff --git a/data/CTR-APM/icon.jpg b/data/CTR-APM/icon.jpg new file mode 100644 index 0000000..3d1c390 Binary files /dev/null and b/data/CTR-APM/icon.jpg differ diff --git a/data/CTR-APO/art.jpg b/data/CTR-APO/art.jpg new file mode 100644 index 0000000..10f4d03 Binary files /dev/null and b/data/CTR-APO/art.jpg differ diff --git a/data/CTR-APO/data.yml b/data/CTR-APO/data.yml new file mode 100644 index 0000000..d7512cd --- /dev/null +++ b/data/CTR-APO/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000008CA00 + name: Petz® Countryside + updates: [] +- regions: + - JP + id: 00040000000C1D00 + name: オシャレでかわいい 子犬と遊ぼ!-街編- + updates: [] +- regions: + - US + id: 0004000000077B00 + name: Petz® Countryside + updates: [] diff --git a/data/CTR-APO/icon.jpg b/data/CTR-APO/icon.jpg new file mode 100644 index 0000000..2922790 Binary files /dev/null and b/data/CTR-APO/icon.jpg differ diff --git a/data/CTR-APP/art.jpg b/data/CTR-APP/art.jpg new file mode 100644 index 0000000..fe8da06 Binary files /dev/null and b/data/CTR-APP/art.jpg differ diff --git a/data/CTR-APP/data.yml b/data/CTR-APP/data.yml new file mode 100644 index 0000000..0fec437 --- /dev/null +++ b/data/CTR-APP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000045400 + name: DualPenSports™ + updates: [] +- regions: + - JP + id: 0004000000039C00 + name: タッチ!ダブルペンスポーツ + updates: [] +- regions: + - US + id: 0004000000036600 + name: DualPenSports™ + updates: [] diff --git a/data/CTR-APP/icon.jpg b/data/CTR-APP/icon.jpg new file mode 100644 index 0000000..e24f2fc Binary files /dev/null and b/data/CTR-APP/icon.jpg differ diff --git a/data/CTR-APQ/art.jpg b/data/CTR-APQ/art.jpg new file mode 100644 index 0000000..fefb42f Binary files /dev/null and b/data/CTR-APQ/art.jpg differ diff --git a/data/CTR-APQ/data.yml b/data/CTR-APQ/data.yml new file mode 100644 index 0000000..7c23838 --- /dev/null +++ b/data/CTR-APQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000090D00 + name: スマイルプリキュア! レッツゴー!メルヘンワールド + updates: [] diff --git a/data/CTR-APQ/icon.jpg b/data/CTR-APQ/icon.jpg new file mode 100644 index 0000000..1e26fe5 Binary files /dev/null and b/data/CTR-APQ/icon.jpg differ diff --git a/data/CTR-APR/art.jpg b/data/CTR-APR/art.jpg new file mode 100644 index 0000000..8480f9e Binary files /dev/null and b/data/CTR-APR/art.jpg differ diff --git a/data/CTR-APR/data.yml b/data/CTR-APR/data.yml new file mode 100644 index 0000000..1af3d3c --- /dev/null +++ b/data/CTR-APR/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000AF700 + name: "LEGO® Legends of CHIMA: Laval's Journey" + updates: + - id: 0004000E000AF700 + name: "LEGO® Legends of CHIMA: Laval's Journey Update" +- regions: + - KR + id: 0004000000115E00 + name: 'LEGO Legends of Chima: 라발의 여행' + updates: [] +- regions: + - US + id: 00040000000AF800 + name: "LEGO® Legends of Chima: Laval's Journey" + updates: [] diff --git a/data/CTR-APR/icon.jpg b/data/CTR-APR/icon.jpg new file mode 100644 index 0000000..62a678b Binary files /dev/null and b/data/CTR-APR/icon.jpg differ diff --git a/data/CTR-APS/art.jpg b/data/CTR-APS/art.jpg new file mode 100644 index 0000000..2a55e8c Binary files /dev/null and b/data/CTR-APS/art.jpg differ diff --git a/data/CTR-APS/data.yml b/data/CTR-APS/data.yml new file mode 100644 index 0000000..7bdf498 --- /dev/null +++ b/data/CTR-APS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000034900 + name: プロ野球スピリッツ2011 + updates: [] diff --git a/data/CTR-APS/icon.jpg b/data/CTR-APS/icon.jpg new file mode 100644 index 0000000..31df231 Binary files /dev/null and b/data/CTR-APS/icon.jpg differ diff --git a/data/CTR-APT/art.jpg b/data/CTR-APT/art.jpg new file mode 100644 index 0000000..de465f2 Binary files /dev/null and b/data/CTR-APT/art.jpg differ diff --git a/data/CTR-APT/data.yml b/data/CTR-APT/data.yml new file mode 100644 index 0000000..46040ff --- /dev/null +++ b/data/CTR-APT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000C0300 + name: プリティーリズム マイ☆デコレインボーウエディング + updates: [] diff --git a/data/CTR-APT/icon.jpg b/data/CTR-APT/icon.jpg new file mode 100644 index 0000000..4830f19 Binary files /dev/null and b/data/CTR-APT/icon.jpg differ diff --git a/data/CTR-APU/art.jpg b/data/CTR-APU/art.jpg new file mode 100644 index 0000000..2f1908e Binary files /dev/null and b/data/CTR-APU/art.jpg differ diff --git a/data/CTR-APU/data.yml b/data/CTR-APU/data.yml new file mode 100644 index 0000000..bf06845 --- /dev/null +++ b/data/CTR-APU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 000400000004EC00 + name: Puzzler Mind Gym® 3 + updates: [] diff --git a/data/CTR-APU/icon.jpg b/data/CTR-APU/icon.jpg new file mode 100644 index 0000000..1b33a81 Binary files /dev/null and b/data/CTR-APU/icon.jpg differ diff --git a/data/CTR-APY/art.jpg b/data/CTR-APY/art.jpg new file mode 100644 index 0000000..48cd9ca Binary files /dev/null and b/data/CTR-APY/art.jpg differ diff --git a/data/CTR-APY/data.yml b/data/CTR-APY/data.yml new file mode 100644 index 0000000..955d249 --- /dev/null +++ b/data/CTR-APY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000004D400 + name: ドッグスクール ラブリーパピー + updates: [] diff --git a/data/CTR-APY/icon.jpg b/data/CTR-APY/icon.jpg new file mode 100644 index 0000000..bbfc55a Binary files /dev/null and b/data/CTR-APY/icon.jpg differ diff --git a/data/CTR-APZ/art.jpg b/data/CTR-APZ/art.jpg new file mode 100644 index 0000000..0f28d87 Binary files /dev/null and b/data/CTR-APZ/art.jpg differ diff --git a/data/CTR-APZ/data.yml b/data/CTR-APZ/data.yml new file mode 100644 index 0000000..6b897a3 --- /dev/null +++ b/data/CTR-APZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000036200 + name: Pet Zombies + updates: [] diff --git a/data/CTR-APZ/icon.jpg b/data/CTR-APZ/icon.jpg new file mode 100644 index 0000000..7446ec7 Binary files /dev/null and b/data/CTR-APZ/icon.jpg differ diff --git a/data/CTR-AQ2/art.jpg b/data/CTR-AQ2/art.jpg new file mode 100644 index 0000000..920418d Binary files /dev/null and b/data/CTR-AQ2/art.jpg differ diff --git a/data/CTR-AQ2/data.yml b/data/CTR-AQ2/data.yml new file mode 100644 index 0000000..efb1a97 --- /dev/null +++ b/data/CTR-AQ2/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001D7600 + name: 'Persona Q2: New Cinema Labyrinth' + updates: [] +- regions: + - JP + id: 00040000001CBE00 + name: ペルソナQ2 ニュー シネマ ラビリンス + updates: + - id: 0004000E001CBE00 + name: 更新データ Ver.1.2 ペルソナQ2 ニュー シネマ ラビリンス +- regions: + - US + id: 00040000001D7100 + name: 'Persona Q2: New Cinema Labyrinth' + updates: [] diff --git a/data/CTR-AQ2/icon.jpg b/data/CTR-AQ2/icon.jpg new file mode 100644 index 0000000..490cd9e Binary files /dev/null and b/data/CTR-AQ2/icon.jpg differ diff --git a/data/CTR-AQ7/art.jpg b/data/CTR-AQ7/art.jpg new file mode 100644 index 0000000..7883ce3 Binary files /dev/null and b/data/CTR-AQ7/art.jpg differ diff --git a/data/CTR-AQ7/data.yml b/data/CTR-AQ7/data.yml new file mode 100644 index 0000000..6c1f1ee --- /dev/null +++ b/data/CTR-AQ7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2E00 + name: HarmoKnight™ + updates: [] +- regions: + - JP + id: 0004000000092B00 + name: リズムハンター ハーモナイト + updates: [] +- regions: + - US + id: 00040000000C2D00 + name: HarmoKnight™ + updates: [] diff --git a/data/CTR-AQ7/icon.jpg b/data/CTR-AQ7/icon.jpg new file mode 100644 index 0000000..31b79d3 Binary files /dev/null and b/data/CTR-AQ7/icon.jpg differ diff --git a/data/CTR-AQ8/art.jpg b/data/CTR-AQ8/art.jpg new file mode 100644 index 0000000..fec99fe Binary files /dev/null and b/data/CTR-AQ8/art.jpg differ diff --git a/data/CTR-AQ8/data.yml b/data/CTR-AQ8/data.yml new file mode 100644 index 0000000..89679a7 --- /dev/null +++ b/data/CTR-AQ8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 000400000005C800 + name: Crosswords Plus + updates: [] diff --git a/data/CTR-AQ8/icon.jpg b/data/CTR-AQ8/icon.jpg new file mode 100644 index 0000000..75428f7 Binary files /dev/null and b/data/CTR-AQ8/icon.jpg differ diff --git a/data/CTR-AQ9/art.jpg b/data/CTR-AQ9/art.jpg new file mode 100644 index 0000000..6e86fcc Binary files /dev/null and b/data/CTR-AQ9/art.jpg differ diff --git a/data/CTR-AQ9/data.yml b/data/CTR-AQ9/data.yml new file mode 100644 index 0000000..51e94ff --- /dev/null +++ b/data/CTR-AQ9/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - US + id: 0004000000051E00 + name: Pokédex™ 3D Pro + updates: [] diff --git a/data/CTR-AQ9/icon.jpg b/data/CTR-AQ9/icon.jpg new file mode 100644 index 0000000..f779787 Binary files /dev/null and b/data/CTR-AQ9/icon.jpg differ diff --git a/data/CTR-AQA/art.jpg b/data/CTR-AQA/art.jpg new file mode 100644 index 0000000..2cf114c Binary files /dev/null and b/data/CTR-AQA/art.jpg differ diff --git a/data/CTR-AQA/data.yml b/data/CTR-AQA/data.yml new file mode 100644 index 0000000..3c7c841 --- /dev/null +++ b/data/CTR-AQA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000009F000 + name: メダロットDUAL クワガタVer. + updates: + - id: 0004000E0009F000 + name: 更新データ Ver. 1.1 メダロットDUAL クワガタVer. diff --git a/data/CTR-AQA/icon.jpg b/data/CTR-AQA/icon.jpg new file mode 100644 index 0000000..657ed3d Binary files /dev/null and b/data/CTR-AQA/icon.jpg differ diff --git a/data/CTR-AQB/art.jpg b/data/CTR-AQB/art.jpg new file mode 100644 index 0000000..91df395 Binary files /dev/null and b/data/CTR-AQB/art.jpg differ diff --git a/data/CTR-AQB/data.yml b/data/CTR-AQB/data.yml new file mode 100644 index 0000000..696bcde --- /dev/null +++ b/data/CTR-AQB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000065B00 + name: メダロット7 カブト Ver. + updates: + - id: 0004000E00065B00 + name: 更新データ Ver. 1.1 メダロット7 カブトVer. diff --git a/data/CTR-AQB/icon.jpg b/data/CTR-AQB/icon.jpg new file mode 100644 index 0000000..79f3aa6 Binary files /dev/null and b/data/CTR-AQB/icon.jpg differ diff --git a/data/CTR-AQC/art.jpg b/data/CTR-AQC/art.jpg new file mode 100644 index 0000000..e6fa830 Binary files /dev/null and b/data/CTR-AQC/art.jpg differ diff --git a/data/CTR-AQC/data.yml b/data/CTR-AQC/data.yml new file mode 100644 index 0000000..4917191 --- /dev/null +++ b/data/CTR-AQC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000A1A00 + name: おうちまいにち たまごっち + updates: [] diff --git a/data/CTR-AQC/icon.jpg b/data/CTR-AQC/icon.jpg new file mode 100644 index 0000000..dfb9536 Binary files /dev/null and b/data/CTR-AQC/icon.jpg differ diff --git a/data/CTR-AQE/art.jpg b/data/CTR-AQE/art.jpg new file mode 100644 index 0000000..26856b5 Binary files /dev/null and b/data/CTR-AQE/art.jpg differ diff --git a/data/CTR-AQE/data.yml b/data/CTR-AQE/data.yml new file mode 100644 index 0000000..a1e5eb4 --- /dev/null +++ b/data/CTR-AQE/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000033600 + name: 'The Legend of Zelda™: Ocarina of Time 3D' + updates: [] +- regions: + - JP + id: 0004000000033400 + name: ゼルダの伝説 時のオカリナ 3D + updates: [] +- regions: + - KR + id: 000400000008F800 + name: 젤다의 전설™ 시간의 오카리나 3D + updates: [] +- regions: + - TW + id: 000400000008F900 + name: 薩爾達傳說 時之笛 3D + updates: [] +- regions: + - US + id: 0004000000033500 + name: 'The Legend of Zelda™: Ocarina of Time™ 3D' + updates: [] diff --git a/data/CTR-AQE/icon.jpg b/data/CTR-AQE/icon.jpg new file mode 100644 index 0000000..34c9542 Binary files /dev/null and b/data/CTR-AQE/icon.jpg differ diff --git a/data/CTR-AQL/art.jpg b/data/CTR-AQL/art.jpg new file mode 100644 index 0000000..3f322d7 Binary files /dev/null and b/data/CTR-AQL/art.jpg differ diff --git a/data/CTR-AQL/data.yml b/data/CTR-AQL/data.yml new file mode 100644 index 0000000..33ac54e --- /dev/null +++ b/data/CTR-AQL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000086900 + name: 'Ice Age™ Continental Drift: Arctic Games' + updates: [] diff --git a/data/CTR-AQL/icon.jpg b/data/CTR-AQL/icon.jpg new file mode 100644 index 0000000..983f7dd Binary files /dev/null and b/data/CTR-AQL/icon.jpg differ diff --git a/data/CTR-AQM/art.jpg b/data/CTR-AQM/art.jpg new file mode 100644 index 0000000..df72644 Binary files /dev/null and b/data/CTR-AQM/art.jpg differ diff --git a/data/CTR-AQM/data.yml b/data/CTR-AQM/data.yml new file mode 100644 index 0000000..c0a6fd9 --- /dev/null +++ b/data/CTR-AQM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000009BC00 + name: Gummy Bears Mini Golf + updates: [] +- regions: + - US + id: 00040000000CEC00 + name: Gummy Bears Mini Golf + updates: [] diff --git a/data/CTR-AQM/icon.jpg b/data/CTR-AQM/icon.jpg new file mode 100644 index 0000000..af788f0 Binary files /dev/null and b/data/CTR-AQM/icon.jpg differ diff --git a/data/CTR-AQN/art.jpg b/data/CTR-AQN/art.jpg new file mode 100644 index 0000000..308ba79 Binary files /dev/null and b/data/CTR-AQN/art.jpg differ diff --git a/data/CTR-AQN/data.yml b/data/CTR-AQN/data.yml new file mode 100644 index 0000000..51fbc34 --- /dev/null +++ b/data/CTR-AQN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000034300 + name: Cubic Ninja + updates: [] +- regions: + - US + id: 0004000000046500 + name: Cubic Ninja™ + updates: [] diff --git a/data/CTR-AQN/icon.jpg b/data/CTR-AQN/icon.jpg new file mode 100644 index 0000000..b5680b1 Binary files /dev/null and b/data/CTR-AQN/icon.jpg differ diff --git a/data/CTR-AQQ/art.jpg b/data/CTR-AQQ/art.jpg new file mode 100644 index 0000000..5aa1865 Binary files /dev/null and b/data/CTR-AQQ/art.jpg differ diff --git a/data/CTR-AQQ/data.yml b/data/CTR-AQQ/data.yml new file mode 100644 index 0000000..e8cb402 --- /dev/null +++ b/data/CTR-AQQ/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000149F00 + name: 'Persona Q: Shadow of the Labyrinth' + updates: [] +- regions: + - JP + id: 00040000000C3600 + name: ペルソナQ シャドウ オブ ザ ラビリンス + updates: + - id: 0004000E000C3600 + name: 更新データ Ver. 1.2 ペルソナQ シャドウ オブ ザ ラビリンス +- regions: + - KR + id: 0004000000145C00 + name: 페르소나 Q 섀도우 오브 더 래버린스 + updates: [] +- regions: + - US + id: 0004000000123400 + name: 'Persona Q: Shadow of the Labyrinth' + updates: [] diff --git a/data/CTR-AQQ/icon.jpg b/data/CTR-AQQ/icon.jpg new file mode 100644 index 0000000..0dd2126 Binary files /dev/null and b/data/CTR-AQQ/icon.jpg differ diff --git a/data/CTR-AQV/art.jpg b/data/CTR-AQV/art.jpg new file mode 100644 index 0000000..630c78f Binary files /dev/null and b/data/CTR-AQV/art.jpg differ diff --git a/data/CTR-AQV/data.yml b/data/CTR-AQV/data.yml new file mode 100644 index 0000000..33f1fb9 --- /dev/null +++ b/data/CTR-AQV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000009EF00 + name: メダロットDUAL カブトVer. + updates: + - id: 0004000E0009EF00 + name: 更新データ Ver. 1.1 メダロットDUAL カブトVer. diff --git a/data/CTR-AQV/icon.jpg b/data/CTR-AQV/icon.jpg new file mode 100644 index 0000000..4f5e776 Binary files /dev/null and b/data/CTR-AQV/icon.jpg differ diff --git a/data/CTR-AQW/art.jpg b/data/CTR-AQW/art.jpg new file mode 100644 index 0000000..e594b77 Binary files /dev/null and b/data/CTR-AQW/art.jpg differ diff --git a/data/CTR-AQW/data.yml b/data/CTR-AQW/data.yml new file mode 100644 index 0000000..eb258e5 --- /dev/null +++ b/data/CTR-AQW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000065A00 + name: メダロット7 クワガタ Ver. + updates: + - id: 0004000E00065A00 + name: 更新データ Ver. 1.1 メダロット7 クワガタVer. diff --git a/data/CTR-AQW/icon.jpg b/data/CTR-AQW/icon.jpg new file mode 100644 index 0000000..25cac99 Binary files /dev/null and b/data/CTR-AQW/icon.jpg differ diff --git a/data/CTR-AR2/art.jpg b/data/CTR-AR2/art.jpg new file mode 100644 index 0000000..bfb33c2 Binary files /dev/null and b/data/CTR-AR2/art.jpg differ diff --git a/data/CTR-AR2/data.yml b/data/CTR-AR2/data.yml new file mode 100644 index 0000000..b3c42fb --- /dev/null +++ b/data/CTR-AR2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2B00 + name: Mystery Case Files Return to Ravenhearst + updates: [] +- regions: + - US + id: 00040000000DE000 + name: Mystery Case Files® Return to Ravenhearst + updates: [] diff --git a/data/CTR-AR2/icon.jpg b/data/CTR-AR2/icon.jpg new file mode 100644 index 0000000..05fa71c Binary files /dev/null and b/data/CTR-AR2/icon.jpg differ diff --git a/data/CTR-AR4/art.jpg b/data/CTR-AR4/art.jpg new file mode 100644 index 0000000..c2e2d19 Binary files /dev/null and b/data/CTR-AR4/art.jpg differ diff --git a/data/CTR-AR4/data.yml b/data/CTR-AR4/data.yml new file mode 100644 index 0000000..57a8ab4 --- /dev/null +++ b/data/CTR-AR4/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014A700 + name: Rune Factory 4 + updates: [] +- regions: + - JP + id: 0004000000065800 + name: ルーンファクトリー4 + updates: [] +- regions: + - US + id: 00040000000D2800 + name: Rune Factory 4 + updates: [] diff --git a/data/CTR-AR4/icon.jpg b/data/CTR-AR4/icon.jpg new file mode 100644 index 0000000..14add47 Binary files /dev/null and b/data/CTR-AR4/icon.jpg differ diff --git a/data/CTR-AR5/art.jpg b/data/CTR-AR5/art.jpg new file mode 100644 index 0000000..2a81f57 Binary files /dev/null and b/data/CTR-AR5/art.jpg differ diff --git a/data/CTR-AR5/data.yml b/data/CTR-AR5/data.yml new file mode 100644 index 0000000..71f997e --- /dev/null +++ b/data/CTR-AR5/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000055900 + name: Rabbids® Rumble + updates: [] +- regions: + - US + id: 0004000000055400 + name: Rabbids® Rumble + updates: [] diff --git a/data/CTR-AR5/icon.jpg b/data/CTR-AR5/icon.jpg new file mode 100644 index 0000000..30c06dc Binary files /dev/null and b/data/CTR-AR5/icon.jpg differ diff --git a/data/CTR-AR6/art.jpg b/data/CTR-AR6/art.jpg new file mode 100644 index 0000000..aef4971 Binary files /dev/null and b/data/CTR-AR6/art.jpg differ diff --git a/data/CTR-AR6/data.yml b/data/CTR-AR6/data.yml new file mode 100644 index 0000000..d98ff7c --- /dev/null +++ b/data/CTR-AR6/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000169500 + name: Rodea the Sky Soldier + updates: + - id: 0004000E00169500 + name: Rodea the Sky Soldier - Update +- regions: + - JP + id: 00040000000C3C00 + name: ロデア・ザ・スカイソルジャー + updates: [] +- regions: + - KR + id: 0004000000183100 + name: 로데아 더 스카이 솔져 + updates: + - id: 0004000E00183100 + name: 업데이트 데이터 Ver. 1.1 로데아 더 스카이 솔져 +- regions: + - US + id: 0004000000168800 + name: Rodea the Sky Soldier + updates: [] diff --git a/data/CTR-AR6/icon.jpg b/data/CTR-AR6/icon.jpg new file mode 100644 index 0000000..976a37f Binary files /dev/null and b/data/CTR-AR6/icon.jpg differ diff --git a/data/CTR-AR8/art.jpg b/data/CTR-AR8/art.jpg new file mode 100644 index 0000000..a8c75ae Binary files /dev/null and b/data/CTR-AR8/art.jpg differ diff --git a/data/CTR-AR8/data.yml b/data/CTR-AR8/data.yml new file mode 100644 index 0000000..3a16277 --- /dev/null +++ b/data/CTR-AR8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000019D000 + name: リルリルフェアリル キラキラ☆ はじめてのフェアリルマジック♪ + updates: [] diff --git a/data/CTR-AR8/icon.jpg b/data/CTR-AR8/icon.jpg new file mode 100644 index 0000000..e1cd656 Binary files /dev/null and b/data/CTR-AR8/icon.jpg differ diff --git a/data/CTR-ARA/art.jpg b/data/CTR-ARA/art.jpg new file mode 100644 index 0000000..7672856 Binary files /dev/null and b/data/CTR-ARA/art.jpg differ diff --git a/data/CTR-ARA/data.yml b/data/CTR-ARA/data.yml new file mode 100644 index 0000000..cd67d1a --- /dev/null +++ b/data/CTR-ARA/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000136D00 + name: 'Inazuma Eleven® GO Chrono Stone: Thunderflash' + updates: [] +- regions: + - JP + id: 00040000000A1C00 + name: イナズマイレブンGO2 クロノ・ストーン ライメイ + updates: + - id: 0004000E000A1C00 + name: 更新データ Ver. 1.3 イナズマイレブン GO2 クロノ・ストーン ライメイ diff --git a/data/CTR-ARA/icon.jpg b/data/CTR-ARA/icon.jpg new file mode 100644 index 0000000..44df981 Binary files /dev/null and b/data/CTR-ARA/icon.jpg differ diff --git a/data/CTR-ARB/art.jpg b/data/CTR-ARB/art.jpg new file mode 100644 index 0000000..cf22f60 Binary files /dev/null and b/data/CTR-ARB/art.jpg differ diff --git a/data/CTR-ARB/data.yml b/data/CTR-ARB/data.yml new file mode 100644 index 0000000..aec2b3a --- /dev/null +++ b/data/CTR-ARB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000034500 + name: ラビッツ タイム・トラベル + updates: [] +- regions: + - KR + id: 00040000000BEA00 + name: 엽기토끼 시간여행 3D + updates: [] +- regions: + - US + id: 0004000000035700 + name: Rabbids® Travel in Time 3D + updates: [] diff --git a/data/CTR-ARB/icon.jpg b/data/CTR-ARB/icon.jpg new file mode 100644 index 0000000..a0ed27a Binary files /dev/null and b/data/CTR-ARB/icon.jpg differ diff --git a/data/CTR-ARC/art.jpg b/data/CTR-ARC/art.jpg new file mode 100644 index 0000000..7535ea2 Binary files /dev/null and b/data/CTR-ARC/art.jpg differ diff --git a/data/CTR-ARC/data.yml b/data/CTR-ARC/data.yml new file mode 100644 index 0000000..5336422 --- /dev/null +++ b/data/CTR-ARC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000006AC00 + name: みんなでオートレース3D + updates: [] diff --git a/data/CTR-ARC/icon.jpg b/data/CTR-ARC/icon.jpg new file mode 100644 index 0000000..8b17317 Binary files /dev/null and b/data/CTR-ARC/icon.jpg differ diff --git a/data/CTR-ARD/art.jpg b/data/CTR-ARD/art.jpg new file mode 100644 index 0000000..db3f0e6 Binary files /dev/null and b/data/CTR-ARD/art.jpg differ diff --git a/data/CTR-ARD/data.yml b/data/CTR-ARD/data.yml new file mode 100644 index 0000000..90b8763 --- /dev/null +++ b/data/CTR-ARD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006A700 + name: Arcade Classics 3D + updates: [] +- regions: + - US + id: 0004000000107600 + name: Arcade Classics 3D + updates: [] diff --git a/data/CTR-ARD/icon.jpg b/data/CTR-ARD/icon.jpg new file mode 100644 index 0000000..cdb1a20 Binary files /dev/null and b/data/CTR-ARD/icon.jpg differ diff --git a/data/CTR-ARE/art.jpg b/data/CTR-ARE/art.jpg new file mode 100644 index 0000000..881d786 Binary files /dev/null and b/data/CTR-ARE/art.jpg differ diff --git a/data/CTR-ARE/data.yml b/data/CTR-ARE/data.yml new file mode 100644 index 0000000..ae75619 --- /dev/null +++ b/data/CTR-ARE/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000053F00 + name: Super Mario 3D Land™ + updates: [] +- regions: + - JP + id: 0004000000054100 + name: スーパーマリオ 3Dランド + updates: [] +- regions: + - KR + id: 0004000000089D00 + name: 슈퍼 마리오 3D랜드 + updates: [] +- regions: + - TW + id: 0004000000089E00 + name: 超級瑪利歐 3D樂園 + updates: [] +- regions: + - US + id: 0004000000054000 + name: Super Mario™ 3D Land + updates: [] diff --git a/data/CTR-ARE/icon.jpg b/data/CTR-ARE/icon.jpg new file mode 100644 index 0000000..482ea0b Binary files /dev/null and b/data/CTR-ARE/icon.jpg differ diff --git a/data/CTR-ARF/art.jpg b/data/CTR-ARF/art.jpg new file mode 100644 index 0000000..38b0ff7 Binary files /dev/null and b/data/CTR-ARF/art.jpg differ diff --git a/data/CTR-ARF/data.yml b/data/CTR-ARF/data.yml new file mode 100644 index 0000000..fb3644f --- /dev/null +++ b/data/CTR-ARF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000005F600 + name: Reel Fishing Paradise 3D + updates: [] +- regions: + - JP + id: 0004000000049600 + name: Fish Eyes 3D + updates: [] +- regions: + - US + id: 0004000000048D00 + name: Reel Fishing® Paradise 3D + updates: [] diff --git a/data/CTR-ARF/icon.jpg b/data/CTR-ARF/icon.jpg new file mode 100644 index 0000000..34dd2fb Binary files /dev/null and b/data/CTR-ARF/icon.jpg differ diff --git a/data/CTR-ARG/art.jpg b/data/CTR-ARG/art.jpg new file mode 100644 index 0000000..17b3859 Binary files /dev/null and b/data/CTR-ARG/art.jpg differ diff --git a/data/CTR-ARG/data.yml b/data/CTR-ARG/data.yml new file mode 100644 index 0000000..5b88856 --- /dev/null +++ b/data/CTR-ARG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 00040000000B0400 + name: 'Rise of the Guardians: The Video Game' + updates: [] diff --git a/data/CTR-ARG/icon.jpg b/data/CTR-ARG/icon.jpg new file mode 100644 index 0000000..c66ef54 Binary files /dev/null and b/data/CTR-ARG/icon.jpg differ diff --git a/data/CTR-ARH/art.jpg b/data/CTR-ARH/art.jpg new file mode 100644 index 0000000..4877e19 Binary files /dev/null and b/data/CTR-ARH/art.jpg differ diff --git a/data/CTR-ARH/data.yml b/data/CTR-ARH/data.yml new file mode 100644 index 0000000..4e5f5e7 --- /dev/null +++ b/data/CTR-ARH/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C7700 + name: 'Real Heroes: Firefighter 3D' + updates: + - id: 0004000E00091400 + name: 'Real Heroes: Firefighter 3D - Update' + - id: 0004000E000B9900 + name: 'Real Heroes: Firefighter 3D - Update' +- regions: + - US + id: 00040000000C5700 + name: 'Real Heroes: Firefighter 3D' + updates: [] diff --git a/data/CTR-ARH/icon.jpg b/data/CTR-ARH/icon.jpg new file mode 100644 index 0000000..689131d Binary files /dev/null and b/data/CTR-ARH/icon.jpg differ diff --git a/data/CTR-ARJ/art.jpg b/data/CTR-ARJ/art.jpg new file mode 100644 index 0000000..6c0e947 Binary files /dev/null and b/data/CTR-ARJ/art.jpg differ diff --git a/data/CTR-ARJ/data.yml b/data/CTR-ARJ/data.yml new file mode 100644 index 0000000..5675dbe --- /dev/null +++ b/data/CTR-ARJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B3900 + name: 鉄道にっぽん!路線たび 長良川鉄道編 + updates: [] +- regions: + - TW + id: 0004000000136A00 + name: 鐵道日本!長良川鐵道 出發篇 (繁體中文版) + updates: [] +- regions: + - US + id: 0004000000161900 + name: 'Japanese Rail Sim 3D Journey in Suburbs #1' + updates: [] diff --git a/data/CTR-ARJ/icon.jpg b/data/CTR-ARJ/icon.jpg new file mode 100644 index 0000000..ceae9e4 Binary files /dev/null and b/data/CTR-ARJ/icon.jpg differ diff --git a/data/CTR-ARK/art.jpg b/data/CTR-ARK/art.jpg new file mode 100644 index 0000000..378aefa Binary files /dev/null and b/data/CTR-ARK/art.jpg differ diff --git a/data/CTR-ARK/data.yml b/data/CTR-ARK/data.yml new file mode 100644 index 0000000..36b9c2a --- /dev/null +++ b/data/CTR-ARK/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000144200 + name: 鉄道にっぽん!路線たび 鹿島臨海鉄道編 + updates: [] +- regions: + - US + id: 00040000001BED00 + name: 'Japanese Rail Sim 3D Journey in suburbs #2' + updates: [] diff --git a/data/CTR-ARK/icon.jpg b/data/CTR-ARK/icon.jpg new file mode 100644 index 0000000..ec6d28f Binary files /dev/null and b/data/CTR-ARK/icon.jpg differ diff --git a/data/CTR-ARL/art.jpg b/data/CTR-ARL/art.jpg new file mode 100644 index 0000000..75fbaf8 Binary files /dev/null and b/data/CTR-ARL/art.jpg differ diff --git a/data/CTR-ARL/data.yml b/data/CTR-ARL/data.yml new file mode 100644 index 0000000..f5cd2e5 --- /dev/null +++ b/data/CTR-ARL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B3A00 + name: ねらって!とばして!リラックマ ぐらぐらスイーツタワー + updates: [] +- regions: + - KR + id: 0004000000139500 + name: Rilakkuma Sweets Tower + updates: [] diff --git a/data/CTR-ARL/icon.jpg b/data/CTR-ARL/icon.jpg new file mode 100644 index 0000000..f892f67 Binary files /dev/null and b/data/CTR-ARL/icon.jpg differ diff --git a/data/CTR-ARM/art.jpg b/data/CTR-ARM/art.jpg new file mode 100644 index 0000000..fadbee9 Binary files /dev/null and b/data/CTR-ARM/art.jpg differ diff --git a/data/CTR-ARM/data.yml b/data/CTR-ARM/data.yml new file mode 100644 index 0000000..bdcd2bb --- /dev/null +++ b/data/CTR-ARM/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000005A500 + name: Rayman® Origins + updates: [] +- regions: + - JP + id: 0004000000084400 + name: レイマン オリジン + updates: [] +- regions: + - KR + id: 00040000000BEC00 + name: 레이맨 오리진 + updates: [] +- regions: + - US + id: 0004000000057600 + name: RAYMAN® ORIGINS + updates: [] diff --git a/data/CTR-ARM/icon.jpg b/data/CTR-ARM/icon.jpg new file mode 100644 index 0000000..9db6a95 Binary files /dev/null and b/data/CTR-ARM/icon.jpg differ diff --git a/data/CTR-ARN/art.jpg b/data/CTR-ARN/art.jpg new file mode 100644 index 0000000..fb53143 Binary files /dev/null and b/data/CTR-ARN/art.jpg differ diff --git a/data/CTR-ARN/data.yml b/data/CTR-ARN/data.yml new file mode 100644 index 0000000..f164031 --- /dev/null +++ b/data/CTR-ARN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000049300 + name: ランナバウト3D ドライブ:インポッシブル + updates: [] diff --git a/data/CTR-ARN/icon.jpg b/data/CTR-ARN/icon.jpg new file mode 100644 index 0000000..50d4dda Binary files /dev/null and b/data/CTR-ARN/icon.jpg differ diff --git a/data/CTR-ARP/art.jpg b/data/CTR-ARP/art.jpg new file mode 100644 index 0000000..55ef135 Binary files /dev/null and b/data/CTR-ARP/art.jpg differ diff --git a/data/CTR-ARP/data.yml b/data/CTR-ARP/data.yml new file mode 100644 index 0000000..e2a3122 --- /dev/null +++ b/data/CTR-ARP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000178400 + name: 雷子-紺碧の章- + updates: [] diff --git a/data/CTR-ARP/icon.jpg b/data/CTR-ARP/icon.jpg new file mode 100644 index 0000000..cd289fc Binary files /dev/null and b/data/CTR-ARP/icon.jpg differ diff --git a/data/CTR-ARR/art.jpg b/data/CTR-ARR/art.jpg new file mode 100644 index 0000000..92e5c1f Binary files /dev/null and b/data/CTR-ARR/art.jpg differ diff --git a/data/CTR-ARR/data.yml b/data/CTR-ARR/data.yml new file mode 100644 index 0000000..ad807ce --- /dev/null +++ b/data/CTR-ARR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000033B00 + name: RIDGE RACER™ 3D + updates: [] +- regions: + - JP + id: 0004000000032800 + name: リッジレーサー3D + updates: [] +- regions: + - US + id: 0004000000035800 + name: RIDGE RACER® 3D + updates: [] diff --git a/data/CTR-ARR/icon.jpg b/data/CTR-ARR/icon.jpg new file mode 100644 index 0000000..fe5b8cb Binary files /dev/null and b/data/CTR-ARR/icon.jpg differ diff --git a/data/CTR-ARS/art.jpg b/data/CTR-ARS/art.jpg new file mode 100644 index 0000000..353fe49 Binary files /dev/null and b/data/CTR-ARS/art.jpg differ diff --git a/data/CTR-ARS/data.yml b/data/CTR-ARS/data.yml new file mode 100644 index 0000000..19ba6e5 --- /dev/null +++ b/data/CTR-ARS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000148A00 + name: Riding Star 3D + updates: [] diff --git a/data/CTR-ARS/icon.jpg b/data/CTR-ARS/icon.jpg new file mode 100644 index 0000000..dfb14ba Binary files /dev/null and b/data/CTR-ARS/icon.jpg differ diff --git a/data/CTR-ART/art.jpg b/data/CTR-ART/art.jpg new file mode 100644 index 0000000..9947e9b Binary files /dev/null and b/data/CTR-ART/art.jpg differ diff --git a/data/CTR-ART/data.yml b/data/CTR-ART/data.yml new file mode 100644 index 0000000..b410dd8 --- /dev/null +++ b/data/CTR-ART/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000006DA00 + name: Rhythm Thief & the Emperor's Treasure + updates: [] +- regions: + - JP + id: 0004000000078100 + name: リズム怪盗R 皇帝ナポレオンの遺産 + updates: [] +- regions: + - KR + id: 00040000000C4200 + name: Rhythm Thief & the Emperor’s Treasure™ + updates: [] +- regions: + - US + id: 0004000000067600 + name: Rhythm Thief & the Emperor's Treasure™ + updates: [] diff --git a/data/CTR-ART/icon.jpg b/data/CTR-ART/icon.jpg new file mode 100644 index 0000000..81ccb8e Binary files /dev/null and b/data/CTR-ART/icon.jpg differ diff --git a/data/CTR-ARU/art.jpg b/data/CTR-ARU/art.jpg new file mode 100644 index 0000000..2802fde Binary files /dev/null and b/data/CTR-ARU/art.jpg differ diff --git a/data/CTR-ARU/data.yml b/data/CTR-ARU/data.yml new file mode 100644 index 0000000..e6fc734 --- /dev/null +++ b/data/CTR-ARU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000019CD00 + name: オール仮面ライダー ライダーレボリューション + updates: + - id: 0004000E0019CD00 + name: 更新データ Ver. 1.2.0 オール仮面ライダー ライダーレボリューション diff --git a/data/CTR-ARU/icon.jpg b/data/CTR-ARU/icon.jpg new file mode 100644 index 0000000..8add347 Binary files /dev/null and b/data/CTR-ARU/icon.jpg differ diff --git a/data/CTR-ARV/art.jpg b/data/CTR-ARV/art.jpg new file mode 100644 index 0000000..d479f94 Binary files /dev/null and b/data/CTR-ARV/art.jpg differ diff --git a/data/CTR-ARV/data.yml b/data/CTR-ARV/data.yml new file mode 100644 index 0000000..d9d0b5f --- /dev/null +++ b/data/CTR-ARV/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000CB400 + name: Sonic Lost World™ + updates: [] +- regions: + - JP + id: 00040000000C5400 + name: ソニック ロストワールド + updates: [] +- regions: + - TW + id: 000400000010CF00 + name: Sonic Lost World™ (英文版) + updates: [] +- regions: + - US + id: 00040000000C8C00 + name: Sonic Lost World™ + updates: [] diff --git a/data/CTR-ARV/icon.jpg b/data/CTR-ARV/icon.jpg new file mode 100644 index 0000000..dac65ce Binary files /dev/null and b/data/CTR-ARV/icon.jpg differ diff --git a/data/CTR-ARX/art.jpg b/data/CTR-ARX/art.jpg new file mode 100644 index 0000000..4a9f33c Binary files /dev/null and b/data/CTR-ARX/art.jpg differ diff --git a/data/CTR-ARX/data.yml b/data/CTR-ARX/data.yml new file mode 100644 index 0000000..f487b7b --- /dev/null +++ b/data/CTR-ARX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000CBE00 + name: Beyblade Evolution + updates: [] +- regions: + - US + id: 00040000000CBF00 + name: Beyblade Evolution + updates: [] diff --git a/data/CTR-ARX/icon.jpg b/data/CTR-ARX/icon.jpg new file mode 100644 index 0000000..5870576 Binary files /dev/null and b/data/CTR-ARX/icon.jpg differ diff --git a/data/CTR-ARY/art.jpg b/data/CTR-ARY/art.jpg new file mode 100644 index 0000000..cf2de0e Binary files /dev/null and b/data/CTR-ARY/art.jpg differ diff --git a/data/CTR-ARY/data.yml b/data/CTR-ARY/data.yml new file mode 100644 index 0000000..2934f04 --- /dev/null +++ b/data/CTR-ARY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - KR + id: 00040000000BEB00 + name: 레이맨 3D + updates: [] +- regions: + - US + id: 0004000000036400 + name: RAYMAN® 3D + updates: [] diff --git a/data/CTR-ARY/icon.jpg b/data/CTR-ARY/icon.jpg new file mode 100644 index 0000000..3931474 Binary files /dev/null and b/data/CTR-ARY/icon.jpg differ diff --git a/data/CTR-ARZ/art.jpg b/data/CTR-ARZ/art.jpg new file mode 100644 index 0000000..86e2beb Binary files /dev/null and b/data/CTR-ARZ/art.jpg differ diff --git a/data/CTR-ARZ/data.yml b/data/CTR-ARZ/data.yml new file mode 100644 index 0000000..c76deb0 --- /dev/null +++ b/data/CTR-ARZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000178200 + name: 創作アリスと王子さま! + updates: [] diff --git a/data/CTR-ARZ/icon.jpg b/data/CTR-ARZ/icon.jpg new file mode 100644 index 0000000..4de0803 Binary files /dev/null and b/data/CTR-ARZ/icon.jpg differ diff --git a/data/CTR-AS3/art.jpg b/data/CTR-AS3/art.jpg new file mode 100644 index 0000000..9ca3b5f Binary files /dev/null and b/data/CTR-AS3/art.jpg differ diff --git a/data/CTR-AS3/data.yml b/data/CTR-AS3/data.yml new file mode 100644 index 0000000..beb092b --- /dev/null +++ b/data/CTR-AS3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000033D00 + name: The Sims™ 3 + updates: [] +- regions: + - JP + id: 0004000000037F00 + name: ザ・シムズ3 + updates: [] +- regions: + - US + id: 0004000000036500 + name: The Sims™ 3 + updates: [] diff --git a/data/CTR-AS3/icon.jpg b/data/CTR-AS3/icon.jpg new file mode 100644 index 0000000..6d517b4 Binary files /dev/null and b/data/CTR-AS3/icon.jpg differ diff --git a/data/CTR-AS4/art.jpg b/data/CTR-AS4/art.jpg new file mode 100644 index 0000000..5f1c986 Binary files /dev/null and b/data/CTR-AS4/art.jpg differ diff --git a/data/CTR-AS4/data.yml b/data/CTR-AS4/data.yml new file mode 100644 index 0000000..b0ff31b --- /dev/null +++ b/data/CTR-AS4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000005A900 + name: The Sims™ 3 Pets + updates: [] diff --git a/data/CTR-AS4/icon.jpg b/data/CTR-AS4/icon.jpg new file mode 100644 index 0000000..915f7c2 Binary files /dev/null and b/data/CTR-AS4/icon.jpg differ diff --git a/data/CTR-AS5/art.jpg b/data/CTR-AS5/art.jpg new file mode 100644 index 0000000..d52a209 Binary files /dev/null and b/data/CTR-AS5/art.jpg differ diff --git a/data/CTR-AS5/data.yml b/data/CTR-AS5/data.yml new file mode 100644 index 0000000..16e2d56 --- /dev/null +++ b/data/CTR-AS5/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000072A00 + name: 真・三國無双 VS + updates: + - id: 0004000E00072A00 + name: 更新データ Ver. 1.1 真・三國無双 VS diff --git a/data/CTR-AS5/icon.jpg b/data/CTR-AS5/icon.jpg new file mode 100644 index 0000000..0a34d4a Binary files /dev/null and b/data/CTR-AS5/icon.jpg differ diff --git a/data/CTR-AS6/art.jpg b/data/CTR-AS6/art.jpg new file mode 100644 index 0000000..aed4681 Binary files /dev/null and b/data/CTR-AS6/art.jpg differ diff --git a/data/CTR-AS6/data.yml b/data/CTR-AS6/data.yml new file mode 100644 index 0000000..0db075f --- /dev/null +++ b/data/CTR-AS6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000078A00 + name: スーパーロボット大戦UX + updates: [] diff --git a/data/CTR-AS6/icon.jpg b/data/CTR-AS6/icon.jpg new file mode 100644 index 0000000..1548023 Binary files /dev/null and b/data/CTR-AS6/icon.jpg differ diff --git a/data/CTR-AS7/art.jpg b/data/CTR-AS7/art.jpg new file mode 100644 index 0000000..b190847 Binary files /dev/null and b/data/CTR-AS7/art.jpg differ diff --git a/data/CTR-AS7/data.yml b/data/CTR-AS7/data.yml new file mode 100644 index 0000000..b81e903 --- /dev/null +++ b/data/CTR-AS7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000061A00 + name: 'Spider-Man™: Edge of Time' + updates: [] diff --git a/data/CTR-AS7/icon.jpg b/data/CTR-AS7/icon.jpg new file mode 100644 index 0000000..182e577 Binary files /dev/null and b/data/CTR-AS7/icon.jpg differ diff --git a/data/CTR-AS9/art.jpg b/data/CTR-AS9/art.jpg new file mode 100644 index 0000000..cb993ef Binary files /dev/null and b/data/CTR-AS9/art.jpg differ diff --git a/data/CTR-AS9/data.yml b/data/CTR-AS9/data.yml new file mode 100644 index 0000000..6b62a4e --- /dev/null +++ b/data/CTR-AS9/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000043400 + name: Sudoku - The Puzzle Game Collection + updates: [] +- regions: + - JP + id: 0004000000034000 + name: 数独と3つのパズル ~ニコリのパズルバラエティ~ + updates: [] diff --git a/data/CTR-AS9/icon.jpg b/data/CTR-AS9/icon.jpg new file mode 100644 index 0000000..052d689 Binary files /dev/null and b/data/CTR-AS9/icon.jpg differ diff --git a/data/CTR-ASA/art.jpg b/data/CTR-ASA/art.jpg new file mode 100644 index 0000000..1e9e346 Binary files /dev/null and b/data/CTR-ASA/art.jpg differ diff --git a/data/CTR-ASA/data.yml b/data/CTR-ASA/data.yml new file mode 100644 index 0000000..bde47ab --- /dev/null +++ b/data/CTR-ASA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D6200 + name: 'Secret Agent Files: Miami' + updates: [] +- regions: + - US + id: 00040000000C6E00 + name: 'Secret Agent Files: Miami' + updates: [] diff --git a/data/CTR-ASA/icon.jpg b/data/CTR-ASA/icon.jpg new file mode 100644 index 0000000..c194457 Binary files /dev/null and b/data/CTR-ASA/icon.jpg differ diff --git a/data/CTR-ASB/art.jpg b/data/CTR-ASB/art.jpg new file mode 100644 index 0000000..02064d2 Binary files /dev/null and b/data/CTR-ASB/art.jpg differ diff --git a/data/CTR-ASB/data.yml b/data/CTR-ASB/data.yml new file mode 100644 index 0000000..b41081a --- /dev/null +++ b/data/CTR-ASB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000072100 + name: Super Black Bass 3D + updates: [] +- regions: + - JP + id: 000400000004A800 + name: スーパーブラックバス 3Dファイト + updates: [] +- regions: + - US + id: 000400000009E800 + name: Super Black Bass 3D + updates: [] diff --git a/data/CTR-ASB/icon.jpg b/data/CTR-ASB/icon.jpg new file mode 100644 index 0000000..de8a05e Binary files /dev/null and b/data/CTR-ASB/icon.jpg differ diff --git a/data/CTR-ASC/art.jpg b/data/CTR-ASC/art.jpg new file mode 100644 index 0000000..5ff46d3 Binary files /dev/null and b/data/CTR-ASC/art.jpg differ diff --git a/data/CTR-ASC/data.yml b/data/CTR-ASC/data.yml new file mode 100644 index 0000000..cfc9ce1 --- /dev/null +++ b/data/CTR-ASC/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000033A00 + name: Tom Clancy’s™ Splinter Cell® 3D + updates: [] +- regions: + - JP + id: 0004000000034400 + name: Tom Clancy's スプリンターセル 3D + updates: [] +- regions: + - KR + id: 00040000000C8000 + name: 톰 클랜시의 스플린터 셀 3D + updates: [] +- regions: + - US + id: 0004000000040100 + name: Tom Clancy's Splinter Cell® 3D + updates: [] diff --git a/data/CTR-ASC/icon.jpg b/data/CTR-ASC/icon.jpg new file mode 100644 index 0000000..3c1cbaf Binary files /dev/null and b/data/CTR-ASC/icon.jpg differ diff --git a/data/CTR-ASD/art.jpg b/data/CTR-ASD/art.jpg new file mode 100644 index 0000000..dd32dc4 Binary files /dev/null and b/data/CTR-ASD/art.jpg differ diff --git a/data/CTR-ASD/data.yml b/data/CTR-ASD/data.yml new file mode 100644 index 0000000..c49cb99 --- /dev/null +++ b/data/CTR-ASD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000032300 + name: Steel Diver + updates: [] +- regions: + - JP + id: 0004000000030300 + name: スティールダイバー + updates: [] +- regions: + - US + id: 0004000000032400 + name: Steel Diver™ + updates: [] diff --git a/data/CTR-ASD/icon.jpg b/data/CTR-ASD/icon.jpg new file mode 100644 index 0000000..684fe8c Binary files /dev/null and b/data/CTR-ASD/icon.jpg differ diff --git a/data/CTR-ASE/art.jpg b/data/CTR-ASE/art.jpg new file mode 100644 index 0000000..f507bd9 Binary files /dev/null and b/data/CTR-ASE/art.jpg differ diff --git a/data/CTR-ASE/data.yml b/data/CTR-ASE/data.yml new file mode 100644 index 0000000..e012103 --- /dev/null +++ b/data/CTR-ASE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000084E00 + name: Secrets of the Titanic 1912-2012 + updates: [] diff --git a/data/CTR-ASE/icon.jpg b/data/CTR-ASE/icon.jpg new file mode 100644 index 0000000..50e56d5 Binary files /dev/null and b/data/CTR-ASE/icon.jpg differ diff --git a/data/CTR-ASF/art.jpg b/data/CTR-ASF/art.jpg new file mode 100644 index 0000000..6bb5586 Binary files /dev/null and b/data/CTR-ASF/art.jpg differ diff --git a/data/CTR-ASF/data.yml b/data/CTR-ASF/data.yml new file mode 100644 index 0000000..92749da --- /dev/null +++ b/data/CTR-ASF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000037600 + name: Asphalt™ 3D + updates: [] +- regions: + - JP + id: 0004000000033300 + name: ASPHALT 3D:NITRO RACING アスファルト 3D ニトロレーシング + updates: [] +- regions: + - US + id: 0004000000034C00 + name: Asphalt™ 3D + updates: [] diff --git a/data/CTR-ASF/icon.jpg b/data/CTR-ASF/icon.jpg new file mode 100644 index 0000000..6ae4364 Binary files /dev/null and b/data/CTR-ASF/icon.jpg differ diff --git a/data/CTR-ASG/art.jpg b/data/CTR-ASG/art.jpg new file mode 100644 index 0000000..140d4c0 Binary files /dev/null and b/data/CTR-ASG/art.jpg differ diff --git a/data/CTR-ASG/data.yml b/data/CTR-ASG/data.yml new file mode 100644 index 0000000..9bdeff0 --- /dev/null +++ b/data/CTR-ASG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000044500 + name: Spongebob Squigglepants + updates: [] diff --git a/data/CTR-ASG/icon.jpg b/data/CTR-ASG/icon.jpg new file mode 100644 index 0000000..57f17b4 Binary files /dev/null and b/data/CTR-ASG/icon.jpg differ diff --git a/data/CTR-ASH/art.jpg b/data/CTR-ASH/art.jpg new file mode 100644 index 0000000..3b9affe Binary files /dev/null and b/data/CTR-ASH/art.jpg differ diff --git a/data/CTR-ASH/data.yml b/data/CTR-ASH/data.yml new file mode 100644 index 0000000..757e48a --- /dev/null +++ b/data/CTR-ASH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000034100 + name: 上海3Dキューブ + updates: [] +- regions: + - US + id: 000400000004EB00 + name: MAHJONG CUB3D™ + updates: [] diff --git a/data/CTR-ASH/icon.jpg b/data/CTR-ASH/icon.jpg new file mode 100644 index 0000000..8186973 Binary files /dev/null and b/data/CTR-ASH/icon.jpg differ diff --git a/data/CTR-ASJ/art.jpg b/data/CTR-ASJ/art.jpg new file mode 100644 index 0000000..76cc397 Binary files /dev/null and b/data/CTR-ASJ/art.jpg differ diff --git a/data/CTR-ASJ/data.yml b/data/CTR-ASJ/data.yml new file mode 100644 index 0000000..cbe3b17 --- /dev/null +++ b/data/CTR-ASJ/data.yml @@ -0,0 +1,37 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000EA600 + name: 'Etrian Odyssey™ IV: Legends of the Titan' + updates: [] +- regions: + - JP + id: 0004000000080100 + name: 世界樹の迷宮Ⅳ 伝承の巨神 + updates: [] +- regions: + - KR + id: 00040000000F7800 + name: 세계수의 미궁 Ⅳ (영어) + updates: [] +- regions: + - KR + id: 00040000000F7700 + name: 세계수의 미궁 Ⅳ (일본어) + updates: [] +- regions: + - TW + id: 0004000000105900 + name: Etrian Odyssey Ⅳ Legends of the Titan (英文版) + updates: [] +- regions: + - TW + id: 0004000000105800 + name: 世界樹の迷宮Ⅳ 伝承の巨神 (日文版) + updates: [] +- regions: + - US + id: 00040000000BD300 + name: 'Etrian Odyssey™ IV: Legends of the Titan' + updates: [] diff --git a/data/CTR-ASJ/icon.jpg b/data/CTR-ASJ/icon.jpg new file mode 100644 index 0000000..b81ae68 Binary files /dev/null and b/data/CTR-ASJ/icon.jpg differ diff --git a/data/CTR-ASL/art.jpg b/data/CTR-ASL/art.jpg new file mode 100644 index 0000000..beaffd4 Binary files /dev/null and b/data/CTR-ASL/art.jpg differ diff --git a/data/CTR-ASL/data.yml b/data/CTR-ASL/data.yml new file mode 100644 index 0000000..bef6f91 --- /dev/null +++ b/data/CTR-ASL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 0004000000038600 + name: Scribblenauts™ Unlimited + updates: [] diff --git a/data/CTR-ASL/icon.jpg b/data/CTR-ASL/icon.jpg new file mode 100644 index 0000000..8c8c64f Binary files /dev/null and b/data/CTR-ASL/icon.jpg differ diff --git a/data/CTR-ASM/art.jpg b/data/CTR-ASM/art.jpg new file mode 100644 index 0000000..9a6b9d2 Binary files /dev/null and b/data/CTR-ASM/art.jpg differ diff --git a/data/CTR-ASM/data.yml b/data/CTR-ASM/data.yml new file mode 100644 index 0000000..4957a56 --- /dev/null +++ b/data/CTR-ASM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000038900 + name: Super Monkey Ball™ 3D + updates: [] +- regions: + - JP + id: 0004000000032E00 + name: スーパーモンキーボール3D + updates: [] +- regions: + - US + id: 0004000000037000 + name: Super Monkey Ball™ 3D + updates: [] diff --git a/data/CTR-ASM/icon.jpg b/data/CTR-ASM/icon.jpg new file mode 100644 index 0000000..20184bc Binary files /dev/null and b/data/CTR-ASM/icon.jpg differ diff --git a/data/CTR-ASN/art.jpg b/data/CTR-ASN/art.jpg new file mode 100644 index 0000000..c41ee5f Binary files /dev/null and b/data/CTR-ASN/art.jpg differ diff --git a/data/CTR-ASN/data.yml b/data/CTR-ASN/data.yml new file mode 100644 index 0000000..95c6415 --- /dev/null +++ b/data/CTR-ASN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000062200 + name: Sonic Generations™ + updates: [] +- regions: + - JP + id: 000400000004CA00 + name: ソニックジェネレーションズ 青の冒険 + updates: [] +- regions: + - US + id: 0004000000062300 + name: Sonic Generations™ + updates: [] diff --git a/data/CTR-ASN/icon.jpg b/data/CTR-ASN/icon.jpg new file mode 100644 index 0000000..d16cdbc Binary files /dev/null and b/data/CTR-ASN/icon.jpg differ diff --git a/data/CTR-ASP/art.jpg b/data/CTR-ASP/art.jpg new file mode 100644 index 0000000..1a5db8f Binary files /dev/null and b/data/CTR-ASP/art.jpg differ diff --git a/data/CTR-ASP/data.yml b/data/CTR-ASP/data.yml new file mode 100644 index 0000000..e4935ae --- /dev/null +++ b/data/CTR-ASP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000EB500 + name: スカイランダーズ スパイロの大冒険 + updates: [] +- regions: + - US + id: 0004000000036E00 + name: Skylanders Spyro's Adventure + updates: [] diff --git a/data/CTR-ASP/icon.jpg b/data/CTR-ASP/icon.jpg new file mode 100644 index 0000000..943174b Binary files /dev/null and b/data/CTR-ASP/icon.jpg differ diff --git a/data/CTR-ASR/art.jpg b/data/CTR-ASR/art.jpg new file mode 100644 index 0000000..f0818c9 Binary files /dev/null and b/data/CTR-ASR/art.jpg differ diff --git a/data/CTR-ASR/data.yml b/data/CTR-ASR/data.yml new file mode 100644 index 0000000..08bb88f --- /dev/null +++ b/data/CTR-ASR/data.yml @@ -0,0 +1,29 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B3D00 + name: Devilish Brain Training™ Can you stay focused? + updates: [] +- regions: + - JP + id: 0004000000043700 + name: 川島隆太教授監修 ものすごく脳を鍛える5分間の鬼トレーニング + updates: + - id: 0004000E00043700 + name: 更新データ Ver. 1.1 東北大学加齢医学研究所 川島隆太教授監修 ものすごく脳を鍛える 5分間の鬼トレーニング +- regions: + - KR + id: 00040000000CB100 + name: 카와시마 류타 박사 감수 초강력! 5분간의 집중력 트레이닝 + updates: [] +- regions: + - TW + id: 00040000000CB200 + name: 突破極限 腦的5分鐘魔鬼鍛鍊 + updates: [] +- regions: + - US + id: 00040000000B3C00 + name: 'Brain Age™: Concentration Training' + updates: [] diff --git a/data/CTR-ASR/icon.jpg b/data/CTR-ASR/icon.jpg new file mode 100644 index 0000000..2f3710f Binary files /dev/null and b/data/CTR-ASR/icon.jpg differ diff --git a/data/CTR-ASS/art.jpg b/data/CTR-ASS/art.jpg new file mode 100644 index 0000000..3e7bca4 Binary files /dev/null and b/data/CTR-ASS/art.jpg differ diff --git a/data/CTR-ASS/data.yml b/data/CTR-ASS/data.yml new file mode 100644 index 0000000..a19cdda --- /dev/null +++ b/data/CTR-ASS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000033C00 + name: Super Street Fighter IV 3D + updates: [] +- regions: + - JP + id: 0004000000030500 + name: スーパーストリートファイターIV 3D EDITION + updates: [] +- regions: + - US + id: 0004000000032D00 + name: SUPER STREET FIGHTER® IV 3D EDITION + updates: [] diff --git a/data/CTR-ASS/icon.jpg b/data/CTR-ASS/icon.jpg new file mode 100644 index 0000000..211a5eb Binary files /dev/null and b/data/CTR-ASS/icon.jpg differ diff --git a/data/CTR-ASU/art.jpg b/data/CTR-ASU/art.jpg new file mode 100644 index 0000000..32de63f Binary files /dev/null and b/data/CTR-ASU/art.jpg differ diff --git a/data/CTR-ASU/data.yml b/data/CTR-ASU/data.yml new file mode 100644 index 0000000..0f79014 --- /dev/null +++ b/data/CTR-ASU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000036F00 + name: 花といきもの立体図鑑 + updates: + - id: 0004000E00036F00 + name: 更新データ Ver. 1.1 花といきもの立体図鑑 diff --git a/data/CTR-ASU/icon.jpg b/data/CTR-ASU/icon.jpg new file mode 100644 index 0000000..a930524 Binary files /dev/null and b/data/CTR-ASU/icon.jpg differ diff --git a/data/CTR-ASV/art.jpg b/data/CTR-ASV/art.jpg new file mode 100644 index 0000000..d4f4cf4 Binary files /dev/null and b/data/CTR-ASV/art.jpg differ diff --git a/data/CTR-ASV/data.yml b/data/CTR-ASV/data.yml new file mode 100644 index 0000000..19a4abf --- /dev/null +++ b/data/CTR-ASV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000005AA00 + name: Shinobi™ + updates: [] +- regions: + - JP + id: 0004000000065F00 + name: Shinobi 3D + updates: [] +- regions: + - US + id: 0004000000055B00 + name: Shinobi™ + updates: [] diff --git a/data/CTR-ASV/icon.jpg b/data/CTR-ASV/icon.jpg new file mode 100644 index 0000000..8529e1f Binary files /dev/null and b/data/CTR-ASV/icon.jpg differ diff --git a/data/CTR-ASX/art.jpg b/data/CTR-ASX/art.jpg new file mode 100644 index 0000000..3c2208a Binary files /dev/null and b/data/CTR-ASX/art.jpg differ diff --git a/data/CTR-ASX/data.yml b/data/CTR-ASX/data.yml new file mode 100644 index 0000000..d7fbfb4 --- /dev/null +++ b/data/CTR-ASX/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000065000 + name: Secret Mysteries in London + updates: + - id: 0004000E00065000 + name: Secret Mysteries in London - Update +- regions: + - US + id: 00040000000F4A00 + name: Secret Mysteries in New York + updates: [] diff --git a/data/CTR-ASX/icon.jpg b/data/CTR-ASX/icon.jpg new file mode 100644 index 0000000..09aea9d Binary files /dev/null and b/data/CTR-ASX/icon.jpg differ diff --git a/data/CTR-ASZ/art.jpg b/data/CTR-ASZ/art.jpg new file mode 100644 index 0000000..b84fde1 Binary files /dev/null and b/data/CTR-ASZ/art.jpg differ diff --git a/data/CTR-ASZ/data.yml b/data/CTR-ASZ/data.yml new file mode 100644 index 0000000..a777e10 --- /dev/null +++ b/data/CTR-ASZ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000097900 + name: Shifting World + updates: [] +- regions: + - JP + id: 0004000000090B00 + name: SHIFTING WORLD 白と黒の迷宮 + updates: [] +- regions: + - US + id: 0004000000057100 + name: Shifting World + updates: [] diff --git a/data/CTR-ASZ/icon.jpg b/data/CTR-ASZ/icon.jpg new file mode 100644 index 0000000..01bcadb Binary files /dev/null and b/data/CTR-ASZ/icon.jpg differ diff --git a/data/CTR-AT2/art.jpg b/data/CTR-AT2/art.jpg new file mode 100644 index 0000000..cb9aa70 Binary files /dev/null and b/data/CTR-AT2/art.jpg differ diff --git a/data/CTR-AT2/data.yml b/data/CTR-AT2/data.yml new file mode 100644 index 0000000..5103876 --- /dev/null +++ b/data/CTR-AT2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000007A300 + name: 'Harvest Moon: The Tale of Two Towns' + updates: [] +- regions: + - US + id: 0004000000047900 + name: 'Harvest Moon® 3D: The Tale of Two Towns' + updates: [] diff --git a/data/CTR-AT2/icon.jpg b/data/CTR-AT2/icon.jpg new file mode 100644 index 0000000..e36ff70 Binary files /dev/null and b/data/CTR-AT2/icon.jpg differ diff --git a/data/CTR-AT3/art.jpg b/data/CTR-AT3/art.jpg new file mode 100644 index 0000000..823af62 Binary files /dev/null and b/data/CTR-AT3/art.jpg differ diff --git a/data/CTR-AT3/data.yml b/data/CTR-AT3/data.yml new file mode 100644 index 0000000..c657fbc --- /dev/null +++ b/data/CTR-AT3/data.yml @@ -0,0 +1,15 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - TW + - US + id: 0004000000183600 + name: Kirby Planet Robobot™ + updates: [] +- regions: + - KR + id: 000400000017C600 + name: 별의 커비 로보보 플래닛 + updates: [] diff --git a/data/CTR-AT3/icon.jpg b/data/CTR-AT3/icon.jpg new file mode 100644 index 0000000..e5cf63a Binary files /dev/null and b/data/CTR-AT3/icon.jpg differ diff --git a/data/CTR-AT5/art.jpg b/data/CTR-AT5/art.jpg new file mode 100644 index 0000000..6029ef7 Binary files /dev/null and b/data/CTR-AT5/art.jpg differ diff --git a/data/CTR-AT5/data.yml b/data/CTR-AT5/data.yml new file mode 100644 index 0000000..468f98f --- /dev/null +++ b/data/CTR-AT5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000056700 + name: ちょ~りっち! たまごっちのプチプチおみせっち + updates: [] diff --git a/data/CTR-AT5/icon.jpg b/data/CTR-AT5/icon.jpg new file mode 100644 index 0000000..a43b95f Binary files /dev/null and b/data/CTR-AT5/icon.jpg differ diff --git a/data/CTR-AT6/art.jpg b/data/CTR-AT6/art.jpg new file mode 100644 index 0000000..9b3bb11 Binary files /dev/null and b/data/CTR-AT6/art.jpg differ diff --git a/data/CTR-AT6/data.yml b/data/CTR-AT6/data.yml new file mode 100644 index 0000000..ece1ba8 --- /dev/null +++ b/data/CTR-AT6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000ACA00 + name: トリコ グルメモンスターズ! + updates: [] diff --git a/data/CTR-AT6/icon.jpg b/data/CTR-AT6/icon.jpg new file mode 100644 index 0000000..8df3cba Binary files /dev/null and b/data/CTR-AT6/icon.jpg differ diff --git a/data/CTR-AT8/art.jpg b/data/CTR-AT8/art.jpg new file mode 100644 index 0000000..a4475bf Binary files /dev/null and b/data/CTR-AT8/art.jpg differ diff --git a/data/CTR-AT8/data.yml b/data/CTR-AT8/data.yml new file mode 100644 index 0000000..7a576f8 --- /dev/null +++ b/data/CTR-AT8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000007F500 + name: URBAN TRIAL FREESTYLE™ + updates: [] +- regions: + - JP + id: 00040000000DBE00 + name: たまごっちの ドキドキ☆ドリームおみせっち + updates: [] +- regions: + - US + id: 00040000000C7400 + name: URBAN TRIAL FREESTYLE + updates: [] diff --git a/data/CTR-AT8/icon.jpg b/data/CTR-AT8/icon.jpg new file mode 100644 index 0000000..6255551 Binary files /dev/null and b/data/CTR-AT8/icon.jpg differ diff --git a/data/CTR-ATA/art.jpg b/data/CTR-ATA/art.jpg new file mode 100644 index 0000000..d5be27e Binary files /dev/null and b/data/CTR-ATA/art.jpg differ diff --git a/data/CTR-ATA/data.yml b/data/CTR-ATA/data.yml new file mode 100644 index 0000000..8804cc3 --- /dev/null +++ b/data/CTR-ATA/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000111C00 + name: Yoshi's New Island™ + updates: [] +- regions: + - JP + id: 0004000000083B00 + name: ヨッシー New アイランド + updates: [] +- regions: + - KR + id: 000400000012C500 + name: 요시 New 아일랜드 + updates: [] +- regions: + - TW + id: 000400000012CD00 + name: ヨッシー New アイランド(日文版) + updates: [] +- regions: + - US + id: 0004000000111B00 + name: Yoshi's New Island + updates: [] diff --git a/data/CTR-ATA/icon.jpg b/data/CTR-ATA/icon.jpg new file mode 100644 index 0000000..eb5e128 Binary files /dev/null and b/data/CTR-ATA/icon.jpg differ diff --git a/data/CTR-ATC/art.jpg b/data/CTR-ATC/art.jpg new file mode 100644 index 0000000..c3cb736 Binary files /dev/null and b/data/CTR-ATC/art.jpg differ diff --git a/data/CTR-ATC/data.yml b/data/CTR-ATC/data.yml new file mode 100644 index 0000000..b019adf --- /dev/null +++ b/data/CTR-ATC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000009EC00 + name: 逃走中 史上最強の ハンターたちからにげきれ! + updates: [] diff --git a/data/CTR-ATC/icon.jpg b/data/CTR-ATC/icon.jpg new file mode 100644 index 0000000..bb143b7 Binary files /dev/null and b/data/CTR-ATC/icon.jpg differ diff --git a/data/CTR-ATD/art.jpg b/data/CTR-ATD/art.jpg new file mode 100644 index 0000000..e209286 Binary files /dev/null and b/data/CTR-ATD/art.jpg differ diff --git a/data/CTR-ATD/data.yml b/data/CTR-ATD/data.yml new file mode 100644 index 0000000..1c2f1bc --- /dev/null +++ b/data/CTR-ATD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000090F00 + name: 太鼓の達人 ちびドラゴンと不思議なオーブ + updates: [] diff --git a/data/CTR-ATD/icon.jpg b/data/CTR-ATD/icon.jpg new file mode 100644 index 0000000..14b43ef Binary files /dev/null and b/data/CTR-ATD/icon.jpg differ diff --git a/data/CTR-ATE/art.jpg b/data/CTR-ATE/art.jpg new file mode 100644 index 0000000..3dfc14c Binary files /dev/null and b/data/CTR-ATE/art.jpg differ diff --git a/data/CTR-ATE/data.yml b/data/CTR-ATE/data.yml new file mode 100644 index 0000000..763a078 --- /dev/null +++ b/data/CTR-ATE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000005DF00 + name: TOEIC®テスト超速トレーニング + updates: [] diff --git a/data/CTR-ATE/icon.jpg b/data/CTR-ATE/icon.jpg new file mode 100644 index 0000000..8c5d970 Binary files /dev/null and b/data/CTR-ATE/icon.jpg differ diff --git a/data/CTR-ATH/art.jpg b/data/CTR-ATH/art.jpg new file mode 100644 index 0000000..caa7a7d Binary files /dev/null and b/data/CTR-ATH/art.jpg differ diff --git a/data/CTR-ATH/data.yml b/data/CTR-ATH/data.yml new file mode 100644 index 0000000..0d8330c --- /dev/null +++ b/data/CTR-ATH/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000091600 + name: THEATRHYTHM™ FINAL FANTASY® + updates: [] +- regions: + - JP + id: 0004000000078200 + name: THEATRHYTHM FINAL FANTASY + updates: [] +- regions: + - KR + id: 00040000000C3D00 + name: THEATRHYTHM FINAL FANTASY + updates: [] +- regions: + - US + id: 0004000000095100 + name: THEATRHYTHM™ FINAL FANTASY® + updates: [] diff --git a/data/CTR-ATH/icon.jpg b/data/CTR-ATH/icon.jpg new file mode 100644 index 0000000..1f196fb Binary files /dev/null and b/data/CTR-ATH/icon.jpg differ diff --git a/data/CTR-ATJ/art.jpg b/data/CTR-ATJ/art.jpg new file mode 100644 index 0000000..5484faa Binary files /dev/null and b/data/CTR-ATJ/art.jpg differ diff --git a/data/CTR-ATJ/data.yml b/data/CTR-ATJ/data.yml new file mode 100644 index 0000000..8707e20 --- /dev/null +++ b/data/CTR-ATJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D3700 + name: Japanese Rail Sim 3D 5 types of trains + updates: [] +- regions: + - JP + id: 0004000000164F00 + name: 鉄道にっぽん!路線たび 近江鉄道編 + updates: [] +- regions: + - US + id: 00040000001D3900 + name: Japanese Rail Sim 3D 5 types of trains + updates: [] diff --git a/data/CTR-ATJ/icon.jpg b/data/CTR-ATJ/icon.jpg new file mode 100644 index 0000000..a84a1fb Binary files /dev/null and b/data/CTR-ATJ/icon.jpg differ diff --git a/data/CTR-ATK/art.jpg b/data/CTR-ATK/art.jpg new file mode 100644 index 0000000..15272ad Binary files /dev/null and b/data/CTR-ATK/art.jpg differ diff --git a/data/CTR-ATK/data.yml b/data/CTR-ATK/data.yml new file mode 100644 index 0000000..53f3836 --- /dev/null +++ b/data/CTR-ATK/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000007E900 + name: TEKKEN 3D PRIME EDITION + updates: [] +- regions: + - JP + id: 0004000000069F00 + name: 鉄拳3D プライムエディション + updates: [] +- regions: + - KR + id: 0004000000091E00 + name: 철권 3D 프라임 에디션 + updates: [] +- regions: + - US + id: 0004000000080300 + name: TEKKEN 3D Prime Edition + updates: [] diff --git a/data/CTR-ATK/icon.jpg b/data/CTR-ATK/icon.jpg new file mode 100644 index 0000000..b81f2ad Binary files /dev/null and b/data/CTR-ATK/icon.jpg differ diff --git a/data/CTR-ATL/art.jpg b/data/CTR-ATL/art.jpg new file mode 100644 index 0000000..3af84f2 Binary files /dev/null and b/data/CTR-ATL/art.jpg differ diff --git a/data/CTR-ATL/data.yml b/data/CTR-ATL/data.yml new file mode 100644 index 0000000..1fd189d --- /dev/null +++ b/data/CTR-ATL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000039E00 + name: テトリス + updates: [] diff --git a/data/CTR-ATL/icon.jpg b/data/CTR-ATL/icon.jpg new file mode 100644 index 0000000..bf7ff2b Binary files /dev/null and b/data/CTR-ATL/icon.jpg differ diff --git a/data/CTR-ATN/art.jpg b/data/CTR-ATN/art.jpg new file mode 100644 index 0000000..6e39f39 Binary files /dev/null and b/data/CTR-ATN/art.jpg differ diff --git a/data/CTR-ATN/data.yml b/data/CTR-ATN/data.yml new file mode 100644 index 0000000..d1ae034 --- /dev/null +++ b/data/CTR-ATN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000064500 + name: タンタンの冒険 ★ユニコーン号の秘密★ + updates: [] diff --git a/data/CTR-ATN/icon.jpg b/data/CTR-ATN/icon.jpg new file mode 100644 index 0000000..a5aa598 Binary files /dev/null and b/data/CTR-ATN/icon.jpg differ diff --git a/data/CTR-ATQ/art.jpg b/data/CTR-ATQ/art.jpg new file mode 100644 index 0000000..a014314 Binary files /dev/null and b/data/CTR-ATQ/art.jpg differ diff --git a/data/CTR-ATQ/data.yml b/data/CTR-ATQ/data.yml new file mode 100644 index 0000000..c7a7656 --- /dev/null +++ b/data/CTR-ATQ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000091300 + name: 大盛り! いきものづくり クリエイトーイ + updates: [] +- regions: + - US + id: 000400000009FA00 + name: 'Freakyforms™ Deluxe: Your Creations Alive!' + updates: [] diff --git a/data/CTR-ATQ/icon.jpg b/data/CTR-ATQ/icon.jpg new file mode 100644 index 0000000..50a0671 Binary files /dev/null and b/data/CTR-ATQ/icon.jpg differ diff --git a/data/CTR-ATR/art.jpg b/data/CTR-ATR/art.jpg new file mode 100644 index 0000000..cc7cb51 Binary files /dev/null and b/data/CTR-ATR/art.jpg differ diff --git a/data/CTR-ATR/data.yml b/data/CTR-ATR/data.yml new file mode 100644 index 0000000..a512173 --- /dev/null +++ b/data/CTR-ATR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000008C600 + name: TIME TRAVELERS + updates: [] diff --git a/data/CTR-ATR/icon.jpg b/data/CTR-ATR/icon.jpg new file mode 100644 index 0000000..5380be0 Binary files /dev/null and b/data/CTR-ATR/icon.jpg differ diff --git a/data/CTR-ATS/art.jpg b/data/CTR-ATS/art.jpg new file mode 100644 index 0000000..62be3c7 Binary files /dev/null and b/data/CTR-ATS/art.jpg differ diff --git a/data/CTR-ATS/data.yml b/data/CTR-ATS/data.yml new file mode 100644 index 0000000..2e3a7f0 --- /dev/null +++ b/data/CTR-ATS/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F8200 + name: 'Mario Party™: Island Tour' + updates: [] +- regions: + - JP + id: 00040000000DD400 + name: マリオパーティ アイランドツアー + updates: [] +- regions: + - KR + id: 0004000000119B00 + name: 마리오 파티 아일랜드 투어 + updates: [] +- regions: + - TW + id: 0004000000119300 + name: 'Mario Party: Island Tour (英文版)' + updates: [] +- regions: + - US + id: 00040000000F8100 + name: Mario Party™ Island Tour + updates: [] diff --git a/data/CTR-ATS/icon.jpg b/data/CTR-ATS/icon.jpg new file mode 100644 index 0000000..dc4f598 Binary files /dev/null and b/data/CTR-ATS/icon.jpg differ diff --git a/data/CTR-ATT/art.jpg b/data/CTR-ATT/art.jpg new file mode 100644 index 0000000..1bdf191 Binary files /dev/null and b/data/CTR-ATT/art.jpg differ diff --git a/data/CTR-ATT/data.yml b/data/CTR-ATT/data.yml new file mode 100644 index 0000000..4914be0 --- /dev/null +++ b/data/CTR-ATT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000032B00 + name: コンバット オブ ジャイアント ダイナソー3D + updates: [] +- regions: + - US + id: 0004000000035100 + name: Combat of Giants™ Dinosaurs 3D + updates: [] diff --git a/data/CTR-ATT/icon.jpg b/data/CTR-ATT/icon.jpg new file mode 100644 index 0000000..41e3a3f Binary files /dev/null and b/data/CTR-ATT/icon.jpg differ diff --git a/data/CTR-ATU/art.jpg b/data/CTR-ATU/art.jpg new file mode 100644 index 0000000..fb05f5b Binary files /dev/null and b/data/CTR-ATU/art.jpg differ diff --git a/data/CTR-ATU/data.yml b/data/CTR-ATU/data.yml new file mode 100644 index 0000000..e716e8d --- /dev/null +++ b/data/CTR-ATU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012F500 + name: テイルズ オブ ザ ワールド レーヴ ユナイティア + updates: + - id: 0004000E0012F500 + name: 更新データ Ver. 1.1 テイルズ オブ ザ ワールド レーヴ ユナイティア diff --git a/data/CTR-ATU/icon.jpg b/data/CTR-ATU/icon.jpg new file mode 100644 index 0000000..ac0c33c Binary files /dev/null and b/data/CTR-ATU/icon.jpg differ diff --git a/data/CTR-ATW/art.jpg b/data/CTR-ATW/art.jpg new file mode 100644 index 0000000..4d16f03 Binary files /dev/null and b/data/CTR-ATW/art.jpg differ diff --git a/data/CTR-ATW/data.yml b/data/CTR-ATW/data.yml new file mode 100644 index 0000000..6b5a7ba --- /dev/null +++ b/data/CTR-ATW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000074600 + name: ドラゴンクエストモンスターズ テリーのワンダーランド3D + updates: + - id: 0004000E00074600 + name: 更新データ Ver. 1.1 DQM テリーのワンダーランド3D diff --git a/data/CTR-ATW/icon.jpg b/data/CTR-ATW/icon.jpg new file mode 100644 index 0000000..470cd7a Binary files /dev/null and b/data/CTR-ATW/icon.jpg differ diff --git a/data/CTR-ATX/art.jpg b/data/CTR-ATX/art.jpg new file mode 100644 index 0000000..b3a9553 Binary files /dev/null and b/data/CTR-ATX/art.jpg differ diff --git a/data/CTR-ATX/data.yml b/data/CTR-ATX/data.yml new file mode 100644 index 0000000..b5581bd --- /dev/null +++ b/data/CTR-ATX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000169700 + name: My Zoo Vet Practice 3D + updates: [] diff --git a/data/CTR-ATX/icon.jpg b/data/CTR-ATX/icon.jpg new file mode 100644 index 0000000..8312820 Binary files /dev/null and b/data/CTR-ATX/icon.jpg differ diff --git a/data/CTR-ATZ/art.jpg b/data/CTR-ATZ/art.jpg new file mode 100644 index 0000000..8e215bf Binary files /dev/null and b/data/CTR-ATZ/art.jpg differ diff --git a/data/CTR-ATZ/data.yml b/data/CTR-ATZ/data.yml new file mode 100644 index 0000000..72d27b6 --- /dev/null +++ b/data/CTR-ATZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 00040000000B0600 + name: 'The Trash Pack™ ' + updates: [] diff --git a/data/CTR-ATZ/icon.jpg b/data/CTR-ATZ/icon.jpg new file mode 100644 index 0000000..4484fd4 Binary files /dev/null and b/data/CTR-ATZ/icon.jpg differ diff --git a/data/CTR-AU2/art.jpg b/data/CTR-AU2/art.jpg new file mode 100644 index 0000000..e966754 Binary files /dev/null and b/data/CTR-AU2/art.jpg differ diff --git a/data/CTR-AU2/data.yml b/data/CTR-AU2/data.yml new file mode 100644 index 0000000..603dbcd --- /dev/null +++ b/data/CTR-AU2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000ACD00 + name: パチパラ3D 大海物語2 With アグネス・ラム + updates: [] diff --git a/data/CTR-AU2/icon.jpg b/data/CTR-AU2/icon.jpg new file mode 100644 index 0000000..3806802 Binary files /dev/null and b/data/CTR-AU2/icon.jpg differ diff --git a/data/CTR-AU3/art.jpg b/data/CTR-AU3/art.jpg new file mode 100644 index 0000000..ce37e9f Binary files /dev/null and b/data/CTR-AU3/art.jpg differ diff --git a/data/CTR-AU3/data.yml b/data/CTR-AU3/data.yml new file mode 100644 index 0000000..098d6a6 --- /dev/null +++ b/data/CTR-AU3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000089700 + name: パチパラ3D 大海物語2 + updates: [] diff --git a/data/CTR-AU3/icon.jpg b/data/CTR-AU3/icon.jpg new file mode 100644 index 0000000..ab81346 Binary files /dev/null and b/data/CTR-AU3/icon.jpg differ diff --git a/data/CTR-AU9/art.jpg b/data/CTR-AU9/art.jpg new file mode 100644 index 0000000..29b7f59 Binary files /dev/null and b/data/CTR-AU9/art.jpg differ diff --git a/data/CTR-AU9/data.yml b/data/CTR-AU9/data.yml new file mode 100644 index 0000000..c4ca61a --- /dev/null +++ b/data/CTR-AU9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000C3B00 + name: パチパラ3D デラックス海物語 + updates: [] diff --git a/data/CTR-AU9/icon.jpg b/data/CTR-AU9/icon.jpg new file mode 100644 index 0000000..86725c8 Binary files /dev/null and b/data/CTR-AU9/icon.jpg differ diff --git a/data/CTR-AUC/art.jpg b/data/CTR-AUC/art.jpg new file mode 100644 index 0000000..6808a49 Binary files /dev/null and b/data/CTR-AUC/art.jpg differ diff --git a/data/CTR-AUC/data.yml b/data/CTR-AUC/data.yml new file mode 100644 index 0000000..55ee2e8 --- /dev/null +++ b/data/CTR-AUC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000047F00 + name: アンチェインブレイズ レクス + updates: [] diff --git a/data/CTR-AUC/icon.jpg b/data/CTR-AUC/icon.jpg new file mode 100644 index 0000000..5b8f448 Binary files /dev/null and b/data/CTR-AUC/icon.jpg differ diff --git a/data/CTR-AUD/art.jpg b/data/CTR-AUD/art.jpg new file mode 100644 index 0000000..fdf4e41 Binary files /dev/null and b/data/CTR-AUD/art.jpg differ diff --git a/data/CTR-AUD/data.yml b/data/CTR-AUD/data.yml new file mode 100644 index 0000000..38fbf7f --- /dev/null +++ b/data/CTR-AUD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000019D100 + name: デジモンユニバース アプリモンスターズ + updates: [] diff --git a/data/CTR-AUD/icon.jpg b/data/CTR-AUD/icon.jpg new file mode 100644 index 0000000..16e358f Binary files /dev/null and b/data/CTR-AUD/icon.jpg differ diff --git a/data/CTR-AUF/art.jpg b/data/CTR-AUF/art.jpg new file mode 100644 index 0000000..e90ebb7 Binary files /dev/null and b/data/CTR-AUF/art.jpg differ diff --git a/data/CTR-AUF/data.yml b/data/CTR-AUF/data.yml new file mode 100644 index 0000000..d227a5d --- /dev/null +++ b/data/CTR-AUF/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000116900 + name: Sayonara UmiharaKawase + updates: [] +- regions: + - JP + id: 00040000000C9100 + name: さよなら 海腹川背 + updates: [] +- regions: + - KR + id: 00040000000F9A00 + name: Sayonara Umihara Kawase + updates: [] +- regions: + - US + id: 0004000000112D00 + name: Yumi's Odd Odyssey™ + updates: [] diff --git a/data/CTR-AUF/icon.jpg b/data/CTR-AUF/icon.jpg new file mode 100644 index 0000000..a60844b Binary files /dev/null and b/data/CTR-AUF/icon.jpg differ diff --git a/data/CTR-AUG/art.jpg b/data/CTR-AUG/art.jpg new file mode 100644 index 0000000..ae6ee14 Binary files /dev/null and b/data/CTR-AUG/art.jpg differ diff --git a/data/CTR-AUG/data.yml b/data/CTR-AUG/data.yml new file mode 100644 index 0000000..a059514 --- /dev/null +++ b/data/CTR-AUG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000118400 + name: おしゃべりうさぎ おしゃれコレクション + updates: [] diff --git a/data/CTR-AUG/icon.jpg b/data/CTR-AUG/icon.jpg new file mode 100644 index 0000000..8d2f59b Binary files /dev/null and b/data/CTR-AUG/icon.jpg differ diff --git a/data/CTR-AUL/art.jpg b/data/CTR-AUL/art.jpg new file mode 100644 index 0000000..e6b800c Binary files /dev/null and b/data/CTR-AUL/art.jpg differ diff --git a/data/CTR-AUL/data.yml b/data/CTR-AUL/data.yml new file mode 100644 index 0000000..d7f2fb6 --- /dev/null +++ b/data/CTR-AUL/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A3000 + name: Doll Fashion Atelier + updates: [] +- regions: + - JP + id: 0004000000154D00 + name: アトリエ デコ ラ ドール コレクション + updates: [] +- regions: + - KR + id: 000400000017E700 + name: 내맘대로 프린세스 컬렉션 + updates: [] +- regions: + - US + id: 000400000018AA00 + name: Doll Fashion Atelier + updates: [] diff --git a/data/CTR-AUL/icon.jpg b/data/CTR-AUL/icon.jpg new file mode 100644 index 0000000..0800460 Binary files /dev/null and b/data/CTR-AUL/icon.jpg differ diff --git a/data/CTR-AUM/art.jpg b/data/CTR-AUM/art.jpg new file mode 100644 index 0000000..9ba567a Binary files /dev/null and b/data/CTR-AUM/art.jpg differ diff --git a/data/CTR-AUM/data.yml b/data/CTR-AUM/data.yml new file mode 100644 index 0000000..8177aaa --- /dev/null +++ b/data/CTR-AUM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000073800 + name: パチパラ3D プレミアム海物語 ~夢見る乙女とパチンコ王決定戦~ + updates: [] diff --git a/data/CTR-AUM/icon.jpg b/data/CTR-AUM/icon.jpg new file mode 100644 index 0000000..33dff4b Binary files /dev/null and b/data/CTR-AUM/icon.jpg differ diff --git a/data/CTR-AUN/art.jpg b/data/CTR-AUN/art.jpg new file mode 100644 index 0000000..5ff6113 Binary files /dev/null and b/data/CTR-AUN/art.jpg differ diff --git a/data/CTR-AUN/data.yml b/data/CTR-AUN/data.yml new file mode 100644 index 0000000..2e4a560 --- /dev/null +++ b/data/CTR-AUN/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000188D00 + name: Mario Sports Superstars + updates: [] +- regions: + - JP + id: 0004000000188B00 + name: マリオスポーツ スーパースターズ + updates: [] +- regions: + - KR + id: 00040000001A6400 + name: 마리오 스포츠 슈퍼스타즈 + updates: [] +- regions: + - TW + - US + id: 0004000000188C00 + name: Mario Sports™ Superstars + updates: [] diff --git a/data/CTR-AUN/icon.jpg b/data/CTR-AUN/icon.jpg new file mode 100644 index 0000000..32928d5 Binary files /dev/null and b/data/CTR-AUN/icon.jpg differ diff --git a/data/CTR-AUX/art.jpg b/data/CTR-AUX/art.jpg new file mode 100644 index 0000000..299bf6e Binary files /dev/null and b/data/CTR-AUX/art.jpg differ diff --git a/data/CTR-AUX/data.yml b/data/CTR-AUX/data.yml new file mode 100644 index 0000000..86ee758 --- /dev/null +++ b/data/CTR-AUX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A7400 + name: アンチェインブレイズ エクシヴ + updates: [] diff --git a/data/CTR-AUX/icon.jpg b/data/CTR-AUX/icon.jpg new file mode 100644 index 0000000..fad7878 Binary files /dev/null and b/data/CTR-AUX/icon.jpg differ diff --git a/data/CTR-AV4/art.jpg b/data/CTR-AV4/art.jpg new file mode 100644 index 0000000..2bed924 Binary files /dev/null and b/data/CTR-AV4/art.jpg differ diff --git a/data/CTR-AV4/data.yml b/data/CTR-AV4/data.yml new file mode 100644 index 0000000..498e874 --- /dev/null +++ b/data/CTR-AV4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000034200 + name: ウイルスシューターXX + updates: [] diff --git a/data/CTR-AV4/icon.jpg b/data/CTR-AV4/icon.jpg new file mode 100644 index 0000000..6ff1bcb Binary files /dev/null and b/data/CTR-AV4/icon.jpg differ diff --git a/data/CTR-AVA/art.jpg b/data/CTR-AVA/art.jpg new file mode 100644 index 0000000..b19909e Binary files /dev/null and b/data/CTR-AVA/art.jpg differ diff --git a/data/CTR-AVA/data.yml b/data/CTR-AVA/data.yml new file mode 100644 index 0000000..ba9b507 --- /dev/null +++ b/data/CTR-AVA/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A6900 + name: 'Harvest Moon: Skytree Village' + updates: [] +- regions: + - US + id: 00040000001A3500 + name: 'Harvest Moon®: Skytree Village' + updates: + - id: 0004000E001A3500 + name: 'Harvest Moon: Skytree Village Update Ver. 2.00' diff --git a/data/CTR-AVA/icon.jpg b/data/CTR-AVA/icon.jpg new file mode 100644 index 0000000..9e67a48 Binary files /dev/null and b/data/CTR-AVA/icon.jpg differ diff --git a/data/CTR-AVC/art.jpg b/data/CTR-AVC/art.jpg new file mode 100644 index 0000000..23475b6 Binary files /dev/null and b/data/CTR-AVC/art.jpg differ diff --git a/data/CTR-AVC/data.yml b/data/CTR-AVC/data.yml new file mode 100644 index 0000000..154bde8 --- /dev/null +++ b/data/CTR-AVC/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000B4A00 + name: とんがりボウシと魔法の町 + updates: + - id: 0004000E000B4A00 + name: 更新データ Ver. 1.1 とんがりボウシと魔法の町 diff --git a/data/CTR-AVC/icon.jpg b/data/CTR-AVC/icon.jpg new file mode 100644 index 0000000..597d28b Binary files /dev/null and b/data/CTR-AVC/icon.jpg differ diff --git a/data/CTR-AVG/art.jpg b/data/CTR-AVG/art.jpg new file mode 100644 index 0000000..4909ab5 Binary files /dev/null and b/data/CTR-AVG/art.jpg differ diff --git a/data/CTR-AVG/data.yml b/data/CTR-AVG/data.yml new file mode 100644 index 0000000..8e1dbe4 --- /dev/null +++ b/data/CTR-AVG/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000AC700 + name: カードファイト!! ヴァンガード ライド トゥ ビクトリー!! + updates: + - id: 0004000E000AC700 + name: 更新データ Ver. 1.2 カードファイト!! ヴァンガード diff --git a/data/CTR-AVG/icon.jpg b/data/CTR-AVG/icon.jpg new file mode 100644 index 0000000..a1f7571 Binary files /dev/null and b/data/CTR-AVG/icon.jpg differ diff --git a/data/CTR-AVH/art.jpg b/data/CTR-AVH/art.jpg new file mode 100644 index 0000000..9e10416 Binary files /dev/null and b/data/CTR-AVH/art.jpg differ diff --git a/data/CTR-AVH/data.yml b/data/CTR-AVH/data.yml new file mode 100644 index 0000000..2ace6f3 --- /dev/null +++ b/data/CTR-AVH/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F4500 + name: SENRAN KAGURA Burst + updates: [] +- regions: + - JP + id: 000400000009F600 + name: 閃乱カグラ Burst -紅蓮の少女達- + updates: [] +- regions: + - KR + id: 00040000000CFD00 + name: SENRAN KAGURA Burst + updates: [] +- regions: + - US + id: 00040000000ED100 + name: SENRAN KAGURA Burst + updates: [] diff --git a/data/CTR-AVH/icon.jpg b/data/CTR-AVH/icon.jpg new file mode 100644 index 0000000..cf92716 Binary files /dev/null and b/data/CTR-AVH/icon.jpg differ diff --git a/data/CTR-AVM/art.jpg b/data/CTR-AVM/art.jpg new file mode 100644 index 0000000..3323a8b Binary files /dev/null and b/data/CTR-AVM/art.jpg differ diff --git a/data/CTR-AVM/data.yml b/data/CTR-AVM/data.yml new file mode 100644 index 0000000..d67bb6e --- /dev/null +++ b/data/CTR-AVM/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000012BE00 + name: 'Harvest Moon®: The Lost Valley' + updates: + - id: 0004000E0012BE00 + name: 'Harvest Moon®: The Lost Valley: Update' +- regions: + - US + id: 000400000010F600 + name: 'Harvest Moon®: The Lost Valley' + updates: + - id: 0004000E0010F600 + name: 'Harvest Moon®: The Lost Valley Update Ver. 1.01' diff --git a/data/CTR-AVM/icon.jpg b/data/CTR-AVM/icon.jpg new file mode 100644 index 0000000..f5d1f48 Binary files /dev/null and b/data/CTR-AVM/icon.jpg differ diff --git a/data/CTR-AVN/art.jpg b/data/CTR-AVN/art.jpg new file mode 100644 index 0000000..1ba9153 Binary files /dev/null and b/data/CTR-AVN/art.jpg differ diff --git a/data/CTR-AVN/data.yml b/data/CTR-AVN/data.yml new file mode 100644 index 0000000..d2c89ad --- /dev/null +++ b/data/CTR-AVN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000120A00 + name: ディスク・ウォーズ:アベンジャーズ アルティメットヒーローズ + updates: [] diff --git a/data/CTR-AVN/icon.jpg b/data/CTR-AVN/icon.jpg new file mode 100644 index 0000000..12a84e5 Binary files /dev/null and b/data/CTR-AVN/icon.jpg differ diff --git a/data/CTR-AVR/art.jpg b/data/CTR-AVR/art.jpg new file mode 100644 index 0000000..b75a002 Binary files /dev/null and b/data/CTR-AVR/art.jpg differ diff --git a/data/CTR-AVR/data.yml b/data/CTR-AVR/data.yml new file mode 100644 index 0000000..b84ce5e --- /dev/null +++ b/data/CTR-AVR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174C00 + name: ぼんぼんりぼん ときめきコーデ・キラキラダンス + updates: [] diff --git a/data/CTR-AVR/icon.jpg b/data/CTR-AVR/icon.jpg new file mode 100644 index 0000000..4b6ed56 Binary files /dev/null and b/data/CTR-AVR/icon.jpg differ diff --git a/data/CTR-AVS/art.jpg b/data/CTR-AVS/art.jpg new file mode 100644 index 0000000..b8c5ae2 Binary files /dev/null and b/data/CTR-AVS/art.jpg differ diff --git a/data/CTR-AVS/data.yml b/data/CTR-AVS/data.yml new file mode 100644 index 0000000..46590c0 --- /dev/null +++ b/data/CTR-AVS/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000100500 + name: 'Professor Layton vs. Phoenix Wright: Ace Attorney' + updates: [] +- regions: + - JP + id: 0004000000078B00 + name: レイトン教授VS逆転裁判 + updates: + - id: 0004000E00078B00 + name: 更新データ Ver. 1.1 レイトン教授VS逆転裁判 +- regions: + - US + id: 0004000000100700 + name: 'Professor Layton vs. Phoenix Wright: Ace Attorney' + updates: [] diff --git a/data/CTR-AVS/icon.jpg b/data/CTR-AVS/icon.jpg new file mode 100644 index 0000000..934c95e Binary files /dev/null and b/data/CTR-AVS/icon.jpg differ diff --git a/data/CTR-AVT/art.jpg b/data/CTR-AVT/art.jpg new file mode 100644 index 0000000..90ad3d4 Binary files /dev/null and b/data/CTR-AVT/art.jpg differ diff --git a/data/CTR-AVT/data.yml b/data/CTR-AVT/data.yml new file mode 100644 index 0000000..5d92808 --- /dev/null +++ b/data/CTR-AVT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000173C00 + name: アドベンチャー・タイム ネームレス王国の3人のプリンセス + updates: [] diff --git a/data/CTR-AVT/icon.jpg b/data/CTR-AVT/icon.jpg new file mode 100644 index 0000000..e9ee94b Binary files /dev/null and b/data/CTR-AVT/icon.jpg differ diff --git a/data/CTR-AW2/art.jpg b/data/CTR-AW2/art.jpg new file mode 100644 index 0000000..7424ae0 Binary files /dev/null and b/data/CTR-AW2/art.jpg differ diff --git a/data/CTR-AW2/data.yml b/data/CTR-AW2/data.yml new file mode 100644 index 0000000..90b8499 --- /dev/null +++ b/data/CTR-AW2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 0004000000073D00 + name: Carnival Wild West 3D + updates: [] +- regions: + - US + id: 0004000000061400 + name: Carnival Games® Wild West 3D + updates: [] diff --git a/data/CTR-AW2/icon.jpg b/data/CTR-AW2/icon.jpg new file mode 100644 index 0000000..8f0811f Binary files /dev/null and b/data/CTR-AW2/icon.jpg differ diff --git a/data/CTR-AWA/art.jpg b/data/CTR-AWA/art.jpg new file mode 100644 index 0000000..8200be2 Binary files /dev/null and b/data/CTR-AWA/art.jpg differ diff --git a/data/CTR-AWA/data.yml b/data/CTR-AWA/data.yml new file mode 100644 index 0000000..7c74429 --- /dev/null +++ b/data/CTR-AWA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000031D00 + name: Pilotwings Resort™ + updates: [] +- regions: + - JP + id: 0004000000031B00 + name: パイロットウイングス リゾート + updates: [] +- regions: + - US + id: 0004000000031C00 + name: Pilotwings Resort™ + updates: [] diff --git a/data/CTR-AWA/icon.jpg b/data/CTR-AWA/icon.jpg new file mode 100644 index 0000000..9e9a15b Binary files /dev/null and b/data/CTR-AWA/icon.jpg differ diff --git a/data/CTR-AWC/art.jpg b/data/CTR-AWC/art.jpg new file mode 100644 index 0000000..c9f2d15 Binary files /dev/null and b/data/CTR-AWC/art.jpg differ diff --git a/data/CTR-AWC/data.yml b/data/CTR-AWC/data.yml new file mode 100644 index 0000000..88eb4b7 --- /dev/null +++ b/data/CTR-AWC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000DC600 + name: ぬいぐるみのケーキ屋さん ~魔法のパティシエール~ + updates: [] diff --git a/data/CTR-AWC/icon.jpg b/data/CTR-AWC/icon.jpg new file mode 100644 index 0000000..1a1e469 Binary files /dev/null and b/data/CTR-AWC/icon.jpg differ diff --git a/data/CTR-AWF/art.jpg b/data/CTR-AWF/art.jpg new file mode 100644 index 0000000..db1d3a8 Binary files /dev/null and b/data/CTR-AWF/art.jpg differ diff --git a/data/CTR-AWF/data.yml b/data/CTR-AWF/data.yml new file mode 100644 index 0000000..248a11a --- /dev/null +++ b/data/CTR-AWF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000019CF00 + name: カミワザワンダ + updates: [] diff --git a/data/CTR-AWF/icon.jpg b/data/CTR-AWF/icon.jpg new file mode 100644 index 0000000..4dde445 Binary files /dev/null and b/data/CTR-AWF/icon.jpg differ diff --git a/data/CTR-AWH/art.jpg b/data/CTR-AWH/art.jpg new file mode 100644 index 0000000..d2d756c Binary files /dev/null and b/data/CTR-AWH/art.jpg differ diff --git a/data/CTR-AWH/data.yml b/data/CTR-AWH/data.yml new file mode 100644 index 0000000..eaeae26 --- /dev/null +++ b/data/CTR-AWH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001BFD00 + name: すみっコぐらし ここ、どこなんです? + updates: [] diff --git a/data/CTR-AWH/icon.jpg b/data/CTR-AWH/icon.jpg new file mode 100644 index 0000000..7e33769 Binary files /dev/null and b/data/CTR-AWH/icon.jpg differ diff --git a/data/CTR-AWJ/art.jpg b/data/CTR-AWJ/art.jpg new file mode 100644 index 0000000..c09b72a Binary files /dev/null and b/data/CTR-AWJ/art.jpg differ diff --git a/data/CTR-AWJ/data.yml b/data/CTR-AWJ/data.yml new file mode 100644 index 0000000..b4a8919 --- /dev/null +++ b/data/CTR-AWJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174900 + name: わんニャンどうぶつ病院 ステキな獣医さんになろう! + updates: [] diff --git a/data/CTR-AWJ/icon.jpg b/data/CTR-AWJ/icon.jpg new file mode 100644 index 0000000..4b9809a Binary files /dev/null and b/data/CTR-AWJ/icon.jpg differ diff --git a/data/CTR-AWK/art.jpg b/data/CTR-AWK/art.jpg new file mode 100644 index 0000000..3669551 Binary files /dev/null and b/data/CTR-AWK/art.jpg differ diff --git a/data/CTR-AWK/data.yml b/data/CTR-AWK/data.yml new file mode 100644 index 0000000..a4f3033 --- /dev/null +++ b/data/CTR-AWK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000C2500 + name: おしごとテーマパーク2 + updates: [] diff --git a/data/CTR-AWK/icon.jpg b/data/CTR-AWK/icon.jpg new file mode 100644 index 0000000..b968d0f Binary files /dev/null and b/data/CTR-AWK/icon.jpg differ diff --git a/data/CTR-AWM/art.jpg b/data/CTR-AWM/art.jpg new file mode 100644 index 0000000..b756824 Binary files /dev/null and b/data/CTR-AWM/art.jpg differ diff --git a/data/CTR-AWM/data.yml b/data/CTR-AWM/data.yml new file mode 100644 index 0000000..2b052cb --- /dev/null +++ b/data/CTR-AWM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000059E00 + name: 女の子と密室にいたら ○○しちゃうかもしれない。 + updates: [] diff --git a/data/CTR-AWM/icon.jpg b/data/CTR-AWM/icon.jpg new file mode 100644 index 0000000..4e8b6db Binary files /dev/null and b/data/CTR-AWM/icon.jpg differ diff --git a/data/CTR-AWN/art.jpg b/data/CTR-AWN/art.jpg new file mode 100644 index 0000000..8b706de Binary files /dev/null and b/data/CTR-AWN/art.jpg differ diff --git a/data/CTR-AWN/data.yml b/data/CTR-AWN/data.yml new file mode 100644 index 0000000..7d4bfec --- /dev/null +++ b/data/CTR-AWN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A1D00 + name: わんニャンどうぶつ病院2 + updates: [] diff --git a/data/CTR-AWN/icon.jpg b/data/CTR-AWN/icon.jpg new file mode 100644 index 0000000..902f5b3 Binary files /dev/null and b/data/CTR-AWN/icon.jpg differ diff --git a/data/CTR-AWR/art.jpg b/data/CTR-AWR/art.jpg new file mode 100644 index 0000000..c640be8 Binary files /dev/null and b/data/CTR-AWR/art.jpg differ diff --git a/data/CTR-AWR/data.yml b/data/CTR-AWR/data.yml new file mode 100644 index 0000000..007e4e4 --- /dev/null +++ b/data/CTR-AWR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000097100 + name: Wreck-it Ralph + updates: [] diff --git a/data/CTR-AWR/icon.jpg b/data/CTR-AWR/icon.jpg new file mode 100644 index 0000000..c31dd68 Binary files /dev/null and b/data/CTR-AWR/icon.jpg differ diff --git a/data/CTR-AWS/art.jpg b/data/CTR-AWS/art.jpg new file mode 100644 index 0000000..2335549 Binary files /dev/null and b/data/CTR-AWS/art.jpg differ diff --git a/data/CTR-AWS/data.yml b/data/CTR-AWS/data.yml new file mode 100644 index 0000000..813412e --- /dev/null +++ b/data/CTR-AWS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000066100 + name: Winter Sports 2012 - Feel the Spirit + updates: [] +- regions: + - EU + id: 0004000000117F00 + name: Winter Sports 2012 - Feel the Spirit + updates: [] +- regions: + - US + id: 0004000000117B00 + name: Winter Sports - Feel the Spirit + updates: [] diff --git a/data/CTR-AWS/icon.jpg b/data/CTR-AWS/icon.jpg new file mode 100644 index 0000000..627504e Binary files /dev/null and b/data/CTR-AWS/icon.jpg differ diff --git a/data/CTR-AWT/art.jpg b/data/CTR-AWT/art.jpg new file mode 100644 index 0000000..815ca7d Binary files /dev/null and b/data/CTR-AWT/art.jpg differ diff --git a/data/CTR-AWT/data.yml b/data/CTR-AWT/data.yml new file mode 100644 index 0000000..5a93ba2 --- /dev/null +++ b/data/CTR-AWT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A7600 + name: ワールドサッカー ウイニングイレブン 2013 + updates: [] diff --git a/data/CTR-AWT/icon.jpg b/data/CTR-AWT/icon.jpg new file mode 100644 index 0000000..39e57a2 Binary files /dev/null and b/data/CTR-AWT/icon.jpg differ diff --git a/data/CTR-AWW/art.jpg b/data/CTR-AWW/art.jpg new file mode 100644 index 0000000..dea4041 Binary files /dev/null and b/data/CTR-AWW/art.jpg differ diff --git a/data/CTR-AWW/data.yml b/data/CTR-AWW/data.yml new file mode 100644 index 0000000..68ea832 --- /dev/null +++ b/data/CTR-AWW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006A900 + name: Word Wizard 3D + updates: [] +- regions: + - US + id: 0004000000107900 + name: Word Wizard 3D + updates: [] diff --git a/data/CTR-AWW/icon.jpg b/data/CTR-AWW/icon.jpg new file mode 100644 index 0000000..1428cda Binary files /dev/null and b/data/CTR-AWW/icon.jpg differ diff --git a/data/CTR-AWX/art.jpg b/data/CTR-AWX/art.jpg new file mode 100644 index 0000000..04b981c Binary files /dev/null and b/data/CTR-AWX/art.jpg differ diff --git a/data/CTR-AWX/data.yml b/data/CTR-AWX/data.yml new file mode 100644 index 0000000..c2d149b --- /dev/null +++ b/data/CTR-AWX/data.yml @@ -0,0 +1,11 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - US + id: 00040000001D1C00 + name: WarioWare™ Gold + updates: + - id: 0004000E001D1C00 + name: Warioware™ Gold Update Ver. 1.1 diff --git a/data/CTR-AWX/icon.jpg b/data/CTR-AWX/icon.jpg new file mode 100644 index 0000000..430af66 Binary files /dev/null and b/data/CTR-AWX/icon.jpg differ diff --git a/data/CTR-AX2/art.jpg b/data/CTR-AX2/art.jpg new file mode 100644 index 0000000..9ebf119 Binary files /dev/null and b/data/CTR-AX2/art.jpg differ diff --git a/data/CTR-AX2/data.yml b/data/CTR-AX2/data.yml new file mode 100644 index 0000000..1974fb8 --- /dev/null +++ b/data/CTR-AX2/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B1800 + name: Phonics Fun with Biff, Chip & Kipper vol. 2 + updates: + - id: 0004000E000B1800 + name: 'Phonics Fun with Biff, Chip & Kipper vol. 2: Update' +- regions: + - JP + id: 00040000000D4200 + name: キッパーのえいご教室 Floppy's Phonics vol.2 ビフ編 + updates: + - id: 0004000E000D4200 + name: 更新データ Ver. 1.1 キッパーのえいご教室 Floppy's Phonics 2 ビフ編 diff --git a/data/CTR-AX2/icon.jpg b/data/CTR-AX2/icon.jpg new file mode 100644 index 0000000..02503ba Binary files /dev/null and b/data/CTR-AX2/icon.jpg differ diff --git a/data/CTR-AX3/art.jpg b/data/CTR-AX3/art.jpg new file mode 100644 index 0000000..33c8d8c Binary files /dev/null and b/data/CTR-AX3/art.jpg differ diff --git a/data/CTR-AX3/data.yml b/data/CTR-AX3/data.yml new file mode 100644 index 0000000..d1c8afc --- /dev/null +++ b/data/CTR-AX3/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000B1900 + name: Phonics Fun with Biff, Chip & Kipper vol. 3 + updates: + - id: 0004000E000B1900 + name: 'Phonics Fun with Biff, Chip & Kipper vol. 3: Update' +- regions: + - JP + id: 00040000000D4400 + name: キッパーのえいご教室 Floppy's Phonics vol.3 チップ編 + updates: + - id: 0004000E000D4400 + name: 更新データ Ver. 1.1 キッパーのえいご教室 Floppy's Phonics 3 チップ編 diff --git a/data/CTR-AX3/icon.jpg b/data/CTR-AX3/icon.jpg new file mode 100644 index 0000000..59e8b05 Binary files /dev/null and b/data/CTR-AX3/icon.jpg differ diff --git a/data/CTR-AX4/art.jpg b/data/CTR-AX4/art.jpg new file mode 100644 index 0000000..f86de3f Binary files /dev/null and b/data/CTR-AX4/art.jpg differ diff --git a/data/CTR-AX4/data.yml b/data/CTR-AX4/data.yml new file mode 100644 index 0000000..3bab376 --- /dev/null +++ b/data/CTR-AX4/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000AFD00 + name: メタルマックス4 月光のディーヴァ + updates: + - id: 0004000E000AFD00 + name: 更新データ Ver. 1.1 メタルマックス4 月光のディーヴァ diff --git a/data/CTR-AX4/icon.jpg b/data/CTR-AX4/icon.jpg new file mode 100644 index 0000000..349590d Binary files /dev/null and b/data/CTR-AX4/icon.jpg differ diff --git a/data/CTR-AX5/art.jpg b/data/CTR-AX5/art.jpg new file mode 100644 index 0000000..6977590 Binary files /dev/null and b/data/CTR-AX5/art.jpg differ diff --git a/data/CTR-AX5/data.yml b/data/CTR-AX5/data.yml new file mode 100644 index 0000000..7c26ade --- /dev/null +++ b/data/CTR-AX5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000EE200 + name: ぼくは航空管制官 エアポート ヒーロー3D 那覇 PREMIUM + updates: [] diff --git a/data/CTR-AX5/icon.jpg b/data/CTR-AX5/icon.jpg new file mode 100644 index 0000000..421d41a Binary files /dev/null and b/data/CTR-AX5/icon.jpg differ diff --git a/data/CTR-AX6/art.jpg b/data/CTR-AX6/art.jpg new file mode 100644 index 0000000..7c42d90 Binary files /dev/null and b/data/CTR-AX6/art.jpg differ diff --git a/data/CTR-AX6/data.yml b/data/CTR-AX6/data.yml new file mode 100644 index 0000000..a7d7d72 --- /dev/null +++ b/data/CTR-AX6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000EE400 + name: Starry☆Sky~in Autumn~3D + updates: [] diff --git a/data/CTR-AX6/icon.jpg b/data/CTR-AX6/icon.jpg new file mode 100644 index 0000000..4f03c47 Binary files /dev/null and b/data/CTR-AX6/icon.jpg differ diff --git a/data/CTR-AX7/art.jpg b/data/CTR-AX7/art.jpg new file mode 100644 index 0000000..a1105e0 Binary files /dev/null and b/data/CTR-AX7/art.jpg differ diff --git a/data/CTR-AX7/data.yml b/data/CTR-AX7/data.yml new file mode 100644 index 0000000..0a8c9d7 --- /dev/null +++ b/data/CTR-AX7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000EE500 + name: Starry☆Sky~in Winter~3D + updates: [] diff --git a/data/CTR-AX7/icon.jpg b/data/CTR-AX7/icon.jpg new file mode 100644 index 0000000..cd3de66 Binary files /dev/null and b/data/CTR-AX7/icon.jpg differ diff --git a/data/CTR-AX8/art.jpg b/data/CTR-AX8/art.jpg new file mode 100644 index 0000000..392faf6 Binary files /dev/null and b/data/CTR-AX8/art.jpg differ diff --git a/data/CTR-AX8/data.yml b/data/CTR-AX8/data.yml new file mode 100644 index 0000000..55f9832 --- /dev/null +++ b/data/CTR-AX8/data.yml @@ -0,0 +1,10 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - TW + - US + id: 000400000013BB00 + name: 'Dr. Mario™: Miracle Cure™' + updates: [] diff --git a/data/CTR-AX8/icon.jpg b/data/CTR-AX8/icon.jpg new file mode 100644 index 0000000..1095dd1 Binary files /dev/null and b/data/CTR-AX8/icon.jpg differ diff --git a/data/CTR-AXA/art.jpg b/data/CTR-AXA/art.jpg new file mode 100644 index 0000000..f34430d Binary files /dev/null and b/data/CTR-AXA/art.jpg differ diff --git a/data/CTR-AXA/data.yml b/data/CTR-AXA/data.yml new file mode 100644 index 0000000..7a21722 --- /dev/null +++ b/data/CTR-AXA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F5000 + name: 仮面ライダー トラベラーズ戦記 + updates: [] diff --git a/data/CTR-AXA/icon.jpg b/data/CTR-AXA/icon.jpg new file mode 100644 index 0000000..3b218bd Binary files /dev/null and b/data/CTR-AXA/icon.jpg differ diff --git a/data/CTR-AXB/art.jpg b/data/CTR-AXB/art.jpg new file mode 100644 index 0000000..67fbb37 Binary files /dev/null and b/data/CTR-AXB/art.jpg differ diff --git a/data/CTR-AXB/data.yml b/data/CTR-AXB/data.yml new file mode 100644 index 0000000..b6aff23 --- /dev/null +++ b/data/CTR-AXB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F7B00 + name: 'Inazuma Eleven® 3: Bomb Blast' + updates: [] diff --git a/data/CTR-AXB/icon.jpg b/data/CTR-AXB/icon.jpg new file mode 100644 index 0000000..b6ea696 Binary files /dev/null and b/data/CTR-AXB/icon.jpg differ diff --git a/data/CTR-AXC/art.jpg b/data/CTR-AXC/art.jpg new file mode 100644 index 0000000..99407e6 Binary files /dev/null and b/data/CTR-AXC/art.jpg differ diff --git a/data/CTR-AXC/data.yml b/data/CTR-AXC/data.yml new file mode 100644 index 0000000..83e539d --- /dev/null +++ b/data/CTR-AXC/data.yml @@ -0,0 +1,37 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000EE000 + name: Super Smash Bros.™ for Nintendo 3DS + updates: + - id: 0004000E000EE000 + name: 'Super Smash Bros.™ for Nintendo 3DS: Update' +- regions: + - JP + id: 00040000000B8B00 + name: 大乱闘スマッシュブラザーズ for Nintendo 3DS + updates: + - id: 0004000E000B8B00 + name: 更新データ Ver. 1.1.7 大乱闘スマッシュブラザーズ for Nintendo 3DS +- regions: + - KR + id: 0004000000167C00 + name: 슈퍼 스매시브라더스 for 닌텐도 3DS + updates: + - id: 0004000E00167C00 + name: 업데이트 데이터 Ver.1.1.7 슈퍼 스매시브라더스 for 닌텐도 3DS +- regions: + - TW + id: 0004000000168600 + name: 大亂鬥スマッシュブラザーズ for Nintendo 3DS(日文版) + updates: + - id: 0004000E00168600 + name: 大亂鬥スマッシュブラザーズ for Nintendo 3DS 更新資料 Ver. 1.1.7 +- regions: + - US + id: 00040000000EDF00 + name: Super Smash Bros.™ for Nintendo 3DS + updates: + - id: 0004000E000EDF00 + name: Super Smash Bros.™ for Nintendo 3DS Update Ver. 1.1.7 diff --git a/data/CTR-AXC/icon.jpg b/data/CTR-AXC/icon.jpg new file mode 100644 index 0000000..3b21ea6 Binary files /dev/null and b/data/CTR-AXC/icon.jpg differ diff --git a/data/CTR-AXE/art.jpg b/data/CTR-AXE/art.jpg new file mode 100644 index 0000000..301e080 Binary files /dev/null and b/data/CTR-AXE/art.jpg differ diff --git a/data/CTR-AXE/data.yml b/data/CTR-AXE/data.yml new file mode 100644 index 0000000..2af0e1e --- /dev/null +++ b/data/CTR-AXE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001D5500 + name: イナズマイレブン for ニンテンドー3DS + updates: [] diff --git a/data/CTR-AXE/icon.jpg b/data/CTR-AXE/icon.jpg new file mode 100644 index 0000000..faefdc3 Binary files /dev/null and b/data/CTR-AXE/icon.jpg differ diff --git a/data/CTR-AXF/art.jpg b/data/CTR-AXF/art.jpg new file mode 100644 index 0000000..a14255f Binary files /dev/null and b/data/CTR-AXF/art.jpg differ diff --git a/data/CTR-AXF/data.yml b/data/CTR-AXF/data.yml new file mode 100644 index 0000000..ea03e63 --- /dev/null +++ b/data/CTR-AXF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000118500 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング + updates: + - id: 0004000E00118500 + name: 更新データ Ver. 1.1 漢検トレーニング diff --git a/data/CTR-AXF/icon.jpg b/data/CTR-AXF/icon.jpg new file mode 100644 index 0000000..b63ebe5 Binary files /dev/null and b/data/CTR-AXF/icon.jpg differ diff --git a/data/CTR-AXG/art.jpg b/data/CTR-AXG/art.jpg new file mode 100644 index 0000000..d0419bd Binary files /dev/null and b/data/CTR-AXG/art.jpg differ diff --git a/data/CTR-AXG/data.yml b/data/CTR-AXG/data.yml new file mode 100644 index 0000000..f4a00ec --- /dev/null +++ b/data/CTR-AXG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F7F00 + name: 'Inazuma Eleven® 3: Team Ogre Attacks!' + updates: [] diff --git a/data/CTR-AXG/icon.jpg b/data/CTR-AXG/icon.jpg new file mode 100644 index 0000000..b4607bb Binary files /dev/null and b/data/CTR-AXG/icon.jpg differ diff --git a/data/CTR-AXP/art.jpg b/data/CTR-AXP/art.jpg new file mode 100644 index 0000000..4cf7150 Binary files /dev/null and b/data/CTR-AXP/art.jpg differ diff --git a/data/CTR-AXP/data.yml b/data/CTR-AXP/data.yml new file mode 100644 index 0000000..75ca485 --- /dev/null +++ b/data/CTR-AXP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CA500 + name: PixelMaker Studio + updates: [] +- regions: + - US + id: 00040000001C6D00 + name: PixelMaker Studio + updates: [] diff --git a/data/CTR-AXP/icon.jpg b/data/CTR-AXP/icon.jpg new file mode 100644 index 0000000..61ef3e8 Binary files /dev/null and b/data/CTR-AXP/icon.jpg differ diff --git a/data/CTR-AXR/art.jpg b/data/CTR-AXR/art.jpg new file mode 100644 index 0000000..7179d89 Binary files /dev/null and b/data/CTR-AXR/art.jpg differ diff --git a/data/CTR-AXR/data.yml b/data/CTR-AXR/data.yml new file mode 100644 index 0000000..58008d3 --- /dev/null +++ b/data/CTR-AXR/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BBD00 + name: 'Apollo Justice: Ace Attorney' + updates: [] +- regions: + - JP + id: 00040000001B9E00 + name: 逆転裁判4 + updates: [] +- regions: + - KR + id: 00040000001BC100 + name: 역전재판®4 / Apollo Justice™ Ace Attorney® + updates: [] +- regions: + - TW + id: 00040000001BC200 + name: 逆轉裁判®4 (日英版) + updates: [] +- regions: + - US + id: 00040000001BD200 + name: 'Apollo Justice: Ace Attorney' + updates: [] diff --git a/data/CTR-AXR/icon.jpg b/data/CTR-AXR/icon.jpg new file mode 100644 index 0000000..7a49610 Binary files /dev/null and b/data/CTR-AXR/icon.jpg differ diff --git a/data/CTR-AXS/art.jpg b/data/CTR-AXS/art.jpg new file mode 100644 index 0000000..7f04d85 Binary files /dev/null and b/data/CTR-AXS/art.jpg differ diff --git a/data/CTR-AXS/data.yml b/data/CTR-AXS/data.yml new file mode 100644 index 0000000..6729bad --- /dev/null +++ b/data/CTR-AXS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F7D00 + name: 'Inazuma Eleven® 3: Lightning Bolt' + updates: [] diff --git a/data/CTR-AXS/icon.jpg b/data/CTR-AXS/icon.jpg new file mode 100644 index 0000000..0bc75f1 Binary files /dev/null and b/data/CTR-AXS/icon.jpg differ diff --git a/data/CTR-AXX/art.jpg b/data/CTR-AXX/art.jpg new file mode 100644 index 0000000..008df05 Binary files /dev/null and b/data/CTR-AXX/art.jpg differ diff --git a/data/CTR-AXX/data.yml b/data/CTR-AXX/data.yml new file mode 100644 index 0000000..6b47ea4 --- /dev/null +++ b/data/CTR-AXX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000073900 + name: PROJECT X ZONE + updates: [] +- regions: + - TW + id: 00040000000ECC00 + name: PROJECT X ZONE (英文版) + updates: [] diff --git a/data/CTR-AXX/icon.jpg b/data/CTR-AXX/icon.jpg new file mode 100644 index 0000000..79e5791 Binary files /dev/null and b/data/CTR-AXX/icon.jpg differ diff --git a/data/CTR-AY3/art.jpg b/data/CTR-AY3/art.jpg new file mode 100644 index 0000000..4fd15b4 Binary files /dev/null and b/data/CTR-AY3/art.jpg differ diff --git a/data/CTR-AY3/data.yml b/data/CTR-AY3/data.yml new file mode 100644 index 0000000..d8d7d17 --- /dev/null +++ b/data/CTR-AY3/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001BCA00 + name: Culdcept Revolt + updates: [] +- regions: + - JP + id: 00040000000F5700 + name: カルドセプト® リボルト + updates: + - id: 0004000E000F5700 + name: 更新データ Ver. 1.2 カルドセプト® リボルト +- regions: + - US + id: 00040000001BEC00 + name: Culdcept Revolt + updates: [] diff --git a/data/CTR-AY3/icon.jpg b/data/CTR-AY3/icon.jpg new file mode 100644 index 0000000..49007af Binary files /dev/null and b/data/CTR-AY3/icon.jpg differ diff --git a/data/CTR-AY4/art.jpg b/data/CTR-AY4/art.jpg new file mode 100644 index 0000000..383633d Binary files /dev/null and b/data/CTR-AY4/art.jpg differ diff --git a/data/CTR-AY4/data.yml b/data/CTR-AY4/data.yml new file mode 100644 index 0000000..b8eac9f --- /dev/null +++ b/data/CTR-AY4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4C00 + name: 世界名作童話 親子で読める ゲーム絵本 プリンセス編 + updates: [] diff --git a/data/CTR-AY4/icon.jpg b/data/CTR-AY4/icon.jpg new file mode 100644 index 0000000..a2d6bd7 Binary files /dev/null and b/data/CTR-AY4/icon.jpg differ diff --git a/data/CTR-AY5/art.jpg b/data/CTR-AY5/art.jpg new file mode 100644 index 0000000..34ac7df Binary files /dev/null and b/data/CTR-AY5/art.jpg differ diff --git a/data/CTR-AY5/data.yml b/data/CTR-AY5/data.yml new file mode 100644 index 0000000..af792a0 --- /dev/null +++ b/data/CTR-AY5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4D00 + name: 世界名作童話 親子で読める ゲーム絵本 冒険編 + updates: [] diff --git a/data/CTR-AY5/icon.jpg b/data/CTR-AY5/icon.jpg new file mode 100644 index 0000000..af5a295 Binary files /dev/null and b/data/CTR-AY5/icon.jpg differ diff --git a/data/CTR-AY6/art.jpg b/data/CTR-AY6/art.jpg new file mode 100644 index 0000000..d8c809d Binary files /dev/null and b/data/CTR-AY6/art.jpg differ diff --git a/data/CTR-AY6/data.yml b/data/CTR-AY6/data.yml new file mode 100644 index 0000000..b044bf2 --- /dev/null +++ b/data/CTR-AY6/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 0004000000132500 + name: 'Code Name: S.T.E.A.M.' + updates: + - id: 0004000E00132500 + name: 'Code Name: S.T.E.A.M. Update Ver. 1.2.0' diff --git a/data/CTR-AY6/icon.jpg b/data/CTR-AY6/icon.jpg new file mode 100644 index 0000000..51a14af Binary files /dev/null and b/data/CTR-AY6/icon.jpg differ diff --git a/data/CTR-AY7/art.jpg b/data/CTR-AY7/art.jpg new file mode 100644 index 0000000..22bde63 Binary files /dev/null and b/data/CTR-AY7/art.jpg differ diff --git a/data/CTR-AY7/data.yml b/data/CTR-AY7/data.yml new file mode 100644 index 0000000..593bb1a --- /dev/null +++ b/data/CTR-AY7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000ED900 + name: Bella Sara 2 - The Magic of Drasilmare + updates: [] diff --git a/data/CTR-AY7/icon.jpg b/data/CTR-AY7/icon.jpg new file mode 100644 index 0000000..18821a3 Binary files /dev/null and b/data/CTR-AY7/icon.jpg differ diff --git a/data/CTR-AYC/art.jpg b/data/CTR-AYC/art.jpg new file mode 100644 index 0000000..af57b05 Binary files /dev/null and b/data/CTR-AYC/art.jpg differ diff --git a/data/CTR-AYC/data.yml b/data/CTR-AYC/data.yml new file mode 100644 index 0000000..b718a57 --- /dev/null +++ b/data/CTR-AYC/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FB400 + name: モデル☆おしゃれオーディション ドリームガール + updates: + - id: 0004000E000FB400 + name: 更新データ Ver. 1.1 モデル☆おしゃれオーディション ドリームガール diff --git a/data/CTR-AYC/icon.jpg b/data/CTR-AYC/icon.jpg new file mode 100644 index 0000000..22dbdf6 Binary files /dev/null and b/data/CTR-AYC/icon.jpg differ diff --git a/data/CTR-AYD/art.jpg b/data/CTR-AYD/art.jpg new file mode 100644 index 0000000..ed43753 Binary files /dev/null and b/data/CTR-AYD/art.jpg differ diff --git a/data/CTR-AYD/data.yml b/data/CTR-AYD/data.yml new file mode 100644 index 0000000..0782821 --- /dev/null +++ b/data/CTR-AYD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000BB900 + name: アクリルパレット ~彩りカフェ・Cheers~ + updates: [] diff --git a/data/CTR-AYD/icon.jpg b/data/CTR-AYD/icon.jpg new file mode 100644 index 0000000..9c4550e Binary files /dev/null and b/data/CTR-AYD/icon.jpg differ diff --git a/data/CTR-AYF/art.jpg b/data/CTR-AYF/art.jpg new file mode 100644 index 0000000..048b0a9 Binary files /dev/null and b/data/CTR-AYF/art.jpg differ diff --git a/data/CTR-AYF/data.yml b/data/CTR-AYF/data.yml new file mode 100644 index 0000000..5de659f --- /dev/null +++ b/data/CTR-AYF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000FBB00 + name: Best of Board Games + updates: [] diff --git a/data/CTR-AYF/icon.jpg b/data/CTR-AYF/icon.jpg new file mode 100644 index 0000000..b522687 Binary files /dev/null and b/data/CTR-AYF/icon.jpg differ diff --git a/data/CTR-AYG/art.jpg b/data/CTR-AYG/art.jpg new file mode 100644 index 0000000..9861e9d Binary files /dev/null and b/data/CTR-AYG/art.jpg differ diff --git a/data/CTR-AYG/data.yml b/data/CTR-AYG/data.yml new file mode 100644 index 0000000..ee70cf3 --- /dev/null +++ b/data/CTR-AYG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000065600 + name: 勇現会社ブレイブカンパニー + updates: [] diff --git a/data/CTR-AYG/icon.jpg b/data/CTR-AYG/icon.jpg new file mode 100644 index 0000000..d68cae0 Binary files /dev/null and b/data/CTR-AYG/icon.jpg differ diff --git a/data/CTR-AYH/art.jpg b/data/CTR-AYH/art.jpg new file mode 100644 index 0000000..f69646b Binary files /dev/null and b/data/CTR-AYH/art.jpg differ diff --git a/data/CTR-AYH/data.yml b/data/CTR-AYH/data.yml new file mode 100644 index 0000000..fc47ed3 --- /dev/null +++ b/data/CTR-AYH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000FBD00 + name: Best of Arcade Games + updates: [] diff --git a/data/CTR-AYH/icon.jpg b/data/CTR-AYH/icon.jpg new file mode 100644 index 0000000..7865b4b Binary files /dev/null and b/data/CTR-AYH/icon.jpg differ diff --git a/data/CTR-AYK/art.jpg b/data/CTR-AYK/art.jpg new file mode 100644 index 0000000..2a98e65 Binary files /dev/null and b/data/CTR-AYK/art.jpg differ diff --git a/data/CTR-AYK/data.yml b/data/CTR-AYK/data.yml new file mode 100644 index 0000000..c9d7381 --- /dev/null +++ b/data/CTR-AYK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000018B000 + name: 妖怪三国志 + updates: + - id: 0004000E0018B000 + name: 更新データ Ver. 1.2 妖怪三国志 diff --git a/data/CTR-AYK/icon.jpg b/data/CTR-AYK/icon.jpg new file mode 100644 index 0000000..e4f0835 Binary files /dev/null and b/data/CTR-AYK/icon.jpg differ diff --git a/data/CTR-AYL/art.jpg b/data/CTR-AYL/art.jpg new file mode 100644 index 0000000..29bd1ea Binary files /dev/null and b/data/CTR-AYL/art.jpg differ diff --git a/data/CTR-AYL/data.yml b/data/CTR-AYL/data.yml new file mode 100644 index 0000000..a562d48 --- /dev/null +++ b/data/CTR-AYL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FA700 + name: Fate/kaleid liner プリズマ☆イリヤ + updates: [] diff --git a/data/CTR-AYL/icon.jpg b/data/CTR-AYL/icon.jpg new file mode 100644 index 0000000..bba1cfb Binary files /dev/null and b/data/CTR-AYL/icon.jpg differ diff --git a/data/CTR-AYM/art.jpg b/data/CTR-AYM/art.jpg new file mode 100644 index 0000000..f002d5a Binary files /dev/null and b/data/CTR-AYM/art.jpg differ diff --git a/data/CTR-AYM/data.yml b/data/CTR-AYM/data.yml new file mode 100644 index 0000000..07b8bea --- /dev/null +++ b/data/CTR-AYM/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D9000 + name: 'Mario & Luigi™: Dream Team Bros.' + updates: + - id: 0004000E000D9000 + name: 'Mario & Luigi™: Dream Team Bros. Update' +- regions: + - JP + id: 0004000000060600 + name: マリオ&ルイージRPG4 ドリームアドベンチャー + updates: + - id: 0004000E00060600 + name: 更新データ Ver. 1.1 マリオ&ルイージ RPG4 ドリームアドベンチャー +- regions: + - KR + id: 00040000000FCD00 + name: 마리오&루이지 RPG 4 드림 어드벤처 + updates: [] +- regions: + - US + id: 00040000000D5A00 + name: 'Mario & Luigi™: Dream Team' + updates: + - id: 0004000E000D5A00 + name: 'Mario & Luigi™: Dream Team Update' diff --git a/data/CTR-AYM/icon.jpg b/data/CTR-AYM/icon.jpg new file mode 100644 index 0000000..5f9f8f7 Binary files /dev/null and b/data/CTR-AYM/icon.jpg differ diff --git a/data/CTR-AYN/art.jpg b/data/CTR-AYN/art.jpg new file mode 100644 index 0000000..18985ab Binary files /dev/null and b/data/CTR-AYN/art.jpg differ diff --git a/data/CTR-AYN/data.yml b/data/CTR-AYN/data.yml new file mode 100644 index 0000000..b4dc439 --- /dev/null +++ b/data/CTR-AYN/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000132800 + name: 'Mario & Luigi™: Paper Jam Bros.' + updates: [] +- regions: + - JP + id: 0004000000132600 + name: マリオ&ルイージRPG ペーパーマリオMIX + updates: [] +- regions: + - KR + id: 0004000000188900 + name: 마리오&루이지 RPG 페이퍼 마리오 MIX + updates: [] +- regions: + - US + id: 0004000000132700 + name: 'Mario & Luigi™: Paper Jam' + updates: [] diff --git a/data/CTR-AYN/icon.jpg b/data/CTR-AYN/icon.jpg new file mode 100644 index 0000000..e7bc9e2 Binary files /dev/null and b/data/CTR-AYN/icon.jpg differ diff --git a/data/CTR-AYP/art.jpg b/data/CTR-AYP/art.jpg new file mode 100644 index 0000000..9b04fba Binary files /dev/null and b/data/CTR-AYP/art.jpg differ diff --git a/data/CTR-AYP/data.yml b/data/CTR-AYP/data.yml new file mode 100644 index 0000000..bf39d8c --- /dev/null +++ b/data/CTR-AYP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000144600 + name: 弱虫ペダル 明日への高回転 + updates: + - id: 0004000E00144600 + name: 更新データ Ver. 1.1 弱虫ペダル 明日への高回転 diff --git a/data/CTR-AYP/icon.jpg b/data/CTR-AYP/icon.jpg new file mode 100644 index 0000000..f1e4087 Binary files /dev/null and b/data/CTR-AYP/icon.jpg differ diff --git a/data/CTR-AYQ/art.jpg b/data/CTR-AYQ/art.jpg new file mode 100644 index 0000000..0e6f670 Binary files /dev/null and b/data/CTR-AYQ/art.jpg differ diff --git a/data/CTR-AYQ/data.yml b/data/CTR-AYQ/data.yml new file mode 100644 index 0000000..4548397 --- /dev/null +++ b/data/CTR-AYQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000199300 + name: カルドセプト® リボルト スタートダッシュVer. + updates: [] diff --git a/data/CTR-AYQ/icon.jpg b/data/CTR-AYQ/icon.jpg new file mode 100644 index 0000000..519100c Binary files /dev/null and b/data/CTR-AYQ/icon.jpg differ diff --git a/data/CTR-AYR/art.jpg b/data/CTR-AYR/art.jpg new file mode 100644 index 0000000..3a6faf0 Binary files /dev/null and b/data/CTR-AYR/art.jpg differ diff --git a/data/CTR-AYR/data.yml b/data/CTR-AYR/data.yml new file mode 100644 index 0000000..6622929 --- /dev/null +++ b/data/CTR-AYR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000168B00 + name: 'YAKARI: The Mystery of Four-Seasons' + updates: [] diff --git a/data/CTR-AYR/icon.jpg b/data/CTR-AYR/icon.jpg new file mode 100644 index 0000000..2a9247a Binary files /dev/null and b/data/CTR-AYR/icon.jpg differ diff --git a/data/CTR-AYS/art.jpg b/data/CTR-AYS/art.jpg new file mode 100644 index 0000000..1db639f Binary files /dev/null and b/data/CTR-AYS/art.jpg differ diff --git a/data/CTR-AYS/data.yml b/data/CTR-AYS/data.yml new file mode 100644 index 0000000..8a6bf98 --- /dev/null +++ b/data/CTR-AYS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F9C00 + name: ペンギンの問題+ 爆勝!ルーレットバトル!! + updates: [] diff --git a/data/CTR-AYS/icon.jpg b/data/CTR-AYS/icon.jpg new file mode 100644 index 0000000..60f21d3 Binary files /dev/null and b/data/CTR-AYS/icon.jpg differ diff --git a/data/CTR-AYT/art.jpg b/data/CTR-AYT/art.jpg new file mode 100644 index 0000000..9d13fc7 Binary files /dev/null and b/data/CTR-AYT/art.jpg differ diff --git a/data/CTR-AYT/data.yml b/data/CTR-AYT/data.yml new file mode 100644 index 0000000..1a56005 --- /dev/null +++ b/data/CTR-AYT/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000CCF00 + name: Donkey Kong™ Country Returns 3D + updates: [] +- regions: + - JP + id: 00040000000CC000 + name: ドンキーコング リターンズ 3D + updates: [] +- regions: + - KR + id: 00040000000FFC00 + name: 동키콩 리턴즈 3D + updates: [] +- regions: + - TW + id: 00040000000FC700 + name: Donkey Kong Country Returns 3D (英文版) + updates: [] +- regions: + - US + id: 00040000000CCE00 + name: Donkey Kong Country™ Returns 3D + updates: [] diff --git a/data/CTR-AYT/icon.jpg b/data/CTR-AYT/icon.jpg new file mode 100644 index 0000000..6e20d7a Binary files /dev/null and b/data/CTR-AYT/icon.jpg differ diff --git a/data/CTR-AYU/art.jpg b/data/CTR-AYU/art.jpg new file mode 100644 index 0000000..975b817 Binary files /dev/null and b/data/CTR-AYU/art.jpg differ diff --git a/data/CTR-AYU/data.yml b/data/CTR-AYU/data.yml new file mode 100644 index 0000000..42dc7a8 --- /dev/null +++ b/data/CTR-AYU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F7500 + name: おしゃれな仔犬3D + updates: [] diff --git a/data/CTR-AYU/icon.jpg b/data/CTR-AYU/icon.jpg new file mode 100644 index 0000000..661d5d7 Binary files /dev/null and b/data/CTR-AYU/icon.jpg differ diff --git a/data/CTR-AYV/art.jpg b/data/CTR-AYV/art.jpg new file mode 100644 index 0000000..367c239 Binary files /dev/null and b/data/CTR-AYV/art.jpg differ diff --git a/data/CTR-AYV/data.yml b/data/CTR-AYV/data.yml new file mode 100644 index 0000000..d0f738a --- /dev/null +++ b/data/CTR-AYV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F7200 + name: ナナミと一緒に学ぼ! English上達のコツ + updates: + - id: 0004000E000F7200 + name: 更新データ Ver. 1.1 ナナミと一緒に学ぼ!English上達のコツ diff --git a/data/CTR-AYV/icon.jpg b/data/CTR-AYV/icon.jpg new file mode 100644 index 0000000..fa4ec08 Binary files /dev/null and b/data/CTR-AYV/icon.jpg differ diff --git a/data/CTR-AYW/art.jpg b/data/CTR-AYW/art.jpg new file mode 100644 index 0000000..cfec6ac Binary files /dev/null and b/data/CTR-AYW/art.jpg differ diff --git a/data/CTR-AYW/data.yml b/data/CTR-AYW/data.yml new file mode 100644 index 0000000..8a7275e --- /dev/null +++ b/data/CTR-AYW/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000167800 + name: YO-KAI WATCH® + updates: + - id: 0004000E00167800 + name: 'YO-KAI WATCH©: Update' +- regions: + - JP + id: 00040000000CF400 + name: 妖怪ウォッチ + updates: + - id: 0004000E000CF400 + name: 更新データ Ver. 1.2 妖怪ウォッチ +- regions: + - KR + id: 0004000000167600 + name: 요괴워치 + updates: [] +- regions: + - US + id: 0004000000167700 + name: YO-KAI WATCH™ + updates: + - id: 0004000E00167700 + name: YO-KAI WATCH™ Update Ver. 1.2 diff --git a/data/CTR-AYW/icon.jpg b/data/CTR-AYW/icon.jpg new file mode 100644 index 0000000..adfd3da Binary files /dev/null and b/data/CTR-AYW/icon.jpg differ diff --git a/data/CTR-AYX/art.jpg b/data/CTR-AYX/art.jpg new file mode 100644 index 0000000..357d807 Binary files /dev/null and b/data/CTR-AYX/art.jpg differ diff --git a/data/CTR-AYX/data.yml b/data/CTR-AYX/data.yml new file mode 100644 index 0000000..904a902 --- /dev/null +++ b/data/CTR-AYX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000132B00 + name: Yu-Gi-Oh! ZEXAL® World Duel Carnival + updates: [] +- regions: + - JP + id: 00040000000F6C00 + name: 遊戯王ZEXAL 激突!デュエルカーニバル! + updates: [] +- regions: + - US + id: 0004000000136100 + name: Yu-Gi-Oh! ZEXAL World Duel Carnival + updates: [] diff --git a/data/CTR-AYX/icon.jpg b/data/CTR-AYX/icon.jpg new file mode 100644 index 0000000..0667264 Binary files /dev/null and b/data/CTR-AYX/icon.jpg differ diff --git a/data/CTR-AYY/art.jpg b/data/CTR-AYY/art.jpg new file mode 100644 index 0000000..b83d3ff Binary files /dev/null and b/data/CTR-AYY/art.jpg differ diff --git a/data/CTR-AYY/data.yml b/data/CTR-AYY/data.yml new file mode 100644 index 0000000..5f67546 --- /dev/null +++ b/data/CTR-AYY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F7100 + name: My Little Baby 3D + updates: [] diff --git a/data/CTR-AYY/icon.jpg b/data/CTR-AYY/icon.jpg new file mode 100644 index 0000000..192817a Binary files /dev/null and b/data/CTR-AYY/icon.jpg differ diff --git a/data/CTR-AYZ/art.jpg b/data/CTR-AYZ/art.jpg new file mode 100644 index 0000000..3ef5817 Binary files /dev/null and b/data/CTR-AYZ/art.jpg differ diff --git a/data/CTR-AYZ/data.yml b/data/CTR-AYZ/data.yml new file mode 100644 index 0000000..0e34c17 --- /dev/null +++ b/data/CTR-AYZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000F6700 + name: Putty Squad + updates: [] diff --git a/data/CTR-AYZ/icon.jpg b/data/CTR-AYZ/icon.jpg new file mode 100644 index 0000000..b6584ef Binary files /dev/null and b/data/CTR-AYZ/icon.jpg differ diff --git a/data/CTR-AZC/art.jpg b/data/CTR-AZC/art.jpg new file mode 100644 index 0000000..57c3238 Binary files /dev/null and b/data/CTR-AZC/art.jpg differ diff --git a/data/CTR-AZC/data.yml b/data/CTR-AZC/data.yml new file mode 100644 index 0000000..490cd78 --- /dev/null +++ b/data/CTR-AZC/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000A4D00 + name: 戦国無双 Chronicle 2nd + updates: + - id: 0004000E000A4D00 + name: 更新データ Ver. 1.1 戦国無双 Chronicle 2nd diff --git a/data/CTR-AZC/icon.jpg b/data/CTR-AZC/icon.jpg new file mode 100644 index 0000000..d5abb49 Binary files /dev/null and b/data/CTR-AZC/icon.jpg differ diff --git a/data/CTR-AZD/art.jpg b/data/CTR-AZD/art.jpg new file mode 100644 index 0000000..5ea1d50 Binary files /dev/null and b/data/CTR-AZD/art.jpg differ diff --git a/data/CTR-AZD/data.yml b/data/CTR-AZD/data.yml new file mode 100644 index 0000000..4c79f50 --- /dev/null +++ b/data/CTR-AZD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006D000 + name: Azada + updates: [] +- regions: + - US + id: 0004000000130A00 + name: Azada + updates: [] diff --git a/data/CTR-AZD/icon.jpg b/data/CTR-AZD/icon.jpg new file mode 100644 index 0000000..8375cd4 Binary files /dev/null and b/data/CTR-AZD/icon.jpg differ diff --git a/data/CTR-AZE/art.jpg b/data/CTR-AZE/art.jpg new file mode 100644 index 0000000..4fe4b59 Binary files /dev/null and b/data/CTR-AZE/art.jpg differ diff --git a/data/CTR-AZE/data.yml b/data/CTR-AZE/data.yml new file mode 100644 index 0000000..73ba3e3 --- /dev/null +++ b/data/CTR-AZE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D7000 + name: 'Batman: Arkham Origins Blackgate' + updates: [] +- regions: + - US + id: 00040000000D6B00 + name: 'Batman: Arkham Origins Blackgate' + updates: [] diff --git a/data/CTR-AZE/icon.jpg b/data/CTR-AZE/icon.jpg new file mode 100644 index 0000000..ba4013b Binary files /dev/null and b/data/CTR-AZE/icon.jpg differ diff --git a/data/CTR-AZF/art.jpg b/data/CTR-AZF/art.jpg new file mode 100644 index 0000000..429294d Binary files /dev/null and b/data/CTR-AZF/art.jpg differ diff --git a/data/CTR-AZF/data.yml b/data/CTR-AZF/data.yml new file mode 100644 index 0000000..4c5514a --- /dev/null +++ b/data/CTR-AZF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E7D00 + name: Animal Hospital + updates: [] +- regions: + - US + id: 0004000000186F00 + name: PET HOSPITAL + updates: [] diff --git a/data/CTR-AZF/icon.jpg b/data/CTR-AZF/icon.jpg new file mode 100644 index 0000000..b482b42 Binary files /dev/null and b/data/CTR-AZF/icon.jpg differ diff --git a/data/CTR-AZG/art.jpg b/data/CTR-AZG/art.jpg new file mode 100644 index 0000000..101f578 Binary files /dev/null and b/data/CTR-AZG/art.jpg differ diff --git a/data/CTR-AZG/data.yml b/data/CTR-AZG/data.yml new file mode 100644 index 0000000..eec98ac --- /dev/null +++ b/data/CTR-AZG/data.yml @@ -0,0 +1,35 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000137800 + name: Puzzle & Dragons Z + updates: + - id: 0004000E00137800 + name: 'Puzzle & Dragons Z + Puzzle & Dragons: Super Mario Bros. Edition: Update' +- regions: + - JP + id: 00040000000C3900 + name: パズドラZ + updates: [] +- regions: + - KR + id: 000400000015A700 + name: 퍼즐앤드래곤 Z + 퍼즐앤드래곤 슈퍼 마리오브라더스 에디션 + updates: + - id: 0004000E0015A700 + name: 업데이트 데이터 Ver.2.0 퍼즐앤드래곤 Z + 퍼즐앤드래곤 슈퍼 마리오브라더스 에디션 +- regions: + - TW + id: 000400000016D100 + name: Puzzle & Dragons Z + Puzzle & Dragons Super Mario Bros. Edition(英文版) + updates: + - id: 0004000E0016D100 + name: Puzzle & Dragons Z + Puzzle & Dragons Super Mario Bros. Edition 更新資料 Ver.2.0 +- regions: + - US + id: 0004000000137700 + name: Puzzle & Dragons Z + Super Mario Bros. Edition + updates: + - id: 0004000E00137700 + name: Puzzle & Dragons Z + Super Mario Bros. Edition Update Ver. 2.0 diff --git a/data/CTR-AZG/icon.jpg b/data/CTR-AZG/icon.jpg new file mode 100644 index 0000000..0185ca5 Binary files /dev/null and b/data/CTR-AZG/icon.jpg differ diff --git a/data/CTR-AZH/art.jpg b/data/CTR-AZH/art.jpg new file mode 100644 index 0000000..2fc391f Binary files /dev/null and b/data/CTR-AZH/art.jpg differ diff --git a/data/CTR-AZH/data.yml b/data/CTR-AZH/data.yml new file mode 100644 index 0000000..74cd3ea --- /dev/null +++ b/data/CTR-AZH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000E7E00 + name: My Western Horse 3D + updates: [] diff --git a/data/CTR-AZH/icon.jpg b/data/CTR-AZH/icon.jpg new file mode 100644 index 0000000..dbdc78a Binary files /dev/null and b/data/CTR-AZH/icon.jpg differ diff --git a/data/CTR-AZK/art.jpg b/data/CTR-AZK/art.jpg new file mode 100644 index 0000000..e7417ac Binary files /dev/null and b/data/CTR-AZK/art.jpg differ diff --git a/data/CTR-AZK/data.yml b/data/CTR-AZK/data.yml new file mode 100644 index 0000000..3d46788 --- /dev/null +++ b/data/CTR-AZK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000051A00 + name: ズーキーパー3D + updates: [] diff --git a/data/CTR-AZK/icon.jpg b/data/CTR-AZK/icon.jpg new file mode 100644 index 0000000..f00fdbe Binary files /dev/null and b/data/CTR-AZK/icon.jpg differ diff --git a/data/CTR-AZM/art.jpg b/data/CTR-AZM/art.jpg new file mode 100644 index 0000000..41a3a22 Binary files /dev/null and b/data/CTR-AZM/art.jpg differ diff --git a/data/CTR-AZM/data.yml b/data/CTR-AZM/data.yml new file mode 100644 index 0000000..08fb199 --- /dev/null +++ b/data/CTR-AZM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000162300 + name: PUZZLE & DRAGONS SUPER MARIO BROS. EDITION + updates: + - id: 0004000E00162300 + name: 更新データ Ver. 2.0 PUZZLE & DRAGONS SUPER MARIO BROS. EDITION diff --git a/data/CTR-AZM/icon.jpg b/data/CTR-AZM/icon.jpg new file mode 100644 index 0000000..da3a07e Binary files /dev/null and b/data/CTR-AZM/icon.jpg differ diff --git a/data/CTR-AZN/art.jpg b/data/CTR-AZN/art.jpg new file mode 100644 index 0000000..f64d5b1 Binary files /dev/null and b/data/CTR-AZN/art.jpg differ diff --git a/data/CTR-AZN/data.yml b/data/CTR-AZN/data.yml new file mode 100644 index 0000000..e21580c --- /dev/null +++ b/data/CTR-AZN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000008D600 + name: ニコリの数独3D 第二集 ~8つのパズルで1000問~ + updates: [] diff --git a/data/CTR-AZN/icon.jpg b/data/CTR-AZN/icon.jpg new file mode 100644 index 0000000..72b9008 Binary files /dev/null and b/data/CTR-AZN/icon.jpg differ diff --git a/data/CTR-AZP/art.jpg b/data/CTR-AZP/art.jpg new file mode 100644 index 0000000..369e2b9 Binary files /dev/null and b/data/CTR-AZP/art.jpg differ diff --git a/data/CTR-AZP/data.yml b/data/CTR-AZP/data.yml new file mode 100644 index 0000000..5cb3c77 --- /dev/null +++ b/data/CTR-AZP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000E9D00 + name: Starry☆Sky~in Summer~3D + updates: [] diff --git a/data/CTR-AZP/icon.jpg b/data/CTR-AZP/icon.jpg new file mode 100644 index 0000000..e35aa42 Binary files /dev/null and b/data/CTR-AZP/icon.jpg differ diff --git a/data/CTR-AZS/art.jpg b/data/CTR-AZS/art.jpg new file mode 100644 index 0000000..e4848d3 Binary files /dev/null and b/data/CTR-AZS/art.jpg differ diff --git a/data/CTR-AZS/data.yml b/data/CTR-AZS/data.yml new file mode 100644 index 0000000..2b820c6 --- /dev/null +++ b/data/CTR-AZS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000C0000 + name: 星霜のアマゾネス + updates: [] diff --git a/data/CTR-AZS/icon.jpg b/data/CTR-AZS/icon.jpg new file mode 100644 index 0000000..abe496b Binary files /dev/null and b/data/CTR-AZS/icon.jpg differ diff --git a/data/CTR-AZT/art.jpg b/data/CTR-AZT/art.jpg new file mode 100644 index 0000000..9be7b0c Binary files /dev/null and b/data/CTR-AZT/art.jpg differ diff --git a/data/CTR-AZT/data.yml b/data/CTR-AZT/data.yml new file mode 100644 index 0000000..99224e1 --- /dev/null +++ b/data/CTR-AZT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000064600 + name: AZITO 3D + updates: [] diff --git a/data/CTR-AZT/icon.jpg b/data/CTR-AZT/icon.jpg new file mode 100644 index 0000000..8d9b764 Binary files /dev/null and b/data/CTR-AZT/icon.jpg differ diff --git a/data/CTR-AZU/art.jpg b/data/CTR-AZU/art.jpg new file mode 100644 index 0000000..25a4c24 Binary files /dev/null and b/data/CTR-AZU/art.jpg differ diff --git a/data/CTR-AZU/data.yml b/data/CTR-AZU/data.yml new file mode 100644 index 0000000..ea9f481 --- /dev/null +++ b/data/CTR-AZU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000E9B00 + name: 脱出アドベンチャー 絶望要塞 + updates: [] diff --git a/data/CTR-AZU/icon.jpg b/data/CTR-AZU/icon.jpg new file mode 100644 index 0000000..4d930af Binary files /dev/null and b/data/CTR-AZU/icon.jpg differ diff --git a/data/CTR-B2C/art.jpg b/data/CTR-B2C/art.jpg new file mode 100644 index 0000000..8ffa1e0 Binary files /dev/null and b/data/CTR-B2C/art.jpg differ diff --git a/data/CTR-B2C/data.yml b/data/CTR-B2C/data.yml new file mode 100644 index 0000000..6c45e26 --- /dev/null +++ b/data/CTR-B2C/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001CC300 + name: プリプリちぃちゃん!! プリプリデコるーむ! + updates: [] diff --git a/data/CTR-B2C/icon.jpg b/data/CTR-B2C/icon.jpg new file mode 100644 index 0000000..6c700ae Binary files /dev/null and b/data/CTR-B2C/icon.jpg differ diff --git a/data/CTR-B2K/art.jpg b/data/CTR-B2K/art.jpg new file mode 100644 index 0000000..2a9a94d Binary files /dev/null and b/data/CTR-B2K/art.jpg differ diff --git a/data/CTR-B2K/data.yml b/data/CTR-B2K/data.yml new file mode 100644 index 0000000..3dcf2dc --- /dev/null +++ b/data/CTR-B2K/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001B8000 + name: 漢検トレーニング2 + updates: [] diff --git a/data/CTR-B2K/icon.jpg b/data/CTR-B2K/icon.jpg new file mode 100644 index 0000000..ecc9e31 Binary files /dev/null and b/data/CTR-B2K/icon.jpg differ diff --git a/data/CTR-B2P/art.jpg b/data/CTR-B2P/art.jpg new file mode 100644 index 0000000..1381f4f Binary files /dev/null and b/data/CTR-B2P/art.jpg differ diff --git a/data/CTR-B2P/data.yml b/data/CTR-B2P/data.yml new file mode 100644 index 0000000..4e54098 --- /dev/null +++ b/data/CTR-B2P/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C9A00 + name: アイドルタイムプリパラ 夢オールスターライブ! + updates: [] diff --git a/data/CTR-B2P/icon.jpg b/data/CTR-B2P/icon.jpg new file mode 100644 index 0000000..bf47564 Binary files /dev/null and b/data/CTR-B2P/icon.jpg differ diff --git a/data/CTR-B2S/art.jpg b/data/CTR-B2S/art.jpg new file mode 100644 index 0000000..38de61e Binary files /dev/null and b/data/CTR-B2S/art.jpg differ diff --git a/data/CTR-B2S/data.yml b/data/CTR-B2S/data.yml new file mode 100644 index 0000000..768d5ee --- /dev/null +++ b/data/CTR-B2S/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C3000 + name: スイキャラ スイーツ学校へようこそ! + updates: [] diff --git a/data/CTR-B2S/icon.jpg b/data/CTR-B2S/icon.jpg new file mode 100644 index 0000000..8d208bd Binary files /dev/null and b/data/CTR-B2S/icon.jpg differ diff --git a/data/CTR-B7M/art.jpg b/data/CTR-B7M/art.jpg new file mode 100644 index 0000000..fb71010 Binary files /dev/null and b/data/CTR-B7M/art.jpg differ diff --git a/data/CTR-B7M/data.yml b/data/CTR-B7M/data.yml new file mode 100644 index 0000000..d8f40a7 --- /dev/null +++ b/data/CTR-B7M/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DAC00 + name: Mountain Peak Battle Mess + updates: [] +- regions: + - US + id: 00040000001DB400 + name: Mountain Peak Battle Mess + updates: [] diff --git a/data/CTR-B7M/icon.jpg b/data/CTR-B7M/icon.jpg new file mode 100644 index 0000000..2f8dc9c Binary files /dev/null and b/data/CTR-B7M/icon.jpg differ diff --git a/data/CTR-BA2/art.jpg b/data/CTR-BA2/art.jpg new file mode 100644 index 0000000..ff4b522 Binary files /dev/null and b/data/CTR-BA2/art.jpg differ diff --git a/data/CTR-BA2/data.yml b/data/CTR-BA2/data.yml new file mode 100644 index 0000000..76dd84b --- /dev/null +++ b/data/CTR-BA2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000017D700 + name: 暗殺教室 アサシン育成計画!! + updates: [] diff --git a/data/CTR-BA2/icon.jpg b/data/CTR-BA2/icon.jpg new file mode 100644 index 0000000..3407942 Binary files /dev/null and b/data/CTR-BA2/icon.jpg differ diff --git a/data/CTR-BA3/art.jpg b/data/CTR-BA3/art.jpg new file mode 100644 index 0000000..2e3a0fd Binary files /dev/null and b/data/CTR-BA3/art.jpg differ diff --git a/data/CTR-BA3/data.yml b/data/CTR-BA3/data.yml new file mode 100644 index 0000000..741667f --- /dev/null +++ b/data/CTR-BA3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014E000 + name: アイカツ!365日のアイドルデイズ + updates: + - id: 0004000E0014E000 + name: 更新データ Ver. 1.1 アイカツ!365日のアイドルデイズ diff --git a/data/CTR-BA3/icon.jpg b/data/CTR-BA3/icon.jpg new file mode 100644 index 0000000..944c498 Binary files /dev/null and b/data/CTR-BA3/icon.jpg differ diff --git a/data/CTR-BA7/art.jpg b/data/CTR-BA7/art.jpg new file mode 100644 index 0000000..5a29584 Binary files /dev/null and b/data/CTR-BA7/art.jpg differ diff --git a/data/CTR-BA7/data.yml b/data/CTR-BA7/data.yml new file mode 100644 index 0000000..41c953d --- /dev/null +++ b/data/CTR-BA7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000178100 + name: 12歳。 ~恋するDiary~ + updates: [] diff --git a/data/CTR-BA7/icon.jpg b/data/CTR-BA7/icon.jpg new file mode 100644 index 0000000..12e79a4 Binary files /dev/null and b/data/CTR-BA7/icon.jpg differ diff --git a/data/CTR-BA9/art.jpg b/data/CTR-BA9/art.jpg new file mode 100644 index 0000000..3cb721a Binary files /dev/null and b/data/CTR-BA9/art.jpg differ diff --git a/data/CTR-BA9/data.yml b/data/CTR-BA9/data.yml new file mode 100644 index 0000000..c572d3d --- /dev/null +++ b/data/CTR-BA9/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174E00 + name: メダロット9 カブトVer. + updates: + - id: 0004000E00174E00 + name: 更新データ Ver. 1.1 メダロット9 カブトVer. diff --git a/data/CTR-BA9/icon.jpg b/data/CTR-BA9/icon.jpg new file mode 100644 index 0000000..4883b82 Binary files /dev/null and b/data/CTR-BA9/icon.jpg differ diff --git a/data/CTR-BAA/art.jpg b/data/CTR-BAA/art.jpg new file mode 100644 index 0000000..a6e2a1c Binary files /dev/null and b/data/CTR-BAA/art.jpg differ diff --git a/data/CTR-BAA/data.yml b/data/CTR-BAA/data.yml new file mode 100644 index 0000000..dbe3932 --- /dev/null +++ b/data/CTR-BAA/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000019BE00 + name: 'Mario Party™: Star Rush' + updates: [] +- regions: + - JP + id: 0004000000193900 + name: マリオパーティ スターラッシュ + updates: [] +- regions: + - KR + id: 00040000001AC700 + name: 마리오 파티 스타 러시 + updates: + - id: 0004000E001AC700 + name: 업데이트 데이터 Ver. 1.1 마리오 파티 스타 러시 +- regions: + - US + id: 000400000019BD00 + name: Mario Party™ Star Rush + updates: [] diff --git a/data/CTR-BAA/icon.jpg b/data/CTR-BAA/icon.jpg new file mode 100644 index 0000000..a89bccd Binary files /dev/null and b/data/CTR-BAA/icon.jpg differ diff --git a/data/CTR-BAB/art.jpg b/data/CTR-BAB/art.jpg new file mode 100644 index 0000000..1225a2e Binary files /dev/null and b/data/CTR-BAB/art.jpg differ diff --git a/data/CTR-BAB/data.yml b/data/CTR-BAB/data.yml new file mode 100644 index 0000000..e9db7af --- /dev/null +++ b/data/CTR-BAB/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A6000 + name: 'Mario Party™: Star Rush: Party Guest' + updates: [] +- regions: + - JP + id: 00040000001A5E00 + name: マリオパーティ スターラッシュ 持っている人と対戦版 + updates: [] +- regions: + - KR + id: 00040000001AC800 + name: 마리오 파티 스타 러시 파티 게스트 + updates: [] +- regions: + - US + id: 00040000001A5F00 + name: Mario Party™ Star Rush Party Guest Edition + updates: [] diff --git a/data/CTR-BAB/icon.jpg b/data/CTR-BAB/icon.jpg new file mode 100644 index 0000000..9ad2951 Binary files /dev/null and b/data/CTR-BAB/icon.jpg differ diff --git a/data/CTR-BAC/art.jpg b/data/CTR-BAC/art.jpg new file mode 100644 index 0000000..5619fcc Binary files /dev/null and b/data/CTR-BAC/art.jpg differ diff --git a/data/CTR-BAC/data.yml b/data/CTR-BAC/data.yml new file mode 100644 index 0000000..b28e78c --- /dev/null +++ b/data/CTR-BAC/data.yml @@ -0,0 +1,11 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 00040000001A7100 + name: 'Pokémon™ Sun and Pokémon™ Moon Special Demo ' + updates: [] diff --git a/data/CTR-BAC/icon.jpg b/data/CTR-BAC/icon.jpg new file mode 100644 index 0000000..3586c51 Binary files /dev/null and b/data/CTR-BAC/icon.jpg differ diff --git a/data/CTR-BAG/art.jpg b/data/CTR-BAG/art.jpg new file mode 100644 index 0000000..638d849 Binary files /dev/null and b/data/CTR-BAG/art.jpg differ diff --git a/data/CTR-BAG/data.yml b/data/CTR-BAG/data.yml new file mode 100644 index 0000000..390cd16 --- /dev/null +++ b/data/CTR-BAG/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A4900 + name: Ever Oasis™ + updates: + - id: 0004000E001A4900 + name: 'Ever Oasis™: Update' +- regions: + - JP + - KR + id: 0004000000164A00 + name: Ever Oasis 精霊とタネビトの蜃気楼 + updates: [] +- regions: + - KR + - TW + - US + id: 00040000001A4800 + name: Ever Oasis™ + updates: + - id: 0004000E001A4800 + name: Ever Oasis™ Update Ver. 1.1 diff --git a/data/CTR-BAG/icon.jpg b/data/CTR-BAG/icon.jpg new file mode 100644 index 0000000..42fbdba Binary files /dev/null and b/data/CTR-BAG/icon.jpg differ diff --git a/data/CTR-BAK/art.jpg b/data/CTR-BAK/art.jpg new file mode 100644 index 0000000..08e3907 Binary files /dev/null and b/data/CTR-BAK/art.jpg differ diff --git a/data/CTR-BAK/data.yml b/data/CTR-BAK/data.yml new file mode 100644 index 0000000..58851d5 --- /dev/null +++ b/data/CTR-BAK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4200 + name: アイカツ!2人のmy princess + updates: + - id: 0004000E000F4200 + name: 更新データ Ver. 1.2 アイカツ! 2人のmy princess diff --git a/data/CTR-BAK/icon.jpg b/data/CTR-BAK/icon.jpg new file mode 100644 index 0000000..0c109c1 Binary files /dev/null and b/data/CTR-BAK/icon.jpg differ diff --git a/data/CTR-BAL/art.jpg b/data/CTR-BAL/art.jpg new file mode 100644 index 0000000..e2eb35f Binary files /dev/null and b/data/CTR-BAL/art.jpg differ diff --git a/data/CTR-BAL/data.yml b/data/CTR-BAL/data.yml new file mode 100644 index 0000000..b1e2d7b --- /dev/null +++ b/data/CTR-BAL/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000010C000 + name: 'Kirby™: Triple Deluxe' + updates: [] +- regions: + - JP + id: 000400000010BE00 + name: 星のカービィ トリプルデラックス + updates: [] +- regions: + - KR + id: 0004000000120F00 + name: 별의 커비 트리플 디럭스 + updates: [] +- regions: + - TW + id: 0004000000123200 + name: 'Kirby: Triple Deluxe (英文版)' + updates: [] +- regions: + - US + id: 000400000010BF00 + name: 'Kirby™: Triple Deluxe' + updates: [] diff --git a/data/CTR-BAL/icon.jpg b/data/CTR-BAL/icon.jpg new file mode 100644 index 0000000..cd453e7 Binary files /dev/null and b/data/CTR-BAL/icon.jpg differ diff --git a/data/CTR-BAM/art.jpg b/data/CTR-BAM/art.jpg new file mode 100644 index 0000000..2363d94 Binary files /dev/null and b/data/CTR-BAM/art.jpg differ diff --git a/data/CTR-BAM/data.yml b/data/CTR-BAM/data.yml new file mode 100644 index 0000000..c3d1490 --- /dev/null +++ b/data/CTR-BAM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000118200 + name: エルミナージュ異聞 アメノミハシラ・怪 + updates: [] +- regions: + - KR + id: 0004000000193800 + name: 에르미나쥬 이문록 환세요마전 아메노미하시라 + updates: [] diff --git a/data/CTR-BAM/icon.jpg b/data/CTR-BAM/icon.jpg new file mode 100644 index 0000000..6f84564 Binary files /dev/null and b/data/CTR-BAM/icon.jpg differ diff --git a/data/CTR-BAQ/art.jpg b/data/CTR-BAQ/art.jpg new file mode 100644 index 0000000..8542296 Binary files /dev/null and b/data/CTR-BAQ/art.jpg differ diff --git a/data/CTR-BAQ/data.yml b/data/CTR-BAQ/data.yml new file mode 100644 index 0000000..6f72179 --- /dev/null +++ b/data/CTR-BAQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000132E00 + name: Atlantic Quest + updates: [] +- regions: + - JP + id: 000400000017DE00 + name: アトランティック クエスト + updates: [] +- regions: + - US + id: 0004000000114000 + name: Atlantic Quest + updates: [] diff --git a/data/CTR-BAQ/icon.jpg b/data/CTR-BAQ/icon.jpg new file mode 100644 index 0000000..e0c0778 Binary files /dev/null and b/data/CTR-BAQ/icon.jpg differ diff --git a/data/CTR-BAR/art.jpg b/data/CTR-BAR/art.jpg new file mode 100644 index 0000000..ae32f01 Binary files /dev/null and b/data/CTR-BAR/art.jpg differ diff --git a/data/CTR-BAR/data.yml b/data/CTR-BAR/data.yml new file mode 100644 index 0000000..abe26be --- /dev/null +++ b/data/CTR-BAR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000166E00 + name: モンハン日記 ぽかぽかアイルー村DX + updates: [] diff --git a/data/CTR-BAR/icon.jpg b/data/CTR-BAR/icon.jpg new file mode 100644 index 0000000..23d3e6e Binary files /dev/null and b/data/CTR-BAR/icon.jpg differ diff --git a/data/CTR-BAS/art.jpg b/data/CTR-BAS/art.jpg new file mode 100644 index 0000000..fe49ef1 Binary files /dev/null and b/data/CTR-BAS/art.jpg differ diff --git a/data/CTR-BAS/data.yml b/data/CTR-BAS/data.yml new file mode 100644 index 0000000..c9de3c9 --- /dev/null +++ b/data/CTR-BAS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F9D00 + name: 黒子のバスケ 勝利へのキセキ + updates: [] diff --git a/data/CTR-BAS/icon.jpg b/data/CTR-BAS/icon.jpg new file mode 100644 index 0000000..94b6d57 Binary files /dev/null and b/data/CTR-BAS/icon.jpg differ diff --git a/data/CTR-BAT/art.jpg b/data/CTR-BAT/art.jpg new file mode 100644 index 0000000..d0c4e1a Binary files /dev/null and b/data/CTR-BAT/art.jpg differ diff --git a/data/CTR-BAT/data.yml b/data/CTR-BAT/data.yml new file mode 100644 index 0000000..2c7ddc6 --- /dev/null +++ b/data/CTR-BAT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000102E00 + name: ハマトラ Look at Smoking World + updates: [] diff --git a/data/CTR-BAT/icon.jpg b/data/CTR-BAT/icon.jpg new file mode 100644 index 0000000..9925331 Binary files /dev/null and b/data/CTR-BAT/icon.jpg differ diff --git a/data/CTR-BB3/art.jpg b/data/CTR-BB3/art.jpg new file mode 100644 index 0000000..ae368d3 Binary files /dev/null and b/data/CTR-BB3/art.jpg differ diff --git a/data/CTR-BB3/data.yml b/data/CTR-BB3/data.yml new file mode 100644 index 0000000..f672bf6 --- /dev/null +++ b/data/CTR-BB3/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B5500 + name: 'Story of Seasons: Trio of Towns' + updates: + - id: 0004000E001B5500 + name: 'Story of Seasons: Trio of Towns: Update' +- regions: + - JP + id: 0004000000185300 + name: 牧場物語 3つの里の大切な友だち + updates: + - id: 0004000E00185300 + name: 更新データ Ver. 1.4 牧場物語 3つの里の大切な友だち +- regions: + - US + id: 000400000019F500 + name: 'STORY OF SEASONS: Trio of Towns' + updates: + - id: 0004000E0019F500 + name: 'STORY OF SEASONS: Trio of Towns Update Ver. 1.1' diff --git a/data/CTR-BB3/icon.jpg b/data/CTR-BB3/icon.jpg new file mode 100644 index 0000000..b097a31 Binary files /dev/null and b/data/CTR-BB3/icon.jpg differ diff --git a/data/CTR-BB4/art.jpg b/data/CTR-BB4/art.jpg new file mode 100644 index 0000000..084205f Binary files /dev/null and b/data/CTR-BB4/art.jpg differ diff --git a/data/CTR-BB4/data.yml b/data/CTR-BB4/data.yml new file mode 100644 index 0000000..60107c3 --- /dev/null +++ b/data/CTR-BB4/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CAC00 + name: Kirby Battle Royale Demo + updates: [] +- regions: + - JP + id: 00040000001CAA00 + name: カービィ バトルデラックス! 特別体験版 + updates: [] +- regions: + - KR + id: 00040000001CAD00 + name: 커비 배틀 디럭스! 체험판 + updates: [] +- regions: + - US + id: 00040000001CAB00 + name: Kirby™ Battle Royale Demo + updates: [] diff --git a/data/CTR-BB4/icon.jpg b/data/CTR-BB4/icon.jpg new file mode 100644 index 0000000..7ed3019 Binary files /dev/null and b/data/CTR-BB4/icon.jpg differ diff --git a/data/CTR-BB9/art.jpg b/data/CTR-BB9/art.jpg new file mode 100644 index 0000000..b31287e Binary files /dev/null and b/data/CTR-BB9/art.jpg differ diff --git a/data/CTR-BB9/data.yml b/data/CTR-BB9/data.yml new file mode 100644 index 0000000..4dca87e --- /dev/null +++ b/data/CTR-BB9/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174F00 + name: メダロット9 クワガタVer. + updates: + - id: 0004000E00174F00 + name: 更新データ Ver. 1.1 メダロット9 クワガタVer. diff --git a/data/CTR-BB9/icon.jpg b/data/CTR-BB9/icon.jpg new file mode 100644 index 0000000..16003e2 Binary files /dev/null and b/data/CTR-BB9/icon.jpg differ diff --git a/data/CTR-BBB/art.jpg b/data/CTR-BBB/art.jpg new file mode 100644 index 0000000..99927ed Binary files /dev/null and b/data/CTR-BBB/art.jpg differ diff --git a/data/CTR-BBB/data.yml b/data/CTR-BBB/data.yml new file mode 100644 index 0000000..6d6d1b3 --- /dev/null +++ b/data/CTR-BBB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000104800 + name: メタルファイト ベイブレード 4DxZEROG + updates: + - id: 0004000E00104800 + name: 更新データ Ver. 1.1 メタルファイト ベイブレード 4DxZEROG アルティメットトーナメント diff --git a/data/CTR-BBB/icon.jpg b/data/CTR-BBB/icon.jpg new file mode 100644 index 0000000..5fdfae3 Binary files /dev/null and b/data/CTR-BBB/icon.jpg differ diff --git a/data/CTR-BBE/art.jpg b/data/CTR-BBE/art.jpg new file mode 100644 index 0000000..20dc9d7 Binary files /dev/null and b/data/CTR-BBE/art.jpg differ diff --git a/data/CTR-BBE/data.yml b/data/CTR-BBE/data.yml new file mode 100644 index 0000000..69d729b --- /dev/null +++ b/data/CTR-BBE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D9700 + name: Pinball Breaker 2 + updates: [] +- regions: + - US + id: 00040000001D9B00 + name: Pinball Breaker 2 + updates: [] diff --git a/data/CTR-BBE/icon.jpg b/data/CTR-BBE/icon.jpg new file mode 100644 index 0000000..4c41db1 Binary files /dev/null and b/data/CTR-BBE/icon.jpg differ diff --git a/data/CTR-BBF/art.jpg b/data/CTR-BBF/art.jpg new file mode 100644 index 0000000..40a08cd Binary files /dev/null and b/data/CTR-BBF/art.jpg differ diff --git a/data/CTR-BBF/data.yml b/data/CTR-BBF/data.yml new file mode 100644 index 0000000..f90c1a5 --- /dev/null +++ b/data/CTR-BBF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D9E00 + name: Pinball Breaker 3 + updates: [] +- regions: + - US + id: 00040000001DA000 + name: Pinball Breaker 3 + updates: [] diff --git a/data/CTR-BBF/icon.jpg b/data/CTR-BBF/icon.jpg new file mode 100644 index 0000000..987c0d9 Binary files /dev/null and b/data/CTR-BBF/icon.jpg differ diff --git a/data/CTR-BBK/art.jpg b/data/CTR-BBK/art.jpg new file mode 100644 index 0000000..54d6d07 Binary files /dev/null and b/data/CTR-BBK/art.jpg differ diff --git a/data/CTR-BBK/data.yml b/data/CTR-BBK/data.yml new file mode 100644 index 0000000..08d3920 --- /dev/null +++ b/data/CTR-BBK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000110C00 + name: ぼくは航空管制官 エアポート ヒーロー3D 新千歳 with JAL + updates: [] diff --git a/data/CTR-BBK/icon.jpg b/data/CTR-BBK/icon.jpg new file mode 100644 index 0000000..74ac69a Binary files /dev/null and b/data/CTR-BBK/icon.jpg differ diff --git a/data/CTR-BBM/art.jpg b/data/CTR-BBM/art.jpg new file mode 100644 index 0000000..2d177ce Binary files /dev/null and b/data/CTR-BBM/art.jpg differ diff --git a/data/CTR-BBM/data.yml b/data/CTR-BBM/data.yml new file mode 100644 index 0000000..2f64150 --- /dev/null +++ b/data/CTR-BBM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 0004000000160200 + name: 'Goosebumps: The Game' + updates: + - id: 0004000E00160200 + name: 'Goosebumps: The Game Update Ver. 1.01' diff --git a/data/CTR-BBM/icon.jpg b/data/CTR-BBM/icon.jpg new file mode 100644 index 0000000..cad643d Binary files /dev/null and b/data/CTR-BBM/icon.jpg differ diff --git a/data/CTR-BBP/art.jpg b/data/CTR-BBP/art.jpg new file mode 100644 index 0000000..ecc7d1a Binary files /dev/null and b/data/CTR-BBP/art.jpg differ diff --git a/data/CTR-BBP/data.yml b/data/CTR-BBP/data.yml new file mode 100644 index 0000000..972669f --- /dev/null +++ b/data/CTR-BBP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000187E00 + name: 'Picross 3D™: Round 2' + updates: [] +- regions: + - JP + id: 0004000000169A00 + name: カタチ新発見! 立体ピクロス2 + updates: [] +- regions: + - US + id: 0004000000187D00 + name: Picross 3D™ Round 2 + updates: [] diff --git a/data/CTR-BBP/icon.jpg b/data/CTR-BBP/icon.jpg new file mode 100644 index 0000000..0440d9a Binary files /dev/null and b/data/CTR-BBP/icon.jpg differ diff --git a/data/CTR-BBR/art.jpg b/data/CTR-BBR/art.jpg new file mode 100644 index 0000000..6634ecb Binary files /dev/null and b/data/CTR-BBR/art.jpg differ diff --git a/data/CTR-BBR/data.yml b/data/CTR-BBR/data.yml new file mode 100644 index 0000000..509b5ce --- /dev/null +++ b/data/CTR-BBR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001D0000 + name: ザ・デッドヒートブレイカーズ 体験版 + updates: [] diff --git a/data/CTR-BBR/icon.jpg b/data/CTR-BBR/icon.jpg new file mode 100644 index 0000000..2f5e987 Binary files /dev/null and b/data/CTR-BBR/icon.jpg differ diff --git a/data/CTR-BC2/art.jpg b/data/CTR-BC2/art.jpg new file mode 100644 index 0000000..3f6f0fc Binary files /dev/null and b/data/CTR-BC2/art.jpg differ diff --git a/data/CTR-BC2/data.yml b/data/CTR-BC2/data.yml new file mode 100644 index 0000000..6c63c33 --- /dev/null +++ b/data/CTR-BC2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000001AD400 + name: ハコボーイ! ハコづめBOX + updates: [] diff --git a/data/CTR-BC2/icon.jpg b/data/CTR-BC2/icon.jpg new file mode 100644 index 0000000..5e26d98 Binary files /dev/null and b/data/CTR-BC2/icon.jpg differ diff --git a/data/CTR-BC3/art.jpg b/data/CTR-BC3/art.jpg new file mode 100644 index 0000000..d4a2231 Binary files /dev/null and b/data/CTR-BC3/art.jpg differ diff --git a/data/CTR-BC3/data.yml b/data/CTR-BC3/data.yml new file mode 100644 index 0000000..7f5f5dd --- /dev/null +++ b/data/CTR-BC3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000152500 + name: 金色のコルダ3 フルボイス Special + updates: [] diff --git a/data/CTR-BC3/icon.jpg b/data/CTR-BC3/icon.jpg new file mode 100644 index 0000000..610fa44 Binary files /dev/null and b/data/CTR-BC3/icon.jpg differ diff --git a/data/CTR-BC4/art.jpg b/data/CTR-BC4/art.jpg new file mode 100644 index 0000000..066c1d1 Binary files /dev/null and b/data/CTR-BC4/art.jpg differ diff --git a/data/CTR-BC4/data.yml b/data/CTR-BC4/data.yml new file mode 100644 index 0000000..f818901 --- /dev/null +++ b/data/CTR-BC4/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000173B00 + name: 'SAMURAI WARRIORS: Chronicles 3' + updates: + - id: 0004000E00173B00 + name: 'SAMURAI WARRIORS: Chronicles 3: Update' +- regions: + - JP + id: 000400000014DF00 + name: 戦国無双 Chronicle 3 + updates: + - id: 0004000E0014DF00 + name: 更新データ Ver. 1.0.4 戦国無双 Chronicle 3 +- regions: + - US + id: 000400000016F200 + name: 'SAMURAI WARRIORS: Chronicles 3' + updates: + - id: 0004000E0016F200 + name: 'SAMURAI WARRIORS: Chronicles 3 Update Ver. 1.0.2' diff --git a/data/CTR-BC4/icon.jpg b/data/CTR-BC4/icon.jpg new file mode 100644 index 0000000..91dc270 Binary files /dev/null and b/data/CTR-BC4/icon.jpg differ diff --git a/data/CTR-BC5/art.jpg b/data/CTR-BC5/art.jpg new file mode 100644 index 0000000..2664db4 Binary files /dev/null and b/data/CTR-BC5/art.jpg differ diff --git a/data/CTR-BC5/data.yml b/data/CTR-BC5/data.yml new file mode 100644 index 0000000..c9cc98f --- /dev/null +++ b/data/CTR-BC5/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000155B00 + name: 'Cooking Mama: Bon Appétit' + updates: [] +- regions: + - JP + id: 00040000000FA500 + name: クッキングママ5 + updates: [] +- regions: + - KR + id: 0004000000155D00 + name: 쿠킹마마 마마를 도와줄래? + updates: [] +- regions: + - US + id: 000400000012D600 + name: 'Cooking Mama 5: Bon Appétit!' + updates: [] diff --git a/data/CTR-BC5/icon.jpg b/data/CTR-BC5/icon.jpg new file mode 100644 index 0000000..ba7713b Binary files /dev/null and b/data/CTR-BC5/icon.jpg differ diff --git a/data/CTR-BC6/art.jpg b/data/CTR-BC6/art.jpg new file mode 100644 index 0000000..9f318dd Binary files /dev/null and b/data/CTR-BC6/art.jpg differ diff --git a/data/CTR-BC6/data.yml b/data/CTR-BC6/data.yml new file mode 100644 index 0000000..84def21 --- /dev/null +++ b/data/CTR-BC6/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4F00 + name: 喧嘩番長6~ソウル&ブラッド~ + updates: + - id: 0004000E000F4F00 + name: 更新データ Ver. 1.1 喧嘩番長6~ソウル&ブラッド~ diff --git a/data/CTR-BC6/icon.jpg b/data/CTR-BC6/icon.jpg new file mode 100644 index 0000000..c1f74bd Binary files /dev/null and b/data/CTR-BC6/icon.jpg differ diff --git a/data/CTR-BC8/art.jpg b/data/CTR-BC8/art.jpg new file mode 100644 index 0000000..e43b6f8 Binary files /dev/null and b/data/CTR-BC8/art.jpg differ diff --git a/data/CTR-BC8/data.yml b/data/CTR-BC8/data.yml new file mode 100644 index 0000000..1c80c3a --- /dev/null +++ b/data/CTR-BC8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C2F00 + name: ケーキ屋さん物語 おいしいスイーツをつくろう! + updates: [] diff --git a/data/CTR-BC8/icon.jpg b/data/CTR-BC8/icon.jpg new file mode 100644 index 0000000..26a0d46 Binary files /dev/null and b/data/CTR-BC8/icon.jpg differ diff --git a/data/CTR-BCA/art.jpg b/data/CTR-BCA/art.jpg new file mode 100644 index 0000000..6e4d7ea Binary files /dev/null and b/data/CTR-BCA/art.jpg differ diff --git a/data/CTR-BCA/data.yml b/data/CTR-BCA/data.yml new file mode 100644 index 0000000..ca6f3b0 --- /dev/null +++ b/data/CTR-BCA/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000175200 + name: 'Metroid™ Prime: Federation Force' + updates: + - id: 0004000E00175200 + name: 'Metroid™ Prime: Federation Force: Update' +- regions: + - JP + id: 000400000016CE00 + name: メトロイドプライム フェデレーションフォース + updates: + - id: 0004000E0016CE00 + name: 更新データ Ver. 1.1.0 メトロイドプライム フェデレーションフォース +- regions: + - US + id: 000400000016E300 + name: 'Metroid Prime™: Federation Force' + updates: + - id: 0004000E0016E300 + name: 'Metroid Prime™: Federation Force Update Ver. 1.1.0' diff --git a/data/CTR-BCA/icon.jpg b/data/CTR-BCA/icon.jpg new file mode 100644 index 0000000..1bd4fc8 Binary files /dev/null and b/data/CTR-BCA/icon.jpg differ diff --git a/data/CTR-BCB/art.jpg b/data/CTR-BCB/art.jpg new file mode 100644 index 0000000..d1032c9 Binary files /dev/null and b/data/CTR-BCB/art.jpg differ diff --git a/data/CTR-BCB/data.yml b/data/CTR-BCB/data.yml new file mode 100644 index 0000000..ed24e5c --- /dev/null +++ b/data/CTR-BCB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000EE100 + name: 戦闘中 伝説の忍とサバイバルバトル! + updates: [] diff --git a/data/CTR-BCB/icon.jpg b/data/CTR-BCB/icon.jpg new file mode 100644 index 0000000..7bbae56 Binary files /dev/null and b/data/CTR-BCB/icon.jpg differ diff --git a/data/CTR-BCC/art.jpg b/data/CTR-BCC/art.jpg new file mode 100644 index 0000000..09e70b2 Binary files /dev/null and b/data/CTR-BCC/art.jpg differ diff --git a/data/CTR-BCC/data.yml b/data/CTR-BCC/data.yml new file mode 100644 index 0000000..486a5fe --- /dev/null +++ b/data/CTR-BCC/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000123C00 + name: 'Conception II: Children of the Seven Stars' + updates: [] +- regions: + - JP + id: 00040000000CF600 + name: CONCEPTIONⅡ 七星の導きとマズルの悪夢 + updates: + - id: 0004000E000CF600 + name: 更新データ Ver. 1.1 CONCEPTIONⅡ 七星の導きとマズルの悪夢 +- regions: + - US + id: 0004000000112C00 + name: 'Conception II: Children of the Seven Stars' + updates: [] diff --git a/data/CTR-BCC/icon.jpg b/data/CTR-BCC/icon.jpg new file mode 100644 index 0000000..c179d0f Binary files /dev/null and b/data/CTR-BCC/icon.jpg differ diff --git a/data/CTR-BCE/art.jpg b/data/CTR-BCE/art.jpg new file mode 100644 index 0000000..20f7df6 Binary files /dev/null and b/data/CTR-BCE/art.jpg differ diff --git a/data/CTR-BCE/data.yml b/data/CTR-BCE/data.yml new file mode 100644 index 0000000..ce59839 --- /dev/null +++ b/data/CTR-BCE/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016E700 + name: FINAL FANTASY EXPLORERS™ + updates: [] +- regions: + - JP + id: 000400000010E200 + name: FINAL FANTASY EXPLORERS + updates: + - id: 0004000E0010E200 + name: 更新データ Ver. 1.2 FINAL FANTASY EXPLORERS +- regions: + - US + id: 000400000016ED00 + name: FINAL FANTASY EXPLORERS + updates: [] diff --git a/data/CTR-BCE/icon.jpg b/data/CTR-BCE/icon.jpg new file mode 100644 index 0000000..6378afd Binary files /dev/null and b/data/CTR-BCE/icon.jpg differ diff --git a/data/CTR-BCF/art.jpg b/data/CTR-BCF/art.jpg new file mode 100644 index 0000000..b7881b1 Binary files /dev/null and b/data/CTR-BCF/art.jpg differ diff --git a/data/CTR-BCF/data.yml b/data/CTR-BCF/data.yml new file mode 100644 index 0000000..3a141a0 --- /dev/null +++ b/data/CTR-BCF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000170500 + name: カードファイト!! ヴァンガードG ストライド トゥ ビクトリー!! + updates: + - id: 0004000E00170500 + name: 更新データ Ver. 1.3 カードファイト!! ヴァンガードG ストライド トゥ ビクトリー!! diff --git a/data/CTR-BCF/icon.jpg b/data/CTR-BCF/icon.jpg new file mode 100644 index 0000000..f27d026 Binary files /dev/null and b/data/CTR-BCF/icon.jpg differ diff --git a/data/CTR-BCH/art.jpg b/data/CTR-BCH/art.jpg new file mode 100644 index 0000000..d99a966 Binary files /dev/null and b/data/CTR-BCH/art.jpg differ diff --git a/data/CTR-BCH/data.yml b/data/CTR-BCH/data.yml new file mode 100644 index 0000000..0e681b5 --- /dev/null +++ b/data/CTR-BCH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000010ED00 + name: チョコ犬のちょこっと不思議な物語 ショコラ姫と魔法のレシピ + updates: [] diff --git a/data/CTR-BCH/icon.jpg b/data/CTR-BCH/icon.jpg new file mode 100644 index 0000000..d918a25 Binary files /dev/null and b/data/CTR-BCH/icon.jpg differ diff --git a/data/CTR-BCM/art.jpg b/data/CTR-BCM/art.jpg new file mode 100644 index 0000000..ef817e2 Binary files /dev/null and b/data/CTR-BCM/art.jpg differ diff --git a/data/CTR-BCM/data.yml b/data/CTR-BCM/data.yml new file mode 100644 index 0000000..511dd1d --- /dev/null +++ b/data/CTR-BCM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000010A900 + name: Candy Match 3 + updates: [] diff --git a/data/CTR-BCM/icon.jpg b/data/CTR-BCM/icon.jpg new file mode 100644 index 0000000..72552f4 Binary files /dev/null and b/data/CTR-BCM/icon.jpg differ diff --git a/data/CTR-BCN/art.jpg b/data/CTR-BCN/art.jpg new file mode 100644 index 0000000..b5fe92b Binary files /dev/null and b/data/CTR-BCN/art.jpg differ diff --git a/data/CTR-BCN/data.yml b/data/CTR-BCN/data.yml new file mode 100644 index 0000000..ca5f719 --- /dev/null +++ b/data/CTR-BCN/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000152A00 + name: すみっコぐらし ここがおちつくんです + updates: + - id: 0004000E00152A00 + name: 更新データ Ver. 1.2 すみっコぐらし ここがおちつくんです diff --git a/data/CTR-BCN/icon.jpg b/data/CTR-BCN/icon.jpg new file mode 100644 index 0000000..bd3a61c Binary files /dev/null and b/data/CTR-BCN/icon.jpg differ diff --git a/data/CTR-BCP/art.jpg b/data/CTR-BCP/art.jpg new file mode 100644 index 0000000..8b1bb94 Binary files /dev/null and b/data/CTR-BCP/art.jpg differ diff --git a/data/CTR-BCP/data.yml b/data/CTR-BCP/data.yml new file mode 100644 index 0000000..3a492bb --- /dev/null +++ b/data/CTR-BCP/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000198300 + name: Corpse Party + updates: [] +- regions: + - JP + id: 000400000015D500 + name: コープスパーティーブラッドカバー リピーティッドフィアー + updates: [] +- regions: + - KR + id: 0004000000194000 + name: '콥스파티 Blood Covered: ...Repeated fear.' + updates: [] +- regions: + - US + id: 0004000000194200 + name: Corpse Party + updates: [] diff --git a/data/CTR-BCP/icon.jpg b/data/CTR-BCP/icon.jpg new file mode 100644 index 0000000..bdb8ec9 Binary files /dev/null and b/data/CTR-BCP/icon.jpg differ diff --git a/data/CTR-BCR/art.jpg b/data/CTR-BCR/art.jpg new file mode 100644 index 0000000..669bea5 Binary files /dev/null and b/data/CTR-BCR/art.jpg differ diff --git a/data/CTR-BCR/data.yml b/data/CTR-BCR/data.yml new file mode 100644 index 0000000..0076fec --- /dev/null +++ b/data/CTR-BCR/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000157900 + name: エースコンバット 3D クロスランブル + + updates: + - id: 0004000E00157900 + name: 更新データ Ver. 2.1.0 エースコンバット 3D クロスランブル + diff --git a/data/CTR-BCR/icon.jpg b/data/CTR-BCR/icon.jpg new file mode 100644 index 0000000..eba87a9 Binary files /dev/null and b/data/CTR-BCR/icon.jpg differ diff --git a/data/CTR-BCS/art.jpg b/data/CTR-BCS/art.jpg new file mode 100644 index 0000000..4653692 Binary files /dev/null and b/data/CTR-BCS/art.jpg differ diff --git a/data/CTR-BCS/data.yml b/data/CTR-BCS/data.yml new file mode 100644 index 0000000..8565634 --- /dev/null +++ b/data/CTR-BCS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000118800 + name: Best of Casual Games + updates: [] +- regions: + - US + id: 000400000011DC00 + name: Best of Casual Games + updates: [] diff --git a/data/CTR-BCS/icon.jpg b/data/CTR-BCS/icon.jpg new file mode 100644 index 0000000..acd464f Binary files /dev/null and b/data/CTR-BCS/icon.jpg differ diff --git a/data/CTR-BCU/art.jpg b/data/CTR-BCU/art.jpg new file mode 100644 index 0000000..a1cee14 Binary files /dev/null and b/data/CTR-BCU/art.jpg differ diff --git a/data/CTR-BCU/data.yml b/data/CTR-BCU/data.yml new file mode 100644 index 0000000..9ba9d4e --- /dev/null +++ b/data/CTR-BCU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 000400000012EE00 + name: 'Scooby Doo & Looney Tunes Cartoon Universe: Adventure ' + updates: [] diff --git a/data/CTR-BCU/icon.jpg b/data/CTR-BCU/icon.jpg new file mode 100644 index 0000000..d38a8fb Binary files /dev/null and b/data/CTR-BCU/icon.jpg differ diff --git a/data/CTR-BCX/art.jpg b/data/CTR-BCX/art.jpg new file mode 100644 index 0000000..75cee66 Binary files /dev/null and b/data/CTR-BCX/art.jpg differ diff --git a/data/CTR-BCX/data.yml b/data/CTR-BCX/data.yml new file mode 100644 index 0000000..3b60506 --- /dev/null +++ b/data/CTR-BCX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000110B00 + name: ゲームセンターCX3丁目の有野 + updates: [] diff --git a/data/CTR-BCX/icon.jpg b/data/CTR-BCX/icon.jpg new file mode 100644 index 0000000..874596d Binary files /dev/null and b/data/CTR-BCX/icon.jpg differ diff --git a/data/CTR-BD2/art.jpg b/data/CTR-BD2/art.jpg new file mode 100644 index 0000000..f157f4c Binary files /dev/null and b/data/CTR-BD2/art.jpg differ diff --git a/data/CTR-BD2/data.yml b/data/CTR-BD2/data.yml new file mode 100644 index 0000000..ae5a902 --- /dev/null +++ b/data/CTR-BD2/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000155000 + name: ディズニー マジックキャッスル マイ・ハッピー・ライフ2 + updates: + - id: 0004000E00155000 + name: 更新データ Ver. 1.3.1 ディズニー マジックキャッスル2 diff --git a/data/CTR-BD2/icon.jpg b/data/CTR-BD2/icon.jpg new file mode 100644 index 0000000..efff2e3 Binary files /dev/null and b/data/CTR-BD2/icon.jpg differ diff --git a/data/CTR-BD5/art.jpg b/data/CTR-BD5/art.jpg new file mode 100644 index 0000000..3731887 Binary files /dev/null and b/data/CTR-BD5/art.jpg differ diff --git a/data/CTR-BD5/data.yml b/data/CTR-BD5/data.yml new file mode 100644 index 0000000..1680dca --- /dev/null +++ b/data/CTR-BD5/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001B2500 + name: 世界樹と不思議のダンジョン2 + updates: + - id: 0004000E001B2500 + name: 更新データ Ver. 1.01 世界樹と不思議のダンジョン2 diff --git a/data/CTR-BD5/icon.jpg b/data/CTR-BD5/icon.jpg new file mode 100644 index 0000000..4ebc392 Binary files /dev/null and b/data/CTR-BD5/icon.jpg differ diff --git a/data/CTR-BD6/art.jpg b/data/CTR-BD6/art.jpg new file mode 100644 index 0000000..23dbb40 Binary files /dev/null and b/data/CTR-BD6/art.jpg differ diff --git a/data/CTR-BD6/data.yml b/data/CTR-BD6/data.yml new file mode 100644 index 0000000..3a20961 --- /dev/null +++ b/data/CTR-BD6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000EE300 + name: たまごっち! せーしゅんのドリームスクール + updates: [] diff --git a/data/CTR-BD6/icon.jpg b/data/CTR-BD6/icon.jpg new file mode 100644 index 0000000..5f8abf6 Binary files /dev/null and b/data/CTR-BD6/icon.jpg differ diff --git a/data/CTR-BD7/art.jpg b/data/CTR-BD7/art.jpg new file mode 100644 index 0000000..088ac08 Binary files /dev/null and b/data/CTR-BD7/art.jpg differ diff --git a/data/CTR-BD7/data.yml b/data/CTR-BD7/data.yml new file mode 100644 index 0000000..63e236d --- /dev/null +++ b/data/CTR-BD7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A6C00 + name: '7th Dragon III Code: VFD' + updates: [] +- regions: + - JP + id: 0004000000115400 + name: セブンスドラゴンⅢ code:VFD + updates: [] +- regions: + - US + id: 000400000018F800 + name: '7th Dragon III Code: VFD' + updates: [] diff --git a/data/CTR-BD7/icon.jpg b/data/CTR-BD7/icon.jpg new file mode 100644 index 0000000..c92ccd9 Binary files /dev/null and b/data/CTR-BD7/icon.jpg differ diff --git a/data/CTR-BD9/art.jpg b/data/CTR-BD9/art.jpg new file mode 100644 index 0000000..bd08ac5 Binary files /dev/null and b/data/CTR-BD9/art.jpg differ diff --git a/data/CTR-BD9/data.yml b/data/CTR-BD9/data.yml new file mode 100644 index 0000000..bdeed91 --- /dev/null +++ b/data/CTR-BD9/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001B4300 + name: ドラゴンボールヒーローズ アルティメットミッションX + updates: + - id: 0004000E001B4300 + name: 更新データ Ver. 1.3.0 ドラゴンボールヒーローズ アルティメットミッションX diff --git a/data/CTR-BD9/icon.jpg b/data/CTR-BD9/icon.jpg new file mode 100644 index 0000000..7d52460 Binary files /dev/null and b/data/CTR-BD9/icon.jpg differ diff --git a/data/CTR-BDA/art.jpg b/data/CTR-BDA/art.jpg new file mode 100644 index 0000000..c2835a1 Binary files /dev/null and b/data/CTR-BDA/art.jpg differ diff --git a/data/CTR-BDA/data.yml b/data/CTR-BDA/data.yml new file mode 100644 index 0000000..b956add --- /dev/null +++ b/data/CTR-BDA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000177600 + name: かいておぼえる ドラがな + updates: [] diff --git a/data/CTR-BDA/icon.jpg b/data/CTR-BDA/icon.jpg new file mode 100644 index 0000000..8879178 Binary files /dev/null and b/data/CTR-BDA/icon.jpg differ diff --git a/data/CTR-BDB/art.jpg b/data/CTR-BDB/art.jpg new file mode 100644 index 0000000..859e0e6 Binary files /dev/null and b/data/CTR-BDB/art.jpg differ diff --git a/data/CTR-BDB/data.yml b/data/CTR-BDB/data.yml new file mode 100644 index 0000000..dd45a28 --- /dev/null +++ b/data/CTR-BDB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000120600 + name: ドラゴンボールヒーローズ アルティメットミッション2 + updates: + - id: 0004000E00120600 + name: 更新データ Ver. 1.7 ドラゴンボールヒーローズ アルティメットミッション2 diff --git a/data/CTR-BDB/icon.jpg b/data/CTR-BDB/icon.jpg new file mode 100644 index 0000000..3f76526 Binary files /dev/null and b/data/CTR-BDB/icon.jpg differ diff --git a/data/CTR-BDC/art.jpg b/data/CTR-BDC/art.jpg new file mode 100644 index 0000000..07f4cb8 Binary files /dev/null and b/data/CTR-BDC/art.jpg differ diff --git a/data/CTR-BDC/data.yml b/data/CTR-BDC/data.yml new file mode 100644 index 0000000..3355971 --- /dev/null +++ b/data/CTR-BDC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000EA500 + name: ドラちえ ミニドラ音楽隊と7つの知恵 + updates: [] diff --git a/data/CTR-BDC/icon.jpg b/data/CTR-BDC/icon.jpg new file mode 100644 index 0000000..be479fb Binary files /dev/null and b/data/CTR-BDC/icon.jpg differ diff --git a/data/CTR-BDD/art.jpg b/data/CTR-BDD/art.jpg new file mode 100644 index 0000000..b98244f Binary files /dev/null and b/data/CTR-BDD/art.jpg differ diff --git a/data/CTR-BDD/data.yml b/data/CTR-BDD/data.yml new file mode 100644 index 0000000..cb769ba --- /dev/null +++ b/data/CTR-BDD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000102D00 + name: ハイスクールD×D + updates: [] diff --git a/data/CTR-BDD/icon.jpg b/data/CTR-BDD/icon.jpg new file mode 100644 index 0000000..02bb202 Binary files /dev/null and b/data/CTR-BDD/icon.jpg differ diff --git a/data/CTR-BDE/art.jpg b/data/CTR-BDE/art.jpg new file mode 100644 index 0000000..66fedb7 Binary files /dev/null and b/data/CTR-BDE/art.jpg differ diff --git a/data/CTR-BDE/data.yml b/data/CTR-BDE/data.yml new file mode 100644 index 0000000..0f4171a --- /dev/null +++ b/data/CTR-BDE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000134400 + name: ドラえいご のび太と妖精のふしぎコレクション + updates: [] diff --git a/data/CTR-BDE/icon.jpg b/data/CTR-BDE/icon.jpg new file mode 100644 index 0000000..f412b1b Binary files /dev/null and b/data/CTR-BDE/icon.jpg differ diff --git a/data/CTR-BDF/art.jpg b/data/CTR-BDF/art.jpg new file mode 100644 index 0000000..214f70c Binary files /dev/null and b/data/CTR-BDF/art.jpg differ diff --git a/data/CTR-BDF/data.yml b/data/CTR-BDF/data.yml new file mode 100644 index 0000000..4fcefe1 --- /dev/null +++ b/data/CTR-BDF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000109400 + name: Spot the Differences! + updates: [] +- regions: + - US + id: 000400000010AB00 + name: Spot The Differences! + updates: [] diff --git a/data/CTR-BDF/icon.jpg b/data/CTR-BDF/icon.jpg new file mode 100644 index 0000000..f04c946 Binary files /dev/null and b/data/CTR-BDF/icon.jpg differ diff --git a/data/CTR-BDG/art.jpg b/data/CTR-BDG/art.jpg new file mode 100644 index 0000000..075f038 Binary files /dev/null and b/data/CTR-BDG/art.jpg differ diff --git a/data/CTR-BDG/data.yml b/data/CTR-BDG/data.yml new file mode 100644 index 0000000..d920816 --- /dev/null +++ b/data/CTR-BDG/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014AD00 + name: 大逆転裁判 -成歩堂龍ノ介の冒險- + updates: + - id: 0004000E0014AD00 + name: 大逆転裁判 更新データ Ver. 1.1.0 diff --git a/data/CTR-BDG/icon.jpg b/data/CTR-BDG/icon.jpg new file mode 100644 index 0000000..55db364 Binary files /dev/null and b/data/CTR-BDG/icon.jpg differ diff --git a/data/CTR-BDJ/art.jpg b/data/CTR-BDJ/art.jpg new file mode 100644 index 0000000..d8ac6fc Binary files /dev/null and b/data/CTR-BDJ/art.jpg differ diff --git a/data/CTR-BDJ/data.yml b/data/CTR-BDJ/data.yml new file mode 100644 index 0000000..28b8ebb --- /dev/null +++ b/data/CTR-BDJ/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CD000 + name: 'River City: Rival Showdown' + updates: [] +- regions: + - JP + id: 000400000018EB00 + name: ダウンタウン熱血物語SP + updates: + - id: 0004000E0018EB00 + name: 更新データ Ver. 1.1 ダウンタウン熱血物語SP +- regions: + - US + id: 00040000001CC600 + name: 'River City: Rival Showdown' + updates: [] diff --git a/data/CTR-BDJ/icon.jpg b/data/CTR-BDJ/icon.jpg new file mode 100644 index 0000000..231eaa0 Binary files /dev/null and b/data/CTR-BDJ/icon.jpg differ diff --git a/data/CTR-BDL/art.jpg b/data/CTR-BDL/art.jpg new file mode 100644 index 0000000..93767f2 Binary files /dev/null and b/data/CTR-BDL/art.jpg differ diff --git a/data/CTR-BDL/data.yml b/data/CTR-BDL/data.yml new file mode 100644 index 0000000..b842c2d --- /dev/null +++ b/data/CTR-BDL/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001AAA00 + name: Dragon Ball Fusions + updates: + - id: 0004000E001AAA00 + name: 'Dragon Ball Fusions: Update' +- regions: + - JP + id: 0004000000196D00 + name: ドラゴンボールフュージョンズ + updates: + - id: 0004000E00196D00 + name: 更新データ Ver. 2.2.0 ドラゴンボールフュージョンズ diff --git a/data/CTR-BDL/icon.jpg b/data/CTR-BDL/icon.jpg new file mode 100644 index 0000000..65d7d0d Binary files /dev/null and b/data/CTR-BDL/icon.jpg differ diff --git a/data/CTR-BDM/art.jpg b/data/CTR-BDM/art.jpg new file mode 100644 index 0000000..2d9f583 Binary files /dev/null and b/data/CTR-BDM/art.jpg differ diff --git a/data/CTR-BDM/data.yml b/data/CTR-BDM/data.yml new file mode 100644 index 0000000..b812468 --- /dev/null +++ b/data/CTR-BDM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000CF500 + name: ドラゴンクエストモンスターズ2 イルとルカの不思議なふしぎな鍵 + updates: + - id: 0004000E000CF500 + name: 更新データ Ver. 1.1 DQM2 イルとルカの不思議なふしぎな鍵 diff --git a/data/CTR-BDM/icon.jpg b/data/CTR-BDM/icon.jpg new file mode 100644 index 0000000..8c71da0 Binary files /dev/null and b/data/CTR-BDM/icon.jpg differ diff --git a/data/CTR-BDN/art.jpg b/data/CTR-BDN/art.jpg new file mode 100644 index 0000000..80f544d Binary files /dev/null and b/data/CTR-BDN/art.jpg differ diff --git a/data/CTR-BDN/data.yml b/data/CTR-BDN/data.yml new file mode 100644 index 0000000..d198d71 --- /dev/null +++ b/data/CTR-BDN/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4000 + name: ダンボール戦機ウォーズ + updates: + - id: 0004000E000F4000 + name: 更新データ Ver. 1.2 ダンボール戦機ウォーズ diff --git a/data/CTR-BDN/icon.jpg b/data/CTR-BDN/icon.jpg new file mode 100644 index 0000000..24e364f Binary files /dev/null and b/data/CTR-BDN/icon.jpg differ diff --git a/data/CTR-BDP/art.jpg b/data/CTR-BDP/art.jpg new file mode 100644 index 0000000..a13672f Binary files /dev/null and b/data/CTR-BDP/art.jpg differ diff --git a/data/CTR-BDP/data.yml b/data/CTR-BDP/data.yml new file mode 100644 index 0000000..ed32f87 --- /dev/null +++ b/data/CTR-BDP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F9800 + name: 魔界王子 devils and realist 代理王の秘宝 + updates: [] diff --git a/data/CTR-BDP/icon.jpg b/data/CTR-BDP/icon.jpg new file mode 100644 index 0000000..2301646 Binary files /dev/null and b/data/CTR-BDP/icon.jpg differ diff --git a/data/CTR-BDQ/art.jpg b/data/CTR-BDQ/art.jpg new file mode 100644 index 0000000..ad87f3e Binary files /dev/null and b/data/CTR-BDQ/art.jpg differ diff --git a/data/CTR-BDQ/data.yml b/data/CTR-BDQ/data.yml new file mode 100644 index 0000000..e2231d5 --- /dev/null +++ b/data/CTR-BDQ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001ACB00 + name: DQモンスターズ ジョーカー3 プロフェッショナル + updates: + - id: 0004000E001ACB00 + name: 更新データ Ver. 1.3 DQM ジョーカー3 プロフェッショナル diff --git a/data/CTR-BDQ/icon.jpg b/data/CTR-BDQ/icon.jpg new file mode 100644 index 0000000..4e9b336 Binary files /dev/null and b/data/CTR-BDQ/icon.jpg differ diff --git a/data/CTR-BDS/art.jpg b/data/CTR-BDS/art.jpg new file mode 100644 index 0000000..e986580 Binary files /dev/null and b/data/CTR-BDS/art.jpg differ diff --git a/data/CTR-BDS/data.yml b/data/CTR-BDS/data.yml new file mode 100644 index 0000000..b0869ff --- /dev/null +++ b/data/CTR-BDS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F9B00 + name: ダービースタリオンGOLD + updates: + - id: 0004000E000F9B00 + name: 更新データ Ver. 1.4 ダービースタリオンGOLD diff --git a/data/CTR-BDS/icon.jpg b/data/CTR-BDS/icon.jpg new file mode 100644 index 0000000..ab4e533 Binary files /dev/null and b/data/CTR-BDS/icon.jpg differ diff --git a/data/CTR-BDU/art.jpg b/data/CTR-BDU/art.jpg new file mode 100644 index 0000000..1eb3945 Binary files /dev/null and b/data/CTR-BDU/art.jpg differ diff --git a/data/CTR-BDU/data.yml b/data/CTR-BDU/data.yml new file mode 100644 index 0000000..b2e0d6f --- /dev/null +++ b/data/CTR-BDU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AE300 + name: ドラえもん のび太の南極カチコチ大冒険 + updates: [] diff --git a/data/CTR-BDU/icon.jpg b/data/CTR-BDU/icon.jpg new file mode 100644 index 0000000..678f343 Binary files /dev/null and b/data/CTR-BDU/icon.jpg differ diff --git a/data/CTR-BDV/art.jpg b/data/CTR-BDV/art.jpg new file mode 100644 index 0000000..5f4f68b Binary files /dev/null and b/data/CTR-BDV/art.jpg differ diff --git a/data/CTR-BDV/data.yml b/data/CTR-BDV/data.yml new file mode 100644 index 0000000..c45c116 --- /dev/null +++ b/data/CTR-BDV/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000163C00 + name: ドラゴンボールZ 超究極武闘伝 + updates: + - id: 0004000E00163C00 + name: 更新データ Ver. 1.6.0 ドラゴンボールZ 超究極武闘伝 +- regions: + - KR + id: 000400000017E800 + name: 드래곤볼 Z 초궁극무투전 + updates: + - id: 0004000E0017E800 + name: 업데이트 데이터 Ver. 1.1 드래곤볼 Z 초궁극무투전 diff --git a/data/CTR-BDV/icon.jpg b/data/CTR-BDV/icon.jpg new file mode 100644 index 0000000..eedd06e Binary files /dev/null and b/data/CTR-BDV/icon.jpg differ diff --git a/data/CTR-BDW/art.jpg b/data/CTR-BDW/art.jpg new file mode 100644 index 0000000..dcb577a Binary files /dev/null and b/data/CTR-BDW/art.jpg differ diff --git a/data/CTR-BDW/data.yml b/data/CTR-BDW/data.yml new file mode 100644 index 0000000..ac3ab6f --- /dev/null +++ b/data/CTR-BDW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000DCA00 + name: ダンボール戦機W 超カスタム + updates: + - id: 0004000E000DCA00 + name: 更新データ Ver. 1.1 ダンボール戦機W 超カスタム diff --git a/data/CTR-BDW/icon.jpg b/data/CTR-BDW/icon.jpg new file mode 100644 index 0000000..681b711 Binary files /dev/null and b/data/CTR-BDW/icon.jpg differ diff --git a/data/CTR-BDX/art.jpg b/data/CTR-BDX/art.jpg new file mode 100644 index 0000000..8bb1938 Binary files /dev/null and b/data/CTR-BDX/art.jpg differ diff --git a/data/CTR-BDX/data.yml b/data/CTR-BDX/data.yml new file mode 100644 index 0000000..c91dc01 --- /dev/null +++ b/data/CTR-BDX/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000017D800 + name: ダウンタウンの ガキの使いやあらへんで + updates: + - id: 0004000E0017D800 + name: 更新データ Ver. 1.1.0 ダウンタウンのガキの使いやあらへんで!! 絶対に捕まってはいけないガースー黒光りランド diff --git a/data/CTR-BDX/icon.jpg b/data/CTR-BDX/icon.jpg new file mode 100644 index 0000000..64877dd Binary files /dev/null and b/data/CTR-BDX/icon.jpg differ diff --git a/data/CTR-BDY/art.jpg b/data/CTR-BDY/art.jpg new file mode 100644 index 0000000..4433738 Binary files /dev/null and b/data/CTR-BDY/art.jpg differ diff --git a/data/CTR-BDY/data.yml b/data/CTR-BDY/data.yml new file mode 100644 index 0000000..723b915 --- /dev/null +++ b/data/CTR-BDY/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014AC00 + name: フューチャーカードバディファイト 友情の爆熱ファイト! + updates: + - id: 0004000E0014AC00 + name: 更新データ Ver. 1.4 フューチャーカード バディファイト 友情の爆熱ファイト! diff --git a/data/CTR-BDY/icon.jpg b/data/CTR-BDY/icon.jpg new file mode 100644 index 0000000..4b48bb4 Binary files /dev/null and b/data/CTR-BDY/icon.jpg differ diff --git a/data/CTR-BDZ/art.jpg b/data/CTR-BDZ/art.jpg new file mode 100644 index 0000000..94ae213 Binary files /dev/null and b/data/CTR-BDZ/art.jpg differ diff --git a/data/CTR-BDZ/data.yml b/data/CTR-BDZ/data.yml new file mode 100644 index 0000000..49b5e26 --- /dev/null +++ b/data/CTR-BDZ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000120800 + name: IslandDays + updates: + - id: 0004000E00120800 + name: 更新データ Ver. 1.1 IslandDays diff --git a/data/CTR-BDZ/icon.jpg b/data/CTR-BDZ/icon.jpg new file mode 100644 index 0000000..a8613ef Binary files /dev/null and b/data/CTR-BDZ/icon.jpg differ diff --git a/data/CTR-BE4/art.jpg b/data/CTR-BE4/art.jpg new file mode 100644 index 0000000..e26bf0f Binary files /dev/null and b/data/CTR-BE4/art.jpg differ diff --git a/data/CTR-BE4/data.yml b/data/CTR-BE4/data.yml new file mode 100644 index 0000000..4af2eeb --- /dev/null +++ b/data/CTR-BE4/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001D1F00 + name: Kirby's Extra Epic Yarn + updates: [] +- regions: + - JP + id: 00040000001D1200 + name: 毛糸のカービィ プラス + updates: [] +- regions: + - KR + id: 00040000001D7500 + name: 털실 커비 이야기 플러스 + updates: [] +- regions: + - US + id: 00040000001D1E00 + name: Kirby’s Extra Epic Yarn™ + updates: [] diff --git a/data/CTR-BE4/icon.jpg b/data/CTR-BE4/icon.jpg new file mode 100644 index 0000000..a3566f7 Binary files /dev/null and b/data/CTR-BE4/icon.jpg differ diff --git a/data/CTR-BE8/art.jpg b/data/CTR-BE8/art.jpg new file mode 100644 index 0000000..f731ef2 Binary files /dev/null and b/data/CTR-BE8/art.jpg differ diff --git a/data/CTR-BE8/data.yml b/data/CTR-BE8/data.yml new file mode 100644 index 0000000..44169fe --- /dev/null +++ b/data/CTR-BE8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CE000 + name: PICROSS e8 + updates: [] +- regions: + - JP + id: 00040000001CFD00 + name: ピクロスe8 + updates: [] +- regions: + - US + id: 00040000001CF700 + name: PICROSS e8 + updates: [] diff --git a/data/CTR-BE8/icon.jpg b/data/CTR-BE8/icon.jpg new file mode 100644 index 0000000..f5736d9 Binary files /dev/null and b/data/CTR-BE8/icon.jpg differ diff --git a/data/CTR-BEA/art.jpg b/data/CTR-BEA/art.jpg new file mode 100644 index 0000000..3e0b505 Binary files /dev/null and b/data/CTR-BEA/art.jpg differ diff --git a/data/CTR-BEA/data.yml b/data/CTR-BEA/data.yml new file mode 100644 index 0000000..fb25c46 --- /dev/null +++ b/data/CTR-BEA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000D1100 + name: ビーストサーガ 最強激突コロシアム! + updates: [] diff --git a/data/CTR-BEA/icon.jpg b/data/CTR-BEA/icon.jpg new file mode 100644 index 0000000..c030c4a Binary files /dev/null and b/data/CTR-BEA/icon.jpg differ diff --git a/data/CTR-BED/art.jpg b/data/CTR-BED/art.jpg new file mode 100644 index 0000000..3823d0f Binary files /dev/null and b/data/CTR-BED/art.jpg differ diff --git a/data/CTR-BED/data.yml b/data/CTR-BED/data.yml new file mode 100644 index 0000000..1b1171b --- /dev/null +++ b/data/CTR-BED/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017CE00 + name: Japanese Rail Sim 3D Journey to Kyoto + updates: [] +- regions: + - JP + id: 000400000014AA00 + name: 鉄道にっぽん!路線たび 叡山電車編 + updates: [] +- regions: + - US + id: 0004000000173F00 + name: Japanese Rail Sim 3D Journey to Kyoto + updates: [] diff --git a/data/CTR-BED/icon.jpg b/data/CTR-BED/icon.jpg new file mode 100644 index 0000000..fa35c42 Binary files /dev/null and b/data/CTR-BED/icon.jpg differ diff --git a/data/CTR-BEM/art.jpg b/data/CTR-BEM/art.jpg new file mode 100644 index 0000000..fbaa8cc Binary files /dev/null and b/data/CTR-BEM/art.jpg differ diff --git a/data/CTR-BEM/data.yml b/data/CTR-BEM/data.yml new file mode 100644 index 0000000..ca7d2ec --- /dev/null +++ b/data/CTR-BEM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DAA00 + name: Pinball Breaker 4 + updates: [] +- regions: + - US + id: 00040000001DB300 + name: Pinball Breaker 4 + updates: [] diff --git a/data/CTR-BEM/icon.jpg b/data/CTR-BEM/icon.jpg new file mode 100644 index 0000000..815024b Binary files /dev/null and b/data/CTR-BEM/icon.jpg differ diff --git a/data/CTR-BEX/art.jpg b/data/CTR-BEX/art.jpg new file mode 100644 index 0000000..afb7a9c Binary files /dev/null and b/data/CTR-BEX/art.jpg differ diff --git a/data/CTR-BEX/data.yml b/data/CTR-BEX/data.yml new file mode 100644 index 0000000..f11c0bf --- /dev/null +++ b/data/CTR-BEX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4100 + name: エクステトラ + updates: [] diff --git a/data/CTR-BEX/icon.jpg b/data/CTR-BEX/icon.jpg new file mode 100644 index 0000000..b6704eb Binary files /dev/null and b/data/CTR-BEX/icon.jpg differ diff --git a/data/CTR-BF3/art.jpg b/data/CTR-BF3/art.jpg new file mode 100644 index 0000000..98b1e44 Binary files /dev/null and b/data/CTR-BF3/art.jpg differ diff --git a/data/CTR-BF3/data.yml b/data/CTR-BF3/data.yml new file mode 100644 index 0000000..259336f --- /dev/null +++ b/data/CTR-BF3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AA300 + name: セガ3D復刻アーカイブス3 FINAL STAGE + updates: + - id: 0004000E001AA300 + name: 更新データ Ver. 1.1.0 セガ3D 復刻アーカイブス3 FINAL STAGE diff --git a/data/CTR-BF3/icon.jpg b/data/CTR-BF3/icon.jpg new file mode 100644 index 0000000..2786337 Binary files /dev/null and b/data/CTR-BF3/icon.jpg differ diff --git a/data/CTR-BF4/art.jpg b/data/CTR-BF4/art.jpg new file mode 100644 index 0000000..dd3a3a2 Binary files /dev/null and b/data/CTR-BF4/art.jpg differ diff --git a/data/CTR-BF4/data.yml b/data/CTR-BF4/data.yml new file mode 100644 index 0000000..37d60c4 --- /dev/null +++ b/data/CTR-BF4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015E400 + name: 梨汁ブシャー!! ふなっしー VS DRAGONS + updates: [] diff --git a/data/CTR-BF4/icon.jpg b/data/CTR-BF4/icon.jpg new file mode 100644 index 0000000..17cb94a Binary files /dev/null and b/data/CTR-BF4/icon.jpg differ diff --git a/data/CTR-BFA/art.jpg b/data/CTR-BFA/art.jpg new file mode 100644 index 0000000..6a9f6c3 Binary files /dev/null and b/data/CTR-BFA/art.jpg differ diff --git a/data/CTR-BFA/data.yml b/data/CTR-BFA/data.yml new file mode 100644 index 0000000..d800bfe --- /dev/null +++ b/data/CTR-BFA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001A0E00 + name: フューチャーカードバディファイト 目指せ!バディチャンピオン! + updates: + - id: 0004000E001A0E00 + name: 更新データ Ver. 1.2 フューチャーカード バディファイト 目指せ!バディチャンピオン! diff --git a/data/CTR-BFA/icon.jpg b/data/CTR-BFA/icon.jpg new file mode 100644 index 0000000..3e62d37 Binary files /dev/null and b/data/CTR-BFA/icon.jpg differ diff --git a/data/CTR-BFB/art.jpg b/data/CTR-BFB/art.jpg new file mode 100644 index 0000000..7f55758 Binary files /dev/null and b/data/CTR-BFB/art.jpg differ diff --git a/data/CTR-BFB/data.yml b/data/CTR-BFB/data.yml new file mode 100644 index 0000000..6efd696 --- /dev/null +++ b/data/CTR-BFB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001CA400 + name: フューチャーカードバディファイト 誕生!オレたちの最強バディ! + updates: + - id: 0004000E001CA400 + name: 更新データ Ver.1.2 フューチャーカード バディファイト 誕生!オレたちの最強バディ! diff --git a/data/CTR-BFB/icon.jpg b/data/CTR-BFB/icon.jpg new file mode 100644 index 0000000..6447124 Binary files /dev/null and b/data/CTR-BFB/icon.jpg differ diff --git a/data/CTR-BFC/art.jpg b/data/CTR-BFC/art.jpg new file mode 100644 index 0000000..3b8b451 Binary files /dev/null and b/data/CTR-BFC/art.jpg differ diff --git a/data/CTR-BFC/data.yml b/data/CTR-BFC/data.yml new file mode 100644 index 0000000..dfa53c6 --- /dev/null +++ b/data/CTR-BFC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000153F00 + name: 梨汁アクション! ふなっしーの愉快なおはなっしー + updates: [] diff --git a/data/CTR-BFC/icon.jpg b/data/CTR-BFC/icon.jpg new file mode 100644 index 0000000..95d7958 Binary files /dev/null and b/data/CTR-BFC/icon.jpg differ diff --git a/data/CTR-BFD/art.jpg b/data/CTR-BFD/art.jpg new file mode 100644 index 0000000..780f291 Binary files /dev/null and b/data/CTR-BFD/art.jpg differ diff --git a/data/CTR-BFD/data.yml b/data/CTR-BFD/data.yml new file mode 100644 index 0000000..cf39339 --- /dev/null +++ b/data/CTR-BFD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016EA00 + name: Etrian Mystery Dungeon + updates: [] +- regions: + - JP + id: 0004000000118300 + name: 世界樹と不思議のダンジョン + updates: [] +- regions: + - US + id: 000400000015B200 + name: Etrian Mystery Dungeon + updates: [] diff --git a/data/CTR-BFD/icon.jpg b/data/CTR-BFD/icon.jpg new file mode 100644 index 0000000..b773455 Binary files /dev/null and b/data/CTR-BFD/icon.jpg differ diff --git a/data/CTR-BFE/art.jpg b/data/CTR-BFE/art.jpg new file mode 100644 index 0000000..3f3f348 Binary files /dev/null and b/data/CTR-BFE/art.jpg differ diff --git a/data/CTR-BFE/data.yml b/data/CTR-BFE/data.yml new file mode 100644 index 0000000..05ee8f7 --- /dev/null +++ b/data/CTR-BFE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001CDF00 + name: 大戦略 大東亜興亡史DX ~第二次世界大戦~ + updates: [] diff --git a/data/CTR-BFE/icon.jpg b/data/CTR-BFE/icon.jpg new file mode 100644 index 0000000..6698935 Binary files /dev/null and b/data/CTR-BFE/icon.jpg differ diff --git a/data/CTR-BFF/art.jpg b/data/CTR-BFF/art.jpg new file mode 100644 index 0000000..547e16d Binary files /dev/null and b/data/CTR-BFF/art.jpg differ diff --git a/data/CTR-BFF/data.yml b/data/CTR-BFF/data.yml new file mode 100644 index 0000000..9b6a9bd --- /dev/null +++ b/data/CTR-BFF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000154900 + name: Flap Flap + updates: [] +- regions: + - US + id: 0004000000154A00 + name: Flap Flap + updates: [] diff --git a/data/CTR-BFF/icon.jpg b/data/CTR-BFF/icon.jpg new file mode 100644 index 0000000..492b3a1 Binary files /dev/null and b/data/CTR-BFF/icon.jpg differ diff --git a/data/CTR-BFG/art.jpg b/data/CTR-BFG/art.jpg new file mode 100644 index 0000000..0c1a6ab Binary files /dev/null and b/data/CTR-BFG/art.jpg differ diff --git a/data/CTR-BFG/data.yml b/data/CTR-BFG/data.yml new file mode 100644 index 0000000..07c7f25 --- /dev/null +++ b/data/CTR-BFG/data.yml @@ -0,0 +1,35 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000126100 + name: Monster Hunter™ 4 Ultimate + updates: + - id: 0004000E00126100 + name: 'Monster Hunter™ 4 Ultimate: Update' +- regions: + - JP + id: 000400000011D700 + name: モンスターハンター4G + updates: + - id: 0004000E0011D700 + name: 更新データ Ver. 1.2 モンスターハンター4G +- regions: + - KR + id: 0004000000153200 + name: 몬스터헌터 4G + updates: [] +- regions: + - TW + id: 0004000000141A00 + name: MONSTER HUNTER 4G(日文版) + updates: + - id: 0004000E00141A00 + name: MONSTER HUNTER 4G 更新資料 ver.1.1 +- regions: + - US + id: 0004000000126300 + name: Monster Hunter™ 4 Ultimate + updates: + - id: 0004000E00126300 + name: Monster Hunter™ 4 Ultimate Update Ver. 1.1 diff --git a/data/CTR-BFG/icon.jpg b/data/CTR-BFG/icon.jpg new file mode 100644 index 0000000..af1d1e9 Binary files /dev/null and b/data/CTR-BFG/icon.jpg differ diff --git a/data/CTR-BFK/art.jpg b/data/CTR-BFK/art.jpg new file mode 100644 index 0000000..4b63268 Binary files /dev/null and b/data/CTR-BFK/art.jpg differ diff --git a/data/CTR-BFK/data.yml b/data/CTR-BFK/data.yml new file mode 100644 index 0000000..84f45e8 --- /dev/null +++ b/data/CTR-BFK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000154000 + name: セガ3D復刻アーカイブス + updates: [] diff --git a/data/CTR-BFK/icon.jpg b/data/CTR-BFK/icon.jpg new file mode 100644 index 0000000..17ef65c Binary files /dev/null and b/data/CTR-BFK/icon.jpg differ diff --git a/data/CTR-BFL/art.jpg b/data/CTR-BFL/art.jpg new file mode 100644 index 0000000..15c0205 Binary files /dev/null and b/data/CTR-BFL/art.jpg differ diff --git a/data/CTR-BFL/data.yml b/data/CTR-BFL/data.yml new file mode 100644 index 0000000..6d66be1 --- /dev/null +++ b/data/CTR-BFL/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000017B300 + name: モンスターストライク + updates: + - id: 0004000E0017B300 + name: 更新データ Ver. 1.1.0 モンスターストライク diff --git a/data/CTR-BFL/icon.jpg b/data/CTR-BFL/icon.jpg new file mode 100644 index 0000000..da0e91b Binary files /dev/null and b/data/CTR-BFL/icon.jpg differ diff --git a/data/CTR-BFM/art.jpg b/data/CTR-BFM/art.jpg new file mode 100644 index 0000000..02f3c19 Binary files /dev/null and b/data/CTR-BFM/art.jpg differ diff --git a/data/CTR-BFM/data.yml b/data/CTR-BFM/data.yml new file mode 100644 index 0000000..ea286e8 --- /dev/null +++ b/data/CTR-BFM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000140B00 + name: テラフォーマーズ 紅き惑星の激闘 + updates: + - id: 0004000E00140B00 + name: 更新データ Ver. 1.1 テラフォーマーズ 紅き惑星の激闘 diff --git a/data/CTR-BFM/icon.jpg b/data/CTR-BFM/icon.jpg new file mode 100644 index 0000000..c0b0245 Binary files /dev/null and b/data/CTR-BFM/icon.jpg differ diff --git a/data/CTR-BFP/art.jpg b/data/CTR-BFP/art.jpg new file mode 100644 index 0000000..3be29eb Binary files /dev/null and b/data/CTR-BFP/art.jpg differ diff --git a/data/CTR-BFP/data.yml b/data/CTR-BFP/data.yml new file mode 100644 index 0000000..28bc625 --- /dev/null +++ b/data/CTR-BFP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000144700 + name: 藤子・F・不二雄キャラクターズ 大集合! SFドタバタパーティー!! + updates: [] diff --git a/data/CTR-BFP/icon.jpg b/data/CTR-BFP/icon.jpg new file mode 100644 index 0000000..13b4879 Binary files /dev/null and b/data/CTR-BFP/icon.jpg differ diff --git a/data/CTR-BFR/art.jpg b/data/CTR-BFR/art.jpg new file mode 100644 index 0000000..d189c39 Binary files /dev/null and b/data/CTR-BFR/art.jpg differ diff --git a/data/CTR-BFR/data.yml b/data/CTR-BFR/data.yml new file mode 100644 index 0000000..c0829d1 --- /dev/null +++ b/data/CTR-BFR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000132100 + name: Ultimate NES™ Remix + updates: [] +- regions: + - JP + id: 0004000000131F00 + name: ファミコンリミックス ベストチョイス + updates: [] +- regions: + - US + id: 0004000000132000 + name: Ultimate NES™ Remix + updates: [] diff --git a/data/CTR-BFR/icon.jpg b/data/CTR-BFR/icon.jpg new file mode 100644 index 0000000..c1dbcc8 Binary files /dev/null and b/data/CTR-BFR/icon.jpg differ diff --git a/data/CTR-BFS/art.jpg b/data/CTR-BFS/art.jpg new file mode 100644 index 0000000..fb4cbd8 Binary files /dev/null and b/data/CTR-BFS/art.jpg differ diff --git a/data/CTR-BFS/data.yml b/data/CTR-BFS/data.yml new file mode 100644 index 0000000..2e01e89 --- /dev/null +++ b/data/CTR-BFS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000013F100 + name: Farming Simulator 14 -ポケット農園 2- + updates: [] diff --git a/data/CTR-BFS/icon.jpg b/data/CTR-BFS/icon.jpg new file mode 100644 index 0000000..2bc3b5b Binary files /dev/null and b/data/CTR-BFS/icon.jpg differ diff --git a/data/CTR-BFT/art.jpg b/data/CTR-BFT/art.jpg new file mode 100644 index 0000000..ce1a174 Binary files /dev/null and b/data/CTR-BFT/art.jpg differ diff --git a/data/CTR-BFT/data.yml b/data/CTR-BFT/data.yml new file mode 100644 index 0000000..70f7b9d --- /dev/null +++ b/data/CTR-BFT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000013CA00 + name: FIFA 15 + updates: [] +- regions: + - US + id: 000400000013C700 + name: FIFA 15 + updates: [] diff --git a/data/CTR-BFT/icon.jpg b/data/CTR-BFT/icon.jpg new file mode 100644 index 0000000..fb953ad Binary files /dev/null and b/data/CTR-BFT/icon.jpg differ diff --git a/data/CTR-BFW/art.jpg b/data/CTR-BFW/art.jpg new file mode 100644 index 0000000..f19a089 Binary files /dev/null and b/data/CTR-BFW/art.jpg differ diff --git a/data/CTR-BFW/data.yml b/data/CTR-BFW/data.yml new file mode 100644 index 0000000..84720d9 --- /dev/null +++ b/data/CTR-BFW/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017A400 + name: Fire Emblem™ Fates + updates: [] +- regions: + - JP + id: 000400000016B200 + name: ファイアーエムブレムif + updates: + - id: 0004000E0016B200 + name: 更新データ Ver. 1.1 ファイアーエムブレムif(ダウンロード版) +- regions: + - TW + id: 000400000017B800 + name: ファイアーエムブレムif (日文版) + updates: [] diff --git a/data/CTR-BFW/icon.jpg b/data/CTR-BFW/icon.jpg new file mode 100644 index 0000000..ca355d1 Binary files /dev/null and b/data/CTR-BFW/icon.jpg differ diff --git a/data/CTR-BFX/art.jpg b/data/CTR-BFX/art.jpg new file mode 100644 index 0000000..99867ac Binary files /dev/null and b/data/CTR-BFX/art.jpg differ diff --git a/data/CTR-BFX/data.yml b/data/CTR-BFX/data.yml new file mode 100644 index 0000000..11ffefa --- /dev/null +++ b/data/CTR-BFX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 0004000000179400 + name: 'Fire Emblem Fates: Birthright' + updates: [] diff --git a/data/CTR-BFX/icon.jpg b/data/CTR-BFX/icon.jpg new file mode 100644 index 0000000..97652f8 Binary files /dev/null and b/data/CTR-BFX/icon.jpg differ diff --git a/data/CTR-BFY/art.jpg b/data/CTR-BFY/art.jpg new file mode 100644 index 0000000..66e802e Binary files /dev/null and b/data/CTR-BFY/art.jpg differ diff --git a/data/CTR-BFY/data.yml b/data/CTR-BFY/data.yml new file mode 100644 index 0000000..fa00ed5 --- /dev/null +++ b/data/CTR-BFY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 0004000000179600 + name: 'Fire Emblem Fates: Conquest' + updates: [] diff --git a/data/CTR-BFY/icon.jpg b/data/CTR-BFY/icon.jpg new file mode 100644 index 0000000..2c67ed4 Binary files /dev/null and b/data/CTR-BFY/icon.jpg differ diff --git a/data/CTR-BFZ/art.jpg b/data/CTR-BFZ/art.jpg new file mode 100644 index 0000000..c9af35c Binary files /dev/null and b/data/CTR-BFZ/art.jpg differ diff --git a/data/CTR-BFZ/data.yml b/data/CTR-BFZ/data.yml new file mode 100644 index 0000000..ec53ca3 --- /dev/null +++ b/data/CTR-BFZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - KR + id: 0004000000188E00 + name: 파이어 엠블렘 if + updates: [] diff --git a/data/CTR-BFZ/icon.jpg b/data/CTR-BFZ/icon.jpg new file mode 100644 index 0000000..3f6a4b2 Binary files /dev/null and b/data/CTR-BFZ/icon.jpg differ diff --git a/data/CTR-BG3/art.jpg b/data/CTR-BG3/art.jpg new file mode 100644 index 0000000..fca7caf Binary files /dev/null and b/data/CTR-BG3/art.jpg differ diff --git a/data/CTR-BG3/data.yml b/data/CTR-BG3/data.yml new file mode 100644 index 0000000..4043c57 --- /dev/null +++ b/data/CTR-BG3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000144400 + name: ワンピース 超グランドバトル!X + updates: + - id: 0004000E00144400 + name: 更新データ Ver. 1.5 ワンピース 超グランドバトル!X diff --git a/data/CTR-BG3/icon.jpg b/data/CTR-BG3/icon.jpg new file mode 100644 index 0000000..145397a Binary files /dev/null and b/data/CTR-BG3/icon.jpg differ diff --git a/data/CTR-BG4/art.jpg b/data/CTR-BG4/art.jpg new file mode 100644 index 0000000..a52f9f9 Binary files /dev/null and b/data/CTR-BG4/art.jpg differ diff --git a/data/CTR-BG4/data.yml b/data/CTR-BG4/data.yml new file mode 100644 index 0000000..392ce9e --- /dev/null +++ b/data/CTR-BG4/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001A6B00 + name: 'Shin Megami Tensei IV: Apocalypse' + updates: [] +- regions: + - JP + id: 0004000000166B00 + name: 真・女神転生Ⅳ FINAL + updates: + - id: 0004000E00166B00 + name: 更新データ Ver. 1.1 真・女神転生Ⅳ FINAL +- regions: + - US + id: 000400000019A200 + name: 'Shin Megami Tensei IV: Apocalypse' + updates: [] diff --git a/data/CTR-BG4/icon.jpg b/data/CTR-BG4/icon.jpg new file mode 100644 index 0000000..b6bbf9e Binary files /dev/null and b/data/CTR-BG4/icon.jpg differ diff --git a/data/CTR-BG5/art.jpg b/data/CTR-BG5/art.jpg new file mode 100644 index 0000000..ebd509d Binary files /dev/null and b/data/CTR-BG5/art.jpg differ diff --git a/data/CTR-BG5/data.yml b/data/CTR-BG5/data.yml new file mode 100644 index 0000000..3d7a582 --- /dev/null +++ b/data/CTR-BG5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000170300 + name: Go!プリンセスプリキュア シュガー王国と6人のプリンセス! + updates: [] diff --git a/data/CTR-BG5/icon.jpg b/data/CTR-BG5/icon.jpg new file mode 100644 index 0000000..ca8cb0a Binary files /dev/null and b/data/CTR-BG5/icon.jpg differ diff --git a/data/CTR-BG6/art.jpg b/data/CTR-BG6/art.jpg new file mode 100644 index 0000000..4e74449 Binary files /dev/null and b/data/CTR-BG6/art.jpg differ diff --git a/data/CTR-BG6/data.yml b/data/CTR-BG6/data.yml new file mode 100644 index 0000000..eaa11e6 --- /dev/null +++ b/data/CTR-BG6/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018FA00 + name: 'Phoenix Wright: Ace Attorney Spirit of Justice' + updates: [] +- regions: + - JP + id: 0004000000166A00 + name: 逆転裁判6 + updates: [] +- regions: + - KR + id: 000400000018F900 + name: 'Phoenix Wright: Ace Attorney - Spirit of Justice' + updates: [] +- regions: + - TW + id: 000400000018E700 + name: '逆轉裁判 6 / Phoenix Wright: Ace Attorney - Spirit of Justice (英文版)' + updates: [] +- regions: + - US + id: 000400000018F400 + name: 'Phoenix Wright: Ace Attorney – Spirit of Justice' + updates: [] diff --git a/data/CTR-BG6/icon.jpg b/data/CTR-BG6/icon.jpg new file mode 100644 index 0000000..e2382b0 Binary files /dev/null and b/data/CTR-BG6/icon.jpg differ diff --git a/data/CTR-BG7/art.jpg b/data/CTR-BG7/art.jpg new file mode 100644 index 0000000..484fc43 Binary files /dev/null and b/data/CTR-BG7/art.jpg differ diff --git a/data/CTR-BG7/data.yml b/data/CTR-BG7/data.yml new file mode 100644 index 0000000..477a6aa --- /dev/null +++ b/data/CTR-BG7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C2D00 + name: ミラクルちゅーんず! ゲームで チューンアップ! だプン! + updates: [] diff --git a/data/CTR-BG7/icon.jpg b/data/CTR-BG7/icon.jpg new file mode 100644 index 0000000..ef93a3b Binary files /dev/null and b/data/CTR-BG7/icon.jpg differ diff --git a/data/CTR-BG8/art.jpg b/data/CTR-BG8/art.jpg new file mode 100644 index 0000000..2a418cd Binary files /dev/null and b/data/CTR-BG8/art.jpg differ diff --git a/data/CTR-BG8/data.yml b/data/CTR-BG8/data.yml new file mode 100644 index 0000000..f516431 --- /dev/null +++ b/data/CTR-BG8/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000019E700 + name: 蒼き雷霆 ガンヴォルト ストライカーパック + updates: + - id: 0004000E0019E700 + name: 更新データ Ver. 1.2 蒼き雷霆 ガンヴォルト ストライカーパック +- regions: + - US + id: 00040000001A5600 + name: Azure Striker Gunovlt Striker Pack + updates: + - id: 0004000E001A5600 + name: 'Azure Striker Gunvolt: Striker Pack Update Ver. 1.2' diff --git a/data/CTR-BG8/icon.jpg b/data/CTR-BG8/icon.jpg new file mode 100644 index 0000000..723944a Binary files /dev/null and b/data/CTR-BG8/icon.jpg differ diff --git a/data/CTR-BG9/art.jpg b/data/CTR-BG9/art.jpg new file mode 100644 index 0000000..cb90124 Binary files /dev/null and b/data/CTR-BG9/art.jpg differ diff --git a/data/CTR-BG9/data.yml b/data/CTR-BG9/data.yml new file mode 100644 index 0000000..eee6f24 --- /dev/null +++ b/data/CTR-BG9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CBD00 + name: 'Jake Hunter Detective Story: Ghost of the Dusk' + updates: [] +- regions: + - JP + id: 00040000001BF400 + name: 探偵 神宮寺三郎 GHOST OF THE DUSK + updates: [] +- regions: + - US + id: 00040000001CBC00 + name: 'Jake Hunter Detective Story: Ghost of the Dusk' + updates: [] diff --git a/data/CTR-BG9/icon.jpg b/data/CTR-BG9/icon.jpg new file mode 100644 index 0000000..edc19cb Binary files /dev/null and b/data/CTR-BG9/icon.jpg differ diff --git a/data/CTR-BGB/art.jpg b/data/CTR-BGB/art.jpg new file mode 100644 index 0000000..8b833e5 Binary files /dev/null and b/data/CTR-BGB/art.jpg differ diff --git a/data/CTR-BGB/data.yml b/data/CTR-BGB/data.yml new file mode 100644 index 0000000..41da1a1 --- /dev/null +++ b/data/CTR-BGB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000105200 + name: クレヨンしんちゃん 嵐を呼ぶ カスカベ映画スターズ! + updates: [] diff --git a/data/CTR-BGB/icon.jpg b/data/CTR-BGB/icon.jpg new file mode 100644 index 0000000..f90fa7b Binary files /dev/null and b/data/CTR-BGB/icon.jpg differ diff --git a/data/CTR-BGD/art.jpg b/data/CTR-BGD/art.jpg new file mode 100644 index 0000000..5abd88a Binary files /dev/null and b/data/CTR-BGD/art.jpg differ diff --git a/data/CTR-BGD/data.yml b/data/CTR-BGD/data.yml new file mode 100644 index 0000000..be2296d --- /dev/null +++ b/data/CTR-BGD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012AD00 + name: ガイストクラッシャーゴッド + updates: [] diff --git a/data/CTR-BGD/icon.jpg b/data/CTR-BGD/icon.jpg new file mode 100644 index 0000000..e278936 Binary files /dev/null and b/data/CTR-BGD/icon.jpg differ diff --git a/data/CTR-BGG/art.jpg b/data/CTR-BGG/art.jpg new file mode 100644 index 0000000..c08705c Binary files /dev/null and b/data/CTR-BGG/art.jpg differ diff --git a/data/CTR-BGG/data.yml b/data/CTR-BGG/data.yml new file mode 100644 index 0000000..05e4676 --- /dev/null +++ b/data/CTR-BGG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000126400 + name: ぐるぐるたまごっち! + updates: [] diff --git a/data/CTR-BGG/icon.jpg b/data/CTR-BGG/icon.jpg new file mode 100644 index 0000000..fae5bdf Binary files /dev/null and b/data/CTR-BGG/icon.jpg differ diff --git a/data/CTR-BGH/art.jpg b/data/CTR-BGH/art.jpg new file mode 100644 index 0000000..45c22e0 Binary files /dev/null and b/data/CTR-BGH/art.jpg differ diff --git a/data/CTR-BGH/data.yml b/data/CTR-BGH/data.yml new file mode 100644 index 0000000..e87a8c8 --- /dev/null +++ b/data/CTR-BGH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001A4C00 + name: まんが家デビュー物語 ステキなまんがをえがこう + updates: [] diff --git a/data/CTR-BGH/icon.jpg b/data/CTR-BGH/icon.jpg new file mode 100644 index 0000000..8ccb397 Binary files /dev/null and b/data/CTR-BGH/icon.jpg differ diff --git a/data/CTR-BGJ/art.jpg b/data/CTR-BGJ/art.jpg new file mode 100644 index 0000000..a46011e Binary files /dev/null and b/data/CTR-BGJ/art.jpg differ diff --git a/data/CTR-BGJ/data.yml b/data/CTR-BGJ/data.yml new file mode 100644 index 0000000..475437c --- /dev/null +++ b/data/CTR-BGJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AA400 + name: ぐでたま おかわりいかがっすかー + updates: [] diff --git a/data/CTR-BGJ/icon.jpg b/data/CTR-BGJ/icon.jpg new file mode 100644 index 0000000..6b990ab Binary files /dev/null and b/data/CTR-BGJ/icon.jpg differ diff --git a/data/CTR-BGK/art.jpg b/data/CTR-BGK/art.jpg new file mode 100644 index 0000000..2e58ce0 Binary files /dev/null and b/data/CTR-BGK/art.jpg differ diff --git a/data/CTR-BGK/data.yml b/data/CTR-BGK/data.yml new file mode 100644 index 0000000..f3e93b2 --- /dev/null +++ b/data/CTR-BGK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F5100 + name: 三國志 + updates: [] diff --git a/data/CTR-BGK/icon.jpg b/data/CTR-BGK/icon.jpg new file mode 100644 index 0000000..c9a1a42 Binary files /dev/null and b/data/CTR-BGK/icon.jpg differ diff --git a/data/CTR-BGL/art.jpg b/data/CTR-BGL/art.jpg new file mode 100644 index 0000000..3e52dbe Binary files /dev/null and b/data/CTR-BGL/art.jpg differ diff --git a/data/CTR-BGL/data.yml b/data/CTR-BGL/data.yml new file mode 100644 index 0000000..3780bb6 --- /dev/null +++ b/data/CTR-BGL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174800 + name: ぐでたま 半熟でたのむわー + updates: [] diff --git a/data/CTR-BGL/icon.jpg b/data/CTR-BGL/icon.jpg new file mode 100644 index 0000000..2aa6d63 Binary files /dev/null and b/data/CTR-BGL/icon.jpg differ diff --git a/data/CTR-BGM/art.jpg b/data/CTR-BGM/art.jpg new file mode 100644 index 0000000..cf86d26 Binary files /dev/null and b/data/CTR-BGM/art.jpg differ diff --git a/data/CTR-BGM/data.yml b/data/CTR-BGM/data.yml new file mode 100644 index 0000000..04bf5f4 --- /dev/null +++ b/data/CTR-BGM/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000155C00 + name: 'Gardening Mama: Forest Friends' + updates: [] +- regions: + - JP + id: 00040000000F4900 + name: ガーデニングママ :ママと森のなかまたち + updates: [] +- regions: + - KR + id: 0004000000155E00 + name: '가드닝마마: 마마와 숲 속 친구들' + updates: [] +- regions: + - US + id: 000400000012D700 + name: 'Gardening Mama 2: Forest Friends' + updates: [] diff --git a/data/CTR-BGM/icon.jpg b/data/CTR-BGM/icon.jpg new file mode 100644 index 0000000..7a04c7b Binary files /dev/null and b/data/CTR-BGM/icon.jpg differ diff --git a/data/CTR-BGN/art.jpg b/data/CTR-BGN/art.jpg new file mode 100644 index 0000000..9c613e8 Binary files /dev/null and b/data/CTR-BGN/art.jpg differ diff --git a/data/CTR-BGN/data.yml b/data/CTR-BGN/data.yml new file mode 100644 index 0000000..74e0e66 --- /dev/null +++ b/data/CTR-BGN/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001D1A00 + name: Luigi's Mansion™ + updates: [] +- regions: + - JP + id: 00040000001D1800 + name: ルイージマンション + updates: [] +- regions: + - KR + id: 00040000001D4F00 + name: 루이지 맨션 + updates: [] +- regions: + - US + id: 00040000001D1900 + name: Luigi’s Mansion™ + updates: [] diff --git a/data/CTR-BGN/icon.jpg b/data/CTR-BGN/icon.jpg new file mode 100644 index 0000000..4ed0ec1 Binary files /dev/null and b/data/CTR-BGN/icon.jpg differ diff --git a/data/CTR-BGP/art.jpg b/data/CTR-BGP/art.jpg new file mode 100644 index 0000000..7b6b0ba Binary files /dev/null and b/data/CTR-BGP/art.jpg differ diff --git a/data/CTR-BGP/data.yml b/data/CTR-BGP/data.yml new file mode 100644 index 0000000..4c16591 --- /dev/null +++ b/data/CTR-BGP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000169F00 + name: メダロット ガールズミッション カブトVer. + updates: [] diff --git a/data/CTR-BGP/icon.jpg b/data/CTR-BGP/icon.jpg new file mode 100644 index 0000000..da6df12 Binary files /dev/null and b/data/CTR-BGP/icon.jpg differ diff --git a/data/CTR-BGQ/art.jpg b/data/CTR-BGQ/art.jpg new file mode 100644 index 0000000..2ae94d5 Binary files /dev/null and b/data/CTR-BGQ/art.jpg differ diff --git a/data/CTR-BGQ/data.yml b/data/CTR-BGQ/data.yml new file mode 100644 index 0000000..cf6faf8 --- /dev/null +++ b/data/CTR-BGQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000016A000 + name: メダロット ガールズミッション クワガタVer. + updates: [] diff --git a/data/CTR-BGQ/icon.jpg b/data/CTR-BGQ/icon.jpg new file mode 100644 index 0000000..56814ef Binary files /dev/null and b/data/CTR-BGQ/icon.jpg differ diff --git a/data/CTR-BGS/art.jpg b/data/CTR-BGS/art.jpg new file mode 100644 index 0000000..c6ebaa9 Binary files /dev/null and b/data/CTR-BGS/art.jpg differ diff --git a/data/CTR-BGS/data.yml b/data/CTR-BGS/data.yml new file mode 100644 index 0000000..a339ae6 --- /dev/null +++ b/data/CTR-BGS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000010BB00 + name: イナズマイレブンGO ギャラクシー スーパーノヴァ + updates: + - id: 0004000E0010BB00 + name: 更新データ Ver. 1.1 イナズマ イレブンGO ギャラクシー スーパーノヴァ diff --git a/data/CTR-BGS/icon.jpg b/data/CTR-BGS/icon.jpg new file mode 100644 index 0000000..e0e3854 Binary files /dev/null and b/data/CTR-BGS/icon.jpg differ diff --git a/data/CTR-BGV/art.jpg b/data/CTR-BGV/art.jpg new file mode 100644 index 0000000..35545d3 Binary files /dev/null and b/data/CTR-BGV/art.jpg differ diff --git a/data/CTR-BGV/data.yml b/data/CTR-BGV/data.yml new file mode 100644 index 0000000..274af13 --- /dev/null +++ b/data/CTR-BGV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000010BA00 + name: イナズマイレブンGO ギャラクシー ビッグバン + updates: + - id: 0004000E0010BA00 + name: 更新データ Ver. 1.1 イナズマ イレブンGO ギャラクシー ビッグバン diff --git a/data/CTR-BGV/icon.jpg b/data/CTR-BGV/icon.jpg new file mode 100644 index 0000000..03568b2 Binary files /dev/null and b/data/CTR-BGV/icon.jpg differ diff --git a/data/CTR-BGX/art.jpg b/data/CTR-BGX/art.jpg new file mode 100644 index 0000000..6a592fb Binary files /dev/null and b/data/CTR-BGX/art.jpg differ diff --git a/data/CTR-BGX/data.yml b/data/CTR-BGX/data.yml new file mode 100644 index 0000000..976e004 --- /dev/null +++ b/data/CTR-BGX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000014A400 + name: マリオ&ソニック AT リオオリンピック™ + updates: [] +- regions: + - KR + id: 0004000000191D00 + name: 마리오와 소닉 리우 올림픽™ + updates: [] +- regions: + - TW + id: 0004000000191C00 + name: マリオ&ソニック AT リオオリンピック™ (日文版) + updates: [] diff --git a/data/CTR-BGX/icon.jpg b/data/CTR-BGX/icon.jpg new file mode 100644 index 0000000..9a1c593 Binary files /dev/null and b/data/CTR-BGX/icon.jpg differ diff --git a/data/CTR-BGY/art.jpg b/data/CTR-BGY/art.jpg new file mode 100644 index 0000000..ee6789a Binary files /dev/null and b/data/CTR-BGY/art.jpg differ diff --git a/data/CTR-BGY/data.yml b/data/CTR-BGY/data.yml new file mode 100644 index 0000000..e3dfcc0 --- /dev/null +++ b/data/CTR-BGY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000152B00 + name: リラックマ なかよしコレクション + updates: [] diff --git a/data/CTR-BGY/icon.jpg b/data/CTR-BGY/icon.jpg new file mode 100644 index 0000000..37ef6bb Binary files /dev/null and b/data/CTR-BGY/icon.jpg differ diff --git a/data/CTR-BH2/art.jpg b/data/CTR-BH2/art.jpg new file mode 100644 index 0000000..07cf3f5 Binary files /dev/null and b/data/CTR-BH2/art.jpg differ diff --git a/data/CTR-BH2/data.yml b/data/CTR-BH2/data.yml new file mode 100644 index 0000000..03b02d0 --- /dev/null +++ b/data/CTR-BH2/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012A800 + name: ほっぺちゃん みんなでおでかけ! ワクワクほっぺランド!! + updates: + - id: 0004000E0012A800 + name: 更新データ Ver. 1.2 ほっぺちゃん みんなでおでかけ! ワクワクほっぺランド!! diff --git a/data/CTR-BH2/icon.jpg b/data/CTR-BH2/icon.jpg new file mode 100644 index 0000000..1b90f75 Binary files /dev/null and b/data/CTR-BH2/icon.jpg differ diff --git a/data/CTR-BH3/art.jpg b/data/CTR-BH3/art.jpg new file mode 100644 index 0000000..43773ea Binary files /dev/null and b/data/CTR-BH3/art.jpg differ diff --git a/data/CTR-BH3/data.yml b/data/CTR-BH3/data.yml new file mode 100644 index 0000000..7e860ea --- /dev/null +++ b/data/CTR-BH3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000170800 + name: ほっぺちゃん ぷにっとしぼって大冒険! + updates: + - id: 0004000E00170800 + name: 更新データ Ver. 1.1 ほっぺちゃん ぷにっとしぼって大冒険! diff --git a/data/CTR-BH3/icon.jpg b/data/CTR-BH3/icon.jpg new file mode 100644 index 0000000..4f7ead1 Binary files /dev/null and b/data/CTR-BH3/icon.jpg differ diff --git a/data/CTR-BH6/art.jpg b/data/CTR-BH6/art.jpg new file mode 100644 index 0000000..ff7e425 Binary files /dev/null and b/data/CTR-BH6/art.jpg differ diff --git a/data/CTR-BH6/data.yml b/data/CTR-BH6/data.yml new file mode 100644 index 0000000..e23c042 --- /dev/null +++ b/data/CTR-BH6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174B00 + name: ベイマックス ヒーローズバトル + updates: [] diff --git a/data/CTR-BH6/icon.jpg b/data/CTR-BH6/icon.jpg new file mode 100644 index 0000000..bdbbf50 Binary files /dev/null and b/data/CTR-BH6/icon.jpg differ diff --git a/data/CTR-BHA/art.jpg b/data/CTR-BHA/art.jpg new file mode 100644 index 0000000..64ccf3f Binary files /dev/null and b/data/CTR-BHA/art.jpg differ diff --git a/data/CTR-BHA/data.yml b/data/CTR-BHA/data.yml new file mode 100644 index 0000000..79cf8f7 --- /dev/null +++ b/data/CTR-BHA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000018E900 + name: 僕のヒーローアカデミア バトル・フォー・オール + updates: [] diff --git a/data/CTR-BHA/icon.jpg b/data/CTR-BHA/icon.jpg new file mode 100644 index 0000000..06f46cd Binary files /dev/null and b/data/CTR-BHA/icon.jpg differ diff --git a/data/CTR-BHB/art.jpg b/data/CTR-BHB/art.jpg new file mode 100644 index 0000000..60a36f1 Binary files /dev/null and b/data/CTR-BHB/art.jpg differ diff --git a/data/CTR-BHB/data.yml b/data/CTR-BHB/data.yml new file mode 100644 index 0000000..8ffae0d --- /dev/null +++ b/data/CTR-BHB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000101300 + name: ヒーローバンク + updates: + - id: 0004000E00101300 + name: 更新データ Ver. 1.1 ヒーローバンク diff --git a/data/CTR-BHB/icon.jpg b/data/CTR-BHB/icon.jpg new file mode 100644 index 0000000..2f96789 Binary files /dev/null and b/data/CTR-BHB/icon.jpg differ diff --git a/data/CTR-BHC/art.jpg b/data/CTR-BHC/art.jpg new file mode 100644 index 0000000..5432535 Binary files /dev/null and b/data/CTR-BHC/art.jpg differ diff --git a/data/CTR-BHC/data.yml b/data/CTR-BHC/data.yml new file mode 100644 index 0000000..2e06d89 --- /dev/null +++ b/data/CTR-BHC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000127B00 + name: ハピネスチャージプリキュア! かわルン☆コレクション + updates: [] diff --git a/data/CTR-BHC/icon.jpg b/data/CTR-BHC/icon.jpg new file mode 100644 index 0000000..e3691ca Binary files /dev/null and b/data/CTR-BHC/icon.jpg differ diff --git a/data/CTR-BHD/art.jpg b/data/CTR-BHD/art.jpg new file mode 100644 index 0000000..bfe05ef Binary files /dev/null and b/data/CTR-BHD/art.jpg differ diff --git a/data/CTR-BHD/data.yml b/data/CTR-BHD/data.yml new file mode 100644 index 0000000..978074d --- /dev/null +++ b/data/CTR-BHD/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000133300 + name: 'Phoenix Wright: Ace Attorney Trilogy' + updates: [] +- regions: + - JP + id: 0004000000108800 + name: 逆転裁判123 成歩堂セレクション + updates: [] +- regions: + - TW + id: 0004000000132900 + name: '逆轉裁判123 / Phoenix Wright: Ace Attorney Trilogy(日英版)' + updates: [] +- regions: + - US + id: 0004000000138F00 + name: 'Phoenix Wright®: Ace Attorney® Trilogy' + updates: [] diff --git a/data/CTR-BHD/icon.jpg b/data/CTR-BHD/icon.jpg new file mode 100644 index 0000000..5858965 Binary files /dev/null and b/data/CTR-BHD/icon.jpg differ diff --git a/data/CTR-BHF/art.jpg b/data/CTR-BHF/art.jpg new file mode 100644 index 0000000..5863295 Binary files /dev/null and b/data/CTR-BHF/art.jpg differ diff --git a/data/CTR-BHF/data.yml b/data/CTR-BHF/data.yml new file mode 100644 index 0000000..2a76f78 --- /dev/null +++ b/data/CTR-BHF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014A000 + name: My Life on a Farm 3D + updates: [] diff --git a/data/CTR-BHF/icon.jpg b/data/CTR-BHF/icon.jpg new file mode 100644 index 0000000..b2a2b81 Binary files /dev/null and b/data/CTR-BHF/icon.jpg differ diff --git a/data/CTR-BHG/art.jpg b/data/CTR-BHG/art.jpg new file mode 100644 index 0000000..4a629f4 Binary files /dev/null and b/data/CTR-BHG/art.jpg differ diff --git a/data/CTR-BHG/data.yml b/data/CTR-BHG/data.yml new file mode 100644 index 0000000..2a9885d --- /dev/null +++ b/data/CTR-BHG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CD300 + name: Hiding Out + updates: [] +- regions: + - US + id: 00040000001CC900 + name: Hiding Out + updates: [] diff --git a/data/CTR-BHG/icon.jpg b/data/CTR-BHG/icon.jpg new file mode 100644 index 0000000..4834e14 Binary files /dev/null and b/data/CTR-BHG/icon.jpg differ diff --git a/data/CTR-BHH/art.jpg b/data/CTR-BHH/art.jpg new file mode 100644 index 0000000..f2df026 Binary files /dev/null and b/data/CTR-BHH/art.jpg differ diff --git a/data/CTR-BHH/data.yml b/data/CTR-BHH/data.yml new file mode 100644 index 0000000..8e51e80 --- /dev/null +++ b/data/CTR-BHH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000109200 + name: Hello Kitty Happy Happy Family + updates: [] diff --git a/data/CTR-BHH/icon.jpg b/data/CTR-BHH/icon.jpg new file mode 100644 index 0000000..2756cbc Binary files /dev/null and b/data/CTR-BHH/icon.jpg differ diff --git a/data/CTR-BHK/art.jpg b/data/CTR-BHK/art.jpg new file mode 100644 index 0000000..c2190e0 Binary files /dev/null and b/data/CTR-BHK/art.jpg differ diff --git a/data/CTR-BHK/data.yml b/data/CTR-BHK/data.yml new file mode 100644 index 0000000..01736ea --- /dev/null +++ b/data/CTR-BHK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016B000 + name: 'Hello Kitty and the Apron of Magic: Rhythm Cooking' + updates: [] +- regions: + - JP + id: 000400000010EC00 + name: ハローキティとまほうのエプロン リズムクッキング♪ + updates: [] +- regions: + - US + id: 0004000000175100 + name: Hello Kitty's Magic Apron + updates: [] diff --git a/data/CTR-BHK/icon.jpg b/data/CTR-BHK/icon.jpg new file mode 100644 index 0000000..143e702 Binary files /dev/null and b/data/CTR-BHK/icon.jpg differ diff --git a/data/CTR-BHL/art.jpg b/data/CTR-BHL/art.jpg new file mode 100644 index 0000000..929dd0a Binary files /dev/null and b/data/CTR-BHL/art.jpg differ diff --git a/data/CTR-BHL/data.yml b/data/CTR-BHL/data.yml new file mode 100644 index 0000000..584fbf4 --- /dev/null +++ b/data/CTR-BHL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D8500 + name: Horror Stories + updates: [] +- regions: + - US + id: 00040000001D8800 + name: Horror Stories + updates: [] diff --git a/data/CTR-BHL/icon.jpg b/data/CTR-BHL/icon.jpg new file mode 100644 index 0000000..dda0e2d Binary files /dev/null and b/data/CTR-BHL/icon.jpg differ diff --git a/data/CTR-BHP/art.jpg b/data/CTR-BHP/art.jpg new file mode 100644 index 0000000..270126c Binary files /dev/null and b/data/CTR-BHP/art.jpg differ diff --git a/data/CTR-BHP/data.yml b/data/CTR-BHP/data.yml new file mode 100644 index 0000000..5e4b723 --- /dev/null +++ b/data/CTR-BHP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 00040000000D8E00 + name: ほっぺちゃん つくって!あそんで! ぷにぷにタウン!! + updates: + - id: 0004000E000D8E00 + name: 更新データ Ver. 1.2 ほっぺちゃん つくって!あそんで!ぷにぷにタウン! diff --git a/data/CTR-BHP/icon.jpg b/data/CTR-BHP/icon.jpg new file mode 100644 index 0000000..1b8cf0a Binary files /dev/null and b/data/CTR-BHP/icon.jpg differ diff --git a/data/CTR-BHQ/art.jpg b/data/CTR-BHQ/art.jpg new file mode 100644 index 0000000..1a97082 Binary files /dev/null and b/data/CTR-BHQ/art.jpg differ diff --git a/data/CTR-BHQ/data.yml b/data/CTR-BHQ/data.yml new file mode 100644 index 0000000..dd091aa --- /dev/null +++ b/data/CTR-BHQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000140E00 + name: ハイキュー!! 繋げ!頂の景色!! + updates: [] diff --git a/data/CTR-BHQ/icon.jpg b/data/CTR-BHQ/icon.jpg new file mode 100644 index 0000000..7c41f69 Binary files /dev/null and b/data/CTR-BHQ/icon.jpg differ diff --git a/data/CTR-BHR/art.jpg b/data/CTR-BHR/art.jpg new file mode 100644 index 0000000..c2af984 Binary files /dev/null and b/data/CTR-BHR/art.jpg differ diff --git a/data/CTR-BHR/data.yml b/data/CTR-BHR/data.yml new file mode 100644 index 0000000..a3ca2cc --- /dev/null +++ b/data/CTR-BHR/data.yml @@ -0,0 +1,18 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001C4D00 + name: 'Mario Party™: The Top 100' + updates: [] +- regions: + - JP + id: 00040000001C0A00 + name: マリオパーティ100 ミニゲームコレクション + updates: [] +- regions: + - TW + - US + id: 00040000001C4E00 + name: 'Mario Party™: The Top 100' + updates: [] diff --git a/data/CTR-BHR/icon.jpg b/data/CTR-BHR/icon.jpg new file mode 100644 index 0000000..c160f10 Binary files /dev/null and b/data/CTR-BHR/icon.jpg differ diff --git a/data/CTR-BHS/art.jpg b/data/CTR-BHS/art.jpg new file mode 100644 index 0000000..7ad8b6c Binary files /dev/null and b/data/CTR-BHS/art.jpg differ diff --git a/data/CTR-BHS/data.yml b/data/CTR-BHS/data.yml new file mode 100644 index 0000000..b3e380c --- /dev/null +++ b/data/CTR-BHS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001B6300 + name: かわいいペットとくらそう わんニャン&ミニミニアニマル + updates: + - id: 0004000E001B6300 + name: 更新データ Ver. 1.1 かわいいペットとくらそう diff --git a/data/CTR-BHS/icon.jpg b/data/CTR-BHS/icon.jpg new file mode 100644 index 0000000..28e388c Binary files /dev/null and b/data/CTR-BHS/icon.jpg differ diff --git a/data/CTR-BHT/art.jpg b/data/CTR-BHT/art.jpg new file mode 100644 index 0000000..a27bb65 Binary files /dev/null and b/data/CTR-BHT/art.jpg differ diff --git a/data/CTR-BHT/data.yml b/data/CTR-BHT/data.yml new file mode 100644 index 0000000..18461e5 --- /dev/null +++ b/data/CTR-BHT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000187C00 + name: ハイキュー!! Cross team match! + updates: [] diff --git a/data/CTR-BHT/icon.jpg b/data/CTR-BHT/icon.jpg new file mode 100644 index 0000000..330ae63 Binary files /dev/null and b/data/CTR-BHT/icon.jpg differ diff --git a/data/CTR-BJ3/art.jpg b/data/CTR-BJ3/art.jpg new file mode 100644 index 0000000..1f3e2ff Binary files /dev/null and b/data/CTR-BJ3/art.jpg differ diff --git a/data/CTR-BJ3/data.yml b/data/CTR-BJ3/data.yml new file mode 100644 index 0000000..625547a --- /dev/null +++ b/data/CTR-BJ3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000016AD00 + name: ドラゴンクエストモンスターズ ジョーカー3 + updates: + - id: 0004000E0016AD00 + name: 更新データ Ver. 1.1 DQM ジョーカー3 diff --git a/data/CTR-BJ3/icon.jpg b/data/CTR-BJ3/icon.jpg new file mode 100644 index 0000000..7f9b8f1 Binary files /dev/null and b/data/CTR-BJ3/icon.jpg differ diff --git a/data/CTR-BJP/art.jpg b/data/CTR-BJP/art.jpg new file mode 100644 index 0000000..463c8d2 Binary files /dev/null and b/data/CTR-BJP/art.jpg differ diff --git a/data/CTR-BJP/data.yml b/data/CTR-BJP/data.yml new file mode 100644 index 0000000..be038fb --- /dev/null +++ b/data/CTR-BJP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000104A00 + name: ジュエルペット カフェで魔法のクッキング! + updates: + - id: 0004000E00104A00 + name: 更新データ Ver.1.1ジュエルペット カフェで魔法のクッキング! diff --git a/data/CTR-BJP/icon.jpg b/data/CTR-BJP/icon.jpg new file mode 100644 index 0000000..3907dc6 Binary files /dev/null and b/data/CTR-BJP/icon.jpg differ diff --git a/data/CTR-BJS/art.jpg b/data/CTR-BJS/art.jpg new file mode 100644 index 0000000..50c03d1 Binary files /dev/null and b/data/CTR-BJS/art.jpg differ diff --git a/data/CTR-BJS/data.yml b/data/CTR-BJS/data.yml new file mode 100644 index 0000000..87db1d1 --- /dev/null +++ b/data/CTR-BJS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000124100 + name: JSガール ドキドキ モデルチャレンジ + updates: [] diff --git a/data/CTR-BJS/icon.jpg b/data/CTR-BJS/icon.jpg new file mode 100644 index 0000000..eff74d3 Binary files /dev/null and b/data/CTR-BJS/icon.jpg differ diff --git a/data/CTR-BJW/art.jpg b/data/CTR-BJW/art.jpg new file mode 100644 index 0000000..e26aa9d Binary files /dev/null and b/data/CTR-BJW/art.jpg differ diff --git a/data/CTR-BJW/data.yml b/data/CTR-BJW/data.yml new file mode 100644 index 0000000..a154a1b --- /dev/null +++ b/data/CTR-BJW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012FA00 + name: ドーリィ♪カノン + updates: + - id: 0004000E0012FA00 + name: 更新データ Ver. 1.2 ドーリィ♪カノン diff --git a/data/CTR-BJW/icon.jpg b/data/CTR-BJW/icon.jpg new file mode 100644 index 0000000..eadc7e0 Binary files /dev/null and b/data/CTR-BJW/icon.jpg differ diff --git a/data/CTR-BK2/art.jpg b/data/CTR-BK2/art.jpg new file mode 100644 index 0000000..a776df8 Binary files /dev/null and b/data/CTR-BK2/art.jpg differ diff --git a/data/CTR-BK2/data.yml b/data/CTR-BK2/data.yml new file mode 100644 index 0000000..938dc7a --- /dev/null +++ b/data/CTR-BK2/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000104C00 + name: こびとづかん こびとの不思議 実験セット + updates: + - id: 0004000E00104C00 + name: 更新データ Ver. 1.1 こびとづかん  こびとの不思議 実験セット diff --git a/data/CTR-BK2/icon.jpg b/data/CTR-BK2/icon.jpg new file mode 100644 index 0000000..195a084 Binary files /dev/null and b/data/CTR-BK2/icon.jpg differ diff --git a/data/CTR-BK3/art.jpg b/data/CTR-BK3/art.jpg new file mode 100644 index 0000000..abdcbef Binary files /dev/null and b/data/CTR-BK3/art.jpg differ diff --git a/data/CTR-BK3/data.yml b/data/CTR-BK3/data.yml new file mode 100644 index 0000000..a598b1e --- /dev/null +++ b/data/CTR-BK3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001A4D00 + name: こびとゲーム大全 + updates: [] diff --git a/data/CTR-BK3/icon.jpg b/data/CTR-BK3/icon.jpg new file mode 100644 index 0000000..41d2ab9 Binary files /dev/null and b/data/CTR-BK3/icon.jpg differ diff --git a/data/CTR-BKA/art.jpg b/data/CTR-BKA/art.jpg new file mode 100644 index 0000000..1366aed Binary files /dev/null and b/data/CTR-BKA/art.jpg differ diff --git a/data/CTR-BKA/data.yml b/data/CTR-BKA/data.yml new file mode 100644 index 0000000..7b7a021 --- /dev/null +++ b/data/CTR-BKA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000166900 + name: ぼくは航空管制官 エアポート ヒーロー3D 羽田 ALL STARS + updates: [] diff --git a/data/CTR-BKA/icon.jpg b/data/CTR-BKA/icon.jpg new file mode 100644 index 0000000..9659572 Binary files /dev/null and b/data/CTR-BKA/icon.jpg differ diff --git a/data/CTR-BKC/art.jpg b/data/CTR-BKC/art.jpg new file mode 100644 index 0000000..74d120c Binary files /dev/null and b/data/CTR-BKC/art.jpg differ diff --git a/data/CTR-BKC/data.yml b/data/CTR-BKC/data.yml new file mode 100644 index 0000000..ca6629c --- /dev/null +++ b/data/CTR-BKC/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000194E00 + name: くにおくん熱血コンプリート ファミコン編 + updates: [] +- regions: + - KR + id: 00040000001B2600 + name: 쿠니오군 열혈 컴플리트 패미컴 편 + updates: [] diff --git a/data/CTR-BKC/icon.jpg b/data/CTR-BKC/icon.jpg new file mode 100644 index 0000000..c8dde11 Binary files /dev/null and b/data/CTR-BKC/icon.jpg differ diff --git a/data/CTR-BKE/art.jpg b/data/CTR-BKE/art.jpg new file mode 100644 index 0000000..edb1a3b Binary files /dev/null and b/data/CTR-BKE/art.jpg differ diff --git a/data/CTR-BKE/data.yml b/data/CTR-BKE/data.yml new file mode 100644 index 0000000..8070521 --- /dev/null +++ b/data/CTR-BKE/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000149D00 + name: Karous - The Beast Of Re:Eden - + updates: [] +- regions: + - JP + id: 0004000000107F00 + name: Karous‐The Beast of Re:Eden‐ + updates: + - id: 0004000E00107F00 + name: 更新データ Ver. 2.0 Karous‐ The Beast of Re:Eden‐ +- regions: + - US + id: 0004000000150600 + name: 'KAROUS - THE BEAST OF RE:EDEN - ' + updates: [] diff --git a/data/CTR-BKE/icon.jpg b/data/CTR-BKE/icon.jpg new file mode 100644 index 0000000..231c69a Binary files /dev/null and b/data/CTR-BKE/icon.jpg differ diff --git a/data/CTR-BKJ/art.jpg b/data/CTR-BKJ/art.jpg new file mode 100644 index 0000000..89c5873 Binary files /dev/null and b/data/CTR-BKJ/art.jpg differ diff --git a/data/CTR-BKJ/data.yml b/data/CTR-BKJ/data.yml new file mode 100644 index 0000000..6cb66c6 --- /dev/null +++ b/data/CTR-BKJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000152C00 + name: 高円寺女子サッカー3 ~恋する イレブン いつかはヘブン~ + updates: [] diff --git a/data/CTR-BKJ/icon.jpg b/data/CTR-BKJ/icon.jpg new file mode 100644 index 0000000..fc7c8d2 Binary files /dev/null and b/data/CTR-BKJ/icon.jpg differ diff --git a/data/CTR-BKK/art.jpg b/data/CTR-BKK/art.jpg new file mode 100644 index 0000000..197bea8 Binary files /dev/null and b/data/CTR-BKK/art.jpg differ diff --git a/data/CTR-BKK/data.yml b/data/CTR-BKK/data.yml new file mode 100644 index 0000000..3e7f6a9 --- /dev/null +++ b/data/CTR-BKK/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000165500 + name: 'Lord of Magna: Maiden Heaven' + updates: [] +- regions: + - JP + id: 0004000000120900 + name: 禁忌のマグナ + updates: + - id: 0004000E00120900 + name: 更新データ Ver. 2.0.0 禁忌のマグナ +- regions: + - US + id: 0004000000164300 + name: 'Lord of Magna: Maiden Heaven' + updates: [] diff --git a/data/CTR-BKK/icon.jpg b/data/CTR-BKK/icon.jpg new file mode 100644 index 0000000..88fec14 Binary files /dev/null and b/data/CTR-BKK/icon.jpg differ diff --git a/data/CTR-BKL/art.jpg b/data/CTR-BKL/art.jpg new file mode 100644 index 0000000..62993e1 Binary files /dev/null and b/data/CTR-BKL/art.jpg differ diff --git a/data/CTR-BKL/data.yml b/data/CTR-BKL/data.yml new file mode 100644 index 0000000..5f10cf0 --- /dev/null +++ b/data/CTR-BKL/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000152900 + name: 暗殺教室 殺せんせー大包囲網!! + updates: + - id: 0004000E00152900 + name: 更新データ Ver. 1.1 暗殺教室 殺せんせー大包囲網!! diff --git a/data/CTR-BKL/icon.jpg b/data/CTR-BKL/icon.jpg new file mode 100644 index 0000000..3bff9fa Binary files /dev/null and b/data/CTR-BKL/icon.jpg differ diff --git a/data/CTR-BKM/art.jpg b/data/CTR-BKM/art.jpg new file mode 100644 index 0000000..74430ee Binary files /dev/null and b/data/CTR-BKM/art.jpg differ diff --git a/data/CTR-BKM/data.yml b/data/CTR-BKM/data.yml new file mode 100644 index 0000000..89c1e2e --- /dev/null +++ b/data/CTR-BKM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FA800 + name: くまモン★ボンバー パズル de くまモン体操 + updates: [] diff --git a/data/CTR-BKM/icon.jpg b/data/CTR-BKM/icon.jpg new file mode 100644 index 0000000..3ac3953 Binary files /dev/null and b/data/CTR-BKM/icon.jpg differ diff --git a/data/CTR-BKN/art.jpg b/data/CTR-BKN/art.jpg new file mode 100644 index 0000000..1a21f3c Binary files /dev/null and b/data/CTR-BKN/art.jpg differ diff --git a/data/CTR-BKN/data.yml b/data/CTR-BKN/data.yml new file mode 100644 index 0000000..fb25f50 --- /dev/null +++ b/data/CTR-BKN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000D5100 + name: 名探偵コナン マリオネット交響曲 + updates: [] diff --git a/data/CTR-BKN/icon.jpg b/data/CTR-BKN/icon.jpg new file mode 100644 index 0000000..18dcc96 Binary files /dev/null and b/data/CTR-BKN/icon.jpg differ diff --git a/data/CTR-BKP/art.jpg b/data/CTR-BKP/art.jpg new file mode 100644 index 0000000..c116feb Binary files /dev/null and b/data/CTR-BKP/art.jpg differ diff --git a/data/CTR-BKP/data.yml b/data/CTR-BKP/data.yml new file mode 100644 index 0000000..1f100ad --- /dev/null +++ b/data/CTR-BKP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000106700 + name: キャラペット つくって!そだてて! キャラクター小学校 + updates: + - id: 0004000E00106700 + name: 更新データ Ver. 1.1 キャラペット つくって!そだてて!キャラクター小学校 diff --git a/data/CTR-BKP/icon.jpg b/data/CTR-BKP/icon.jpg new file mode 100644 index 0000000..af888ff Binary files /dev/null and b/data/CTR-BKP/icon.jpg differ diff --git a/data/CTR-BKQ/art.jpg b/data/CTR-BKQ/art.jpg new file mode 100644 index 0000000..e52ac5a Binary files /dev/null and b/data/CTR-BKQ/art.jpg differ diff --git a/data/CTR-BKQ/data.yml b/data/CTR-BKQ/data.yml new file mode 100644 index 0000000..ea4b176 --- /dev/null +++ b/data/CTR-BKQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000168700 + name: 小林が可愛すぎてツライっ!! + updates: [] diff --git a/data/CTR-BKQ/icon.jpg b/data/CTR-BKQ/icon.jpg new file mode 100644 index 0000000..36b3020 Binary files /dev/null and b/data/CTR-BKQ/icon.jpg differ diff --git a/data/CTR-BKR/art.jpg b/data/CTR-BKR/art.jpg new file mode 100644 index 0000000..fdbc358 Binary files /dev/null and b/data/CTR-BKR/art.jpg differ diff --git a/data/CTR-BKR/data.yml b/data/CTR-BKR/data.yml new file mode 100644 index 0000000..46243ba --- /dev/null +++ b/data/CTR-BKR/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000118100 + name: 名探偵コナン ファントム狂詩曲 + updates: + - id: 0004000E00118100 + name: 更新データ Ver. 1.1 名探偵コナン ファントム狂詩曲 diff --git a/data/CTR-BKR/icon.jpg b/data/CTR-BKR/icon.jpg new file mode 100644 index 0000000..95df976 Binary files /dev/null and b/data/CTR-BKR/icon.jpg differ diff --git a/data/CTR-BKT/art.jpg b/data/CTR-BKT/art.jpg new file mode 100644 index 0000000..1a755da Binary files /dev/null and b/data/CTR-BKT/art.jpg differ diff --git a/data/CTR-BKT/data.yml b/data/CTR-BKT/data.yml new file mode 100644 index 0000000..d86e9f9 --- /dev/null +++ b/data/CTR-BKT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000012EA00 + name: "Hello Kitty & Friends: Rockin' World Tour" + updates: [] +- regions: + - JP + id: 0004000000134200 + name: ハローキティとサンリオキャラ クターズ ワールドロックツアー + updates: [] diff --git a/data/CTR-BKT/icon.jpg b/data/CTR-BKT/icon.jpg new file mode 100644 index 0000000..98cd755 Binary files /dev/null and b/data/CTR-BKT/icon.jpg differ diff --git a/data/CTR-BKU/art.jpg b/data/CTR-BKU/art.jpg new file mode 100644 index 0000000..691bc8d Binary files /dev/null and b/data/CTR-BKU/art.jpg differ diff --git a/data/CTR-BKU/data.yml b/data/CTR-BKU/data.yml new file mode 100644 index 0000000..c91bcf4 --- /dev/null +++ b/data/CTR-BKU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C2A00 + name: メダロット クラシックス カブトVer. + updates: + - id: 0004000E001C2A00 + name: 更新データ Ver. 2.0 メダロット クラシックス カブトVer. diff --git a/data/CTR-BKU/icon.jpg b/data/CTR-BKU/icon.jpg new file mode 100644 index 0000000..c3754da Binary files /dev/null and b/data/CTR-BKU/icon.jpg differ diff --git a/data/CTR-BKV/art.jpg b/data/CTR-BKV/art.jpg new file mode 100644 index 0000000..c2b4a32 Binary files /dev/null and b/data/CTR-BKV/art.jpg differ diff --git a/data/CTR-BKV/data.yml b/data/CTR-BKV/data.yml new file mode 100644 index 0000000..c98090e --- /dev/null +++ b/data/CTR-BKV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014F900 + name: ドラもじ のび太の漢字大作戦 + updates: [] diff --git a/data/CTR-BKV/icon.jpg b/data/CTR-BKV/icon.jpg new file mode 100644 index 0000000..ad5dc67 Binary files /dev/null and b/data/CTR-BKV/icon.jpg differ diff --git a/data/CTR-BKW/art.jpg b/data/CTR-BKW/art.jpg new file mode 100644 index 0000000..091d411 Binary files /dev/null and b/data/CTR-BKW/art.jpg differ diff --git a/data/CTR-BKW/data.yml b/data/CTR-BKW/data.yml new file mode 100644 index 0000000..0113df9 --- /dev/null +++ b/data/CTR-BKW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C2B00 + name: メダロット クラシックス クワガタVer. + updates: + - id: 0004000E001C2B00 + name: 更新データ Ver. 2.0 メダロット クラシックス クワガタVer. diff --git a/data/CTR-BKW/icon.jpg b/data/CTR-BKW/icon.jpg new file mode 100644 index 0000000..6485fb2 Binary files /dev/null and b/data/CTR-BKW/icon.jpg differ diff --git a/data/CTR-BKY/art.jpg b/data/CTR-BKY/art.jpg new file mode 100644 index 0000000..94d93fb Binary files /dev/null and b/data/CTR-BKY/art.jpg differ diff --git a/data/CTR-BKY/data.yml b/data/CTR-BKY/data.yml new file mode 100644 index 0000000..815c1b8 --- /dev/null +++ b/data/CTR-BKY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000157000 + name: Hello Kitty & Sanrio Friends 3D Racing + updates: [] +- regions: + - JP + id: 000400000016BC00 + name: ハローキティの キラキラわくわくレース + updates: [] +- regions: + - US + id: 000400000014EF00 + name: Hello Kitty and Sanrio Friends 3D Racing + updates: [] diff --git a/data/CTR-BKY/icon.jpg b/data/CTR-BKY/icon.jpg new file mode 100644 index 0000000..b0b56b8 Binary files /dev/null and b/data/CTR-BKY/icon.jpg differ diff --git a/data/CTR-BL2/art.jpg b/data/CTR-BL2/art.jpg new file mode 100644 index 0000000..c140747 Binary files /dev/null and b/data/CTR-BL2/art.jpg differ diff --git a/data/CTR-BL2/data.yml b/data/CTR-BL2/data.yml new file mode 100644 index 0000000..da9f1b5 --- /dev/null +++ b/data/CTR-BL2/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000134300 + name: ロストヒーローズ2 + updates: + - id: 0004000E00134300 + name: 更新データ Ver. 1.1.0 ロストヒーローズ2 diff --git a/data/CTR-BL2/icon.jpg b/data/CTR-BL2/icon.jpg new file mode 100644 index 0000000..7b06b43 Binary files /dev/null and b/data/CTR-BL2/icon.jpg differ diff --git a/data/CTR-BL5/art.jpg b/data/CTR-BL5/art.jpg new file mode 100644 index 0000000..061c399 Binary files /dev/null and b/data/CTR-BL5/art.jpg differ diff --git a/data/CTR-BL5/data.yml b/data/CTR-BL5/data.yml new file mode 100644 index 0000000..a00b123 --- /dev/null +++ b/data/CTR-BL5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000165E00 + name: Skylanders SuperChargers Racing + updates: [] diff --git a/data/CTR-BL5/icon.jpg b/data/CTR-BL5/icon.jpg new file mode 100644 index 0000000..5d9c458 Binary files /dev/null and b/data/CTR-BL5/icon.jpg differ diff --git a/data/CTR-BLB/art.jpg b/data/CTR-BLB/art.jpg new file mode 100644 index 0000000..d5e2160 Binary files /dev/null and b/data/CTR-BLB/art.jpg differ diff --git a/data/CTR-BLB/data.yml b/data/CTR-BLB/data.yml new file mode 100644 index 0000000..31cfac7 --- /dev/null +++ b/data/CTR-BLB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013D700 + name: I Love My Little Boy + updates: [] +- regions: + - US + id: 0004000000141700 + name: I Love My Little Boy + updates: [] diff --git a/data/CTR-BLB/icon.jpg b/data/CTR-BLB/icon.jpg new file mode 100644 index 0000000..ad162e0 Binary files /dev/null and b/data/CTR-BLB/icon.jpg differ diff --git a/data/CTR-BLC/art.jpg b/data/CTR-BLC/art.jpg new file mode 100644 index 0000000..b2e2df9 Binary files /dev/null and b/data/CTR-BLC/art.jpg differ diff --git a/data/CTR-BLC/data.yml b/data/CTR-BLC/data.yml new file mode 100644 index 0000000..804937f --- /dev/null +++ b/data/CTR-BLC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000112700 + name: 子猫のアルバム~My Little Cat~ + updates: [] diff --git a/data/CTR-BLC/icon.jpg b/data/CTR-BLC/icon.jpg new file mode 100644 index 0000000..1ed5791 Binary files /dev/null and b/data/CTR-BLC/icon.jpg differ diff --git a/data/CTR-BLE/art.jpg b/data/CTR-BLE/art.jpg new file mode 100644 index 0000000..c1d630e Binary files /dev/null and b/data/CTR-BLE/art.jpg differ diff --git a/data/CTR-BLE/data.yml b/data/CTR-BLE/data.yml new file mode 100644 index 0000000..ae36cb0 --- /dev/null +++ b/data/CTR-BLE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DAD00 + name: Miles & Kilo + updates: [] +- regions: + - US + id: 00040000001DB500 + name: Miles & Kilo + updates: [] diff --git a/data/CTR-BLE/icon.jpg b/data/CTR-BLE/icon.jpg new file mode 100644 index 0000000..3afcd3b Binary files /dev/null and b/data/CTR-BLE/icon.jpg differ diff --git a/data/CTR-BLF/art.jpg b/data/CTR-BLF/art.jpg new file mode 100644 index 0000000..c0a6009 Binary files /dev/null and b/data/CTR-BLF/art.jpg differ diff --git a/data/CTR-BLF/data.yml b/data/CTR-BLF/data.yml new file mode 100644 index 0000000..4c65a33 --- /dev/null +++ b/data/CTR-BLF/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CA800 + name: Layton's Mystery Journey™ + updates: + - id: 0004000E001CA800 + name: "Layton's Mystery Journey™: Update" +- regions: + - JP + id: 00040000001C1900 + name: レイトン ミステリージャーニー カトリーエイルと大富豪の陰謀 + updates: + - id: 0004000E001C1900 + name: 更新データ Ver. 1.2 レイトン ミステリージャーニー +- regions: + - US + id: 00040000001CB400 + name: LAYTON'S MYSTERY JOURNEY™ + updates: + - id: 0004000E001CB400 + name: LAYTON'S MYSTERY JOURNEY Update Ver. 1.2 diff --git a/data/CTR-BLF/icon.jpg b/data/CTR-BLF/icon.jpg new file mode 100644 index 0000000..8f753f3 Binary files /dev/null and b/data/CTR-BLF/icon.jpg differ diff --git a/data/CTR-BLG/art.jpg b/data/CTR-BLG/art.jpg new file mode 100644 index 0000000..e804c9e Binary files /dev/null and b/data/CTR-BLG/art.jpg differ diff --git a/data/CTR-BLG/data.yml b/data/CTR-BLG/data.yml new file mode 100644 index 0000000..d0348a5 --- /dev/null +++ b/data/CTR-BLG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013D600 + name: I Love My Little Girl + updates: [] +- regions: + - US + id: 0004000000141900 + name: I Love My Little Girl + updates: [] diff --git a/data/CTR-BLG/icon.jpg b/data/CTR-BLG/icon.jpg new file mode 100644 index 0000000..470c06e Binary files /dev/null and b/data/CTR-BLG/icon.jpg differ diff --git a/data/CTR-BLJ/art.jpg b/data/CTR-BLJ/art.jpg new file mode 100644 index 0000000..fda4fd5 Binary files /dev/null and b/data/CTR-BLJ/art.jpg differ diff --git a/data/CTR-BLJ/data.yml b/data/CTR-BLJ/data.yml new file mode 100644 index 0000000..7120925 --- /dev/null +++ b/data/CTR-BLJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000159900 + name: LEGO® Jurassic World™ + updates: [] +- regions: + - JP + id: 0004000000172200 + name: LEGO®ジュラシック・ワールド + updates: [] +- regions: + - US + id: 000400000015B000 + name: 'LEGO® Jurassic World™ ' + updates: [] diff --git a/data/CTR-BLJ/icon.jpg b/data/CTR-BLJ/icon.jpg new file mode 100644 index 0000000..3606d88 Binary files /dev/null and b/data/CTR-BLJ/icon.jpg differ diff --git a/data/CTR-BLK/art.jpg b/data/CTR-BLK/art.jpg new file mode 100644 index 0000000..9cafd91 Binary files /dev/null and b/data/CTR-BLK/art.jpg differ diff --git a/data/CTR-BLK/data.yml b/data/CTR-BLK/data.yml new file mode 100644 index 0000000..a2270a7 --- /dev/null +++ b/data/CTR-BLK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000E9C00 + name: ファンタジーライフ LINK! + updates: + - id: 0004000E000E9C00 + name: '更新データ Ver. 1.7 ファンタジーライフ LINK! ' diff --git a/data/CTR-BLK/icon.jpg b/data/CTR-BLK/icon.jpg new file mode 100644 index 0000000..4e39e55 Binary files /dev/null and b/data/CTR-BLK/icon.jpg differ diff --git a/data/CTR-BLL/art.jpg b/data/CTR-BLL/art.jpg new file mode 100644 index 0000000..6a8b22e Binary files /dev/null and b/data/CTR-BLL/art.jpg differ diff --git a/data/CTR-BLL/data.yml b/data/CTR-BLL/data.yml new file mode 100644 index 0000000..d57cc83 --- /dev/null +++ b/data/CTR-BLL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017C800 + name: The Legend of Legacy + updates: [] +- regions: + - JP + id: 0004000000131C00 + name: レジェンド オブ レガシー + updates: [] +- regions: + - US + id: 000400000016DB00 + name: The Legend of Legacy + updates: [] diff --git a/data/CTR-BLL/icon.jpg b/data/CTR-BLL/icon.jpg new file mode 100644 index 0000000..e951df6 Binary files /dev/null and b/data/CTR-BLL/icon.jpg differ diff --git a/data/CTR-BLM/art.jpg b/data/CTR-BLM/art.jpg new file mode 100644 index 0000000..0728520 Binary files /dev/null and b/data/CTR-BLM/art.jpg differ diff --git a/data/CTR-BLM/data.yml b/data/CTR-BLM/data.yml new file mode 100644 index 0000000..f5f6ec1 --- /dev/null +++ b/data/CTR-BLM/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D3C00 + name: 'Bloodstained: Curse of the Moon' + updates: [] +- regions: + - JP + id: 00040000001D3A00 + name: 'Bloodstained: Curse of the Moon' + updates: + - id: 0004000E001D3A00 + name: '更新データ Ver.1.1 Bloodstained: Curse of the Moon' +- regions: + - US + id: 00040000001D4000 + name: 'Bloodstained: Curse of the Moon' + updates: [] diff --git a/data/CTR-BLM/icon.jpg b/data/CTR-BLM/icon.jpg new file mode 100644 index 0000000..c527b08 Binary files /dev/null and b/data/CTR-BLM/icon.jpg differ diff --git a/data/CTR-BLN/art.jpg b/data/CTR-BLN/art.jpg new file mode 100644 index 0000000..a6743ff Binary files /dev/null and b/data/CTR-BLN/art.jpg differ diff --git a/data/CTR-BLN/data.yml b/data/CTR-BLN/data.yml new file mode 100644 index 0000000..12bff68 --- /dev/null +++ b/data/CTR-BLN/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000118B00 + name: 'LEGO® Ninjago™: Nindroids™' + updates: [] +- regions: + - JP + id: 00040000001A1500 + name: LEGO® ニンジャゴー ニンドロイド + updates: [] +- regions: + - KR + id: 000400000015BF00 + name: 'LEGO Ninjago: 닌드로이드' + updates: [] +- regions: + - US + id: 0004000000118C00 + name: 'LEGO® Ninjago™: Nindroids™ ' + updates: [] diff --git a/data/CTR-BLN/icon.jpg b/data/CTR-BLN/icon.jpg new file mode 100644 index 0000000..66c02aa Binary files /dev/null and b/data/CTR-BLN/icon.jpg differ diff --git a/data/CTR-BLP/art.jpg b/data/CTR-BLP/art.jpg new file mode 100644 index 0000000..17a69bc Binary files /dev/null and b/data/CTR-BLP/art.jpg differ diff --git a/data/CTR-BLP/data.yml b/data/CTR-BLP/data.yml new file mode 100644 index 0000000..183c899 --- /dev/null +++ b/data/CTR-BLP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F4E00 + name: NEWラブプラス+ + updates: [] diff --git a/data/CTR-BLP/icon.jpg b/data/CTR-BLP/icon.jpg new file mode 100644 index 0000000..2e1cf23 Binary files /dev/null and b/data/CTR-BLP/icon.jpg differ diff --git a/data/CTR-BLS/art.jpg b/data/CTR-BLS/art.jpg new file mode 100644 index 0000000..5b4f5c1 Binary files /dev/null and b/data/CTR-BLS/art.jpg differ diff --git a/data/CTR-BLS/data.yml b/data/CTR-BLS/data.yml new file mode 100644 index 0000000..c7e87d7 --- /dev/null +++ b/data/CTR-BLS/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014DD00 + name: 'LEGO® Ninjago™: Shadow of Ronin' + updates: + - id: 0004000E0014DD00 + name: 'LEGO® Ninjago™: Shadow of Ronin - Update' +- regions: + - JP + id: 0004000000170600 + name: LEGO®ニンジャゴー ローニンの影 + updates: [] +- regions: + - KR + id: 000400000017FC00 + name: 'LEGO® Ninjago™: 섀도 오브 로닌' + updates: [] +- regions: + - US + id: 000400000014EB00 + name: 'LEGO® Ninjago™: Shadow of Ronin™' + updates: + - id: 0004000E0014EB00 + name: 'LEGO® Ninjago™: Shadow of Ronin™ Update Ver. 2.0' diff --git a/data/CTR-BLS/icon.jpg b/data/CTR-BLS/icon.jpg new file mode 100644 index 0000000..b612173 Binary files /dev/null and b/data/CTR-BLS/icon.jpg differ diff --git a/data/CTR-BLT/art.jpg b/data/CTR-BLT/art.jpg new file mode 100644 index 0000000..a960c29 Binary files /dev/null and b/data/CTR-BLT/art.jpg differ diff --git a/data/CTR-BLT/data.yml b/data/CTR-BLT/data.yml new file mode 100644 index 0000000..4af4050 --- /dev/null +++ b/data/CTR-BLT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012FF00 + name: ご当地鉄道 ~ご当地キャラと日本全国の旅~ + updates: [] diff --git a/data/CTR-BLT/icon.jpg b/data/CTR-BLT/icon.jpg new file mode 100644 index 0000000..5aa5dfe Binary files /dev/null and b/data/CTR-BLT/icon.jpg differ diff --git a/data/CTR-BLW/art.jpg b/data/CTR-BLW/art.jpg new file mode 100644 index 0000000..d417d9b Binary files /dev/null and b/data/CTR-BLW/art.jpg differ diff --git a/data/CTR-BLW/data.yml b/data/CTR-BLW/data.yml new file mode 100644 index 0000000..cac15fb --- /dev/null +++ b/data/CTR-BLW/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017ED00 + name: 'LEGO® STAR WARS™: THE FORCE AWAKENS' + updates: + - id: 0004000E0017ED00 + name: 'LEGO® STAR WARS™: THE FORCE AWAKENS - Update' +- regions: + - JP + id: 0004000000190D00 + name: LEGO®スター・ウォーズ + updates: [] +- regions: + - KR + id: 00040000001A5900 + name: '레고® 스타워즈™: 깨어난 포스' + updates: [] +- regions: + - US + id: 000400000017F900 + name: 'LEGO® Star Wars™: The Force Awakens' + updates: [] diff --git a/data/CTR-BLW/icon.jpg b/data/CTR-BLW/icon.jpg new file mode 100644 index 0000000..99bfcd9 Binary files /dev/null and b/data/CTR-BLW/icon.jpg differ diff --git a/data/CTR-BM3/art.jpg b/data/CTR-BM3/art.jpg new file mode 100644 index 0000000..35a58a0 Binary files /dev/null and b/data/CTR-BM3/art.jpg differ diff --git a/data/CTR-BM3/data.yml b/data/CTR-BM3/data.yml new file mode 100644 index 0000000..232bcf7 --- /dev/null +++ b/data/CTR-BM3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000138C00 + name: Me & My Pets 3D + updates: [] diff --git a/data/CTR-BM3/icon.jpg b/data/CTR-BM3/icon.jpg new file mode 100644 index 0000000..3c1a928 Binary files /dev/null and b/data/CTR-BM3/icon.jpg differ diff --git a/data/CTR-BM4/art.jpg b/data/CTR-BM4/art.jpg new file mode 100644 index 0000000..88c31d9 Binary files /dev/null and b/data/CTR-BM4/art.jpg differ diff --git a/data/CTR-BM4/data.yml b/data/CTR-BM4/data.yml new file mode 100644 index 0000000..4f7ef92 --- /dev/null +++ b/data/CTR-BM4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000140D00 + name: Outback Pet Rescue 3D + updates: [] diff --git a/data/CTR-BM4/icon.jpg b/data/CTR-BM4/icon.jpg new file mode 100644 index 0000000..c78f2ed Binary files /dev/null and b/data/CTR-BM4/icon.jpg differ diff --git a/data/CTR-BM5/art.jpg b/data/CTR-BM5/art.jpg new file mode 100644 index 0000000..ce5bf4a Binary files /dev/null and b/data/CTR-BM5/art.jpg differ diff --git a/data/CTR-BM5/data.yml b/data/CTR-BM5/data.yml new file mode 100644 index 0000000..e5dc392 --- /dev/null +++ b/data/CTR-BM5/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017F400 + name: Moco Moco Friends + updates: [] +- regions: + - JP + id: 000400000015E900 + name: 見習い魔女とモコモコフレンズ + updates: [] +- regions: + - KR + id: 000400000018E400 + name: Moco Moco Friends + updates: [] +- regions: + - TW + id: 000400000018BB00 + name: Moco Moco Friends (英文版) + updates: [] +- regions: + - US + id: 000400000017F200 + name: Moco Moco Friends + updates: [] diff --git a/data/CTR-BM5/icon.jpg b/data/CTR-BM5/icon.jpg new file mode 100644 index 0000000..527fcfa Binary files /dev/null and b/data/CTR-BM5/icon.jpg differ diff --git a/data/CTR-BM6/art.jpg b/data/CTR-BM6/art.jpg new file mode 100644 index 0000000..ab8fc34 Binary files /dev/null and b/data/CTR-BM6/art.jpg differ diff --git a/data/CTR-BM6/data.yml b/data/CTR-BM6/data.yml new file mode 100644 index 0000000..7a30e11 --- /dev/null +++ b/data/CTR-BM6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014A600 + name: My Pet School 3D + updates: [] diff --git a/data/CTR-BM6/icon.jpg b/data/CTR-BM6/icon.jpg new file mode 100644 index 0000000..a4d4e5d Binary files /dev/null and b/data/CTR-BM6/icon.jpg differ diff --git a/data/CTR-BM7/art.jpg b/data/CTR-BM7/art.jpg new file mode 100644 index 0000000..1049be9 Binary files /dev/null and b/data/CTR-BM7/art.jpg differ diff --git a/data/CTR-BM7/data.yml b/data/CTR-BM7/data.yml new file mode 100644 index 0000000..503873b --- /dev/null +++ b/data/CTR-BM7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000181000 + name: マイメロディ 願いがかなう不思議な箱 + updates: [] diff --git a/data/CTR-BM7/icon.jpg b/data/CTR-BM7/icon.jpg new file mode 100644 index 0000000..bb9cac9 Binary files /dev/null and b/data/CTR-BM7/icon.jpg differ diff --git a/data/CTR-BM8/art.jpg b/data/CTR-BM8/art.jpg new file mode 100644 index 0000000..15e2130 Binary files /dev/null and b/data/CTR-BM8/art.jpg differ diff --git a/data/CTR-BM8/data.yml b/data/CTR-BM8/data.yml new file mode 100644 index 0000000..7f0a8e4 --- /dev/null +++ b/data/CTR-BM8/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014AB00 + name: まほコレ~魔法☆ あいどるコレクション~ + updates: + - id: 0004000E0014AB00 + name: 更新データ Ver. 1.1 まほコレ ~魔法☆あいどるコレクション~ diff --git a/data/CTR-BM8/icon.jpg b/data/CTR-BM8/icon.jpg new file mode 100644 index 0000000..8cb33ab Binary files /dev/null and b/data/CTR-BM8/icon.jpg differ diff --git a/data/CTR-BM9/art.jpg b/data/CTR-BM9/art.jpg new file mode 100644 index 0000000..048bf0d Binary files /dev/null and b/data/CTR-BM9/art.jpg differ diff --git a/data/CTR-BM9/data.yml b/data/CTR-BM9/data.yml new file mode 100644 index 0000000..56e1ede --- /dev/null +++ b/data/CTR-BM9/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016E900 + name: 'Etrian Odyssey 2 Untold: The Fafnir Knight' + updates: + - id: 0004000E0016E900 + name: 'Etrian Odyssey 2 Untold: The Fafnir Knight - Update' +- regions: + - JP + id: 0004000000120500 + name: 新・世界樹の迷宮2 ファフニールの騎士 + updates: + - id: 0004000E00120500 + name: 更新データ Ver. 1.2 新・世界樹の迷宮2 ファフニールの騎士 +- regions: + - KR + id: 000400000016D700 + name: 신 세계수의 미궁 2 파프니르기사 + updates: + - id: 0004000E0016D700 + name: 업데이트 데이터 Ver. 1.1 신 세계수의 미궁 2 파프니르기사 +- regions: + - US + id: 000400000015F200 + name: 'Etrian Odyssey 2 Untold: The Fafnir Knight' + updates: + - id: 0004000E0015F200 + name: 'Etrian Odyssey 2 Untold: The Fafnir Knight Update Ver. 1.1' diff --git a/data/CTR-BM9/icon.jpg b/data/CTR-BM9/icon.jpg new file mode 100644 index 0000000..a48561e Binary files /dev/null and b/data/CTR-BM9/icon.jpg differ diff --git a/data/CTR-BMB/art.jpg b/data/CTR-BMB/art.jpg new file mode 100644 index 0000000..b8a6297 Binary files /dev/null and b/data/CTR-BMB/art.jpg differ diff --git a/data/CTR-BMB/data.yml b/data/CTR-BMB/data.yml new file mode 100644 index 0000000..41f5341 --- /dev/null +++ b/data/CTR-BMB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000E8700 + name: ムシブギョー + updates: [] diff --git a/data/CTR-BMB/icon.jpg b/data/CTR-BMB/icon.jpg new file mode 100644 index 0000000..d911bb6 Binary files /dev/null and b/data/CTR-BMB/icon.jpg differ diff --git a/data/CTR-BMD/art.jpg b/data/CTR-BMD/art.jpg new file mode 100644 index 0000000..1446d46 Binary files /dev/null and b/data/CTR-BMD/art.jpg differ diff --git a/data/CTR-BMD/data.yml b/data/CTR-BMD/data.yml new file mode 100644 index 0000000..7879f8d --- /dev/null +++ b/data/CTR-BMD/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000169C00 + name: ちゃおイラストクラブ + updates: + - id: 0004000E00169C00 + name: 更新データ Ver. 1.2 ちゃおイラストクラブ diff --git a/data/CTR-BMD/icon.jpg b/data/CTR-BMD/icon.jpg new file mode 100644 index 0000000..681c09f Binary files /dev/null and b/data/CTR-BMD/icon.jpg differ diff --git a/data/CTR-BME/art.jpg b/data/CTR-BME/art.jpg new file mode 100644 index 0000000..74d634a Binary files /dev/null and b/data/CTR-BME/art.jpg differ diff --git a/data/CTR-BME/data.yml b/data/CTR-BME/data.yml new file mode 100644 index 0000000..7570ace --- /dev/null +++ b/data/CTR-BME/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000015B700 + name: Best Friends - My Horse 3D + updates: [] diff --git a/data/CTR-BME/icon.jpg b/data/CTR-BME/icon.jpg new file mode 100644 index 0000000..02bd1ad Binary files /dev/null and b/data/CTR-BME/icon.jpg differ diff --git a/data/CTR-BMG/art.jpg b/data/CTR-BMG/art.jpg new file mode 100644 index 0000000..71b1aca Binary files /dev/null and b/data/CTR-BMG/art.jpg differ diff --git a/data/CTR-BMG/data.yml b/data/CTR-BMG/data.yml new file mode 100644 index 0000000..87a3169 --- /dev/null +++ b/data/CTR-BMG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000111500 + name: Life with Horses 3D + updates: [] diff --git a/data/CTR-BMG/icon.jpg b/data/CTR-BMG/icon.jpg new file mode 100644 index 0000000..24d23d8 Binary files /dev/null and b/data/CTR-BMG/icon.jpg differ diff --git a/data/CTR-BMH/art.jpg b/data/CTR-BMH/art.jpg new file mode 100644 index 0000000..2530b82 Binary files /dev/null and b/data/CTR-BMH/art.jpg differ diff --git a/data/CTR-BMH/data.yml b/data/CTR-BMH/data.yml new file mode 100644 index 0000000..b218a92 --- /dev/null +++ b/data/CTR-BMH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013D500 + name: I Love My Horse + updates: [] +- regions: + - US + id: 0004000000141600 + name: I Love My Horse + updates: [] diff --git a/data/CTR-BMH/icon.jpg b/data/CTR-BMH/icon.jpg new file mode 100644 index 0000000..96fb4db Binary files /dev/null and b/data/CTR-BMH/icon.jpg differ diff --git a/data/CTR-BMK/art.jpg b/data/CTR-BMK/art.jpg new file mode 100644 index 0000000..98940ee Binary files /dev/null and b/data/CTR-BMK/art.jpg differ diff --git a/data/CTR-BMK/data.yml b/data/CTR-BMK/data.yml new file mode 100644 index 0000000..19c73d5 --- /dev/null +++ b/data/CTR-BMK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000113300 + name: メダロット8 カブトVer. + updates: + - id: 0004000E00113300 + name: 更新データ Ver. 1.1 メダロット8 カブトVer. diff --git a/data/CTR-BMK/icon.jpg b/data/CTR-BMK/icon.jpg new file mode 100644 index 0000000..8885e56 Binary files /dev/null and b/data/CTR-BMK/icon.jpg differ diff --git a/data/CTR-BMM/art.jpg b/data/CTR-BMM/art.jpg new file mode 100644 index 0000000..7af79f7 Binary files /dev/null and b/data/CTR-BMM/art.jpg differ diff --git a/data/CTR-BMM/data.yml b/data/CTR-BMM/data.yml new file mode 100644 index 0000000..26b9831 --- /dev/null +++ b/data/CTR-BMM/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000175500 + name: Mega Man Legacy Collection + updates: [] +- regions: + - JP + id: 0004000000177F00 + name: ロックマン クラシックス コレクション + updates: [] +- regions: + - KR + id: 0004000000180300 + name: Mega Man® Legacy Collection + updates: [] +- regions: + - TW + id: 000400000017C000 + name: Mega Man® Legacy Collection (日英版) + updates: [] +- regions: + - US + id: 0004000000174100 + name: Mega Man® Legacy Collection + updates: [] diff --git a/data/CTR-BMM/icon.jpg b/data/CTR-BMM/icon.jpg new file mode 100644 index 0000000..b1c4dae Binary files /dev/null and b/data/CTR-BMM/icon.jpg differ diff --git a/data/CTR-BMN/art.jpg b/data/CTR-BMN/art.jpg new file mode 100644 index 0000000..ec540ed Binary files /dev/null and b/data/CTR-BMN/art.jpg differ diff --git a/data/CTR-BMN/data.yml b/data/CTR-BMN/data.yml new file mode 100644 index 0000000..1393430 --- /dev/null +++ b/data/CTR-BMN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000150C00 + name: Asterix The Mansions of the Gods + updates: [] diff --git a/data/CTR-BMN/icon.jpg b/data/CTR-BMN/icon.jpg new file mode 100644 index 0000000..2e6921d Binary files /dev/null and b/data/CTR-BMN/icon.jpg differ diff --git a/data/CTR-BMP/art.jpg b/data/CTR-BMP/art.jpg new file mode 100644 index 0000000..f39c7f7 Binary files /dev/null and b/data/CTR-BMP/art.jpg differ diff --git a/data/CTR-BMP/data.yml b/data/CTR-BMP/data.yml new file mode 100644 index 0000000..d792912 --- /dev/null +++ b/data/CTR-BMP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000111600 + name: Maple Story 運命の少女 + updates: [] +- regions: + - KR + id: 00040000000E6000 + name: 메이플스토리 운명의 소녀 + updates: [] diff --git a/data/CTR-BMP/icon.jpg b/data/CTR-BMP/icon.jpg new file mode 100644 index 0000000..0992757 Binary files /dev/null and b/data/CTR-BMP/icon.jpg differ diff --git a/data/CTR-BMQ/art.jpg b/data/CTR-BMQ/art.jpg new file mode 100644 index 0000000..9777dc4 Binary files /dev/null and b/data/CTR-BMQ/art.jpg differ diff --git a/data/CTR-BMQ/data.yml b/data/CTR-BMQ/data.yml new file mode 100644 index 0000000..8e1a2d3 --- /dev/null +++ b/data/CTR-BMQ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000113400 + name: メダロット8 クワガタVer. + updates: + - id: 0004000E00113400 + name: 更新データ Ver. 1.1 メダロット8 クワガタVer. diff --git a/data/CTR-BMQ/icon.jpg b/data/CTR-BMQ/icon.jpg new file mode 100644 index 0000000..2e14f56 Binary files /dev/null and b/data/CTR-BMQ/icon.jpg differ diff --git a/data/CTR-BMT/art.jpg b/data/CTR-BMT/art.jpg new file mode 100644 index 0000000..3a0cbcd Binary files /dev/null and b/data/CTR-BMT/art.jpg differ diff --git a/data/CTR-BMT/data.yml b/data/CTR-BMT/data.yml new file mode 100644 index 0000000..18af642 --- /dev/null +++ b/data/CTR-BMT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000125000 + name: Me & my furry patients 3D + updates: [] diff --git a/data/CTR-BMT/icon.jpg b/data/CTR-BMT/icon.jpg new file mode 100644 index 0000000..0277521 Binary files /dev/null and b/data/CTR-BMT/icon.jpg differ diff --git a/data/CTR-BMV/art.jpg b/data/CTR-BMV/art.jpg new file mode 100644 index 0000000..f12b23e Binary files /dev/null and b/data/CTR-BMV/art.jpg differ diff --git a/data/CTR-BMV/data.yml b/data/CTR-BMV/data.yml new file mode 100644 index 0000000..621bdb0 --- /dev/null +++ b/data/CTR-BMV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000178000 + name: ドリームガール プルミエ + updates: + - id: 0004000E00178000 + name: 更新データ Ver. 1.2 ドリームガール プルミエ diff --git a/data/CTR-BMV/icon.jpg b/data/CTR-BMV/icon.jpg new file mode 100644 index 0000000..bf8748d Binary files /dev/null and b/data/CTR-BMV/icon.jpg differ diff --git a/data/CTR-BMZ/art.jpg b/data/CTR-BMZ/art.jpg new file mode 100644 index 0000000..166fdc1 Binary files /dev/null and b/data/CTR-BMZ/art.jpg differ diff --git a/data/CTR-BMZ/data.yml b/data/CTR-BMZ/data.yml new file mode 100644 index 0000000..55510ae --- /dev/null +++ b/data/CTR-BMZ/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001C5300 + name: 'Etrian Odyssey V: Beyond the Myth' + updates: [] +- regions: + - JP + id: 000400000018D000 + name: 世界樹の迷宮Ⅴ 長き神話の果て + updates: + - id: 0004000E0018D000 + name: 更新データ Ver. 1.1 世界樹の迷宮Ⅴ 長き神話の果て +- regions: + - US + id: 00040000001C5100 + name: 'Etrian Odyssey V: Beyond the Myth' + updates: [] diff --git a/data/CTR-BMZ/icon.jpg b/data/CTR-BMZ/icon.jpg new file mode 100644 index 0000000..ba26428 Binary files /dev/null and b/data/CTR-BMZ/icon.jpg differ diff --git a/data/CTR-BN3/art.jpg b/data/CTR-BN3/art.jpg new file mode 100644 index 0000000..4a3e575 Binary files /dev/null and b/data/CTR-BN3/art.jpg differ diff --git a/data/CTR-BN3/data.yml b/data/CTR-BN3/data.yml new file mode 100644 index 0000000..7c768bc --- /dev/null +++ b/data/CTR-BN3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AD000 + name: A列車で行こう3D NEO + updates: [] diff --git a/data/CTR-BN3/icon.jpg b/data/CTR-BN3/icon.jpg new file mode 100644 index 0000000..34f17e9 Binary files /dev/null and b/data/CTR-BN3/icon.jpg differ diff --git a/data/CTR-BNA/art.jpg b/data/CTR-BNA/art.jpg new file mode 100644 index 0000000..d86de07 Binary files /dev/null and b/data/CTR-BNA/art.jpg differ diff --git a/data/CTR-BNA/data.yml b/data/CTR-BNA/data.yml new file mode 100644 index 0000000..2ddd8cd --- /dev/null +++ b/data/CTR-BNA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000154E00 + name: ぼくは航空管制官 エアポート ヒーロー3D 成田 ALL STARS + updates: + - id: 0004000E00154E00 + name: 更新データ Ver. 1.1 ぼくは航空管制官 エアポートヒーロー3D 成田 ALL STARS diff --git a/data/CTR-BNA/icon.jpg b/data/CTR-BNA/icon.jpg new file mode 100644 index 0000000..fa12ac4 Binary files /dev/null and b/data/CTR-BNA/icon.jpg differ diff --git a/data/CTR-BNB/art.jpg b/data/CTR-BNB/art.jpg new file mode 100644 index 0000000..0e5b927 Binary files /dev/null and b/data/CTR-BNB/art.jpg differ diff --git a/data/CTR-BNB/data.yml b/data/CTR-BNB/data.yml new file mode 100644 index 0000000..ef9565f --- /dev/null +++ b/data/CTR-BNB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FB200 + name: 信長の野望 + updates: [] diff --git a/data/CTR-BNB/icon.jpg b/data/CTR-BNB/icon.jpg new file mode 100644 index 0000000..158f629 Binary files /dev/null and b/data/CTR-BNB/icon.jpg differ diff --git a/data/CTR-BNC/art.jpg b/data/CTR-BNC/art.jpg new file mode 100644 index 0000000..e6e0c27 Binary files /dev/null and b/data/CTR-BNC/art.jpg differ diff --git a/data/CTR-BNC/data.yml b/data/CTR-BNC/data.yml new file mode 100644 index 0000000..ec984df --- /dev/null +++ b/data/CTR-BNC/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015EE00 + name: Navy Commander + updates: [] +- regions: + - US + id: 0004000000160400 + name: Navy Commander + updates: [] diff --git a/data/CTR-BNC/icon.jpg b/data/CTR-BNC/icon.jpg new file mode 100644 index 0000000..10f814a Binary files /dev/null and b/data/CTR-BNC/icon.jpg differ diff --git a/data/CTR-BND/art.jpg b/data/CTR-BND/art.jpg new file mode 100644 index 0000000..951af79 Binary files /dev/null and b/data/CTR-BND/art.jpg differ diff --git a/data/CTR-BND/data.yml b/data/CTR-BND/data.yml new file mode 100644 index 0000000..e3d6f0f --- /dev/null +++ b/data/CTR-BND/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 0004000000164800 + name: Pokémon™ Sun + updates: + - id: 0004000E00164800 + name: Pokémon™ Sun Update Ver. 1.2 diff --git a/data/CTR-BND/icon.jpg b/data/CTR-BND/icon.jpg new file mode 100644 index 0000000..e4a0970 Binary files /dev/null and b/data/CTR-BND/icon.jpg differ diff --git a/data/CTR-BNE/art.jpg b/data/CTR-BNE/art.jpg new file mode 100644 index 0000000..2b194e1 Binary files /dev/null and b/data/CTR-BNE/art.jpg differ diff --git a/data/CTR-BNE/data.yml b/data/CTR-BNE/data.yml new file mode 100644 index 0000000..ff8aaec --- /dev/null +++ b/data/CTR-BNE/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 0004000000175E00 + name: Pokémon™ Moon + updates: + - id: 0004000E00175E00 + name: Pokémon™ Moon Update Ver. 1.2 diff --git a/data/CTR-BNE/icon.jpg b/data/CTR-BNE/icon.jpg new file mode 100644 index 0000000..55c90a3 Binary files /dev/null and b/data/CTR-BNE/icon.jpg differ diff --git a/data/CTR-BNF/art.jpg b/data/CTR-BNF/art.jpg new file mode 100644 index 0000000..8422b50 Binary files /dev/null and b/data/CTR-BNF/art.jpg differ diff --git a/data/CTR-BNF/data.yml b/data/CTR-BNF/data.yml new file mode 100644 index 0000000..a7aa582 --- /dev/null +++ b/data/CTR-BNF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001D0B00 + name: ネコ・トモ + updates: + - id: 0004000E001D0B00 + name: 更新データ Ver.1.0.4 ネコ・トモ diff --git a/data/CTR-BNF/icon.jpg b/data/CTR-BNF/icon.jpg new file mode 100644 index 0000000..91a1d57 Binary files /dev/null and b/data/CTR-BNF/icon.jpg differ diff --git a/data/CTR-BNG/art.jpg b/data/CTR-BNG/art.jpg new file mode 100644 index 0000000..3725153 Binary files /dev/null and b/data/CTR-BNG/art.jpg differ diff --git a/data/CTR-BNG/data.yml b/data/CTR-BNG/data.yml new file mode 100644 index 0000000..55e43d1 --- /dev/null +++ b/data/CTR-BNG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000105300 + name: バンダイナムコゲームス PRESENTS Jレジェンド列伝 + updates: [] diff --git a/data/CTR-BNG/icon.jpg b/data/CTR-BNG/icon.jpg new file mode 100644 index 0000000..64a26fe Binary files /dev/null and b/data/CTR-BNG/icon.jpg differ diff --git a/data/CTR-BNH/art.jpg b/data/CTR-BNH/art.jpg new file mode 100644 index 0000000..d7f0822 Binary files /dev/null and b/data/CTR-BNH/art.jpg differ diff --git a/data/CTR-BNH/data.yml b/data/CTR-BNH/data.yml new file mode 100644 index 0000000..9f75eed --- /dev/null +++ b/data/CTR-BNH/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001A1600 + name: 百ますドラ算 のび太のタイムバトル + updates: + - id: 0004000E001A1600 + name: 更新データ Ver. 1.1.0 百ますドラ算 のび太のタイムバトル diff --git a/data/CTR-BNH/icon.jpg b/data/CTR-BNH/icon.jpg new file mode 100644 index 0000000..be6e62f Binary files /dev/null and b/data/CTR-BNH/icon.jpg differ diff --git a/data/CTR-BNJ/art.jpg b/data/CTR-BNJ/art.jpg new file mode 100644 index 0000000..913de8f Binary files /dev/null and b/data/CTR-BNJ/art.jpg differ diff --git a/data/CTR-BNJ/data.yml b/data/CTR-BNJ/data.yml new file mode 100644 index 0000000..81c6f25 --- /dev/null +++ b/data/CTR-BNJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015E600 + name: ダウンタウン熱血時代劇 + updates: [] diff --git a/data/CTR-BNJ/icon.jpg b/data/CTR-BNJ/icon.jpg new file mode 100644 index 0000000..fb6ac40 Binary files /dev/null and b/data/CTR-BNJ/icon.jpg differ diff --git a/data/CTR-BNK/art.jpg b/data/CTR-BNK/art.jpg new file mode 100644 index 0000000..b825914 Binary files /dev/null and b/data/CTR-BNK/art.jpg differ diff --git a/data/CTR-BNK/data.yml b/data/CTR-BNK/data.yml new file mode 100644 index 0000000..2192a76 --- /dev/null +++ b/data/CTR-BNK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000144300 + name: ヒーローバンク2 + updates: + - id: 0004000E00144300 + name: 更新データ Ver. 1.1.0 ヒーローバンク2 diff --git a/data/CTR-BNK/icon.jpg b/data/CTR-BNK/icon.jpg new file mode 100644 index 0000000..425a1d4 Binary files /dev/null and b/data/CTR-BNK/icon.jpg differ diff --git a/data/CTR-BNL/art.jpg b/data/CTR-BNL/art.jpg new file mode 100644 index 0000000..fa819dd Binary files /dev/null and b/data/CTR-BNL/art.jpg differ diff --git a/data/CTR-BNL/data.yml b/data/CTR-BNL/data.yml new file mode 100644 index 0000000..689476f --- /dev/null +++ b/data/CTR-BNL/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001CA000 + name: ドラえもん のび太の宝島 + updates: + - id: 0004000E001CA000 + name: 更新データVer.1.1  ドラえもん のび太の宝島 diff --git a/data/CTR-BNL/icon.jpg b/data/CTR-BNL/icon.jpg new file mode 100644 index 0000000..f69d1f2 Binary files /dev/null and b/data/CTR-BNL/icon.jpg differ diff --git a/data/CTR-BNM/art.jpg b/data/CTR-BNM/art.jpg new file mode 100644 index 0000000..e862aa6 Binary files /dev/null and b/data/CTR-BNM/art.jpg differ diff --git a/data/CTR-BNM/data.yml b/data/CTR-BNM/data.yml new file mode 100644 index 0000000..c763653 --- /dev/null +++ b/data/CTR-BNM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000112900 + name: ドラえもん 新・のび太の大魔境 ~ペコと5人の探検隊~ + updates: [] diff --git a/data/CTR-BNM/icon.jpg b/data/CTR-BNM/icon.jpg new file mode 100644 index 0000000..6077da2 Binary files /dev/null and b/data/CTR-BNM/icon.jpg differ diff --git a/data/CTR-BNN/art.jpg b/data/CTR-BNN/art.jpg new file mode 100644 index 0000000..db8f759 Binary files /dev/null and b/data/CTR-BNN/art.jpg differ diff --git a/data/CTR-BNN/data.yml b/data/CTR-BNN/data.yml new file mode 100644 index 0000000..17a64b7 --- /dev/null +++ b/data/CTR-BNN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000018B400 + name: ドラえもん 新・のび太の日本誕生 + updates: [] diff --git a/data/CTR-BNN/icon.jpg b/data/CTR-BNN/icon.jpg new file mode 100644 index 0000000..3d30248 Binary files /dev/null and b/data/CTR-BNN/icon.jpg differ diff --git a/data/CTR-BNP/art.jpg b/data/CTR-BNP/art.jpg new file mode 100644 index 0000000..81f5a7f Binary files /dev/null and b/data/CTR-BNP/art.jpg differ diff --git a/data/CTR-BNP/data.yml b/data/CTR-BNP/data.yml new file mode 100644 index 0000000..9606731 --- /dev/null +++ b/data/CTR-BNP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000170400 + name: ニコ☆プチ ガールズランウェイ + updates: + - id: 0004000E00170400 + name: 更新データ Ver. 1.2.0 ニコ☆プチ ガールズランウェイ diff --git a/data/CTR-BNP/icon.jpg b/data/CTR-BNP/icon.jpg new file mode 100644 index 0000000..0068c06 Binary files /dev/null and b/data/CTR-BNP/icon.jpg differ diff --git a/data/CTR-BNU/art.jpg b/data/CTR-BNU/art.jpg new file mode 100644 index 0000000..1533ae6 Binary files /dev/null and b/data/CTR-BNU/art.jpg differ diff --git a/data/CTR-BNU/data.yml b/data/CTR-BNU/data.yml new file mode 100644 index 0000000..1327446 --- /dev/null +++ b/data/CTR-BNU/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000165800 + name: 'SENRAN KAGURA 2: Deep Crimson' + updates: [] +- regions: + - JP + id: 00040000000FB100 + name: 閃乱カグラ2 -真紅- + updates: + - id: 0004000E000FB100 + name: 更新データ Ver. 1.3 閃乱カグラ2 -真紅- +- regions: + - KR + id: 0004000000150200 + name: 섬란 카구라 2 -진홍- + updates: + - id: 0004000E00150200 + name: '업데이트 데이터 Ver. 1.1 섬란 카구라 2 -진홍- ' +- regions: + - US + id: 0004000000165000 + name: 'SENRAN KAGURA 2: Deep Crimson' + updates: [] diff --git a/data/CTR-BNU/icon.jpg b/data/CTR-BNU/icon.jpg new file mode 100644 index 0000000..8b976ea Binary files /dev/null and b/data/CTR-BNU/icon.jpg differ diff --git a/data/CTR-BNW/art.jpg b/data/CTR-BNW/art.jpg new file mode 100644 index 0000000..6b7e51d Binary files /dev/null and b/data/CTR-BNW/art.jpg differ diff --git a/data/CTR-BNW/data.yml b/data/CTR-BNW/data.yml new file mode 100644 index 0000000..5c14e7d --- /dev/null +++ b/data/CTR-BNW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000112800 + name: マギ 新たなる世界 + updates: [] diff --git a/data/CTR-BNW/icon.jpg b/data/CTR-BNW/icon.jpg new file mode 100644 index 0000000..8634cae Binary files /dev/null and b/data/CTR-BNW/icon.jpg differ diff --git a/data/CTR-BNY/art.jpg b/data/CTR-BNY/art.jpg new file mode 100644 index 0000000..66fe0c3 Binary files /dev/null and b/data/CTR-BNY/art.jpg differ diff --git a/data/CTR-BNY/data.yml b/data/CTR-BNY/data.yml new file mode 100644 index 0000000..5a34024 --- /dev/null +++ b/data/CTR-BNY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000170900 + name: 信長の野望2 + updates: [] diff --git a/data/CTR-BNY/icon.jpg b/data/CTR-BNY/icon.jpg new file mode 100644 index 0000000..2ca00ac Binary files /dev/null and b/data/CTR-BNY/icon.jpg differ diff --git a/data/CTR-BP2/art.jpg b/data/CTR-BP2/art.jpg new file mode 100644 index 0000000..7bdc9d4 Binary files /dev/null and b/data/CTR-BP2/art.jpg differ diff --git a/data/CTR-BP2/data.yml b/data/CTR-BP2/data.yml new file mode 100644 index 0000000..c9f60ed --- /dev/null +++ b/data/CTR-BP2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000105400 + name: プリティーリズムレインボーライブ きらきらマイ☆デザイン + updates: [] diff --git a/data/CTR-BP2/icon.jpg b/data/CTR-BP2/icon.jpg new file mode 100644 index 0000000..cb6fb62 Binary files /dev/null and b/data/CTR-BP2/icon.jpg differ diff --git a/data/CTR-BP3/art.jpg b/data/CTR-BP3/art.jpg new file mode 100644 index 0000000..58ea010 Binary files /dev/null and b/data/CTR-BP3/art.jpg differ diff --git a/data/CTR-BP3/data.yml b/data/CTR-BP3/data.yml new file mode 100644 index 0000000..a61f6e2 --- /dev/null +++ b/data/CTR-BP3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000018FE00 + name: SIMPLEシリーズ for 3DS Vol.3 THE密室からの脱出 アーカイブス2 + updates: [] diff --git a/data/CTR-BP3/icon.jpg b/data/CTR-BP3/icon.jpg new file mode 100644 index 0000000..314c853 Binary files /dev/null and b/data/CTR-BP3/icon.jpg differ diff --git a/data/CTR-BP4/art.jpg b/data/CTR-BP4/art.jpg new file mode 100644 index 0000000..0e55dc5 Binary files /dev/null and b/data/CTR-BP4/art.jpg differ diff --git a/data/CTR-BP4/data.yml b/data/CTR-BP4/data.yml new file mode 100644 index 0000000..9554bd8 --- /dev/null +++ b/data/CTR-BP4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AE600 + name: 100%パスカル先生 完璧ペイントボンバーズ + updates: [] diff --git a/data/CTR-BP4/icon.jpg b/data/CTR-BP4/icon.jpg new file mode 100644 index 0000000..63599b9 Binary files /dev/null and b/data/CTR-BP4/icon.jpg differ diff --git a/data/CTR-BP5/art.jpg b/data/CTR-BP5/art.jpg new file mode 100644 index 0000000..aca490e Binary files /dev/null and b/data/CTR-BP5/art.jpg differ diff --git a/data/CTR-BP5/data.yml b/data/CTR-BP5/data.yml new file mode 100644 index 0000000..597b11d --- /dev/null +++ b/data/CTR-BP5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000169E00 + name: プロ野球 ファミスタ リターンズ + updates: [] diff --git a/data/CTR-BP5/icon.jpg b/data/CTR-BP5/icon.jpg new file mode 100644 index 0000000..d045b39 Binary files /dev/null and b/data/CTR-BP5/icon.jpg differ diff --git a/data/CTR-BP6/art.jpg b/data/CTR-BP6/art.jpg new file mode 100644 index 0000000..cd584dd Binary files /dev/null and b/data/CTR-BP6/art.jpg differ diff --git a/data/CTR-BP6/data.yml b/data/CTR-BP6/data.yml new file mode 100644 index 0000000..fc53483 --- /dev/null +++ b/data/CTR-BP6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000190900 + name: ポムポムプリン コロコロ大冒険 + updates: [] diff --git a/data/CTR-BP6/icon.jpg b/data/CTR-BP6/icon.jpg new file mode 100644 index 0000000..53b6d4a Binary files /dev/null and b/data/CTR-BP6/icon.jpg differ diff --git a/data/CTR-BP7/art.jpg b/data/CTR-BP7/art.jpg new file mode 100644 index 0000000..ee39aa0 Binary files /dev/null and b/data/CTR-BP7/art.jpg differ diff --git a/data/CTR-BP7/data.yml b/data/CTR-BP7/data.yml new file mode 100644 index 0000000..e816f8b --- /dev/null +++ b/data/CTR-BP7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AA100 + name: プリパラ めざめよ!女神のドレスデザイン + updates: [] diff --git a/data/CTR-BP7/icon.jpg b/data/CTR-BP7/icon.jpg new file mode 100644 index 0000000..95c3109 Binary files /dev/null and b/data/CTR-BP7/icon.jpg differ diff --git a/data/CTR-BP8/art.jpg b/data/CTR-BP8/art.jpg new file mode 100644 index 0000000..3c5122b Binary files /dev/null and b/data/CTR-BP8/art.jpg differ diff --git a/data/CTR-BP8/data.yml b/data/CTR-BP8/data.yml new file mode 100644 index 0000000..6673772 --- /dev/null +++ b/data/CTR-BP8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000181100 + name: シャンティ -海賊の呪い- + updates: [] diff --git a/data/CTR-BP8/icon.jpg b/data/CTR-BP8/icon.jpg new file mode 100644 index 0000000..d013912 Binary files /dev/null and b/data/CTR-BP8/icon.jpg differ diff --git a/data/CTR-BP9/art.jpg b/data/CTR-BP9/art.jpg new file mode 100644 index 0000000..1f2c487 Binary files /dev/null and b/data/CTR-BP9/art.jpg differ diff --git a/data/CTR-BP9/data.yml b/data/CTR-BP9/data.yml new file mode 100644 index 0000000..4724902 --- /dev/null +++ b/data/CTR-BP9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014A500 + name: Horse Vet 3D + updates: [] diff --git a/data/CTR-BP9/icon.jpg b/data/CTR-BP9/icon.jpg new file mode 100644 index 0000000..c208e5a Binary files /dev/null and b/data/CTR-BP9/icon.jpg differ diff --git a/data/CTR-BPA/art.jpg b/data/CTR-BPA/art.jpg new file mode 100644 index 0000000..b19e7f6 Binary files /dev/null and b/data/CTR-BPA/art.jpg differ diff --git a/data/CTR-BPA/data.yml b/data/CTR-BPA/data.yml new file mode 100644 index 0000000..35ad9b4 --- /dev/null +++ b/data/CTR-BPA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015E800 + name: プリパラ&プリティーリズム プリパラおしゃれアイテム1450! + updates: + - id: 0004000E0015E800 + name: 更新データ Ver. 1.1.0  プリパラ&プリティーリズム 1450! diff --git a/data/CTR-BPA/icon.jpg b/data/CTR-BPA/icon.jpg new file mode 100644 index 0000000..c2674be Binary files /dev/null and b/data/CTR-BPA/icon.jpg differ diff --git a/data/CTR-BPC/art.jpg b/data/CTR-BPC/art.jpg new file mode 100644 index 0000000..c60e39e Binary files /dev/null and b/data/CTR-BPC/art.jpg differ diff --git a/data/CTR-BPC/data.yml b/data/CTR-BPC/data.yml new file mode 100644 index 0000000..3b92c86 --- /dev/null +++ b/data/CTR-BPC/data.yml @@ -0,0 +1,31 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000D0900 + name: Pokémon™ Art Academy™ + updates: + - id: 0004000E000D0900 + name: 'Pokémon™ Art Academy™: Update' +- regions: + - JP + id: 00040000000CF900 + name: ポケモンアートアカデミー + updates: + - id: 0004000E000CF900 + name: 更新データ Ver. 1.1 ポケモンアートアカデミー +- regions: + - KR + id: 0004000000150B00 + name: 포켓몬 아트 아카데미 + updates: [] +- regions: + - TW + id: 0004000000151F00 + name: Pokémon Art Academy(英文版) + updates: [] +- regions: + - US + id: 00040000000D0A00 + name: Pokémon™ Art Academy™ + updates: [] diff --git a/data/CTR-BPC/icon.jpg b/data/CTR-BPC/icon.jpg new file mode 100644 index 0000000..78644cc Binary files /dev/null and b/data/CTR-BPC/icon.jpg differ diff --git a/data/CTR-BPJ/art.jpg b/data/CTR-BPJ/art.jpg new file mode 100644 index 0000000..ad63c54 Binary files /dev/null and b/data/CTR-BPJ/art.jpg differ diff --git a/data/CTR-BPJ/data.yml b/data/CTR-BPJ/data.yml new file mode 100644 index 0000000..0aca7d3 --- /dev/null +++ b/data/CTR-BPJ/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018A500 + name: Rhythm Paradise™ Megamix + updates: [] +- regions: + - JP + id: 0004000000155A00 + name: リズム天国 ザ・ベスト+ + updates: [] +- regions: + - KR + id: 000400000018A600 + name: 리듬 세상 더 베스트 플러스 + updates: [] +- regions: + - US + id: 000400000018A400 + name: Rhythm Heaven™ Megamix + updates: [] diff --git a/data/CTR-BPJ/icon.jpg b/data/CTR-BPJ/icon.jpg new file mode 100644 index 0000000..7c051c9 Binary files /dev/null and b/data/CTR-BPJ/icon.jpg differ diff --git a/data/CTR-BPK/art.jpg b/data/CTR-BPK/art.jpg new file mode 100644 index 0000000..428f65f Binary files /dev/null and b/data/CTR-BPK/art.jpg differ diff --git a/data/CTR-BPK/data.yml b/data/CTR-BPK/data.yml new file mode 100644 index 0000000..df669db --- /dev/null +++ b/data/CTR-BPK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000017D400 + name: ぼくは航空管制官 エアポート ヒーロー3D 関空 ALL STARS + updates: [] diff --git a/data/CTR-BPK/icon.jpg b/data/CTR-BPK/icon.jpg new file mode 100644 index 0000000..50c09cb Binary files /dev/null and b/data/CTR-BPK/icon.jpg differ diff --git a/data/CTR-BPL/art.jpg b/data/CTR-BPL/art.jpg new file mode 100644 index 0000000..b3447fb Binary files /dev/null and b/data/CTR-BPL/art.jpg differ diff --git a/data/CTR-BPL/data.yml b/data/CTR-BPL/data.yml new file mode 100644 index 0000000..445a8ac --- /dev/null +++ b/data/CTR-BPL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000168E00 + name: 'Paddington™: Adventures in London' + updates: [] +- regions: + - US + id: 000400000016B900 + name: 'Paddington™: Adventures in London' + updates: [] diff --git a/data/CTR-BPL/icon.jpg b/data/CTR-BPL/icon.jpg new file mode 100644 index 0000000..3d52028 Binary files /dev/null and b/data/CTR-BPL/icon.jpg differ diff --git a/data/CTR-BPM/art.jpg b/data/CTR-BPM/art.jpg new file mode 100644 index 0000000..da1b4a4 Binary files /dev/null and b/data/CTR-BPM/art.jpg differ diff --git a/data/CTR-BPM/data.yml b/data/CTR-BPM/data.yml new file mode 100644 index 0000000..78d5179 --- /dev/null +++ b/data/CTR-BPM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000013A000 + name: パックワールド2 + updates: [] +- regions: + - US + id: 0004000000135F00 + name: PAC-MAN™ and the Ghostly Adventures 2 + updates: [] diff --git a/data/CTR-BPM/icon.jpg b/data/CTR-BPM/icon.jpg new file mode 100644 index 0000000..9db9d3e Binary files /dev/null and b/data/CTR-BPM/icon.jpg differ diff --git a/data/CTR-BPP/art.jpg b/data/CTR-BPP/art.jpg new file mode 100644 index 0000000..2de5350 Binary files /dev/null and b/data/CTR-BPP/art.jpg differ diff --git a/data/CTR-BPP/data.yml b/data/CTR-BPP/data.yml new file mode 100644 index 0000000..80accc4 --- /dev/null +++ b/data/CTR-BPP/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000188F00 + name: 'Return to PopoloCrois: STORY OF SEASONS Fairytale' + updates: [] +- regions: + - JP + id: 00040000000F3F00 + name: ポポロクロイス牧場物語 + updates: + - id: 0004000E000F3F00 + name: 更新データ Ver. 2.0.0 ポポロクロイス牧場物語 +- regions: + - US + id: 000400000018CC00 + name: 'Return to PopoloCrois: A STORY OF SEASONS Fairytale' + updates: [] diff --git a/data/CTR-BPP/icon.jpg b/data/CTR-BPP/icon.jpg new file mode 100644 index 0000000..c10fc8d Binary files /dev/null and b/data/CTR-BPP/icon.jpg differ diff --git a/data/CTR-BPQ/art.jpg b/data/CTR-BPQ/art.jpg new file mode 100644 index 0000000..0e3ab2f Binary files /dev/null and b/data/CTR-BPQ/art.jpg differ diff --git a/data/CTR-BPQ/data.yml b/data/CTR-BPQ/data.yml new file mode 100644 index 0000000..124c224 --- /dev/null +++ b/data/CTR-BPQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000E8600 + name: ドキドキ!プリキュア なりきりライフ! + updates: [] diff --git a/data/CTR-BPQ/icon.jpg b/data/CTR-BPQ/icon.jpg new file mode 100644 index 0000000..f584934 Binary files /dev/null and b/data/CTR-BPQ/icon.jpg differ diff --git a/data/CTR-BPS/art.jpg b/data/CTR-BPS/art.jpg new file mode 100644 index 0000000..0568e2d Binary files /dev/null and b/data/CTR-BPS/art.jpg differ diff --git a/data/CTR-BPS/data.yml b/data/CTR-BPS/data.yml new file mode 100644 index 0000000..4027e44 --- /dev/null +++ b/data/CTR-BPS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000011D600 + name: PIKMIN Short Movies 3D + updates: [] +- regions: + - JP + id: 000400000011D400 + name: PIKMIN Short Movies 3D + updates: [] +- regions: + - US + id: 000400000011D500 + name: Pikmin™ Short Movies 3D + updates: [] diff --git a/data/CTR-BPS/icon.jpg b/data/CTR-BPS/icon.jpg new file mode 100644 index 0000000..e5ece25 Binary files /dev/null and b/data/CTR-BPS/icon.jpg differ diff --git a/data/CTR-BPT/art.jpg b/data/CTR-BPT/art.jpg new file mode 100644 index 0000000..5cc3301 Binary files /dev/null and b/data/CTR-BPT/art.jpg differ diff --git a/data/CTR-BPT/data.yml b/data/CTR-BPT/data.yml new file mode 100644 index 0000000..913b790 --- /dev/null +++ b/data/CTR-BPT/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000101200 + name: ぷよぷよテトリス + updates: + - id: 0004000E00101200 + name: 更新データ Ver. 1.1 ぷよぷよテトリス diff --git a/data/CTR-BPT/icon.jpg b/data/CTR-BPT/icon.jpg new file mode 100644 index 0000000..06849c6 Binary files /dev/null and b/data/CTR-BPT/icon.jpg differ diff --git a/data/CTR-BPU/art.jpg b/data/CTR-BPU/art.jpg new file mode 100644 index 0000000..669928e Binary files /dev/null and b/data/CTR-BPU/art.jpg differ diff --git a/data/CTR-BPU/data.yml b/data/CTR-BPU/data.yml new file mode 100644 index 0000000..257b947 --- /dev/null +++ b/data/CTR-BPU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000197500 + name: ぷよぷよクロニクル + updates: [] diff --git a/data/CTR-BPU/icon.jpg b/data/CTR-BPU/icon.jpg new file mode 100644 index 0000000..c35bae2 Binary files /dev/null and b/data/CTR-BPU/icon.jpg differ diff --git a/data/CTR-BPV/art.jpg b/data/CTR-BPV/art.jpg new file mode 100644 index 0000000..b3b7e91 Binary files /dev/null and b/data/CTR-BPV/art.jpg differ diff --git a/data/CTR-BPV/data.yml b/data/CTR-BPV/data.yml new file mode 100644 index 0000000..ca800b6 --- /dev/null +++ b/data/CTR-BPV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000182E00 + name: パズドラクロス 龍の章 + updates: + - id: 0004000E00182E00 + name: 更新データ Ver. 4.0 パズドラクロス 龍の章 diff --git a/data/CTR-BPV/icon.jpg b/data/CTR-BPV/icon.jpg new file mode 100644 index 0000000..4df016a Binary files /dev/null and b/data/CTR-BPV/icon.jpg differ diff --git a/data/CTR-BPW/art.jpg b/data/CTR-BPW/art.jpg new file mode 100644 index 0000000..fa61e5f Binary files /dev/null and b/data/CTR-BPW/art.jpg differ diff --git a/data/CTR-BPW/data.yml b/data/CTR-BPW/data.yml new file mode 100644 index 0000000..707c441 --- /dev/null +++ b/data/CTR-BPW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000182F00 + name: パズドラクロス 神の章 + updates: + - id: 0004000E00182F00 + name: 更新データ Ver. 4.0 パズドラクロス 神の章 diff --git a/data/CTR-BPW/icon.jpg b/data/CTR-BPW/icon.jpg new file mode 100644 index 0000000..41e384f Binary files /dev/null and b/data/CTR-BPW/icon.jpg differ diff --git a/data/CTR-BPX/art.jpg b/data/CTR-BPX/art.jpg new file mode 100644 index 0000000..97443d5 Binary files /dev/null and b/data/CTR-BPX/art.jpg differ diff --git a/data/CTR-BPX/data.yml b/data/CTR-BPX/data.yml new file mode 100644 index 0000000..edb3b0a --- /dev/null +++ b/data/CTR-BPX/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000174400 + name: Pokémon™ Super Mystery Dungeon + updates: + - id: 0004000E00174400 + name: 'Pokémon™ Super Mystery Dungeon: Update' +- regions: + - JP + id: 0004000000149B00 + name: ポケモン超不思議のダンジョン + updates: + - id: 0004000E00149B00 + name: 更新データ ポケモン超不思議のダンジョン +- regions: + - US + id: 0004000000174600 + name: Pokémon™ Super Mystery Dungeon + updates: + - id: 0004000E00174600 + name: Pokémon™ Super Mystery Dungeon Update Ver. diff --git a/data/CTR-BPX/icon.jpg b/data/CTR-BPX/icon.jpg new file mode 100644 index 0000000..5c4c2d0 Binary files /dev/null and b/data/CTR-BPX/icon.jpg differ diff --git a/data/CTR-BPY/art.jpg b/data/CTR-BPY/art.jpg new file mode 100644 index 0000000..a551d0f Binary files /dev/null and b/data/CTR-BPY/art.jpg differ diff --git a/data/CTR-BPY/data.yml b/data/CTR-BPY/data.yml new file mode 100644 index 0000000..ad74932 --- /dev/null +++ b/data/CTR-BPY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001A7400 + name: 実況パワフルプロ野球 ヒーローズ + updates: [] diff --git a/data/CTR-BPY/icon.jpg b/data/CTR-BPY/icon.jpg new file mode 100644 index 0000000..57fe934 Binary files /dev/null and b/data/CTR-BPY/icon.jpg differ diff --git a/data/CTR-BPZ/art.jpg b/data/CTR-BPZ/art.jpg new file mode 100644 index 0000000..67dd04f Binary files /dev/null and b/data/CTR-BPZ/art.jpg differ diff --git a/data/CTR-BPZ/data.yml b/data/CTR-BPZ/data.yml new file mode 100644 index 0000000..e91190e --- /dev/null +++ b/data/CTR-BPZ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000154B00 + name: Pazuru + updates: [] +- regions: + - US + id: 0004000000154C00 + name: Pazuru + updates: [] diff --git a/data/CTR-BPZ/icon.jpg b/data/CTR-BPZ/icon.jpg new file mode 100644 index 0000000..96782f0 Binary files /dev/null and b/data/CTR-BPZ/icon.jpg differ diff --git a/data/CTR-BQ8/art.jpg b/data/CTR-BQ8/art.jpg new file mode 100644 index 0000000..9f1a717 Binary files /dev/null and b/data/CTR-BQ8/art.jpg differ diff --git a/data/CTR-BQ8/data.yml b/data/CTR-BQ8/data.yml new file mode 100644 index 0000000..d332bc0 --- /dev/null +++ b/data/CTR-BQ8/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000018F200 + name: 'Dragon Quest® VIII: Journey of the Cursed King' + updates: [] +- regions: + - JP + id: 000400000015CD00 + name: ドラゴンクエストⅧ 空と海と大地と呪われし姫君 + updates: [] +- regions: + - KR + id: 0004000000198500 + name: 'Dragon Quest VIII: Journey of the Cursed King' + updates: [] +- regions: + - US + id: 000400000018F100 + name: 'Dragon Quest® VIII: Journey of the Cursed King' + updates: [] diff --git a/data/CTR-BQ8/icon.jpg b/data/CTR-BQ8/icon.jpg new file mode 100644 index 0000000..8ee3f38 Binary files /dev/null and b/data/CTR-BQ8/icon.jpg differ diff --git a/data/CTR-BQR/art.jpg b/data/CTR-BQR/art.jpg new file mode 100644 index 0000000..3472eda Binary files /dev/null and b/data/CTR-BQR/art.jpg differ diff --git a/data/CTR-BQR/data.yml b/data/CTR-BQR/data.yml new file mode 100644 index 0000000..7b471ac --- /dev/null +++ b/data/CTR-BQR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015EA00 + name: トライブクルクル THE G@ME + updates: [] diff --git a/data/CTR-BQR/icon.jpg b/data/CTR-BQR/icon.jpg new file mode 100644 index 0000000..fa679c7 Binary files /dev/null and b/data/CTR-BQR/icon.jpg differ diff --git a/data/CTR-BR2/art.jpg b/data/CTR-BR2/art.jpg new file mode 100644 index 0000000..10bbb95 Binary files /dev/null and b/data/CTR-BR2/art.jpg differ diff --git a/data/CTR-BR2/data.yml b/data/CTR-BR2/data.yml new file mode 100644 index 0000000..c3c58c3 --- /dev/null +++ b/data/CTR-BR2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D7200 + name: RTO 2 + updates: [] +- regions: + - US + id: 00040000001D7300 + name: RTO 2 + updates: [] diff --git a/data/CTR-BR2/icon.jpg b/data/CTR-BR2/icon.jpg new file mode 100644 index 0000000..4000c01 Binary files /dev/null and b/data/CTR-BR2/icon.jpg differ diff --git a/data/CTR-BR3/art.jpg b/data/CTR-BR3/art.jpg new file mode 100644 index 0000000..e6bb734 Binary files /dev/null and b/data/CTR-BR3/art.jpg differ diff --git a/data/CTR-BR3/data.yml b/data/CTR-BR3/data.yml new file mode 100644 index 0000000..5474a64 --- /dev/null +++ b/data/CTR-BR3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000112600 + name: 'Cut the Rope®: Triple Treat' + updates: [] diff --git a/data/CTR-BR3/icon.jpg b/data/CTR-BR3/icon.jpg new file mode 100644 index 0000000..2ac03aa Binary files /dev/null and b/data/CTR-BR3/icon.jpg differ diff --git a/data/CTR-BRA/art.jpg b/data/CTR-BRA/art.jpg new file mode 100644 index 0000000..d917433 Binary files /dev/null and b/data/CTR-BRA/art.jpg differ diff --git a/data/CTR-BRA/data.yml b/data/CTR-BRA/data.yml new file mode 100644 index 0000000..278a714 --- /dev/null +++ b/data/CTR-BRA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015CB00 + name: 新・ロロナのアトリエ はじまりの 物語 ~アーランドの錬金術士~ + updates: + - id: 0004000E0015CB00 + name: 更新データ Ver. 1.0.1 新・ロロナのアトリエ はじまりの物語 ~アーランドの錬金術士~ diff --git a/data/CTR-BRA/icon.jpg b/data/CTR-BRA/icon.jpg new file mode 100644 index 0000000..52f73e0 Binary files /dev/null and b/data/CTR-BRA/icon.jpg differ diff --git a/data/CTR-BRB/art.jpg b/data/CTR-BRB/art.jpg new file mode 100644 index 0000000..9a9a4af Binary files /dev/null and b/data/CTR-BRB/art.jpg differ diff --git a/data/CTR-BRB/data.yml b/data/CTR-BRB/data.yml new file mode 100644 index 0000000..65c4184 --- /dev/null +++ b/data/CTR-BRB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CD900 + name: 'Radiant Historia: Perfect Chronology' + updates: [] +- regions: + - JP + id: 00040000001A0C00 + name: ラジアントヒストリア パーフェクトクロノロジー + updates: [] +- regions: + - US + id: 00040000001C8F00 + name: 'Radiant Historia: Perfect Chronology' + updates: [] diff --git a/data/CTR-BRB/icon.jpg b/data/CTR-BRB/icon.jpg new file mode 100644 index 0000000..30bf007 Binary files /dev/null and b/data/CTR-BRB/icon.jpg differ diff --git a/data/CTR-BRC/art.jpg b/data/CTR-BRC/art.jpg new file mode 100644 index 0000000..ca13644 Binary files /dev/null and b/data/CTR-BRC/art.jpg differ diff --git a/data/CTR-BRC/data.yml b/data/CTR-BRC/data.yml new file mode 100644 index 0000000..2ec5265 --- /dev/null +++ b/data/CTR-BRC/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001AF800 + name: Hey! Pikmin™ + updates: [] +- regions: + - JP + id: 00040000001A9200 + name: Hey! ピクミン + updates: [] +- regions: + - KR + id: 00040000001C5600 + name: Hey! PIKMIN(헤이! 피크민) + updates: [] +- regions: + - US + id: 00040000001AFA00 + name: Hey! Pikmin + updates: [] diff --git a/data/CTR-BRC/icon.jpg b/data/CTR-BRC/icon.jpg new file mode 100644 index 0000000..cdc7eab Binary files /dev/null and b/data/CTR-BRC/icon.jpg differ diff --git a/data/CTR-BRD/art.jpg b/data/CTR-BRD/art.jpg new file mode 100644 index 0000000..57d630a Binary files /dev/null and b/data/CTR-BRD/art.jpg differ diff --git a/data/CTR-BRD/data.yml b/data/CTR-BRD/data.yml new file mode 100644 index 0000000..4776dbf --- /dev/null +++ b/data/CTR-BRD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000DBC00 + name: ワンピース ROMANCE DAWN 冒険の夜明け + updates: [] diff --git a/data/CTR-BRD/icon.jpg b/data/CTR-BRD/icon.jpg new file mode 100644 index 0000000..f8cc20d Binary files /dev/null and b/data/CTR-BRD/icon.jpg differ diff --git a/data/CTR-BRE/art.jpg b/data/CTR-BRE/art.jpg new file mode 100644 index 0000000..3754902 Binary files /dev/null and b/data/CTR-BRE/art.jpg differ diff --git a/data/CTR-BRE/data.yml b/data/CTR-BRE/data.yml new file mode 100644 index 0000000..5c0b50a --- /dev/null +++ b/data/CTR-BRE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000144100 + name: 謎解きバトルTORE! 伝説の魔宮を復活させよ! + updates: [] diff --git a/data/CTR-BRE/icon.jpg b/data/CTR-BRE/icon.jpg new file mode 100644 index 0000000..48ddc73 Binary files /dev/null and b/data/CTR-BRE/icon.jpg differ diff --git a/data/CTR-BRG/art.jpg b/data/CTR-BRG/art.jpg new file mode 100644 index 0000000..2111111 Binary files /dev/null and b/data/CTR-BRG/art.jpg differ diff --git a/data/CTR-BRG/data.yml b/data/CTR-BRG/data.yml new file mode 100644 index 0000000..c7c5689 --- /dev/null +++ b/data/CTR-BRG/data.yml @@ -0,0 +1,29 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000018C100 + name: Langrisser Re:Incarnation -TENSEI- + updates: [] +- regions: + - JP + id: 000400000015E700 + name: ラングリッサー リインカーネーション -転生- + updates: + - id: 0004000E0015E700 + name: 更新データ Ver. 1.1 ラングリッサー リインカーネーション -転生- +- regions: + - KR + id: 000400000018E500 + name: Langrisser Re:Incarnation -TENSEI- + updates: [] +- regions: + - TW + id: 000400000018BF00 + name: Langrisser Re:Incarnation -TENSEI- (英文版) + updates: [] +- regions: + - US + id: 0004000000187F00 + name: Langrisser Re:Incarnation -TENSEI- + updates: [] diff --git a/data/CTR-BRG/icon.jpg b/data/CTR-BRG/icon.jpg new file mode 100644 index 0000000..9e451b0 Binary files /dev/null and b/data/CTR-BRG/icon.jpg differ diff --git a/data/CTR-BRM/art.jpg b/data/CTR-BRM/art.jpg new file mode 100644 index 0000000..f6a3622 Binary files /dev/null and b/data/CTR-BRM/art.jpg differ diff --git a/data/CTR-BRM/data.yml b/data/CTR-BRM/data.yml new file mode 100644 index 0000000..76f7a67 --- /dev/null +++ b/data/CTR-BRM/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B9000 + name: "Mario & Luigi™: Superstar Saga + Bowser's Minions" + updates: [] +- regions: + - JP + id: 0004000000194B00 + name: マリオ&ルイージRPG1 DX + updates: [] +- regions: + - KR + id: 00040000001C4F00 + name: 마리오&루이지 RPG 1 DX + updates: [] +- regions: + - TW + - US + id: 00040000001B8F00 + name: 'Mario and Luigi: Superstar Saga + Bowser’s Minions' + updates: [] diff --git a/data/CTR-BRM/icon.jpg b/data/CTR-BRM/icon.jpg new file mode 100644 index 0000000..52c4b01 Binary files /dev/null and b/data/CTR-BRM/icon.jpg differ diff --git a/data/CTR-BRP/art.jpg b/data/CTR-BRP/art.jpg new file mode 100644 index 0000000..02ab38a Binary files /dev/null and b/data/CTR-BRP/art.jpg differ diff --git a/data/CTR-BRP/data.yml b/data/CTR-BRP/data.yml new file mode 100644 index 0000000..a13f51e --- /dev/null +++ b/data/CTR-BRP/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B9D00 + name: RPG Maker Fes + updates: + - id: 0004000E001B9D00 + name: 'RPG Maker Fes: Update' +- regions: + - JP + id: 000400000018B300 + name: RPGツクール フェス + updates: + - id: 0004000E0018B300 + name: 更新データ Ver. 1.1.4 RPGツクール フェス +- regions: + - US + id: 00040000001BD500 + name: RPG Maker Fes + updates: + - id: 0004000E001BD500 + name: RPG Maker Fes Update Ver. 1.1.5 diff --git a/data/CTR-BRP/icon.jpg b/data/CTR-BRP/icon.jpg new file mode 100644 index 0000000..2c69ffa Binary files /dev/null and b/data/CTR-BRP/icon.jpg differ diff --git a/data/CTR-BRS/art.jpg b/data/CTR-BRS/art.jpg new file mode 100644 index 0000000..ae88009 Binary files /dev/null and b/data/CTR-BRS/art.jpg differ diff --git a/data/CTR-BRS/data.yml b/data/CTR-BRS/data.yml new file mode 100644 index 0000000..a3e3ae4 --- /dev/null +++ b/data/CTR-BRS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000152800 + name: 雷子 + updates: [] diff --git a/data/CTR-BRS/icon.jpg b/data/CTR-BRS/icon.jpg new file mode 100644 index 0000000..b1f0c5d Binary files /dev/null and b/data/CTR-BRS/icon.jpg differ diff --git a/data/CTR-BRW/art.jpg b/data/CTR-BRW/art.jpg new file mode 100644 index 0000000..b7e790b Binary files /dev/null and b/data/CTR-BRW/art.jpg differ diff --git a/data/CTR-BRW/data.yml b/data/CTR-BRW/data.yml new file mode 100644 index 0000000..bf9d574 --- /dev/null +++ b/data/CTR-BRW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000195100 + name: 'Cartoon Network: Battle Crashers' + updates: [] +- regions: + - US + id: 0004000000192000 + name: 'Cartoon Network: Battle Crashers' + updates: [] diff --git a/data/CTR-BRW/icon.jpg b/data/CTR-BRW/icon.jpg new file mode 100644 index 0000000..cd38575 Binary files /dev/null and b/data/CTR-BRW/icon.jpg differ diff --git a/data/CTR-BRX/art.jpg b/data/CTR-BRX/art.jpg new file mode 100644 index 0000000..0aeb4d3 Binary files /dev/null and b/data/CTR-BRX/art.jpg differ diff --git a/data/CTR-BRX/data.yml b/data/CTR-BRX/data.yml new file mode 100644 index 0000000..e3e6053 --- /dev/null +++ b/data/CTR-BRX/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000148900 + name: 'Hatsune Miku: Project Mirai DX' + updates: [] +- regions: + - JP + id: 000400000014A800 + name: 初音ミク Project mirai でらっくす + updates: [] +- regions: + - KR + id: 0004000000153100 + name: Hatsune Miku Project mirai DX + updates: [] +- regions: + - US + id: 0004000000148C00 + name: 'Hatsune Miku: Project Mirai DX' + updates: [] diff --git a/data/CTR-BRX/icon.jpg b/data/CTR-BRX/icon.jpg new file mode 100644 index 0000000..f67a3bc Binary files /dev/null and b/data/CTR-BRX/icon.jpg differ diff --git a/data/CTR-BS2/art.jpg b/data/CTR-BS2/art.jpg new file mode 100644 index 0000000..f291235 Binary files /dev/null and b/data/CTR-BS2/art.jpg differ diff --git a/data/CTR-BS2/data.yml b/data/CTR-BS2/data.yml new file mode 100644 index 0000000..ace3552 --- /dev/null +++ b/data/CTR-BS2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FA600 + name: ソニプロ + updates: [] diff --git a/data/CTR-BS2/icon.jpg b/data/CTR-BS2/icon.jpg new file mode 100644 index 0000000..4b975e8 Binary files /dev/null and b/data/CTR-BS2/icon.jpg differ diff --git a/data/CTR-BS3/art.jpg b/data/CTR-BS3/art.jpg new file mode 100644 index 0000000..3a0f1d6 Binary files /dev/null and b/data/CTR-BS3/art.jpg differ diff --git a/data/CTR-BS3/data.yml b/data/CTR-BS3/data.yml new file mode 100644 index 0000000..dc878a7 --- /dev/null +++ b/data/CTR-BS3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017C700 + name: Stella Glow + updates: [] +- regions: + - JP + id: 0004000000144500 + name: STELLA GLOW + updates: [] +- regions: + - US + id: 0004000000173700 + name: Stella Glow + updates: [] diff --git a/data/CTR-BS3/icon.jpg b/data/CTR-BS3/icon.jpg new file mode 100644 index 0000000..308530d Binary files /dev/null and b/data/CTR-BS3/icon.jpg differ diff --git a/data/CTR-BS5/art.jpg b/data/CTR-BS5/art.jpg new file mode 100644 index 0000000..566bb93 Binary files /dev/null and b/data/CTR-BS5/art.jpg differ diff --git a/data/CTR-BS5/data.yml b/data/CTR-BS5/data.yml new file mode 100644 index 0000000..8a268b0 --- /dev/null +++ b/data/CTR-BS5/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000015E300 + name: ドラえもん のび太の 宇宙英雄記(スペースヒーローズ) + updates: + - id: 0004000E0015E300 + name: 更新データ Ver. 1.0.1 ドラえもん のび太の宇宙英雄記(スペースヒーローズ) diff --git a/data/CTR-BS5/icon.jpg b/data/CTR-BS5/icon.jpg new file mode 100644 index 0000000..23e8ca5 Binary files /dev/null and b/data/CTR-BS5/icon.jpg differ diff --git a/data/CTR-BS6/art.jpg b/data/CTR-BS6/art.jpg new file mode 100644 index 0000000..b25f7a6 Binary files /dev/null and b/data/CTR-BS6/art.jpg differ diff --git a/data/CTR-BS6/data.yml b/data/CTR-BS6/data.yml new file mode 100644 index 0000000..6f95239 --- /dev/null +++ b/data/CTR-BS6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000164700 + name: 'Sonic Boom™: Fire & Ice' + updates: [] +- regions: + - JP + id: 0004000000170700 + name: ソニックトゥーン ファイアー&アイス + updates: [] +- regions: + - US + id: 0004000000161300 + name: 'Sonic Boom™: Fire & Ice' + updates: [] diff --git a/data/CTR-BS6/icon.jpg b/data/CTR-BS6/icon.jpg new file mode 100644 index 0000000..3277c53 Binary files /dev/null and b/data/CTR-BS6/icon.jpg differ diff --git a/data/CTR-BS7/art.jpg b/data/CTR-BS7/art.jpg new file mode 100644 index 0000000..7e7d325 Binary files /dev/null and b/data/CTR-BS7/art.jpg differ diff --git a/data/CTR-BS7/data.yml b/data/CTR-BS7/data.yml new file mode 100644 index 0000000..428b54d --- /dev/null +++ b/data/CTR-BS7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014F800 + name: 七つの大罪 真実の冤罪 + updates: [] diff --git a/data/CTR-BS7/icon.jpg b/data/CTR-BS7/icon.jpg new file mode 100644 index 0000000..53c5428 Binary files /dev/null and b/data/CTR-BS7/icon.jpg differ diff --git a/data/CTR-BS8/art.jpg b/data/CTR-BS8/art.jpg new file mode 100644 index 0000000..6215436 Binary files /dev/null and b/data/CTR-BS8/art.jpg differ diff --git a/data/CTR-BS8/data.yml b/data/CTR-BS8/data.yml new file mode 100644 index 0000000..f32b59c --- /dev/null +++ b/data/CTR-BS8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B9500 + name: 'Cooking Mama: Sweet Shop' + updates: [] +- regions: + - JP + id: 000400000014FA00 + name: クッキングママ :わたしのスイーツショップ + updates: [] +- regions: + - US + id: 00040000001B9C00 + name: 'Cooking Mama: Sweet Shop' + updates: [] diff --git a/data/CTR-BS8/icon.jpg b/data/CTR-BS8/icon.jpg new file mode 100644 index 0000000..941542c Binary files /dev/null and b/data/CTR-BS8/icon.jpg differ diff --git a/data/CTR-BS9/art.jpg b/data/CTR-BS9/art.jpg new file mode 100644 index 0000000..1c21a39 Binary files /dev/null and b/data/CTR-BS9/art.jpg differ diff --git a/data/CTR-BS9/data.yml b/data/CTR-BS9/data.yml new file mode 100644 index 0000000..c00838e --- /dev/null +++ b/data/CTR-BS9/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - EU + id: 000400000013BE00 + name: Skylanders Trap Team™ + updates: [] +- regions: + - US + id: 0004000000131200 + name: Skylanders Trap Team™ + updates: [] diff --git a/data/CTR-BS9/icon.jpg b/data/CTR-BS9/icon.jpg new file mode 100644 index 0000000..b1bafa0 Binary files /dev/null and b/data/CTR-BS9/icon.jpg differ diff --git a/data/CTR-BSA/art.jpg b/data/CTR-BSA/art.jpg new file mode 100644 index 0000000..d90f095 Binary files /dev/null and b/data/CTR-BSA/art.jpg differ diff --git a/data/CTR-BSA/data.yml b/data/CTR-BSA/data.yml new file mode 100644 index 0000000..1d2c887 --- /dev/null +++ b/data/CTR-BSA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014A900 + name: そろばん・あんざん・ フラッシュ暗算 完全版 + updates: + - id: 0004000E0014A900 + name: 更新データ Ver. 1.1 そろばん・あんざん・フラッシュ暗算 完全版 diff --git a/data/CTR-BSA/icon.jpg b/data/CTR-BSA/icon.jpg new file mode 100644 index 0000000..900116b Binary files /dev/null and b/data/CTR-BSA/icon.jpg differ diff --git a/data/CTR-BSB/art.jpg b/data/CTR-BSB/art.jpg new file mode 100644 index 0000000..e57881e Binary files /dev/null and b/data/CTR-BSB/art.jpg differ diff --git a/data/CTR-BSB/data.yml b/data/CTR-BSB/data.yml new file mode 100644 index 0000000..d7f0da7 --- /dev/null +++ b/data/CTR-BSB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000127C00 + name: ワールドサッカーウイニング イレブン2014 蒼き侍の挑戦 + updates: [] diff --git a/data/CTR-BSB/icon.jpg b/data/CTR-BSB/icon.jpg new file mode 100644 index 0000000..41434cc Binary files /dev/null and b/data/CTR-BSB/icon.jpg differ diff --git a/data/CTR-BSD/art.jpg b/data/CTR-BSD/art.jpg new file mode 100644 index 0000000..a385c8f Binary files /dev/null and b/data/CTR-BSD/art.jpg differ diff --git a/data/CTR-BSD/data.yml b/data/CTR-BSD/data.yml new file mode 100644 index 0000000..fca9c06 --- /dev/null +++ b/data/CTR-BSD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000103100 + name: 難攻不落三国伝 ~蜀と時の銅雀~ + updates: [] diff --git a/data/CTR-BSD/icon.jpg b/data/CTR-BSD/icon.jpg new file mode 100644 index 0000000..2b7a6ee Binary files /dev/null and b/data/CTR-BSD/icon.jpg differ diff --git a/data/CTR-BSE/art.jpg b/data/CTR-BSE/art.jpg new file mode 100644 index 0000000..11418ed Binary files /dev/null and b/data/CTR-BSE/art.jpg differ diff --git a/data/CTR-BSE/data.yml b/data/CTR-BSE/data.yml new file mode 100644 index 0000000..55f6c48 --- /dev/null +++ b/data/CTR-BSE/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017BB00 + name: 'Bravely Second™: End Layer' + updates: [] +- regions: + - JP + id: 00040000000DC800 + name: ブレイブリーセカンド + updates: + - id: 0004000E000DC800 + name: 更新データ Ver. 1.0.2 ブレイブリーセカンド +- regions: + - KR + id: 000400000017BC00 + name: BRAVELY SECOND + updates: [] +- regions: + - US + id: 000400000017BA00 + name: 'BRAVELY SECOND™: END LAYER' + updates: [] diff --git a/data/CTR-BSE/icon.jpg b/data/CTR-BSE/icon.jpg new file mode 100644 index 0000000..8c4ae09 Binary files /dev/null and b/data/CTR-BSE/icon.jpg differ diff --git a/data/CTR-BSF/art.jpg b/data/CTR-BSF/art.jpg new file mode 100644 index 0000000..b8319a3 Binary files /dev/null and b/data/CTR-BSF/art.jpg differ diff --git a/data/CTR-BSF/data.yml b/data/CTR-BSF/data.yml new file mode 100644 index 0000000..5416390 --- /dev/null +++ b/data/CTR-BSF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 00040000000E6500 + name: Skylanders SWAP Force™ + updates: [] diff --git a/data/CTR-BSF/icon.jpg b/data/CTR-BSF/icon.jpg new file mode 100644 index 0000000..5895fb7 Binary files /dev/null and b/data/CTR-BSF/icon.jpg differ diff --git a/data/CTR-BSG/art.jpg b/data/CTR-BSG/art.jpg new file mode 100644 index 0000000..e815993 Binary files /dev/null and b/data/CTR-BSG/art.jpg differ diff --git a/data/CTR-BSG/data.yml b/data/CTR-BSG/data.yml new file mode 100644 index 0000000..0df9944 --- /dev/null +++ b/data/CTR-BSG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000013FF00 + name: 遊んで将棋が強くなる! 銀星将棋DX + updates: [] diff --git a/data/CTR-BSG/icon.jpg b/data/CTR-BSG/icon.jpg new file mode 100644 index 0000000..b2ac453 Binary files /dev/null and b/data/CTR-BSG/icon.jpg differ diff --git a/data/CTR-BSH/art.jpg b/data/CTR-BSH/art.jpg new file mode 100644 index 0000000..d14917c Binary files /dev/null and b/data/CTR-BSH/art.jpg differ diff --git a/data/CTR-BSH/data.yml b/data/CTR-BSH/data.yml new file mode 100644 index 0000000..44bf28f --- /dev/null +++ b/data/CTR-BSH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000136F00 + name: Survivor - Heroes + updates: [] diff --git a/data/CTR-BSH/icon.jpg b/data/CTR-BSH/icon.jpg new file mode 100644 index 0000000..8f7e84e Binary files /dev/null and b/data/CTR-BSH/icon.jpg differ diff --git a/data/CTR-BSJ/art.jpg b/data/CTR-BSJ/art.jpg new file mode 100644 index 0000000..e687bc9 Binary files /dev/null and b/data/CTR-BSJ/art.jpg differ diff --git a/data/CTR-BSJ/data.yml b/data/CTR-BSJ/data.yml new file mode 100644 index 0000000..2ac4516 --- /dev/null +++ b/data/CTR-BSJ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174D00 + name: 三國志2 + updates: + - id: 0004000E00174D00 + name: 更新データ Ver. 1.1 三國志2 diff --git a/data/CTR-BSJ/icon.jpg b/data/CTR-BSJ/icon.jpg new file mode 100644 index 0000000..89fcaaa Binary files /dev/null and b/data/CTR-BSJ/icon.jpg differ diff --git a/data/CTR-BSK/art.jpg b/data/CTR-BSK/art.jpg new file mode 100644 index 0000000..b28b46c Binary files /dev/null and b/data/CTR-BSK/art.jpg differ diff --git a/data/CTR-BSK/data.yml b/data/CTR-BSK/data.yml new file mode 100644 index 0000000..cc0dbeb --- /dev/null +++ b/data/CTR-BSK/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000010EB00 + name: 'Etrian Odyssey™ Untold: The Millennium Girl' + updates: [] +- regions: + - JP + id: 00040000000CF800 + name: 新・世界樹の迷宮 ミレニアムの少女 + updates: [] +- regions: + - KR + id: 0004000000115D00 + name: 신 세계수의 미궁 밀레니엄의 소녀 + updates: [] +- regions: + - TW + id: 00040000000F7300 + name: 新・世界樹の迷宮 ミレニアムの少女 (日文版) + updates: [] +- regions: + - US + id: 00040000000EC700 + name: 'Etrian Odyssey™ Untold: The Millennium Girl' + updates: [] diff --git a/data/CTR-BSK/icon.jpg b/data/CTR-BSK/icon.jpg new file mode 100644 index 0000000..a6760d0 Binary files /dev/null and b/data/CTR-BSK/icon.jpg differ diff --git a/data/CTR-BSL/art.jpg b/data/CTR-BSL/art.jpg new file mode 100644 index 0000000..7811871 Binary files /dev/null and b/data/CTR-BSL/art.jpg differ diff --git a/data/CTR-BSL/data.yml b/data/CTR-BSL/data.yml new file mode 100644 index 0000000..1dccd17 --- /dev/null +++ b/data/CTR-BSL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000012FE00 + name: おさわり探偵 小沢里奈 なめこリズム + updates: [] diff --git a/data/CTR-BSL/icon.jpg b/data/CTR-BSL/icon.jpg new file mode 100644 index 0000000..6756ed7 Binary files /dev/null and b/data/CTR-BSL/icon.jpg differ diff --git a/data/CTR-BSM/art.jpg b/data/CTR-BSM/art.jpg new file mode 100644 index 0000000..13eeeb7 Binary files /dev/null and b/data/CTR-BSM/art.jpg differ diff --git a/data/CTR-BSM/data.yml b/data/CTR-BSM/data.yml new file mode 100644 index 0000000..59f36b3 --- /dev/null +++ b/data/CTR-BSM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000109300 + name: Shanghai Mahjong + updates: [] +- regions: + - US + id: 000400000010AA00 + name: Shanghai Mahjong + updates: [] diff --git a/data/CTR-BSM/icon.jpg b/data/CTR-BSM/icon.jpg new file mode 100644 index 0000000..d83b4f9 Binary files /dev/null and b/data/CTR-BSM/icon.jpg differ diff --git a/data/CTR-BSN/art.jpg b/data/CTR-BSN/art.jpg new file mode 100644 index 0000000..e151e20 Binary files /dev/null and b/data/CTR-BSN/art.jpg differ diff --git a/data/CTR-BSN/data.yml b/data/CTR-BSN/data.yml new file mode 100644 index 0000000..64bb687 --- /dev/null +++ b/data/CTR-BSN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000140900 + name: 瞬足 めざせ! 全国最強ランナー + updates: [] diff --git a/data/CTR-BSN/icon.jpg b/data/CTR-BSN/icon.jpg new file mode 100644 index 0000000..cd4e773 Binary files /dev/null and b/data/CTR-BSN/icon.jpg differ diff --git a/data/CTR-BSP/art.jpg b/data/CTR-BSP/art.jpg new file mode 100644 index 0000000..b3f31d1 Binary files /dev/null and b/data/CTR-BSP/art.jpg differ diff --git a/data/CTR-BSP/data.yml b/data/CTR-BSP/data.yml new file mode 100644 index 0000000..48fdaf5 --- /dev/null +++ b/data/CTR-BSP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FE900 + name: SPEC~干~ + updates: [] diff --git a/data/CTR-BSP/icon.jpg b/data/CTR-BSP/icon.jpg new file mode 100644 index 0000000..0e2dc7d Binary files /dev/null and b/data/CTR-BSP/icon.jpg differ diff --git a/data/CTR-BSQ/art.jpg b/data/CTR-BSQ/art.jpg new file mode 100644 index 0000000..414e986 Binary files /dev/null and b/data/CTR-BSQ/art.jpg differ diff --git a/data/CTR-BSQ/data.yml b/data/CTR-BSQ/data.yml new file mode 100644 index 0000000..e64a664 --- /dev/null +++ b/data/CTR-BSQ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000133000 + name: Safari Quest + updates: [] +- regions: + - US + id: 000400000014D500 + name: Safari Quest + updates: [] diff --git a/data/CTR-BSQ/icon.jpg b/data/CTR-BSQ/icon.jpg new file mode 100644 index 0000000..43df4ca Binary files /dev/null and b/data/CTR-BSQ/icon.jpg differ diff --git a/data/CTR-BSR/art.jpg b/data/CTR-BSR/art.jpg new file mode 100644 index 0000000..d06000e Binary files /dev/null and b/data/CTR-BSR/art.jpg differ diff --git a/data/CTR-BSR/data.yml b/data/CTR-BSR/data.yml new file mode 100644 index 0000000..fccb7a7 --- /dev/null +++ b/data/CTR-BSR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000127900 + name: スーパーロボット大戦BX + updates: [] diff --git a/data/CTR-BSR/icon.jpg b/data/CTR-BSR/icon.jpg new file mode 100644 index 0000000..9eec4ab Binary files /dev/null and b/data/CTR-BSR/icon.jpg differ diff --git a/data/CTR-BSV/art.jpg b/data/CTR-BSV/art.jpg new file mode 100644 index 0000000..8e249ed Binary files /dev/null and b/data/CTR-BSV/art.jpg differ diff --git a/data/CTR-BSV/data.yml b/data/CTR-BSV/data.yml new file mode 100644 index 0000000..305fe14 --- /dev/null +++ b/data/CTR-BSV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000178500 + name: すみっコぐらし おみせはじめるんです + updates: + - id: 0004000E00178500 + name: 更新データ Ver. 2.0 すみっコぐらし おみせはじめるんです diff --git a/data/CTR-BSV/icon.jpg b/data/CTR-BSV/icon.jpg new file mode 100644 index 0000000..70ebab6 Binary files /dev/null and b/data/CTR-BSV/icon.jpg differ diff --git a/data/CTR-BSW/art.jpg b/data/CTR-BSW/art.jpg new file mode 100644 index 0000000..0d7c4bb Binary files /dev/null and b/data/CTR-BSW/art.jpg differ diff --git a/data/CTR-BSW/data.yml b/data/CTR-BSW/data.yml new file mode 100644 index 0000000..443e427 --- /dev/null +++ b/data/CTR-BSW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D0400 + name: 'WAKU WAKU SWEETS: Happy Sweets Making' + updates: [] +- regions: + - JP + id: 0004000000111200 + name: キラメキ わくわくスイーツ + updates: [] +- regions: + - US + id: 00040000001D0100 + name: 'WAKU WAKU SWEETS: Happy Sweets Making' + updates: [] diff --git a/data/CTR-BSW/icon.jpg b/data/CTR-BSW/icon.jpg new file mode 100644 index 0000000..7a017cd Binary files /dev/null and b/data/CTR-BSW/icon.jpg differ diff --git a/data/CTR-BSY/art.jpg b/data/CTR-BSY/art.jpg new file mode 100644 index 0000000..79bf7e1 Binary files /dev/null and b/data/CTR-BSY/art.jpg differ diff --git a/data/CTR-BSY/data.yml b/data/CTR-BSY/data.yml new file mode 100644 index 0000000..2a393e9 --- /dev/null +++ b/data/CTR-BSY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000012C200 + name: 'Sonic Boom™: Shattered Crystal' + updates: [] +- regions: + - JP + id: 000400000014AE00 + name: ソニックトゥーン アイランドアドベンチャー + updates: [] +- regions: + - US + id: 0004000000127500 + name: 'Sonic Boom: Shattered Crystal' + updates: [] diff --git a/data/CTR-BSY/icon.jpg b/data/CTR-BSY/icon.jpg new file mode 100644 index 0000000..20dd75e Binary files /dev/null and b/data/CTR-BSY/icon.jpg differ diff --git a/data/CTR-BT2/art.jpg b/data/CTR-BT2/art.jpg new file mode 100644 index 0000000..aa92a25 Binary files /dev/null and b/data/CTR-BT2/art.jpg differ diff --git a/data/CTR-BT2/data.yml b/data/CTR-BT2/data.yml new file mode 100644 index 0000000..d7234da --- /dev/null +++ b/data/CTR-BT2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000148200 + name: Top Model 3D + updates: [] diff --git a/data/CTR-BT2/icon.jpg b/data/CTR-BT2/icon.jpg new file mode 100644 index 0000000..7457698 Binary files /dev/null and b/data/CTR-BT2/icon.jpg differ diff --git a/data/CTR-BT3/art.jpg b/data/CTR-BT3/art.jpg new file mode 100644 index 0000000..8dd5ae6 Binary files /dev/null and b/data/CTR-BT3/art.jpg differ diff --git a/data/CTR-BT3/data.yml b/data/CTR-BT3/data.yml new file mode 100644 index 0000000..ccd39d4 --- /dev/null +++ b/data/CTR-BT3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7000 + name: 星のカービィ ロボボプラネット 特別体験版 + updates: [] diff --git a/data/CTR-BT3/icon.jpg b/data/CTR-BT3/icon.jpg new file mode 100644 index 0000000..6600843 Binary files /dev/null and b/data/CTR-BT3/icon.jpg differ diff --git a/data/CTR-BT4/art.jpg b/data/CTR-BT4/art.jpg new file mode 100644 index 0000000..1a6e438 Binary files /dev/null and b/data/CTR-BT4/art.jpg differ diff --git a/data/CTR-BT4/data.yml b/data/CTR-BT4/data.yml new file mode 100644 index 0000000..463c02f --- /dev/null +++ b/data/CTR-BT4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C2E00 + name: たまごっちのプチプチおみせっち ~にんきのおみせあつめました~ + updates: [] diff --git a/data/CTR-BT4/icon.jpg b/data/CTR-BT4/icon.jpg new file mode 100644 index 0000000..1533591 Binary files /dev/null and b/data/CTR-BT4/icon.jpg differ diff --git a/data/CTR-BT5/art.jpg b/data/CTR-BT5/art.jpg new file mode 100644 index 0000000..2cfb815 Binary files /dev/null and b/data/CTR-BT5/art.jpg differ diff --git a/data/CTR-BT5/data.yml b/data/CTR-BT5/data.yml new file mode 100644 index 0000000..248a349 --- /dev/null +++ b/data/CTR-BT5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000E8500 + name: トリコ グルメガバトル! + updates: [] diff --git a/data/CTR-BT5/icon.jpg b/data/CTR-BT5/icon.jpg new file mode 100644 index 0000000..e22208c Binary files /dev/null and b/data/CTR-BT5/icon.jpg differ diff --git a/data/CTR-BT7/art.jpg b/data/CTR-BT7/art.jpg new file mode 100644 index 0000000..b80129c Binary files /dev/null and b/data/CTR-BT7/art.jpg differ diff --git a/data/CTR-BT7/data.yml b/data/CTR-BT7/data.yml new file mode 100644 index 0000000..d7e37f9 --- /dev/null +++ b/data/CTR-BT7/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000102F00 + name: 太鼓の達人 どんとかつの時空大冒険 + updates: + - id: 0004000E00102F00 + name: 更新データ Ver. 1.2.0 太鼓の達人 どんとかつの時空大冒険 +- regions: + - KR + id: 000400000016D900 + name: 태고의 달인 쿵딱쿵딱 시공 대모험 + updates: [] diff --git a/data/CTR-BT7/icon.jpg b/data/CTR-BT7/icon.jpg new file mode 100644 index 0000000..cac0628 Binary files /dev/null and b/data/CTR-BT7/icon.jpg differ diff --git a/data/CTR-BT8/art.jpg b/data/CTR-BT8/art.jpg new file mode 100644 index 0000000..f73f5ca Binary files /dev/null and b/data/CTR-BT8/art.jpg differ diff --git a/data/CTR-BT8/data.yml b/data/CTR-BT8/data.yml new file mode 100644 index 0000000..c205154 --- /dev/null +++ b/data/CTR-BT8/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000190E00 + name: 太鼓の達人 ドコドン! ミステリーアドベンチャー + updates: + - id: 0004000E00190E00 + name: 更新データ Ver. 1.1 太鼓の達人 ドコドン! ミステリーアドベンチャー diff --git a/data/CTR-BT8/icon.jpg b/data/CTR-BT8/icon.jpg new file mode 100644 index 0000000..850b408 Binary files /dev/null and b/data/CTR-BT8/icon.jpg differ diff --git a/data/CTR-BTA/art.jpg b/data/CTR-BTA/art.jpg new file mode 100644 index 0000000..a429f40 Binary files /dev/null and b/data/CTR-BTA/art.jpg differ diff --git a/data/CTR-BTA/data.yml b/data/CTR-BTA/data.yml new file mode 100644 index 0000000..83542e7 --- /dev/null +++ b/data/CTR-BTA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012FB00 + name: ガンダムトライエイジSP + updates: [] diff --git a/data/CTR-BTA/icon.jpg b/data/CTR-BTA/icon.jpg new file mode 100644 index 0000000..78401f8 Binary files /dev/null and b/data/CTR-BTA/icon.jpg differ diff --git a/data/CTR-BTC/art.jpg b/data/CTR-BTC/art.jpg new file mode 100644 index 0000000..90e6761 Binary files /dev/null and b/data/CTR-BTC/art.jpg differ diff --git a/data/CTR-BTC/data.yml b/data/CTR-BTC/data.yml new file mode 100644 index 0000000..55d59f1 --- /dev/null +++ b/data/CTR-BTC/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000FB300 + name: トリコ アルティメットサバイバル + updates: + - id: 0004000E000FB300 + name: 更新データ Ver. 1.1 トリコ アルティメットサバイバル diff --git a/data/CTR-BTC/icon.jpg b/data/CTR-BTC/icon.jpg new file mode 100644 index 0000000..4873f6e Binary files /dev/null and b/data/CTR-BTC/icon.jpg differ diff --git a/data/CTR-BTE/art.jpg b/data/CTR-BTE/art.jpg new file mode 100644 index 0000000..faeee8d Binary files /dev/null and b/data/CTR-BTE/art.jpg differ diff --git a/data/CTR-BTE/data.yml b/data/CTR-BTE/data.yml new file mode 100644 index 0000000..69f00ab --- /dev/null +++ b/data/CTR-BTE/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016A600 + name: Terraria + updates: + - id: 0004000E0016A600 + name: 'Terraria: Update 1.0.5' +- regions: + - JP + id: 0004000000193500 + name: テラリア + updates: + - id: 0004000E00193500 + name: 更新データ Ver. 1.0.1 テラリア +- regions: + - KR + id: 00040000001B3200 + name: Terraria + updates: [] +- regions: + - US + id: 000400000016A900 + name: Terraria + updates: + - id: 0004000E0016A900 + name: Terraria Update Ver. 1.0.5 diff --git a/data/CTR-BTE/icon.jpg b/data/CTR-BTE/icon.jpg new file mode 100644 index 0000000..a080e4e Binary files /dev/null and b/data/CTR-BTE/icon.jpg differ diff --git a/data/CTR-BTF/art.jpg b/data/CTR-BTF/art.jpg new file mode 100644 index 0000000..8356fed Binary files /dev/null and b/data/CTR-BTF/art.jpg differ diff --git a/data/CTR-BTF/data.yml b/data/CTR-BTF/data.yml new file mode 100644 index 0000000..9078e99 --- /dev/null +++ b/data/CTR-BTF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000012F600 + name: トーマスとあそんでおぼえる ことばとかずとABC + updates: [] diff --git a/data/CTR-BTF/icon.jpg b/data/CTR-BTF/icon.jpg new file mode 100644 index 0000000..32a8f28 Binary files /dev/null and b/data/CTR-BTF/icon.jpg differ diff --git a/data/CTR-BTG/art.jpg b/data/CTR-BTG/art.jpg new file mode 100644 index 0000000..9870497 Binary files /dev/null and b/data/CTR-BTG/art.jpg differ diff --git a/data/CTR-BTG/data.yml b/data/CTR-BTG/data.yml new file mode 100644 index 0000000..194ec4a --- /dev/null +++ b/data/CTR-BTG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CBF00 + name: Japanese Rail Sim 3D Travel of Steam + updates: [] +- regions: + - JP + id: 000400000019D300 + name: 鉄道にっぽん!路線たび きかんしゃ トーマス編 大井川鐵道を走ろう! + updates: [] +- regions: + - US + id: 00040000001CC500 + name: Japanese Rail Sim 3D Travel of Steam + updates: [] diff --git a/data/CTR-BTG/icon.jpg b/data/CTR-BTG/icon.jpg new file mode 100644 index 0000000..4ae97ba Binary files /dev/null and b/data/CTR-BTG/icon.jpg differ diff --git a/data/CTR-BTH/art.jpg b/data/CTR-BTH/art.jpg new file mode 100644 index 0000000..38ea732 Binary files /dev/null and b/data/CTR-BTH/art.jpg differ diff --git a/data/CTR-BTH/data.yml b/data/CTR-BTH/data.yml new file mode 100644 index 0000000..4cda0a4 --- /dev/null +++ b/data/CTR-BTH/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000FCA00 + name: THEATRHYTHM Final Fantasy Curtain Call™ + updates: [] +- regions: + - JP + id: 00040000000E9A00 + name: シアトリズム ファイナル ファンタジー カーテンコール + updates: + - id: 0004000E000E9A00 + name: 更新データ Ver. 1.2 TFF CURTAIN CALL +- regions: + - US + id: 00040000000FD500 + name: THEATRHYTHM FINAL FANTASY CURTAIN CALL + updates: [] diff --git a/data/CTR-BTH/icon.jpg b/data/CTR-BTH/icon.jpg new file mode 100644 index 0000000..52eb5f4 Binary files /dev/null and b/data/CTR-BTH/icon.jpg differ diff --git a/data/CTR-BTJ/art.jpg b/data/CTR-BTJ/art.jpg new file mode 100644 index 0000000..fed374e Binary files /dev/null and b/data/CTR-BTJ/art.jpg differ diff --git a/data/CTR-BTJ/data.yml b/data/CTR-BTJ/data.yml new file mode 100644 index 0000000..2fc2b5d --- /dev/null +++ b/data/CTR-BTJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000017D600 + name: 鉄道にっぽん!路線たび 上毛電気鉄道編 + updates: [] diff --git a/data/CTR-BTJ/icon.jpg b/data/CTR-BTJ/icon.jpg new file mode 100644 index 0000000..8845b75 Binary files /dev/null and b/data/CTR-BTJ/icon.jpg differ diff --git a/data/CTR-BTK/art.jpg b/data/CTR-BTK/art.jpg new file mode 100644 index 0000000..66b7d88 Binary files /dev/null and b/data/CTR-BTK/art.jpg differ diff --git a/data/CTR-BTK/data.yml b/data/CTR-BTK/data.yml new file mode 100644 index 0000000..7a20dbd --- /dev/null +++ b/data/CTR-BTK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000115200 + name: テンカイナイト ブレイブバトル + updates: [] diff --git a/data/CTR-BTK/icon.jpg b/data/CTR-BTK/icon.jpg new file mode 100644 index 0000000..8dc9ed0 Binary files /dev/null and b/data/CTR-BTK/icon.jpg differ diff --git a/data/CTR-BTM/art.jpg b/data/CTR-BTM/art.jpg new file mode 100644 index 0000000..4c3a999 Binary files /dev/null and b/data/CTR-BTM/art.jpg differ diff --git a/data/CTR-BTM/data.yml b/data/CTR-BTM/data.yml new file mode 100644 index 0000000..843225d --- /dev/null +++ b/data/CTR-BTM/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000011C200 + name: 'LEGO® Batman™ 3: BEYOND GOTHAM' + updates: + - id: 0004000E0011C200 + name: 'LEGO® Batman™ 3: BEYOND GOTHAM - Update' +- regions: + - JP + id: 0004000000162D00 + name: LEGO®バットマン3 ザ・ゲーム ゴッサムから宇宙へ + updates: [] +- regions: + - US + id: 000400000011DD00 + name: 'LEGO® Batman™ 3: Beyond Gotham' + updates: + - id: 0004000E0011DD00 + name: 'LEGO® Batman™ 3: Beyond Gotham Update Ver. 1.1.0' diff --git a/data/CTR-BTM/icon.jpg b/data/CTR-BTM/icon.jpg new file mode 100644 index 0000000..7269a91 Binary files /dev/null and b/data/CTR-BTM/icon.jpg differ diff --git a/data/CTR-BTN/art.jpg b/data/CTR-BTN/art.jpg new file mode 100644 index 0000000..dc3945e Binary files /dev/null and b/data/CTR-BTN/art.jpg differ diff --git a/data/CTR-BTN/data.yml b/data/CTR-BTN/data.yml new file mode 100644 index 0000000..ac231e4 --- /dev/null +++ b/data/CTR-BTN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - US + id: 0004000000170B00 + name: "Teenage Mutant Ninja Turtles: Master Splinter's Training Pack" + updates: [] diff --git a/data/CTR-BTN/icon.jpg b/data/CTR-BTN/icon.jpg new file mode 100644 index 0000000..5bafeda Binary files /dev/null and b/data/CTR-BTN/icon.jpg differ diff --git a/data/CTR-BTP/art.jpg b/data/CTR-BTP/art.jpg new file mode 100644 index 0000000..dc6a960 Binary files /dev/null and b/data/CTR-BTP/art.jpg differ diff --git a/data/CTR-BTP/data.yml b/data/CTR-BTP/data.yml new file mode 100644 index 0000000..6998e10 --- /dev/null +++ b/data/CTR-BTP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000138000 + name: 新テニスの王子様 ~Go to the top~ + updates: [] diff --git a/data/CTR-BTP/icon.jpg b/data/CTR-BTP/icon.jpg new file mode 100644 index 0000000..b51925d Binary files /dev/null and b/data/CTR-BTP/icon.jpg differ diff --git a/data/CTR-BTQ/art.jpg b/data/CTR-BTQ/art.jpg new file mode 100644 index 0000000..d042e08 Binary files /dev/null and b/data/CTR-BTQ/art.jpg differ diff --git a/data/CTR-BTQ/data.yml b/data/CTR-BTQ/data.yml new file mode 100644 index 0000000..f51e047 --- /dev/null +++ b/data/CTR-BTQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000140000 + name: シアトリズム ドラゴンクエスト + updates: [] diff --git a/data/CTR-BTQ/icon.jpg b/data/CTR-BTQ/icon.jpg new file mode 100644 index 0000000..cc54c7f Binary files /dev/null and b/data/CTR-BTQ/icon.jpg differ diff --git a/data/CTR-BTR/art.jpg b/data/CTR-BTR/art.jpg new file mode 100644 index 0000000..e2d299a Binary files /dev/null and b/data/CTR-BTR/art.jpg differ diff --git a/data/CTR-BTR/data.yml b/data/CTR-BTR/data.yml new file mode 100644 index 0000000..f9c16a9 --- /dev/null +++ b/data/CTR-BTR/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000FC600 + name: Bravely Default™ + updates: [] +- regions: + - JP + id: 00040000000DB600 + name: BRAVELY DEFAULT -For the Sequel- + updates: + - id: 0004000E000DB600 + name: 更新データ Ver. 1.1 BRAVELY DEFAULT -For the Sequel- +- regions: + - KR + id: 0004000000122200 + name: BRAVELY DEFAULT + updates: [] +- regions: + - US + id: 00040000000FC500 + name: Bravely Default™ + updates: [] diff --git a/data/CTR-BTR/icon.jpg b/data/CTR-BTR/icon.jpg new file mode 100644 index 0000000..9216aed Binary files /dev/null and b/data/CTR-BTR/icon.jpg differ diff --git a/data/CTR-BTS/art.jpg b/data/CTR-BTS/art.jpg new file mode 100644 index 0000000..905f10e Binary files /dev/null and b/data/CTR-BTS/art.jpg differ diff --git a/data/CTR-BTS/data.yml b/data/CTR-BTS/data.yml new file mode 100644 index 0000000..19e3a9d --- /dev/null +++ b/data/CTR-BTS/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000015FC00 + name: Story of Seasons + updates: [] +- regions: + - JP + id: 000400000010BC00 + name: 牧場物語 つながる新天地 + updates: + - id: 0004000E0010BC00 + name: 更新データ Ver. 2.0.0 牧場物語 つながる新天地 +- regions: + - KR + id: 000400000015FD00 + name: 목장이야기 STORY OF SEASONS + updates: [] +- regions: + - US + id: 0004000000142100 + name: STORY OF SEASONS + updates: [] diff --git a/data/CTR-BTS/icon.jpg b/data/CTR-BTS/icon.jpg new file mode 100644 index 0000000..346b184 Binary files /dev/null and b/data/CTR-BTS/icon.jpg differ diff --git a/data/CTR-BTT/art.jpg b/data/CTR-BTT/art.jpg new file mode 100644 index 0000000..8c1c860 Binary files /dev/null and b/data/CTR-BTT/art.jpg differ diff --git a/data/CTR-BTT/data.yml b/data/CTR-BTT/data.yml new file mode 100644 index 0000000..4f8b089 --- /dev/null +++ b/data/CTR-BTT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000112000 + name: 闘神都市 + updates: [] diff --git a/data/CTR-BTT/icon.jpg b/data/CTR-BTT/icon.jpg new file mode 100644 index 0000000..e3fcf52 Binary files /dev/null and b/data/CTR-BTT/icon.jpg differ diff --git a/data/CTR-BTU/art.jpg b/data/CTR-BTU/art.jpg new file mode 100644 index 0000000..a72af28 Binary files /dev/null and b/data/CTR-BTU/art.jpg differ diff --git a/data/CTR-BTU/data.yml b/data/CTR-BTU/data.yml new file mode 100644 index 0000000..c46c55c --- /dev/null +++ b/data/CTR-BTU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000016E200 + name: 超・逃走中 あつまれ!最強の逃走者たち + updates: [] diff --git a/data/CTR-BTU/icon.jpg b/data/CTR-BTU/icon.jpg new file mode 100644 index 0000000..494344a Binary files /dev/null and b/data/CTR-BTU/icon.jpg differ diff --git a/data/CTR-BTV/art.jpg b/data/CTR-BTV/art.jpg new file mode 100644 index 0000000..2c6b47c Binary files /dev/null and b/data/CTR-BTV/art.jpg differ diff --git a/data/CTR-BTV/data.yml b/data/CTR-BTV/data.yml new file mode 100644 index 0000000..146dbce --- /dev/null +++ b/data/CTR-BTV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000144800 + name: 12歳。 ~ほんとのキモチ~ + updates: [] diff --git a/data/CTR-BTV/icon.jpg b/data/CTR-BTV/icon.jpg new file mode 100644 index 0000000..ca1cc31 Binary files /dev/null and b/data/CTR-BTV/icon.jpg differ diff --git a/data/CTR-BTX/art.jpg b/data/CTR-BTX/art.jpg new file mode 100644 index 0000000..d51cfd8 Binary files /dev/null and b/data/CTR-BTX/art.jpg differ diff --git a/data/CTR-BTX/data.yml b/data/CTR-BTX/data.yml new file mode 100644 index 0000000..4b307c6 --- /dev/null +++ b/data/CTR-BTX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AE000 + name: 鉄道にっぽん!路線たび 会津鉄道編 + updates: [] diff --git a/data/CTR-BTX/icon.jpg b/data/CTR-BTX/icon.jpg new file mode 100644 index 0000000..5cb0cbe Binary files /dev/null and b/data/CTR-BTX/icon.jpg differ diff --git a/data/CTR-BTY/art.jpg b/data/CTR-BTY/art.jpg new file mode 100644 index 0000000..0f0ab9c Binary files /dev/null and b/data/CTR-BTY/art.jpg differ diff --git a/data/CTR-BTY/data.yml b/data/CTR-BTY/data.yml new file mode 100644 index 0000000..4e4f290 --- /dev/null +++ b/data/CTR-BTY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AE900 + name: Japanese Rail Sim 3D Monorail Trip to Okinawa + updates: [] +- regions: + - JP + id: 0004000000176600 + name: 鉄道にっぽん!路線たび ゆいレール編 + updates: [] +- regions: + - US + id: 00040000001A5D00 + name: Japanese Rail Sim 3D Monorail Trip to Okinawa + updates: [] diff --git a/data/CTR-BTY/icon.jpg b/data/CTR-BTY/icon.jpg new file mode 100644 index 0000000..44a6992 Binary files /dev/null and b/data/CTR-BTY/icon.jpg differ diff --git a/data/CTR-BTZ/art.jpg b/data/CTR-BTZ/art.jpg new file mode 100644 index 0000000..28a4ede Binary files /dev/null and b/data/CTR-BTZ/art.jpg differ diff --git a/data/CTR-BTZ/data.yml b/data/CTR-BTZ/data.yml new file mode 100644 index 0000000..6b49af8 --- /dev/null +++ b/data/CTR-BTZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000199200 + name: ドラゴンクエストXI 過ぎ去りし時を求めて + updates: [] diff --git a/data/CTR-BTZ/icon.jpg b/data/CTR-BTZ/icon.jpg new file mode 100644 index 0000000..90fb33d Binary files /dev/null and b/data/CTR-BTZ/icon.jpg differ diff --git a/data/CTR-BUB/art.jpg b/data/CTR-BUB/art.jpg new file mode 100644 index 0000000..b06587c Binary files /dev/null and b/data/CTR-BUB/art.jpg differ diff --git a/data/CTR-BUB/data.yml b/data/CTR-BUB/data.yml new file mode 100644 index 0000000..2b60fb9 --- /dev/null +++ b/data/CTR-BUB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000124900 + name: 超人ウルトラベースボール アクションカードバトル + updates: [] diff --git a/data/CTR-BUB/icon.jpg b/data/CTR-BUB/icon.jpg new file mode 100644 index 0000000..bc612b7 Binary files /dev/null and b/data/CTR-BUB/icon.jpg differ diff --git a/data/CTR-BUD/art.jpg b/data/CTR-BUD/art.jpg new file mode 100644 index 0000000..fec42c0 Binary files /dev/null and b/data/CTR-BUD/art.jpg differ diff --git a/data/CTR-BUD/data.yml b/data/CTR-BUD/data.yml new file mode 100644 index 0000000..fa62e21 --- /dev/null +++ b/data/CTR-BUD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001D2100 + name: デジコロ ケシカスくん Vol.015 究極の心理戦!ババァ抜き開始!! + updates: [] diff --git a/data/CTR-BUD/icon.jpg b/data/CTR-BUD/icon.jpg new file mode 100644 index 0000000..4a00f1a Binary files /dev/null and b/data/CTR-BUD/icon.jpg differ diff --git a/data/CTR-BUT/art.jpg b/data/CTR-BUT/art.jpg new file mode 100644 index 0000000..d077d04 Binary files /dev/null and b/data/CTR-BUT/art.jpg differ diff --git a/data/CTR-BUT/data.yml b/data/CTR-BUT/data.yml new file mode 100644 index 0000000..63dc8d4 --- /dev/null +++ b/data/CTR-BUT/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000018B200 + name: ベイブレードバースト + updates: + - id: 0004000E0018B200 + name: 更新データ Ver.1.1 ベイブレードバースト diff --git a/data/CTR-BUT/icon.jpg b/data/CTR-BUT/icon.jpg new file mode 100644 index 0000000..f2173e2 Binary files /dev/null and b/data/CTR-BUT/icon.jpg differ diff --git a/data/CTR-BUW/art.jpg b/data/CTR-BUW/art.jpg new file mode 100644 index 0000000..2336f48 Binary files /dev/null and b/data/CTR-BUW/art.jpg differ diff --git a/data/CTR-BUW/data.yml b/data/CTR-BUW/data.yml new file mode 100644 index 0000000..4e45f80 --- /dev/null +++ b/data/CTR-BUW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000000F5800 + name: ワンピース アンリミテッドワールドR + updates: + - id: 0004000E000F5800 + name: 更新データ Ver. 1.2 ワンピース アンリミテッドワールド R diff --git a/data/CTR-BUW/icon.jpg b/data/CTR-BUW/icon.jpg new file mode 100644 index 0000000..830ad81 Binary files /dev/null and b/data/CTR-BUW/icon.jpg differ diff --git a/data/CTR-BUX/art.jpg b/data/CTR-BUX/art.jpg new file mode 100644 index 0000000..e294083 Binary files /dev/null and b/data/CTR-BUX/art.jpg differ diff --git a/data/CTR-BUX/data.yml b/data/CTR-BUX/data.yml new file mode 100644 index 0000000..298a289 --- /dev/null +++ b/data/CTR-BUX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000138100 + name: 昆虫モンスター スーパーバトル + updates: [] diff --git a/data/CTR-BUX/icon.jpg b/data/CTR-BUX/icon.jpg new file mode 100644 index 0000000..6ad974c Binary files /dev/null and b/data/CTR-BUX/icon.jpg differ diff --git a/data/CTR-BUZ/art.jpg b/data/CTR-BUZ/art.jpg new file mode 100644 index 0000000..18da636 Binary files /dev/null and b/data/CTR-BUZ/art.jpg differ diff --git a/data/CTR-BUZ/data.yml b/data/CTR-BUZ/data.yml new file mode 100644 index 0000000..f47f0ee --- /dev/null +++ b/data/CTR-BUZ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000018EA00 + name: ONE PIECE 大海賊闘技場 + updates: + - id: 0004000E0018EA00 + name: 更新データ Ver. 1.1.0 ONE PIECE 大海賊闘技場 diff --git a/data/CTR-BUZ/icon.jpg b/data/CTR-BUZ/icon.jpg new file mode 100644 index 0000000..a002984 Binary files /dev/null and b/data/CTR-BUZ/icon.jpg differ diff --git a/data/CTR-BVB/art.jpg b/data/CTR-BVB/art.jpg new file mode 100644 index 0000000..62acb57 Binary files /dev/null and b/data/CTR-BVB/art.jpg differ diff --git a/data/CTR-BVB/data.yml b/data/CTR-BVB/data.yml new file mode 100644 index 0000000..818d1ca --- /dev/null +++ b/data/CTR-BVB/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C3100 + name: ベイブレードバースト ゴッド + updates: + - id: 0004000E001C3100 + name: 更新データ Ver. 1.1 ベイブレードバースト ゴッド diff --git a/data/CTR-BVB/icon.jpg b/data/CTR-BVB/icon.jpg new file mode 100644 index 0000000..9982df9 Binary files /dev/null and b/data/CTR-BVB/icon.jpg differ diff --git a/data/CTR-BVG/art.jpg b/data/CTR-BVG/art.jpg new file mode 100644 index 0000000..29fd912 Binary files /dev/null and b/data/CTR-BVG/art.jpg differ diff --git a/data/CTR-BVG/data.yml b/data/CTR-BVG/data.yml new file mode 100644 index 0000000..6f7ef28 --- /dev/null +++ b/data/CTR-BVG/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000120700 + name: カードファイト!! ヴァンガード ロック オン ビクトリー!! + updates: + - id: 0004000E00120700 + name: 更新データ Ver. 1.1 カードファイト!! ヴァンガード LOV diff --git a/data/CTR-BVG/icon.jpg b/data/CTR-BVG/icon.jpg new file mode 100644 index 0000000..1d52d53 Binary files /dev/null and b/data/CTR-BVG/icon.jpg differ diff --git a/data/CTR-BVM/art.jpg b/data/CTR-BVM/art.jpg new file mode 100644 index 0000000..eaad422 Binary files /dev/null and b/data/CTR-BVM/art.jpg differ diff --git a/data/CTR-BVM/data.yml b/data/CTR-BVM/data.yml new file mode 100644 index 0000000..4ce865b --- /dev/null +++ b/data/CTR-BVM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C8300 + name: VoxelMaker + updates: [] +- regions: + - US + id: 00040000001C6E00 + name: VoxelMaker + updates: [] diff --git a/data/CTR-BVM/icon.jpg b/data/CTR-BVM/icon.jpg new file mode 100644 index 0000000..1afbcfa Binary files /dev/null and b/data/CTR-BVM/icon.jpg differ diff --git a/data/CTR-BVS/art.jpg b/data/CTR-BVS/art.jpg new file mode 100644 index 0000000..b592876 Binary files /dev/null and b/data/CTR-BVS/art.jpg differ diff --git a/data/CTR-BVS/data.yml b/data/CTR-BVS/data.yml new file mode 100644 index 0000000..9c098f6 --- /dev/null +++ b/data/CTR-BVS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000197600 + name: すみっコぐらし むらをつくるんです + updates: [] diff --git a/data/CTR-BVS/icon.jpg b/data/CTR-BVS/icon.jpg new file mode 100644 index 0000000..657a818 Binary files /dev/null and b/data/CTR-BVS/icon.jpg differ diff --git a/data/CTR-BVX/art.jpg b/data/CTR-BVX/art.jpg new file mode 100644 index 0000000..42fd316 Binary files /dev/null and b/data/CTR-BVX/art.jpg differ diff --git a/data/CTR-BVX/data.yml b/data/CTR-BVX/data.yml new file mode 100644 index 0000000..380de62 --- /dev/null +++ b/data/CTR-BVX/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000105100 + name: VitaminX Evolution Plus + updates: + - id: 0004000E00105100 + name: 更新データ Ver. 1.1 VitaminX Evolution Plus diff --git a/data/CTR-BVX/icon.jpg b/data/CTR-BVX/icon.jpg new file mode 100644 index 0000000..6691ffd Binary files /dev/null and b/data/CTR-BVX/icon.jpg differ diff --git a/data/CTR-BVZ/art.jpg b/data/CTR-BVZ/art.jpg new file mode 100644 index 0000000..167290e Binary files /dev/null and b/data/CTR-BVZ/art.jpg differ diff --git a/data/CTR-BVZ/data.yml b/data/CTR-BVZ/data.yml new file mode 100644 index 0000000..5291c60 --- /dev/null +++ b/data/CTR-BVZ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000104900 + name: VitaminZ Revolution + updates: + - id: 0004000E00104900 + name: 更新データ Ver. 1.2 VitaminZ Revolution diff --git a/data/CTR-BVZ/icon.jpg b/data/CTR-BVZ/icon.jpg new file mode 100644 index 0000000..19edb78 Binary files /dev/null and b/data/CTR-BVZ/icon.jpg differ diff --git a/data/CTR-BW2/art.jpg b/data/CTR-BW2/art.jpg new file mode 100644 index 0000000..c657bb7 Binary files /dev/null and b/data/CTR-BW2/art.jpg differ diff --git a/data/CTR-BW2/data.yml b/data/CTR-BW2/data.yml new file mode 100644 index 0000000..992f986 --- /dev/null +++ b/data/CTR-BW2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C9600 + name: わんニャンどうぶつ病院 ペットのお医者さんになろう! + updates: [] diff --git a/data/CTR-BW2/icon.jpg b/data/CTR-BW2/icon.jpg new file mode 100644 index 0000000..fb603dd Binary files /dev/null and b/data/CTR-BW2/icon.jpg differ diff --git a/data/CTR-BW3/art.jpg b/data/CTR-BW3/art.jpg new file mode 100644 index 0000000..64e0e27 Binary files /dev/null and b/data/CTR-BW3/art.jpg differ diff --git a/data/CTR-BW3/data.yml b/data/CTR-BW3/data.yml new file mode 100644 index 0000000..8b66702 --- /dev/null +++ b/data/CTR-BW3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001AFB00 + name: おそ松さん 松まつり! + updates: + - id: 0004000E001AFB00 + name: 更新データ Ver. 1.0.1 おそ松さん 松まつり! diff --git a/data/CTR-BW3/icon.jpg b/data/CTR-BW3/icon.jpg new file mode 100644 index 0000000..ecc5648 Binary files /dev/null and b/data/CTR-BW3/icon.jpg differ diff --git a/data/CTR-BW4/art.jpg b/data/CTR-BW4/art.jpg new file mode 100644 index 0000000..e999e3a Binary files /dev/null and b/data/CTR-BW4/art.jpg differ diff --git a/data/CTR-BW4/data.yml b/data/CTR-BW4/data.yml new file mode 100644 index 0000000..c26d2e9 --- /dev/null +++ b/data/CTR-BW4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000102700 + name: ワールドサッカー ウイニングイレブン 2014 + updates: [] diff --git a/data/CTR-BW4/icon.jpg b/data/CTR-BW4/icon.jpg new file mode 100644 index 0000000..76b9806 Binary files /dev/null and b/data/CTR-BW4/icon.jpg differ diff --git a/data/CTR-BWA/art.jpg b/data/CTR-BWA/art.jpg new file mode 100644 index 0000000..5ffc253 Binary files /dev/null and b/data/CTR-BWA/art.jpg differ diff --git a/data/CTR-BWA/data.yml b/data/CTR-BWA/data.yml new file mode 100644 index 0000000..06666a2 --- /dev/null +++ b/data/CTR-BWA/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001D0F00 + name: かわいいペットとくらそう! わんニャン&アイドルアニマル + updates: + - id: 0004000E001D0F00 + name: 更新データ Ver. 1.1 かわいいペットとくらそう! わんニャン&アイドルアニマル diff --git a/data/CTR-BWA/icon.jpg b/data/CTR-BWA/icon.jpg new file mode 100644 index 0000000..24df44e Binary files /dev/null and b/data/CTR-BWA/icon.jpg differ diff --git a/data/CTR-BWD/art.jpg b/data/CTR-BWD/art.jpg new file mode 100644 index 0000000..3554fe1 Binary files /dev/null and b/data/CTR-BWD/art.jpg differ diff --git a/data/CTR-BWD/data.yml b/data/CTR-BWD/data.yml new file mode 100644 index 0000000..8ab699e --- /dev/null +++ b/data/CTR-BWD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000161600 + name: Disney Art Academy™ + updates: [] +- regions: + - JP + id: 0004000000160E00 + name: ディズニーアートアカデミー + updates: [] +- regions: + - US + id: 0004000000161700 + name: Disney Art Academy™ + updates: [] diff --git a/data/CTR-BWD/icon.jpg b/data/CTR-BWD/icon.jpg new file mode 100644 index 0000000..26e7347 Binary files /dev/null and b/data/CTR-BWD/icon.jpg differ diff --git a/data/CTR-BWJ/art.jpg b/data/CTR-BWJ/art.jpg new file mode 100644 index 0000000..5940452 Binary files /dev/null and b/data/CTR-BWJ/art.jpg differ diff --git a/data/CTR-BWJ/data.yml b/data/CTR-BWJ/data.yml new file mode 100644 index 0000000..ac4aff6 --- /dev/null +++ b/data/CTR-BWJ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DA900 + name: Space Intervention + updates: [] +- regions: + - US + id: 00040000001DB200 + name: Space Intervention + updates: [] diff --git a/data/CTR-BWJ/icon.jpg b/data/CTR-BWJ/icon.jpg new file mode 100644 index 0000000..77854e8 Binary files /dev/null and b/data/CTR-BWJ/icon.jpg differ diff --git a/data/CTR-BWK/art.jpg b/data/CTR-BWK/art.jpg new file mode 100644 index 0000000..e6da5e2 Binary files /dev/null and b/data/CTR-BWK/art.jpg differ diff --git a/data/CTR-BWK/data.yml b/data/CTR-BWK/data.yml new file mode 100644 index 0000000..4e44eb4 --- /dev/null +++ b/data/CTR-BWK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C2C00 + name: クレヨンしんちゃん おでんわ~るど + updates: [] diff --git a/data/CTR-BWK/icon.jpg b/data/CTR-BWK/icon.jpg new file mode 100644 index 0000000..270ceed Binary files /dev/null and b/data/CTR-BWK/icon.jpg differ diff --git a/data/CTR-BWL/art.jpg b/data/CTR-BWL/art.jpg new file mode 100644 index 0000000..9fec0a6 Binary files /dev/null and b/data/CTR-BWL/art.jpg differ diff --git a/data/CTR-BWL/data.yml b/data/CTR-BWL/data.yml new file mode 100644 index 0000000..7686404 --- /dev/null +++ b/data/CTR-BWL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014A100 + name: Luv Me Buddies Wonderland + updates: [] diff --git a/data/CTR-BWL/icon.jpg b/data/CTR-BWL/icon.jpg new file mode 100644 index 0000000..77fda5b Binary files /dev/null and b/data/CTR-BWL/icon.jpg differ diff --git a/data/CTR-BWN/art.jpg b/data/CTR-BWN/art.jpg new file mode 100644 index 0000000..756b5e6 Binary files /dev/null and b/data/CTR-BWN/art.jpg differ diff --git a/data/CTR-BWN/data.yml b/data/CTR-BWN/data.yml new file mode 100644 index 0000000..2cde323 --- /dev/null +++ b/data/CTR-BWN/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000103200 + name: わんニャンペットショップ + updates: + - id: 0004000E00103200 + name: 更新データ Ver. 1.2 わんニャンペットショップ diff --git a/data/CTR-BWN/icon.jpg b/data/CTR-BWN/icon.jpg new file mode 100644 index 0000000..b8b2d42 Binary files /dev/null and b/data/CTR-BWN/icon.jpg differ diff --git a/data/CTR-BWR/art.jpg b/data/CTR-BWR/art.jpg new file mode 100644 index 0000000..0ba103d Binary files /dev/null and b/data/CTR-BWR/art.jpg differ diff --git a/data/CTR-BWR/data.yml b/data/CTR-BWR/data.yml new file mode 100644 index 0000000..80c968c --- /dev/null +++ b/data/CTR-BWR/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000149300 + name: WRC The Official Game + updates: [] +- regions: + - US + id: 0004000000149600 + name: WRC Official Game of the FIA World Rally Championship + updates: [] diff --git a/data/CTR-BWR/icon.jpg b/data/CTR-BWR/icon.jpg new file mode 100644 index 0000000..f1cb10b Binary files /dev/null and b/data/CTR-BWR/icon.jpg differ diff --git a/data/CTR-BWS/art.jpg b/data/CTR-BWS/art.jpg new file mode 100644 index 0000000..037f114 Binary files /dev/null and b/data/CTR-BWS/art.jpg differ diff --git a/data/CTR-BWS/data.yml b/data/CTR-BWS/data.yml new file mode 100644 index 0000000..453de29 --- /dev/null +++ b/data/CTR-BWS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C1800 + name: スナックワールド トレジャラーズ + updates: + - id: 0004000E001C1800 + name: 更新データ Ver.3.2 スナックワールド トレジャラーズ diff --git a/data/CTR-BWS/icon.jpg b/data/CTR-BWS/icon.jpg new file mode 100644 index 0000000..217c679 Binary files /dev/null and b/data/CTR-BWS/icon.jpg differ diff --git a/data/CTR-BWT/art.jpg b/data/CTR-BWT/art.jpg new file mode 100644 index 0000000..03e19a4 Binary files /dev/null and b/data/CTR-BWT/art.jpg differ diff --git a/data/CTR-BWT/data.yml b/data/CTR-BWT/data.yml new file mode 100644 index 0000000..7c34a11 --- /dev/null +++ b/data/CTR-BWT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 0004000000143200 + name: アンパンマンとタッチでわくわくトレーニング + updates: [] diff --git a/data/CTR-BWT/icon.jpg b/data/CTR-BWT/icon.jpg new file mode 100644 index 0000000..1d15411 Binary files /dev/null and b/data/CTR-BWT/icon.jpg differ diff --git a/data/CTR-BWX/art.jpg b/data/CTR-BWX/art.jpg new file mode 100644 index 0000000..6db8c45 Binary files /dev/null and b/data/CTR-BWX/art.jpg differ diff --git a/data/CTR-BWX/data.yml b/data/CTR-BWX/data.yml new file mode 100644 index 0000000..04bd48c --- /dev/null +++ b/data/CTR-BWX/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - US + id: 00040000001D4500 + name: WarioWare™ Gold Special Demo + updates: [] diff --git a/data/CTR-BWX/icon.jpg b/data/CTR-BWX/icon.jpg new file mode 100644 index 0000000..eab5e49 Binary files /dev/null and b/data/CTR-BWX/icon.jpg differ diff --git a/data/CTR-BX2/art.jpg b/data/CTR-BX2/art.jpg new file mode 100644 index 0000000..273496d Binary files /dev/null and b/data/CTR-BX2/art.jpg differ diff --git a/data/CTR-BX2/data.yml b/data/CTR-BX2/data.yml new file mode 100644 index 0000000..9ad2a8a --- /dev/null +++ b/data/CTR-BX2/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 000400000014FB00 + name: 'PROJECT X ZONE 2: BRAVE NEW WORLD' + updates: + - id: 0004000E0014FB00 + name: 更新データ Ver. 1.2 PROJECT X ZONE 2 diff --git a/data/CTR-BX2/icon.jpg b/data/CTR-BX2/icon.jpg new file mode 100644 index 0000000..1864155 Binary files /dev/null and b/data/CTR-BX2/icon.jpg differ diff --git a/data/CTR-BXL/art.jpg b/data/CTR-BXL/art.jpg new file mode 100644 index 0000000..a3d22a7 Binary files /dev/null and b/data/CTR-BXL/art.jpg differ diff --git a/data/CTR-BXL/data.yml b/data/CTR-BXL/data.yml new file mode 100644 index 0000000..d6b0505 --- /dev/null +++ b/data/CTR-BXL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000162F00 + name: Chibi-Robo!™ Zip Lash + updates: [] +- regions: + - JP + id: 0004000000152600 + name: なげなわアクション! ぐるぐる!ちびロボ! + updates: [] +- regions: + - US + id: 0004000000163000 + name: Chibi-Robo!™ Zip Lash + updates: [] diff --git a/data/CTR-BXL/icon.jpg b/data/CTR-BXL/icon.jpg new file mode 100644 index 0000000..c3b6251 Binary files /dev/null and b/data/CTR-BXL/icon.jpg differ diff --git a/data/CTR-BXP/art.jpg b/data/CTR-BXP/art.jpg new file mode 100644 index 0000000..43405c6 Binary files /dev/null and b/data/CTR-BXP/art.jpg differ diff --git a/data/CTR-BXP/data.yml b/data/CTR-BXP/data.yml new file mode 100644 index 0000000..4f74647 --- /dev/null +++ b/data/CTR-BXP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000014FC00 + name: 'PROJECT X ZONE 2: BRAVE NEW WORLD OGSG' + updates: + - id: 0004000E0014FC00 + name: 更新データ Ver. 1.2 PROJECT X ZONE 2 オリジナルゲームサウンドエディション diff --git a/data/CTR-BXP/icon.jpg b/data/CTR-BXP/icon.jpg new file mode 100644 index 0000000..1864155 Binary files /dev/null and b/data/CTR-BXP/icon.jpg differ diff --git a/data/CTR-BXV/art.jpg b/data/CTR-BXV/art.jpg new file mode 100644 index 0000000..3c60169 Binary files /dev/null and b/data/CTR-BXV/art.jpg differ diff --git a/data/CTR-BXV/data.yml b/data/CTR-BXV/data.yml new file mode 100644 index 0000000..b9e40f1 --- /dev/null +++ b/data/CTR-BXV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019EF00 + name: 'Monster Hunter™ Generations: Demo' + updates: [] +- regions: + - US + id: 000400000019F000 + name: Monster Hunter Generations™ Special Demo + updates: [] diff --git a/data/CTR-BXV/icon.jpg b/data/CTR-BXV/icon.jpg new file mode 100644 index 0000000..8da78a8 Binary files /dev/null and b/data/CTR-BXV/icon.jpg differ diff --git a/data/CTR-BXX/art.jpg b/data/CTR-BXX/art.jpg new file mode 100644 index 0000000..6c93cab Binary files /dev/null and b/data/CTR-BXX/art.jpg differ diff --git a/data/CTR-BXX/data.yml b/data/CTR-BXX/data.yml new file mode 100644 index 0000000..84ffe95 --- /dev/null +++ b/data/CTR-BXX/data.yml @@ -0,0 +1,26 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000185B00 + name: Monster Hunter™ Generations + updates: [] +- regions: + - JP + id: 0004000000155400 + name: モンスターハンタークロス + updates: + - id: 0004000E00155400 + name: 更新データ Ver. 1.3.0 モンスターハンタークロス +- regions: + - TW + id: 000400000017EC00 + name: MONSTER HUNTER® X (日文版) + updates: + - id: 0004000E0017EC00 + name: MONSTER HUNTER X 更新資料 Ver. 1.3.0 +- regions: + - US + id: 0004000000187000 + name: Monster Hunter Generations™ + updates: [] diff --git a/data/CTR-BXX/icon.jpg b/data/CTR-BXX/icon.jpg new file mode 100644 index 0000000..c9a3096 Binary files /dev/null and b/data/CTR-BXX/icon.jpg differ diff --git a/data/CTR-BY3/art.jpg b/data/CTR-BY3/art.jpg new file mode 100644 index 0000000..9c355b2 Binary files /dev/null and b/data/CTR-BY3/art.jpg differ diff --git a/data/CTR-BY3/data.yml b/data/CTR-BY3/data.yml new file mode 100644 index 0000000..a34bc68 --- /dev/null +++ b/data/CTR-BY3/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000191000 + name: 妖怪ウォッチ3 スシ + updates: + - id: 0004000E00191000 + name: 更新データ Ver. 4.0 妖怪ウォッチ3 スシ diff --git a/data/CTR-BY3/icon.jpg b/data/CTR-BY3/icon.jpg new file mode 100644 index 0000000..4eb04ac Binary files /dev/null and b/data/CTR-BY3/icon.jpg differ diff --git a/data/CTR-BY4/art.jpg b/data/CTR-BY4/art.jpg new file mode 100644 index 0000000..75721fb Binary files /dev/null and b/data/CTR-BY4/art.jpg differ diff --git a/data/CTR-BY4/data.yml b/data/CTR-BY4/data.yml new file mode 100644 index 0000000..f98b3a7 --- /dev/null +++ b/data/CTR-BY4/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000191100 + name: 妖怪ウォッチ3 テンプラ + updates: + - id: 0004000E00191100 + name: 更新データ Ver. 4.0 妖怪ウォッチ3 テンプラ diff --git a/data/CTR-BY4/icon.jpg b/data/CTR-BY4/icon.jpg new file mode 100644 index 0000000..1cbd72f Binary files /dev/null and b/data/CTR-BY4/icon.jpg differ diff --git a/data/CTR-BY5/art.jpg b/data/CTR-BY5/art.jpg new file mode 100644 index 0000000..83ad262 Binary files /dev/null and b/data/CTR-BY5/art.jpg differ diff --git a/data/CTR-BY5/data.yml b/data/CTR-BY5/data.yml new file mode 100644 index 0000000..e1eb075 --- /dev/null +++ b/data/CTR-BY5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - US + id: 000400000016F100 + name: Are You Smarter Than a 5th Grader? + updates: [] diff --git a/data/CTR-BY5/icon.jpg b/data/CTR-BY5/icon.jpg new file mode 100644 index 0000000..0aa6955 Binary files /dev/null and b/data/CTR-BY5/icon.jpg differ diff --git a/data/CTR-BYA/art.jpg b/data/CTR-BYA/art.jpg new file mode 100644 index 0000000..4d72db0 Binary files /dev/null and b/data/CTR-BYA/art.jpg differ diff --git a/data/CTR-BYA/data.yml b/data/CTR-BYA/data.yml new file mode 100644 index 0000000..f167f98 --- /dev/null +++ b/data/CTR-BYA/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CEC00 + name: 'YO-KAI WATCH BLASTERS®: Red Cat Corps' + updates: + - id: 0004000E001CEC00 + name: 'Red Cat Corps: Update' +- regions: + - JP + id: 000400000016C700 + name: 妖怪ウォッチバスターズ 赤猫団 + updates: + - id: 0004000E0016C700 + name: 更新データ Ver. 2.3 妖怪ウォッチバスターズ 赤猫団 +- regions: + - KR + id: 00040000001CED00 + name: 요괴워치® 버스터즈 적묘단 + updates: + - id: 0004000E001CED00 + name: 업데이트 데이터 Ver.2.3 요괴워치® 버스터즈 적묘단 +- regions: + - US + id: 00040000001CEB00 + name: 'YO-KAI WATCH™ BLASTERS: Red Cat Corps' + updates: + - id: 0004000E001CEB00 + name: 'YO-KAI WATCH™ BLASTERS: Red Cat Corps Update Ver. 2.4' diff --git a/data/CTR-BYA/icon.jpg b/data/CTR-BYA/icon.jpg new file mode 100644 index 0000000..862c430 Binary files /dev/null and b/data/CTR-BYA/icon.jpg differ diff --git a/data/CTR-BYB/art.jpg b/data/CTR-BYB/art.jpg new file mode 100644 index 0000000..54080a2 Binary files /dev/null and b/data/CTR-BYB/art.jpg differ diff --git a/data/CTR-BYB/data.yml b/data/CTR-BYB/data.yml new file mode 100644 index 0000000..1e55349 --- /dev/null +++ b/data/CTR-BYB/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CF000 + name: 'YO-KAI WATCH BLASTERS®: White Dog Squad' + updates: + - id: 0004000E001CF000 + name: 'White Dog Squad: Update' +- regions: + - JP + id: 000400000016C600 + name: 妖怪ウォッチバスターズ 白犬隊 + updates: + - id: 0004000E0016C600 + name: 更新データ Ver. 2.3 妖怪ウォッチバスターズ 白犬隊 +- regions: + - KR + id: 00040000001CF200 + name: 요괴워치® 버스터즈 백견대 + updates: + - id: 0004000E001CF200 + name: 업데이트 데이터 Ver.2.3 요괴워치® 버스터즈 백견대 +- regions: + - US + id: 00040000001CEF00 + name: 'YO-KAI WATCH™ BLASTERS: White Dog Squad' + updates: + - id: 0004000E001CEF00 + name: 'YO-KAI WATCH™ BLASTERS: White Dog Squad Update Ver. 2.4' diff --git a/data/CTR-BYB/icon.jpg b/data/CTR-BYB/icon.jpg new file mode 100644 index 0000000..179ef8e Binary files /dev/null and b/data/CTR-BYB/icon.jpg differ diff --git a/data/CTR-BYC/art.jpg b/data/CTR-BYC/art.jpg new file mode 100644 index 0000000..73c4233 Binary files /dev/null and b/data/CTR-BYC/art.jpg differ diff --git a/data/CTR-BYC/data.yml b/data/CTR-BYC/data.yml new file mode 100644 index 0000000..c1f8e72 --- /dev/null +++ b/data/CTR-BYC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C9500 + name: 美容師デビュー物語 トップスタイリストをめざそう! + updates: [] diff --git a/data/CTR-BYC/icon.jpg b/data/CTR-BYC/icon.jpg new file mode 100644 index 0000000..8126049 Binary files /dev/null and b/data/CTR-BYC/icon.jpg differ diff --git a/data/CTR-BYD/art.jpg b/data/CTR-BYD/art.jpg new file mode 100644 index 0000000..0e34634 Binary files /dev/null and b/data/CTR-BYD/art.jpg differ diff --git a/data/CTR-BYD/data.yml b/data/CTR-BYD/data.yml new file mode 100644 index 0000000..1e7a4e6 --- /dev/null +++ b/data/CTR-BYD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000174A00 + name: 食戟のソーマ 友情と絆の一皿 + updates: [] diff --git a/data/CTR-BYD/icon.jpg b/data/CTR-BYD/icon.jpg new file mode 100644 index 0000000..36e6d81 Binary files /dev/null and b/data/CTR-BYD/icon.jpg differ diff --git a/data/CTR-BYE/art.jpg b/data/CTR-BYE/art.jpg new file mode 100644 index 0000000..e587e98 Binary files /dev/null and b/data/CTR-BYE/art.jpg differ diff --git a/data/CTR-BYE/data.yml b/data/CTR-BYE/data.yml new file mode 100644 index 0000000..cfa003d --- /dev/null +++ b/data/CTR-BYE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOnly +releases: +- regions: + - JP + id: 000400000018E200 + name: SIMPLEシリーズ for 3DS Vol.2 THE密室からの脱出 アーカイブス1 + updates: [] diff --git a/data/CTR-BYE/icon.jpg b/data/CTR-BYE/icon.jpg new file mode 100644 index 0000000..a5d1ef6 Binary files /dev/null and b/data/CTR-BYE/icon.jpg differ diff --git a/data/CTR-BYF/art.jpg b/data/CTR-BYF/art.jpg new file mode 100644 index 0000000..d30bd1b Binary files /dev/null and b/data/CTR-BYF/art.jpg differ diff --git a/data/CTR-BYF/data.yml b/data/CTR-BYF/data.yml new file mode 100644 index 0000000..8bc8c17 --- /dev/null +++ b/data/CTR-BYF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001B3F00 + name: プロ野球 ファミスタ クライマックス + updates: + - id: 0004000E001B3F00 + name: 更新データ Ver. 1.5.0 プロ野球 ファミスタ クライマックス diff --git a/data/CTR-BYF/icon.jpg b/data/CTR-BYF/icon.jpg new file mode 100644 index 0000000..eca5b66 Binary files /dev/null and b/data/CTR-BYF/icon.jpg differ diff --git a/data/CTR-BYG/art.jpg b/data/CTR-BYG/art.jpg new file mode 100644 index 0000000..1fd0f8f Binary files /dev/null and b/data/CTR-BYG/art.jpg differ diff --git a/data/CTR-BYG/data.yml b/data/CTR-BYG/data.yml new file mode 100644 index 0000000..d54c4ce --- /dev/null +++ b/data/CTR-BYG/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000019AB00 + name: 'YO-KAI WATCH® 2: Bony Spirits' + updates: + - id: 0004000E0019AB00 + name: 'YO-KAI WATCH® 2: Bony Spirits: Update' +- regions: + - JP + id: 000400000012F900 + name: 妖怪ウォッチ2 元祖 + updates: + - id: 0004000E0012F900 + name: 更新データ Ver. 2.1 妖怪ウォッチ2 元祖 +- regions: + - KR + id: 000400000019AE00 + name: 요괴워치 2 원조 + updates: + - id: 0004000E0019AE00 + name: 업데이트 데이터 Ver.2.0 요괴워치 2 원조 +- regions: + - US + id: 000400000019A900 + name: 'YO-KAI WATCH™ 2: Bony Spirits' + updates: + - id: 0004000E0019A900 + name: 'YO-KAI WATCH™ 2: Bony Spirits Update Ver. 2.0' diff --git a/data/CTR-BYG/icon.jpg b/data/CTR-BYG/icon.jpg new file mode 100644 index 0000000..e929582 Binary files /dev/null and b/data/CTR-BYG/icon.jpg differ diff --git a/data/CTR-BYH/art.jpg b/data/CTR-BYH/art.jpg new file mode 100644 index 0000000..5989806 Binary files /dev/null and b/data/CTR-BYH/art.jpg differ diff --git a/data/CTR-BYH/data.yml b/data/CTR-BYH/data.yml new file mode 100644 index 0000000..8e2e9c1 --- /dev/null +++ b/data/CTR-BYH/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000019AC00 + name: 'YO-KAI WATCH® 2: Fleshy Souls' + updates: + - id: 0004000E0019AC00 + name: 'YO-KAI WATCH® 2: Fleshy Souls: Update' +- regions: + - JP + id: 000400000012F800 + name: 妖怪ウォッチ2 本家 + updates: + - id: 0004000E0012F800 + name: 更新データ Ver. 2.1 妖怪ウォッチ2 本家 +- regions: + - KR + id: 000400000019AF00 + name: 요괴워치 2 본가 + updates: + - id: 0004000E0019AF00 + name: 업데이트 데이터 Ver.2.0 요괴워치 2 본가 +- regions: + - US + id: 000400000019AA00 + name: 'YO-KAI WATCH™ 2: Fleshy Souls' + updates: + - id: 0004000E0019AA00 + name: 'YO-KAI WATCH™ 2: Fleshy Souls Update Ver. 2.0' diff --git a/data/CTR-BYH/icon.jpg b/data/CTR-BYH/icon.jpg new file mode 100644 index 0000000..cce7b5f Binary files /dev/null and b/data/CTR-BYH/icon.jpg differ diff --git a/data/CTR-BYJ/art.jpg b/data/CTR-BYJ/art.jpg new file mode 100644 index 0000000..3667e4b Binary files /dev/null and b/data/CTR-BYJ/art.jpg differ diff --git a/data/CTR-BYJ/data.yml b/data/CTR-BYJ/data.yml new file mode 100644 index 0000000..2b4ed74 --- /dev/null +++ b/data/CTR-BYJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000176100 + name: 'Goosebumps: The Game' + updates: [] diff --git a/data/CTR-BYJ/icon.jpg b/data/CTR-BYJ/icon.jpg new file mode 100644 index 0000000..b480948 Binary files /dev/null and b/data/CTR-BYJ/icon.jpg differ diff --git a/data/CTR-BYM/art.jpg b/data/CTR-BYM/art.jpg new file mode 100644 index 0000000..cef5f26 Binary files /dev/null and b/data/CTR-BYM/art.jpg differ diff --git a/data/CTR-BYM/data.yml b/data/CTR-BYM/data.yml new file mode 100644 index 0000000..5e8846c --- /dev/null +++ b/data/CTR-BYM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C9C00 + name: 妖怪ウォッチバスターズ2 マグナム + updates: + - id: 0004000E001C9C00 + name: 更新データ Ver. 1.5 妖怪ウォッチバスターズ2 マグナム diff --git a/data/CTR-BYM/icon.jpg b/data/CTR-BYM/icon.jpg new file mode 100644 index 0000000..4127442 Binary files /dev/null and b/data/CTR-BYM/icon.jpg differ diff --git a/data/CTR-BYN/art.jpg b/data/CTR-BYN/art.jpg new file mode 100644 index 0000000..c7ddd91 Binary files /dev/null and b/data/CTR-BYN/art.jpg differ diff --git a/data/CTR-BYN/data.yml b/data/CTR-BYN/data.yml new file mode 100644 index 0000000..edecdd6 --- /dev/null +++ b/data/CTR-BYN/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 00040000001C9400 + name: 妖怪ウォッチバスターズ2 ソード + updates: + - id: 0004000E001C9400 + name: 更新データ Ver. 1.5 妖怪ウォッチバスターズ2 ソード diff --git a/data/CTR-BYN/icon.jpg b/data/CTR-BYN/icon.jpg new file mode 100644 index 0000000..500e5ef Binary files /dev/null and b/data/CTR-BYN/icon.jpg differ diff --git a/data/CTR-BYS/art.jpg b/data/CTR-BYS/art.jpg new file mode 100644 index 0000000..fc96af5 Binary files /dev/null and b/data/CTR-BYS/art.jpg differ diff --git a/data/CTR-BYS/data.yml b/data/CTR-BYS/data.yml new file mode 100644 index 0000000..92ab6da --- /dev/null +++ b/data/CTR-BYS/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001B2900 + name: 'YO-KAI WATCH® 2: Psychic Specters' + updates: [] +- regions: + - JP + id: 0004000000155100 + name: 妖怪ウォッチ2 真打 + updates: + - id: 0004000E00155100 + name: 更新データ Ver. 1.2 妖怪ウォッチ2 真打 +- regions: + - KR + id: 00040000001B2A00 + name: 요괴워치 2 끝판왕 + updates: [] +- regions: + - US + id: 00040000001B2700 + name: 'YO-KAI WATCH™ 2: Psychic Specters' + updates: [] diff --git a/data/CTR-BYS/icon.jpg b/data/CTR-BYS/icon.jpg new file mode 100644 index 0000000..4822fe0 Binary files /dev/null and b/data/CTR-BYS/icon.jpg differ diff --git a/data/CTR-BYW/art.jpg b/data/CTR-BYW/art.jpg new file mode 100644 index 0000000..2ff3700 Binary files /dev/null and b/data/CTR-BYW/art.jpg differ diff --git a/data/CTR-BYW/data.yml b/data/CTR-BYW/data.yml new file mode 100644 index 0000000..c37edc0 --- /dev/null +++ b/data/CTR-BYW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B7100 + name: 'YO-KAI WATCH™ 2: Special Demo' + updates: [] +- regions: + - KR + id: 00040000001BB500 + name: 요괴워치 2 특별체험판 + updates: [] diff --git a/data/CTR-BYW/icon.jpg b/data/CTR-BYW/icon.jpg new file mode 100644 index 0000000..6902041 Binary files /dev/null and b/data/CTR-BYW/icon.jpg differ diff --git a/data/CTR-BZE/art.jpg b/data/CTR-BZE/art.jpg new file mode 100644 index 0000000..4d5add6 Binary files /dev/null and b/data/CTR-BZE/art.jpg differ diff --git a/data/CTR-BZE/data.yml b/data/CTR-BZE/data.yml new file mode 100644 index 0000000..1d08a6d --- /dev/null +++ b/data/CTR-BZE/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000182700 + name: 'Zero Escape: Zero Time Dilemma' + updates: [] +- regions: + - KR + id: 000400000018E600 + name: 'Zero Escape: Zero Time Dilemma' + updates: [] +- regions: + - TW + id: 000400000018BA00 + name: 'Zero Escape: Zero Time Dilemma (英文版)' + updates: [] +- regions: + - US + id: 000400000017B200 + name: 'Zero Escape: Zero Time Dilemma' + updates: [] diff --git a/data/CTR-BZE/icon.jpg b/data/CTR-BZE/icon.jpg new file mode 100644 index 0000000..6d15bc5 Binary files /dev/null and b/data/CTR-BZE/icon.jpg differ diff --git a/data/CTR-BZG/art.jpg b/data/CTR-BZG/art.jpg new file mode 100644 index 0000000..7d3da1f Binary files /dev/null and b/data/CTR-BZG/art.jpg differ diff --git a/data/CTR-BZG/data.yml b/data/CTR-BZG/data.yml new file mode 100644 index 0000000..5e82740 --- /dev/null +++ b/data/CTR-BZG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000180F00 + name: ZERO ESCAPE 刻のジレンマ + updates: [] diff --git a/data/CTR-BZG/icon.jpg b/data/CTR-BZG/icon.jpg new file mode 100644 index 0000000..6b4bbfa Binary files /dev/null and b/data/CTR-BZG/icon.jpg differ diff --git a/data/CTR-BZH/art.jpg b/data/CTR-BZH/art.jpg new file mode 100644 index 0000000..8a9ad41 Binary files /dev/null and b/data/CTR-BZH/art.jpg differ diff --git a/data/CTR-BZH/data.yml b/data/CTR-BZH/data.yml new file mode 100644 index 0000000..7ade051 --- /dev/null +++ b/data/CTR-BZH/data.yml @@ -0,0 +1,30 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017EB00 + name: Hyrule Warriors™ Legends + updates: + - id: 0004000E0017EB00 + name: 'Hyrule Warriors™ Legends: Update' +- regions: + - JP + id: 000400000017D500 + name: ゼルダ無双 ハイラルオールスターズ + updates: + - id: 0004000E0017D500 + name: 更新データ Ver. 1.6.0 ゼルダ無双 ハイラルオールスターズ +- regions: + - KR + id: 0004000000189E00 + name: 젤다무쌍 하이랄의 전설들 + updates: + - id: 0004000E00189E00 + name: 업데이트 데이터 Ver. 1.6.0 젤다무쌍 하이랄의 전설들 +- regions: + - US + id: 000400000017EA00 + name: Hyrule Warriors Legends + updates: + - id: 0004000E0017EA00 + name: Hyrule Warriors Legends Update Ver. 1.6.0 diff --git a/data/CTR-BZH/icon.jpg b/data/CTR-BZH/icon.jpg new file mode 100644 index 0000000..3fa56e4 Binary files /dev/null and b/data/CTR-BZH/icon.jpg differ diff --git a/data/CTR-BZL/art.jpg b/data/CTR-BZL/art.jpg new file mode 100644 index 0000000..1fa0430 Binary files /dev/null and b/data/CTR-BZL/art.jpg differ diff --git a/data/CTR-BZL/data.yml b/data/CTR-BZL/data.yml new file mode 100644 index 0000000..32d372c --- /dev/null +++ b/data/CTR-BZL/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000000EC400 + name: 'The Legend of Zelda™: A Link Between Worlds' + updates: [] +- regions: + - JP + id: 00040000000EC200 + name: ゼルダの伝説 神々のトライフォース2 + updates: [] +- regions: + - KR + id: 0004000000115800 + name: 젤다의 전설 신들의 트라이포스 2 + updates: [] +- regions: + - TW + id: 0004000000115700 + name: 'The Legend of Zelda: A Link Between Worlds (英文版)' + updates: [] +- regions: + - US + id: 00040000000EC300 + name: 'The Legend of Zelda™: A Link Between Worlds' + updates: [] diff --git a/data/CTR-BZL/icon.jpg b/data/CTR-BZL/icon.jpg new file mode 100644 index 0000000..5cd8944 Binary files /dev/null and b/data/CTR-BZL/icon.jpg differ diff --git a/data/CTR-BZM/art.jpg b/data/CTR-BZM/art.jpg new file mode 100644 index 0000000..497277f Binary files /dev/null and b/data/CTR-BZM/art.jpg differ diff --git a/data/CTR-BZM/data.yml b/data/CTR-BZM/data.yml new file mode 100644 index 0000000..006e338 --- /dev/null +++ b/data/CTR-BZM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001D5200 + name: Etrian Odyssey Nexus + updates: [] +- regions: + - JP + id: 00040000001CA300 + name: 世界樹の迷宮X(クロス) + updates: [] +- regions: + - US + id: 00040000001D4E00 + name: Etrian Odyssey Nexus + updates: [] diff --git a/data/CTR-BZM/icon.jpg b/data/CTR-BZM/icon.jpg new file mode 100644 index 0000000..cd00795 Binary files /dev/null and b/data/CTR-BZM/icon.jpg differ diff --git a/data/CTR-BZP/art.jpg b/data/CTR-BZP/art.jpg new file mode 100644 index 0000000..85297b3 Binary files /dev/null and b/data/CTR-BZP/art.jpg differ diff --git a/data/CTR-BZP/data.yml b/data/CTR-BZP/data.yml new file mode 100644 index 0000000..4fb3b94 --- /dev/null +++ b/data/CTR-BZP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 00040000001CB200 + name: 'Captain Toad™: Treasure Tracker' + updates: [] +- regions: + - JP + id: 00040000001CB000 + name: 進め!キノピオ隊長 + updates: [] +- regions: + - US + id: 00040000001CB100 + name: 'Captain Toad™: Treasure Tracker' + updates: [] diff --git a/data/CTR-BZP/icon.jpg b/data/CTR-BZP/icon.jpg new file mode 100644 index 0000000..e0e0e46 Binary files /dev/null and b/data/CTR-BZP/icon.jpg differ diff --git a/data/CTR-BZR/art.jpg b/data/CTR-BZR/art.jpg new file mode 100644 index 0000000..ff014f0 Binary files /dev/null and b/data/CTR-BZR/art.jpg differ diff --git a/data/CTR-BZR/data.yml b/data/CTR-BZR/data.yml new file mode 100644 index 0000000..e1d9633 --- /dev/null +++ b/data/CTR-BZR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - JP + id: 0004000000115500 + name: マジンボーン 時間と空間の魔神 + updates: [] diff --git a/data/CTR-BZR/icon.jpg b/data/CTR-BZR/icon.jpg new file mode 100644 index 0000000..714cbc2 Binary files /dev/null and b/data/CTR-BZR/icon.jpg differ diff --git a/data/CTR-BZT/art.jpg b/data/CTR-BZT/art.jpg new file mode 100644 index 0000000..d54b70b Binary files /dev/null and b/data/CTR-BZT/art.jpg differ diff --git a/data/CTR-BZT/data.yml b/data/CTR-BZT/data.yml new file mode 100644 index 0000000..44303d8 --- /dev/null +++ b/data/CTR-BZT/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - US + id: 00040000001D2900 + name: Detective Pikachu™ Special Demo + updates: [] diff --git a/data/CTR-BZT/icon.jpg b/data/CTR-BZT/icon.jpg new file mode 100644 index 0000000..4251b2e Binary files /dev/null and b/data/CTR-BZT/icon.jpg differ diff --git a/data/CTR-EA3/art.jpg b/data/CTR-EA3/art.jpg new file mode 100644 index 0000000..bc37a74 Binary files /dev/null and b/data/CTR-EA3/art.jpg differ diff --git a/data/CTR-EA3/data.yml b/data/CTR-EA3/data.yml new file mode 100644 index 0000000..be9d36d --- /dev/null +++ b/data/CTR-EA3/data.yml @@ -0,0 +1,33 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000177000 + name: 'The Legend of Zelda™: Tri Force Heroes' + updates: + - id: 0004000E00177000 + name: 'The Legend of Zelda™: Tri Force Heroes: Update' +- regions: + - JP + id: 0004000000176E00 + name: ゼルダの伝説 トライフォース3銃士 + updates: + - id: 0004000E00176E00 + name: 更新データ Ver. 2.1.0 ゼルダの伝説 トライフォース3銃士 +- regions: + - KR + id: 0004000000182B00 + name: 젤다의 전설 트라이포스 삼총사 + updates: [] +- regions: + - TW + id: 0004000000182C00 + name: ゼルダの伝說  トライフォース3銃士 (日文版) + updates: [] +- regions: + - US + id: 0004000000176F00 + name: 'The Legend of Zelda™: Tri Force Heroes' + updates: + - id: 0004000E00176F00 + name: 'The Legend of Zelda™: Tri Force Heroes Update Ver. 2.1.0' diff --git a/data/CTR-EA3/icon.jpg b/data/CTR-EA3/icon.jpg new file mode 100644 index 0000000..fa36cdf Binary files /dev/null and b/data/CTR-EA3/icon.jpg differ diff --git a/data/CTR-EAA/art.jpg b/data/CTR-EAA/art.jpg new file mode 100644 index 0000000..2f89e47 Binary files /dev/null and b/data/CTR-EAA/art.jpg differ diff --git a/data/CTR-EAA/data.yml b/data/CTR-EAA/data.yml new file mode 100644 index 0000000..b5e07be --- /dev/null +++ b/data/CTR-EAA/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 0004000000198F00 + name: 'Animal Crossing™: New Leaf - Welcome amiibo' + updates: + - id: 0004000E00198F00 + name: 'Animal Crossing™: New Leaf - Welcome amiibo: Update' +- regions: + - JP + id: 0004000000198D00 + name: とびだせ どうぶつの森 amiibo+ + updates: + - id: 0004000E00198D00 + name: 更新データ Ver. 1.5 とびだせ どうぶつの森 amiibo+ +- regions: + - KR + id: 0004000000199000 + name: 튀어나와요 동물의 숲 amiibo+ + updates: + - id: 0004000E00199000 + name: 업데이트 데이터 Ver.1.5 튀어나와요 동물의 숲 amiibo+ +- regions: + - US + id: 0004000000198E00 + name: 'Animal Crossing™: New Leaf Welcome amiibo' + updates: [] diff --git a/data/CTR-EAA/icon.jpg b/data/CTR-EAA/icon.jpg new file mode 100644 index 0000000..78f23da Binary files /dev/null and b/data/CTR-EAA/icon.jpg differ diff --git a/data/CTR-EC6/art.jpg b/data/CTR-EC6/art.jpg new file mode 100644 index 0000000..18ea07e Binary files /dev/null and b/data/CTR-EC6/art.jpg differ diff --git a/data/CTR-EC6/data.yml b/data/CTR-EC6/data.yml new file mode 100644 index 0000000..c5da830 --- /dev/null +++ b/data/CTR-EC6/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000008C400 + name: Tomodachi Life™ + updates: + - id: 0004000E0008C400 + name: 'Tomodachi Life™: Update' +- regions: + - JP + id: 000400000008C500 + name: トモダチコレクション 新生活 + updates: + - id: 0004000E0008C500 + name: 更新データ Ver. 1.2 トモダチコレクション 新生活 +- regions: + - KR + id: 0004000000120C00 + name: 친구모아 아파트 + updates: [] +- regions: + - US + id: 000400000008C300 + name: Tomodachi Life™ + updates: + - id: 0004000E0008C300 + name: Tomodachi Life™ Update Ver. 1.1 diff --git a/data/CTR-EC6/icon.jpg b/data/CTR-EC6/icon.jpg new file mode 100644 index 0000000..824d3f3 Binary files /dev/null and b/data/CTR-EC6/icon.jpg differ diff --git a/data/CTR-ECD/art.jpg b/data/CTR-ECD/art.jpg new file mode 100644 index 0000000..d43143a Binary files /dev/null and b/data/CTR-ECD/art.jpg differ diff --git a/data/CTR-ECD/data.yml b/data/CTR-ECD/data.yml new file mode 100644 index 0000000..6386731 --- /dev/null +++ b/data/CTR-ECD/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000016A100 + name: 'Nintendo presents: New Style Boutique™ 2' + updates: + - id: 0004000E0016A100 + name: 'New Style Boutique™ 2 - Fashion Forward: Update' +- regions: + - JP + id: 000400000012D800 + name: GIRLS MODE 3 キラキラ☆コーデ + updates: + - id: 0004000E0012D800 + name: 更新データ Ver. 1.2.0 GIRLS MODE 3 キラキラ☆コーデ +- regions: + - US + id: 0004000000196500 + name: 'Style Savvy™: Fashion Forward' + updates: [] diff --git a/data/CTR-ECD/icon.jpg b/data/CTR-ECD/icon.jpg new file mode 100644 index 0000000..3104ca9 Binary files /dev/null and b/data/CTR-ECD/icon.jpg differ diff --git a/data/CTR-ECL/art.jpg b/data/CTR-ECL/art.jpg new file mode 100644 index 0000000..3dc4089 Binary files /dev/null and b/data/CTR-ECL/art.jpg differ diff --git a/data/CTR-ECL/data.yml b/data/CTR-ECL/data.yml new file mode 100644 index 0000000..a6af274 --- /dev/null +++ b/data/CTR-ECL/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 000400000011C500 + name: Pokémon™ Alpha Sapphire + updates: + - id: 0004000E0011C500 + name: Pokémon™ Alpha Sapphire Update Ver. 1.4 diff --git a/data/CTR-ECL/icon.jpg b/data/CTR-ECL/icon.jpg new file mode 100644 index 0000000..7f7a70b Binary files /dev/null and b/data/CTR-ECL/icon.jpg differ diff --git a/data/CTR-ECR/art.jpg b/data/CTR-ECR/art.jpg new file mode 100644 index 0000000..d3f4c5c Binary files /dev/null and b/data/CTR-ECR/art.jpg differ diff --git a/data/CTR-ECR/data.yml b/data/CTR-ECR/data.yml new file mode 100644 index 0000000..a062e55 --- /dev/null +++ b/data/CTR-ECR/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 000400000011C400 + name: Pokémon™ Omega Ruby + updates: + - id: 0004000E0011C400 + name: Pokémon™ Omega Ruby Update Ver. 1.4 diff --git a/data/CTR-ECR/icon.jpg b/data/CTR-ECR/icon.jpg new file mode 100644 index 0000000..c658fa3 Binary files /dev/null and b/data/CTR-ECR/icon.jpg differ diff --git a/data/CTR-EDH/art.jpg b/data/CTR-EDH/art.jpg new file mode 100644 index 0000000..e691d96 Binary files /dev/null and b/data/CTR-EDH/art.jpg differ diff --git a/data/CTR-EDH/data.yml b/data/CTR-EDH/data.yml new file mode 100644 index 0000000..add748b --- /dev/null +++ b/data/CTR-EDH/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000014F200 + name: 'Animal Crossing™: Happy Home Designer' + updates: + - id: 0004000E0014F200 + name: 'AC: Happy Home Designer: Update' +- regions: + - JP + id: 000400000014F000 + name: どうぶつの森 ハッピーホームデザイナー + updates: + - id: 0004000E0014F000 + name: 更新データ Ver. 2.0 どうぶつの森 ハッピーホームデザイナー +- regions: + - US + id: 000400000014F100 + name: 'Animal Crossing™: Happy Home Designer' + updates: + - id: 0004000E0014F100 + name: 'Animal Crossing™: Happy Home Designer Update Ver. 2.0' diff --git a/data/CTR-EDH/icon.jpg b/data/CTR-EDH/icon.jpg new file mode 100644 index 0000000..d08b105 Binary files /dev/null and b/data/CTR-EDH/icon.jpg differ diff --git a/data/CTR-EK2/art.jpg b/data/CTR-EK2/art.jpg new file mode 100644 index 0000000..3612d5e Binary files /dev/null and b/data/CTR-EK2/art.jpg differ diff --git a/data/CTR-EK2/data.yml b/data/CTR-EK2/data.yml new file mode 100644 index 0000000..b3ab4d4 --- /dev/null +++ b/data/CTR-EK2/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 0004000000055E00 + name: Pokémon™ Y + updates: + - id: 0004000E00055E00 + name: Pokémon Y Update Ver. 1.5 diff --git a/data/CTR-EK2/icon.jpg b/data/CTR-EK2/icon.jpg new file mode 100644 index 0000000..0b8d646 Binary files /dev/null and b/data/CTR-EK2/icon.jpg differ diff --git a/data/CTR-EKJ/art.jpg b/data/CTR-EKJ/art.jpg new file mode 100644 index 0000000..2b032a1 Binary files /dev/null and b/data/CTR-EKJ/art.jpg differ diff --git a/data/CTR-EKJ/data.yml b/data/CTR-EKJ/data.yml new file mode 100644 index 0000000..20afe84 --- /dev/null +++ b/data/CTR-EKJ/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsRetailOrDownload +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 0004000000055D00 + name: Pokémon™ X + updates: + - id: 0004000E00055D00 + name: Pokémon X Update Ver. 1.5 diff --git a/data/CTR-EKJ/icon.jpg b/data/CTR-EKJ/icon.jpg new file mode 100644 index 0000000..8609c56 Binary files /dev/null and b/data/CTR-EKJ/icon.jpg differ diff --git a/data/CTR-GA4/art.jpg b/data/CTR-GA4/art.jpg new file mode 100644 index 0000000..206e488 Binary files /dev/null and b/data/CTR-GA4/art.jpg differ diff --git a/data/CTR-GA4/data.yml b/data/CTR-GA4/data.yml new file mode 100644 index 0000000..c6624ca --- /dev/null +++ b/data/CTR-GA4/data.yml @@ -0,0 +1,7 @@ +platform: GameGear +releases: +- regions: + - JP + id: 000400000010B200 + name: なぞぷよ + updates: [] diff --git a/data/CTR-GA4/icon.jpg b/data/CTR-GA4/icon.jpg new file mode 100644 index 0000000..ba8b972 Binary files /dev/null and b/data/CTR-GA4/icon.jpg differ diff --git a/data/CTR-GA5/art.jpg b/data/CTR-GA5/art.jpg new file mode 100644 index 0000000..2eac1c7 Binary files /dev/null and b/data/CTR-GA5/art.jpg differ diff --git a/data/CTR-GA5/data.yml b/data/CTR-GA5/data.yml new file mode 100644 index 0000000..5c1d5ef --- /dev/null +++ b/data/CTR-GA5/data.yml @@ -0,0 +1,7 @@ +platform: GameGear +releases: +- regions: + - JP + id: 000400000010B300 + name: シャイニング・フォース外伝I 遠征・邪神の国へ + updates: [] diff --git a/data/CTR-GA5/icon.jpg b/data/CTR-GA5/icon.jpg new file mode 100644 index 0000000..294593d Binary files /dev/null and b/data/CTR-GA5/icon.jpg differ diff --git a/data/CTR-GA6/art.jpg b/data/CTR-GA6/art.jpg new file mode 100644 index 0000000..de51c2a Binary files /dev/null and b/data/CTR-GA6/art.jpg differ diff --git a/data/CTR-GA6/data.yml b/data/CTR-GA6/data.yml new file mode 100644 index 0000000..ac9b5ee --- /dev/null +++ b/data/CTR-GA6/data.yml @@ -0,0 +1,7 @@ +platform: GameGear +releases: +- regions: + - JP + id: 000400000010B400 + name: なぞぷよ2 + updates: [] diff --git a/data/CTR-GA6/icon.jpg b/data/CTR-GA6/icon.jpg new file mode 100644 index 0000000..49fa089 Binary files /dev/null and b/data/CTR-GA6/icon.jpg differ diff --git a/data/CTR-GA7/art.jpg b/data/CTR-GA7/art.jpg new file mode 100644 index 0000000..e4d6657 Binary files /dev/null and b/data/CTR-GA7/art.jpg differ diff --git a/data/CTR-GA7/data.yml b/data/CTR-GA7/data.yml new file mode 100644 index 0000000..55f9bb1 --- /dev/null +++ b/data/CTR-GA7/data.yml @@ -0,0 +1,7 @@ +platform: GameGear +releases: +- regions: + - JP + id: 000400000010B500 + name: なぞぷよ アルルのルー + updates: [] diff --git a/data/CTR-GA7/icon.jpg b/data/CTR-GA7/icon.jpg new file mode 100644 index 0000000..0cf0c58 Binary files /dev/null and b/data/CTR-GA7/icon.jpg differ diff --git a/data/CTR-GA8/art.jpg b/data/CTR-GA8/art.jpg new file mode 100644 index 0000000..85296c2 Binary files /dev/null and b/data/CTR-GA8/art.jpg differ diff --git a/data/CTR-GA8/data.yml b/data/CTR-GA8/data.yml new file mode 100644 index 0000000..1556c29 --- /dev/null +++ b/data/CTR-GA8/data.yml @@ -0,0 +1,7 @@ +platform: GameGear +releases: +- regions: + - JP + id: 000400000010B600 + name: ぷよぷよ通 + updates: [] diff --git a/data/CTR-GA8/icon.jpg b/data/CTR-GA8/icon.jpg new file mode 100644 index 0000000..8ff1e0d Binary files /dev/null and b/data/CTR-GA8/icon.jpg differ diff --git a/data/CTR-GA9/art.jpg b/data/CTR-GA9/art.jpg new file mode 100644 index 0000000..e1e436e Binary files /dev/null and b/data/CTR-GA9/art.jpg differ diff --git a/data/CTR-GA9/data.yml b/data/CTR-GA9/data.yml new file mode 100644 index 0000000..98c146b --- /dev/null +++ b/data/CTR-GA9/data.yml @@ -0,0 +1,7 @@ +platform: GameGear +releases: +- regions: + - JP + id: 000400000010B700 + name: シャイニング・フォース外伝 ファイナルコンフリクト + updates: [] diff --git a/data/CTR-GA9/icon.jpg b/data/CTR-GA9/icon.jpg new file mode 100644 index 0000000..62a61fb Binary files /dev/null and b/data/CTR-GA9/icon.jpg differ diff --git a/data/CTR-GAA/art.jpg b/data/CTR-GAA/art.jpg new file mode 100644 index 0000000..fa8c10f Binary files /dev/null and b/data/CTR-GAA/art.jpg differ diff --git a/data/CTR-GAA/data.yml b/data/CTR-GAA/data.yml new file mode 100644 index 0000000..9677b0d --- /dev/null +++ b/data/CTR-GAA/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000088700 + name: 'Sonic the Hedgehog™: Triple Trouble' + updates: [] +- regions: + - JP + id: 0004000000085100 + name: ソニック&テイルス2 + updates: [] +- regions: + - US + id: 000400000008BA00 + name: 'Sonic the Hedgehog™: Triple Trouble' + updates: [] diff --git a/data/CTR-GAA/icon.jpg b/data/CTR-GAA/icon.jpg new file mode 100644 index 0000000..80a2608 Binary files /dev/null and b/data/CTR-GAA/icon.jpg differ diff --git a/data/CTR-GAB/art.jpg b/data/CTR-GAB/art.jpg new file mode 100644 index 0000000..0c5b297 Binary files /dev/null and b/data/CTR-GAB/art.jpg differ diff --git a/data/CTR-GAB/data.yml b/data/CTR-GAB/data.yml new file mode 100644 index 0000000..adbc90e --- /dev/null +++ b/data/CTR-GAB/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000088800 + name: Dragon Crystal™ + updates: [] +- regions: + - JP + id: 0004000000085200 + name: ドラゴンクリスタル ツラニの迷宮 + updates: [] +- regions: + - US + id: 000400000008BB00 + name: Dragon Crystal™ + updates: [] diff --git a/data/CTR-GAB/icon.jpg b/data/CTR-GAB/icon.jpg new file mode 100644 index 0000000..247ec05 Binary files /dev/null and b/data/CTR-GAB/icon.jpg differ diff --git a/data/CTR-GAC/art.jpg b/data/CTR-GAC/art.jpg new file mode 100644 index 0000000..cef9906 Binary files /dev/null and b/data/CTR-GAC/art.jpg differ diff --git a/data/CTR-GAC/data.yml b/data/CTR-GAC/data.yml new file mode 100644 index 0000000..10aa22e --- /dev/null +++ b/data/CTR-GAC/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000088600 + name: Shinobi™ + updates: [] +- regions: + - JP + id: 0004000000085300 + name: The GG 忍 + updates: [] +- regions: + - US + id: 000400000008BC00 + name: Shinobi™ + updates: [] diff --git a/data/CTR-GAC/icon.jpg b/data/CTR-GAC/icon.jpg new file mode 100644 index 0000000..77c71cd Binary files /dev/null and b/data/CTR-GAC/icon.jpg differ diff --git a/data/CTR-GAD/art.jpg b/data/CTR-GAD/art.jpg new file mode 100644 index 0000000..41034f4 Binary files /dev/null and b/data/CTR-GAD/art.jpg differ diff --git a/data/CTR-GAD/data.yml b/data/CTR-GAD/data.yml new file mode 100644 index 0000000..c23ac07 --- /dev/null +++ b/data/CTR-GAD/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000088500 + name: Sonic Drift 2 + updates: [] +- regions: + - JP + id: 0004000000085400 + name: ソニックドリフト2 + updates: [] +- regions: + - US + id: 000400000008BD00 + name: Sonic Drift 2 + updates: [] diff --git a/data/CTR-GAD/icon.jpg b/data/CTR-GAD/icon.jpg new file mode 100644 index 0000000..f96013f Binary files /dev/null and b/data/CTR-GAD/icon.jpg differ diff --git a/data/CTR-GAE/art.jpg b/data/CTR-GAE/art.jpg new file mode 100644 index 0000000..cd12034 Binary files /dev/null and b/data/CTR-GAE/art.jpg differ diff --git a/data/CTR-GAE/data.yml b/data/CTR-GAE/data.yml new file mode 100644 index 0000000..979a00d --- /dev/null +++ b/data/CTR-GAE/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000088400 + name: 'Columns™ ' + updates: [] +- regions: + - JP + id: 0004000000085500 + name: コラムス + updates: [] +- regions: + - US + id: 000400000008BE00 + name: Columns™ + updates: [] diff --git a/data/CTR-GAE/icon.jpg b/data/CTR-GAE/icon.jpg new file mode 100644 index 0000000..7083cdc Binary files /dev/null and b/data/CTR-GAE/icon.jpg differ diff --git a/data/CTR-GAF/art.jpg b/data/CTR-GAF/art.jpg new file mode 100644 index 0000000..7b6c690 Binary files /dev/null and b/data/CTR-GAF/art.jpg differ diff --git a/data/CTR-GAF/data.yml b/data/CTR-GAF/data.yml new file mode 100644 index 0000000..6da2732 --- /dev/null +++ b/data/CTR-GAF/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000096900 + name: Sonic Labyrinth™ + updates: [] +- regions: + - JP + id: 0004000000096C00 + name: ソニックラビリンス + updates: [] +- regions: + - US + id: 0004000000096800 + name: Sonic Labyrinth™ + updates: [] diff --git a/data/CTR-GAF/icon.jpg b/data/CTR-GAF/icon.jpg new file mode 100644 index 0000000..a47fa4a Binary files /dev/null and b/data/CTR-GAF/icon.jpg differ diff --git a/data/CTR-GAG/art.jpg b/data/CTR-GAG/art.jpg new file mode 100644 index 0000000..bd82526 Binary files /dev/null and b/data/CTR-GAG/art.jpg differ diff --git a/data/CTR-GAG/data.yml b/data/CTR-GAG/data.yml new file mode 100644 index 0000000..07a9635 --- /dev/null +++ b/data/CTR-GAG/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 0004000000096B00 + name: Sonic Blast™ + updates: [] +- regions: + - JP + id: 0004000000096D00 + name: Gソニック + updates: [] +- regions: + - US + id: 0004000000096A00 + name: Sonic Blast™ + updates: [] diff --git a/data/CTR-GAG/icon.jpg b/data/CTR-GAG/icon.jpg new file mode 100644 index 0000000..5d936c8 Binary files /dev/null and b/data/CTR-GAG/icon.jpg differ diff --git a/data/CTR-GAJ/art.jpg b/data/CTR-GAJ/art.jpg new file mode 100644 index 0000000..6cfa702 Binary files /dev/null and b/data/CTR-GAJ/art.jpg differ diff --git a/data/CTR-GAJ/data.yml b/data/CTR-GAJ/data.yml new file mode 100644 index 0000000..978d616 --- /dev/null +++ b/data/CTR-GAJ/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 000400000009B700 + name: Defenders of Oasis™ + updates: [] +- regions: + - JP + id: 0004000000097C00 + name: シャダム・クルセイダー 遥かなる王国 + updates: [] +- regions: + - US + id: 000400000009C200 + name: Defenders of Oasis™ + updates: [] diff --git a/data/CTR-GAJ/icon.jpg b/data/CTR-GAJ/icon.jpg new file mode 100644 index 0000000..0107f2c Binary files /dev/null and b/data/CTR-GAJ/icon.jpg differ diff --git a/data/CTR-GAN/art.jpg b/data/CTR-GAN/art.jpg new file mode 100644 index 0000000..6a36612 Binary files /dev/null and b/data/CTR-GAN/art.jpg differ diff --git a/data/CTR-GAN/data.yml b/data/CTR-GAN/data.yml new file mode 100644 index 0000000..a49d134 --- /dev/null +++ b/data/CTR-GAN/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 000400000009B600 + name: Crystal Warriors + updates: [] +- regions: + - JP + id: 0004000000098000 + name: アーリエル クリスタル伝説 + updates: [] +- regions: + - US + id: 000400000009C100 + name: Crystal Warriors + updates: [] diff --git a/data/CTR-GAN/icon.jpg b/data/CTR-GAN/icon.jpg new file mode 100644 index 0000000..4f11432 Binary files /dev/null and b/data/CTR-GAN/icon.jpg differ diff --git a/data/CTR-GAP/art.jpg b/data/CTR-GAP/art.jpg new file mode 100644 index 0000000..c344178 Binary files /dev/null and b/data/CTR-GAP/art.jpg differ diff --git a/data/CTR-GAP/data.yml b/data/CTR-GAP/data.yml new file mode 100644 index 0000000..fb06fe4 --- /dev/null +++ b/data/CTR-GAP/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 000400000009B900 + name: 'G-LOC™: Air Battle' + updates: [] +- regions: + - JP + id: 0004000000098100 + name: G-LOC AIR BATTLE + updates: [] +- regions: + - US + id: 000400000009C400 + name: G-LOC Air Battle + updates: [] diff --git a/data/CTR-GAP/icon.jpg b/data/CTR-GAP/icon.jpg new file mode 100644 index 0000000..b550dc2 Binary files /dev/null and b/data/CTR-GAP/icon.jpg differ diff --git a/data/CTR-GAQ/art.jpg b/data/CTR-GAQ/art.jpg new file mode 100644 index 0000000..92746ce Binary files /dev/null and b/data/CTR-GAQ/art.jpg differ diff --git a/data/CTR-GAQ/data.yml b/data/CTR-GAQ/data.yml new file mode 100644 index 0000000..cc0daf9 --- /dev/null +++ b/data/CTR-GAQ/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 000400000009BA00 + name: 'Vampire: Master of Darkness' + updates: [] +- regions: + - JP + id: 0004000000098200 + name: IN THE WAKE OF VAMPIRE + updates: [] +- regions: + - US + id: 000400000009C600 + name: Vampire Master of Darkness + updates: [] diff --git a/data/CTR-GAQ/icon.jpg b/data/CTR-GAQ/icon.jpg new file mode 100644 index 0000000..ccf44f9 Binary files /dev/null and b/data/CTR-GAQ/icon.jpg differ diff --git a/data/CTR-GAR/art.jpg b/data/CTR-GAR/art.jpg new file mode 100644 index 0000000..23bbb9e Binary files /dev/null and b/data/CTR-GAR/art.jpg differ diff --git a/data/CTR-GAR/data.yml b/data/CTR-GAR/data.yml new file mode 100644 index 0000000..716d9da --- /dev/null +++ b/data/CTR-GAR/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 000400000009B800 + name: Dr. Robotnik's Mean Bean Machine™ + updates: [] +- regions: + - JP + id: 0004000000098300 + name: ぷよぷよ + updates: [] +- regions: + - US + id: 000400000009C300 + name: Dr. Robotnik's Mean Bean Machine + updates: [] diff --git a/data/CTR-GAR/icon.jpg b/data/CTR-GAR/icon.jpg new file mode 100644 index 0000000..c6511fd Binary files /dev/null and b/data/CTR-GAR/icon.jpg differ diff --git a/data/CTR-GAS/art.jpg b/data/CTR-GAS/art.jpg new file mode 100644 index 0000000..0030301 Binary files /dev/null and b/data/CTR-GAS/art.jpg differ diff --git a/data/CTR-GAS/data.yml b/data/CTR-GAS/data.yml new file mode 100644 index 0000000..969d32e --- /dev/null +++ b/data/CTR-GAS/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 000400000009BB00 + name: 'Shining Force™: The Sword of Hajya' + updates: [] +- regions: + - JP + id: 0004000000098400 + name: シャイニング・フォース外伝Ⅱ 邪神の覚醒 + updates: [] +- regions: + - US + id: 000400000009C500 + name: 'Shining Force™: Sword of Hajya' + updates: [] diff --git a/data/CTR-GAS/icon.jpg b/data/CTR-GAS/icon.jpg new file mode 100644 index 0000000..d8e73b3 Binary files /dev/null and b/data/CTR-GAS/icon.jpg differ diff --git a/data/CTR-GAT/art.jpg b/data/CTR-GAT/art.jpg new file mode 100644 index 0000000..b1b8b77 Binary files /dev/null and b/data/CTR-GAT/art.jpg differ diff --git a/data/CTR-GAT/data.yml b/data/CTR-GAT/data.yml new file mode 100644 index 0000000..6f1b98a --- /dev/null +++ b/data/CTR-GAT/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 00040000000BBA00 + name: Sonic the Hedgehog™ + updates: [] +- regions: + - JP + id: 0004000000100B00 + name: ソニック・ザ・ヘッジホッグ + updates: [] +- regions: + - US + id: 00040000000C7B00 + name: Sonic™ the Hedgehog + updates: [] diff --git a/data/CTR-GAT/icon.jpg b/data/CTR-GAT/icon.jpg new file mode 100644 index 0000000..710cf86 Binary files /dev/null and b/data/CTR-GAT/icon.jpg differ diff --git a/data/CTR-GAU/art.jpg b/data/CTR-GAU/art.jpg new file mode 100644 index 0000000..1d455ab Binary files /dev/null and b/data/CTR-GAU/art.jpg differ diff --git a/data/CTR-GAU/data.yml b/data/CTR-GAU/data.yml new file mode 100644 index 0000000..852b0aa --- /dev/null +++ b/data/CTR-GAU/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 00040000000BBB00 + name: Sonic the Hedgehog 2 + updates: [] +- regions: + - JP + id: 00040000000C1200 + name: ソニック・ザ・ヘッジホッグ2 + updates: [] +- regions: + - US + id: 00040000000C7A00 + name: Sonic The Hedgehog 2 + updates: [] diff --git a/data/CTR-GAU/icon.jpg b/data/CTR-GAU/icon.jpg new file mode 100644 index 0000000..083fb95 Binary files /dev/null and b/data/CTR-GAU/icon.jpg differ diff --git a/data/CTR-GAV/art.jpg b/data/CTR-GAV/art.jpg new file mode 100644 index 0000000..4e766d5 Binary files /dev/null and b/data/CTR-GAV/art.jpg differ diff --git a/data/CTR-GAV/data.yml b/data/CTR-GAV/data.yml new file mode 100644 index 0000000..52cacd6 --- /dev/null +++ b/data/CTR-GAV/data.yml @@ -0,0 +1,17 @@ +platform: GameGear +releases: +- regions: + - EU + id: 00040000000DCB00 + name: Tails Adventure™ + updates: [] +- regions: + - JP + id: 00040000000C1300 + name: テイルスアドベンチャー + updates: [] +- regions: + - US + id: 00040000000DE900 + name: Tails Adventure™ + updates: [] diff --git a/data/CTR-GAV/icon.jpg b/data/CTR-GAV/icon.jpg new file mode 100644 index 0000000..de58aa9 Binary files /dev/null and b/data/CTR-GAV/icon.jpg differ diff --git a/data/CTR-J2C/art.jpg b/data/CTR-J2C/art.jpg new file mode 100644 index 0000000..9e4e1eb Binary files /dev/null and b/data/CTR-J2C/art.jpg differ diff --git a/data/CTR-J2C/data.yml b/data/CTR-J2C/data.yml new file mode 100644 index 0000000..31b38eb --- /dev/null +++ b/data/CTR-J2C/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BF100 + name: Cursed Castilla + updates: [] +- regions: + - JP + id: 00040000001C4800 + name: マルディタカスティーラ + updates: [] +- regions: + - US + id: 00040000001BF000 + name: Cursed Castilla + updates: [] diff --git a/data/CTR-J2C/icon.jpg b/data/CTR-J2C/icon.jpg new file mode 100644 index 0000000..e36b02e Binary files /dev/null and b/data/CTR-J2C/icon.jpg differ diff --git a/data/CTR-J2M/art.jpg b/data/CTR-J2M/art.jpg new file mode 100644 index 0000000..ed88fc3 Binary files /dev/null and b/data/CTR-J2M/art.jpg differ diff --git a/data/CTR-J2M/data.yml b/data/CTR-J2M/data.yml new file mode 100644 index 0000000..61e5d84 --- /dev/null +++ b/data/CTR-J2M/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D2400 + name: MH Gen U Save Data Transfer App + updates: [] +- regions: + - JP + id: 00040000001BEB00 + name: MHXX データ移行アプリ + updates: + - id: 0004000E001BEB00 + name: 更新データ Ver. 1.1.0 モンスターハンターダブルクロス データ移行アプリ +- regions: + - US + id: 00040000001D2500 + name: Monster Hunter Generations Ultimate™ Save Transfer App + updates: [] diff --git a/data/CTR-J2M/icon.jpg b/data/CTR-J2M/icon.jpg new file mode 100644 index 0000000..30a74af Binary files /dev/null and b/data/CTR-J2M/icon.jpg differ diff --git a/data/CTR-J2V/art.jpg b/data/CTR-J2V/art.jpg new file mode 100644 index 0000000..5cf3c49 Binary files /dev/null and b/data/CTR-J2V/art.jpg differ diff --git a/data/CTR-J2V/data.yml b/data/CTR-J2V/data.yml new file mode 100644 index 0000000..759a90e --- /dev/null +++ b/data/CTR-J2V/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C7600 + name: MIGHTY GUNVOLT BURST + updates: + - id: 0004000E001C7600 + name: 'MIGHTY GUNVOLT BURST: Update' +- regions: + - JP + id: 00040000001C6900 + name: マイティガンヴォルト バースト + updates: + - id: 0004000E001C6900 + name: 更新データ Ver. 1.3.1 マイティガンヴォルト バースト +- regions: + - US + id: 00040000001C7700 + name: MIGHTY GUNVOLT BURST + updates: + - id: 0004000E001C7700 + name: MIGHTY GUNVOLT BURST Update Ver. 1.3.1 diff --git a/data/CTR-J2V/icon.jpg b/data/CTR-J2V/icon.jpg new file mode 100644 index 0000000..39a7b9a Binary files /dev/null and b/data/CTR-J2V/icon.jpg differ diff --git a/data/CTR-J2X/art.jpg b/data/CTR-J2X/art.jpg new file mode 100644 index 0000000..8f518a0 Binary files /dev/null and b/data/CTR-J2X/art.jpg differ diff --git a/data/CTR-J2X/data.yml b/data/CTR-J2X/data.yml new file mode 100644 index 0000000..64c6a2c --- /dev/null +++ b/data/CTR-J2X/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C2800 + name: デジコロ じーさん邪 Vol.012 ゴミひろいでキレイキレイじゃっ!! + updates: [] diff --git a/data/CTR-J2X/icon.jpg b/data/CTR-J2X/icon.jpg new file mode 100644 index 0000000..fd1406e Binary files /dev/null and b/data/CTR-J2X/icon.jpg differ diff --git a/data/CTR-J2Y/art.jpg b/data/CTR-J2Y/art.jpg new file mode 100644 index 0000000..88d0e79 Binary files /dev/null and b/data/CTR-J2Y/art.jpg differ diff --git a/data/CTR-J2Y/data.yml b/data/CTR-J2Y/data.yml new file mode 100644 index 0000000..018e9d9 --- /dev/null +++ b/data/CTR-J2Y/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C7200 + name: デジコロ じーさん邪 Vol.013 じーさんの大発明じゃっっ!! + updates: [] diff --git a/data/CTR-J2Y/icon.jpg b/data/CTR-J2Y/icon.jpg new file mode 100644 index 0000000..7819e90 Binary files /dev/null and b/data/CTR-J2Y/icon.jpg differ diff --git a/data/CTR-J2Z/art.jpg b/data/CTR-J2Z/art.jpg new file mode 100644 index 0000000..f9627bf Binary files /dev/null and b/data/CTR-J2Z/art.jpg differ diff --git a/data/CTR-J2Z/data.yml b/data/CTR-J2Z/data.yml new file mode 100644 index 0000000..83e9c20 --- /dev/null +++ b/data/CTR-J2Z/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001CDD00 + name: デジコロ じーさん邪 Vol.014 くりだせ必殺技じゃっっ!! + updates: [] diff --git a/data/CTR-J2Z/icon.jpg b/data/CTR-J2Z/icon.jpg new file mode 100644 index 0000000..44a36cb Binary files /dev/null and b/data/CTR-J2Z/icon.jpg differ diff --git a/data/CTR-J3E/art.jpg b/data/CTR-J3E/art.jpg new file mode 100644 index 0000000..989d6eb Binary files /dev/null and b/data/CTR-J3E/art.jpg differ diff --git a/data/CTR-J3E/data.yml b/data/CTR-J3E/data.yml new file mode 100644 index 0000000..01cc5d4 --- /dev/null +++ b/data/CTR-J3E/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C5200 + name: エルミナージュⅢ ~暗黒の使徒と太陽の宮殿~ + updates: + - id: 0004000E001C5200 + name: 更新データ Ver. 1.1 エルミナージュⅢ diff --git a/data/CTR-J3E/icon.jpg b/data/CTR-J3E/icon.jpg new file mode 100644 index 0000000..ebb73ac Binary files /dev/null and b/data/CTR-J3E/icon.jpg differ diff --git a/data/CTR-J3F/art.jpg b/data/CTR-J3F/art.jpg new file mode 100644 index 0000000..11ad855 Binary files /dev/null and b/data/CTR-J3F/art.jpg differ diff --git a/data/CTR-J3F/data.yml b/data/CTR-J3F/data.yml new file mode 100644 index 0000000..11dae54 --- /dev/null +++ b/data/CTR-J3F/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BE100 + name: PICTLOGICA FINAL FANTASY ≒ + updates: [] diff --git a/data/CTR-J3F/icon.jpg b/data/CTR-J3F/icon.jpg new file mode 100644 index 0000000..e06b4f3 Binary files /dev/null and b/data/CTR-J3F/icon.jpg differ diff --git a/data/CTR-J3M/art.jpg b/data/CTR-J3M/art.jpg new file mode 100644 index 0000000..1f8ff14 Binary files /dev/null and b/data/CTR-J3M/art.jpg differ diff --git a/data/CTR-J3M/data.yml b/data/CTR-J3M/data.yml new file mode 100644 index 0000000..5a931ed --- /dev/null +++ b/data/CTR-J3M/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D1D00 + name: Witch & Hero 3 + updates: [] +- regions: + - JP + id: 00040000001D0C00 + name: 魔女と勇者Ⅲ + updates: [] +- regions: + - US + id: 00040000001D1100 + name: Witch & Hero 3 + updates: [] diff --git a/data/CTR-J3M/icon.jpg b/data/CTR-J3M/icon.jpg new file mode 100644 index 0000000..3dcfaaa Binary files /dev/null and b/data/CTR-J3M/icon.jpg differ diff --git a/data/CTR-J4C/art.jpg b/data/CTR-J4C/art.jpg new file mode 100644 index 0000000..dbf5a11 Binary files /dev/null and b/data/CTR-J4C/art.jpg differ diff --git a/data/CTR-J4C/data.yml b/data/CTR-J4C/data.yml new file mode 100644 index 0000000..bace74a --- /dev/null +++ b/data/CTR-J4C/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CC800 + name: Bonds of the Skies + updates: [] +- regions: + - JP + id: 00040000001C9700 + name: 空のフォークロア + updates: [] +- regions: + - US + id: 00040000001CC700 + name: Bonds of the Skies + updates: [] diff --git a/data/CTR-J4C/icon.jpg b/data/CTR-J4C/icon.jpg new file mode 100644 index 0000000..f49dae1 Binary files /dev/null and b/data/CTR-J4C/icon.jpg differ diff --git a/data/CTR-J5G/art.jpg b/data/CTR-J5G/art.jpg new file mode 100644 index 0000000..9e8302c Binary files /dev/null and b/data/CTR-J5G/art.jpg differ diff --git a/data/CTR-J5G/data.yml b/data/CTR-J5G/data.yml new file mode 100644 index 0000000..e059a8b --- /dev/null +++ b/data/CTR-J5G/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BBA00 + name: ザ・ゲーム15 + updates: [] diff --git a/data/CTR-J5G/icon.jpg b/data/CTR-J5G/icon.jpg new file mode 100644 index 0000000..1de2534 Binary files /dev/null and b/data/CTR-J5G/icon.jpg differ diff --git a/data/CTR-J99/art.jpg b/data/CTR-J99/art.jpg new file mode 100644 index 0000000..3df2f73 Binary files /dev/null and b/data/CTR-J99/art.jpg differ diff --git a/data/CTR-J99/data.yml b/data/CTR-J99/data.yml new file mode 100644 index 0000000..eb931e6 --- /dev/null +++ b/data/CTR-J99/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CE800 + name: Machine Knight + updates: [] +- regions: + - JP + id: 00040000001CC200 + name: マシンナイト + updates: [] +- regions: + - US + id: 00040000001CF800 + name: Machine Knight + updates: [] diff --git a/data/CTR-J99/icon.jpg b/data/CTR-J99/icon.jpg new file mode 100644 index 0000000..8a7ae0a Binary files /dev/null and b/data/CTR-J99/icon.jpg differ diff --git a/data/CTR-J9A/art.jpg b/data/CTR-J9A/art.jpg new file mode 100644 index 0000000..82356a3 Binary files /dev/null and b/data/CTR-J9A/art.jpg differ diff --git a/data/CTR-J9A/data.yml b/data/CTR-J9A/data.yml new file mode 100644 index 0000000..323b39e --- /dev/null +++ b/data/CTR-J9A/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BAF00 + name: デジコロ ケシカスくん Vol.011 VS修正液 卓球対決 + updates: [] diff --git a/data/CTR-J9A/icon.jpg b/data/CTR-J9A/icon.jpg new file mode 100644 index 0000000..1c1dc4f Binary files /dev/null and b/data/CTR-J9A/icon.jpg differ diff --git a/data/CTR-J9B/art.jpg b/data/CTR-J9B/art.jpg new file mode 100644 index 0000000..5ff8ae9 Binary files /dev/null and b/data/CTR-J9B/art.jpg differ diff --git a/data/CTR-J9B/data.yml b/data/CTR-J9B/data.yml new file mode 100644 index 0000000..1c41f77 --- /dev/null +++ b/data/CTR-J9B/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BB000 + name: デジコロ じーさん邪 Vol.011 赤ちゃんはカワイイのじゃっっ!! + updates: [] diff --git a/data/CTR-J9B/icon.jpg b/data/CTR-J9B/icon.jpg new file mode 100644 index 0000000..b2f9201 Binary files /dev/null and b/data/CTR-J9B/icon.jpg differ diff --git a/data/CTR-J9C/art.jpg b/data/CTR-J9C/art.jpg new file mode 100644 index 0000000..53cf699 Binary files /dev/null and b/data/CTR-J9C/art.jpg differ diff --git a/data/CTR-J9C/data.yml b/data/CTR-J9C/data.yml new file mode 100644 index 0000000..fc3ecc4 --- /dev/null +++ b/data/CTR-J9C/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C3400 + name: ケアマネジャー試験 平成29年度版 + updates: [] diff --git a/data/CTR-J9C/icon.jpg b/data/CTR-J9C/icon.jpg new file mode 100644 index 0000000..8585d8c Binary files /dev/null and b/data/CTR-J9C/icon.jpg differ diff --git a/data/CTR-J9F/art.jpg b/data/CTR-J9F/art.jpg new file mode 100644 index 0000000..1607cd8 Binary files /dev/null and b/data/CTR-J9F/art.jpg differ diff --git a/data/CTR-J9F/data.yml b/data/CTR-J9F/data.yml new file mode 100644 index 0000000..fe45168 --- /dev/null +++ b/data/CTR-J9F/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C1400 + name: 社会福祉士試験 平成29年度版 + updates: + - id: 0004000E001C1400 + name: 更新データ Ver. 1.1 社会福祉士試験平成29年度版 diff --git a/data/CTR-J9F/icon.jpg b/data/CTR-J9F/icon.jpg new file mode 100644 index 0000000..a29197d Binary files /dev/null and b/data/CTR-J9F/icon.jpg differ diff --git a/data/CTR-J9G/art.jpg b/data/CTR-J9G/art.jpg new file mode 100644 index 0000000..8d4c5cd Binary files /dev/null and b/data/CTR-J9G/art.jpg differ diff --git a/data/CTR-J9G/data.yml b/data/CTR-J9G/data.yml new file mode 100644 index 0000000..e9f4409 --- /dev/null +++ b/data/CTR-J9G/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C1100 + name: 行政書士試験平成29年度版 + updates: [] diff --git a/data/CTR-J9G/icon.jpg b/data/CTR-J9G/icon.jpg new file mode 100644 index 0000000..50a8314 Binary files /dev/null and b/data/CTR-J9G/icon.jpg differ diff --git a/data/CTR-J9K/art.jpg b/data/CTR-J9K/art.jpg new file mode 100644 index 0000000..b677655 Binary files /dev/null and b/data/CTR-J9K/art.jpg differ diff --git a/data/CTR-J9K/data.yml b/data/CTR-J9K/data.yml new file mode 100644 index 0000000..4109874 --- /dev/null +++ b/data/CTR-J9K/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C1600 + name: マル合格!介護福祉士 平成29年度版 + updates: [] diff --git a/data/CTR-J9K/icon.jpg b/data/CTR-J9K/icon.jpg new file mode 100644 index 0000000..1aacc73 Binary files /dev/null and b/data/CTR-J9K/icon.jpg differ diff --git a/data/CTR-J9T/art.jpg b/data/CTR-J9T/art.jpg new file mode 100644 index 0000000..a950e32 Binary files /dev/null and b/data/CTR-J9T/art.jpg differ diff --git a/data/CTR-J9T/data.yml b/data/CTR-J9T/data.yml new file mode 100644 index 0000000..8e7c5d2 --- /dev/null +++ b/data/CTR-J9T/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C1300 + name: マル合格!宅建士試験 平成29年度版 + updates: [] diff --git a/data/CTR-J9T/icon.jpg b/data/CTR-J9T/icon.jpg new file mode 100644 index 0000000..ce7338b Binary files /dev/null and b/data/CTR-J9T/icon.jpg differ diff --git a/data/CTR-JA2/art.jpg b/data/CTR-JA2/art.jpg new file mode 100644 index 0000000..8a0f668 Binary files /dev/null and b/data/CTR-JA2/art.jpg differ diff --git a/data/CTR-JA2/data.yml b/data/CTR-JA2/data.yml new file mode 100644 index 0000000..61bc214 --- /dev/null +++ b/data/CTR-JA2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000AD300 + name: 'Hydroventure™: Spin Cycle' + updates: [] +- regions: + - JP + id: 00040000000AD400 + name: ぐるっとスプラッシュ! + updates: [] +- regions: + - US + id: 00040000000AE000 + name: 'Fluidity: Spin Cycle ' + updates: [] diff --git a/data/CTR-JA2/icon.jpg b/data/CTR-JA2/icon.jpg new file mode 100644 index 0000000..efa64c8 Binary files /dev/null and b/data/CTR-JA2/icon.jpg differ diff --git a/data/CTR-JA3/art.jpg b/data/CTR-JA3/art.jpg new file mode 100644 index 0000000..8c46978 Binary files /dev/null and b/data/CTR-JA3/art.jpg differ diff --git a/data/CTR-JA3/data.yml b/data/CTR-JA3/data.yml new file mode 100644 index 0000000..32ca1a1 --- /dev/null +++ b/data/CTR-JA3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000CD900 + name: 'ARC STYLE: Football 3D' + updates: [] +- regions: + - JP + id: 0004000000052D00 + name: 'ARC STYLE: さっかー!!3D' + updates: [] +- regions: + - US + id: 0004000000086A00 + name: 'ARC STYLE: Soccer 3D' + updates: [] diff --git a/data/CTR-JA3/icon.jpg b/data/CTR-JA3/icon.jpg new file mode 100644 index 0000000..70dedf9 Binary files /dev/null and b/data/CTR-JA3/icon.jpg differ diff --git a/data/CTR-JA5/art.jpg b/data/CTR-JA5/art.jpg new file mode 100644 index 0000000..926252b Binary files /dev/null and b/data/CTR-JA5/art.jpg differ diff --git a/data/CTR-JA5/data.yml b/data/CTR-JA5/data.yml new file mode 100644 index 0000000..4e3f61e --- /dev/null +++ b/data/CTR-JA5/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000175300 + name: 'Metroid™ Prime: Blast Ball' + updates: + - id: 0004000E00175300 + name: 'Metroid™ Prime: Blast Ball: Update' +- regions: + - JP + id: 000400000016E400 + name: メトロイドプライム ブラストボール + updates: + - id: 0004000E0016E400 + name: 更新データ Ver. 1.1.0 メトロイドプライム ブラストボール +- regions: + - US + id: 000400000016F600 + name: 'Metroid Prime™: Federation Force Blast Ball Demo' + updates: + - id: 0004000E0016F600 + name: 'Metroid Prime™: Federation Force Blast Ball Update Version 1.1.0' diff --git a/data/CTR-JA5/icon.jpg b/data/CTR-JA5/icon.jpg new file mode 100644 index 0000000..3d03bc3 Binary files /dev/null and b/data/CTR-JA5/icon.jpg differ diff --git a/data/CTR-JA6/art.jpg b/data/CTR-JA6/art.jpg new file mode 100644 index 0000000..494c63c Binary files /dev/null and b/data/CTR-JA6/art.jpg differ diff --git a/data/CTR-JA6/data.yml b/data/CTR-JA6/data.yml new file mode 100644 index 0000000..6bd2bc4 --- /dev/null +++ b/data/CTR-JA6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000000DAA00 + name: Super Little Acorns 3D Turbo + updates: [] diff --git a/data/CTR-JA6/icon.jpg b/data/CTR-JA6/icon.jpg new file mode 100644 index 0000000..515a880 Binary files /dev/null and b/data/CTR-JA6/icon.jpg differ diff --git a/data/CTR-JA7/art.jpg b/data/CTR-JA7/art.jpg new file mode 100644 index 0000000..f714f82 Binary files /dev/null and b/data/CTR-JA7/art.jpg differ diff --git a/data/CTR-JA7/data.yml b/data/CTR-JA7/data.yml new file mode 100644 index 0000000..532711e --- /dev/null +++ b/data/CTR-JA7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DC200 + name: 3D Altered Beast + updates: [] +- regions: + - JP + id: 00040000000E9800 + name: 3D 獣王記 + updates: [] +- regions: + - US + id: 00040000000D9D00 + name: 3D Altered Beast + updates: [] diff --git a/data/CTR-JA7/icon.jpg b/data/CTR-JA7/icon.jpg new file mode 100644 index 0000000..58ddd24 Binary files /dev/null and b/data/CTR-JA7/icon.jpg differ diff --git a/data/CTR-JA8/art.jpg b/data/CTR-JA8/art.jpg new file mode 100644 index 0000000..961fc5a Binary files /dev/null and b/data/CTR-JA8/art.jpg differ diff --git a/data/CTR-JA8/data.yml b/data/CTR-JA8/data.yml new file mode 100644 index 0000000..4bc628e --- /dev/null +++ b/data/CTR-JA8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000EB300 + name: 'Dress To Play: Magic Bubbles!' + updates: [] +- regions: + - JP + id: 000400000012B800 + name: スター★シリーズ:マジックバブル + updates: [] +- regions: + - US + id: 00040000000D2B00 + name: 'Dress To Play: Magic Bubbles!' + updates: [] diff --git a/data/CTR-JA8/icon.jpg b/data/CTR-JA8/icon.jpg new file mode 100644 index 0000000..e2a6dd0 Binary files /dev/null and b/data/CTR-JA8/icon.jpg differ diff --git a/data/CTR-JA9/art.jpg b/data/CTR-JA9/art.jpg new file mode 100644 index 0000000..f0cfafd Binary files /dev/null and b/data/CTR-JA9/art.jpg differ diff --git a/data/CTR-JA9/data.yml b/data/CTR-JA9/data.yml new file mode 100644 index 0000000..8f5d69c --- /dev/null +++ b/data/CTR-JA9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000060F00 + name: Pyramids + updates: [] +- regions: + - JP + id: 0004000000143100 + name: トレジャーレイダー ピラミッドから脱出! + updates: [] +- regions: + - US + id: 0004000000068200 + name: Pyramids + updates: [] diff --git a/data/CTR-JA9/icon.jpg b/data/CTR-JA9/icon.jpg new file mode 100644 index 0000000..b16647f Binary files /dev/null and b/data/CTR-JA9/icon.jpg differ diff --git a/data/CTR-JAB/art.jpg b/data/CTR-JAB/art.jpg new file mode 100644 index 0000000..5611c89 Binary files /dev/null and b/data/CTR-JAB/art.jpg differ diff --git a/data/CTR-JAB/data.yml b/data/CTR-JAB/data.yml new file mode 100644 index 0000000..d1b76d3 --- /dev/null +++ b/data/CTR-JAB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008F000 + name: Art of Balance TOUCH! + updates: [] +- regions: + - JP + id: 00040000000E8900 + name: アートオブバランス タッチ! + updates: [] +- regions: + - US + id: 000400000008FF00 + name: Art of Balance TOUCH! + updates: [] diff --git a/data/CTR-JAB/icon.jpg b/data/CTR-JAB/icon.jpg new file mode 100644 index 0000000..7b0d893 Binary files /dev/null and b/data/CTR-JAB/icon.jpg differ diff --git a/data/CTR-JAC/art.jpg b/data/CTR-JAC/art.jpg new file mode 100644 index 0000000..336835a Binary files /dev/null and b/data/CTR-JAC/art.jpg differ diff --git a/data/CTR-JAC/data.yml b/data/CTR-JAC/data.yml new file mode 100644 index 0000000..fdf50a6 --- /dev/null +++ b/data/CTR-JAC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052600 + name: オセロ3D + updates: [] diff --git a/data/CTR-JAC/icon.jpg b/data/CTR-JAC/icon.jpg new file mode 100644 index 0000000..ce1d163 Binary files /dev/null and b/data/CTR-JAC/icon.jpg differ diff --git a/data/CTR-JAF/art.jpg b/data/CTR-JAF/art.jpg new file mode 100644 index 0000000..70e08a0 Binary files /dev/null and b/data/CTR-JAF/art.jpg differ diff --git a/data/CTR-JAF/data.yml b/data/CTR-JAF/data.yml new file mode 100644 index 0000000..ce1b843 --- /dev/null +++ b/data/CTR-JAF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000100800 + name: アウトドアズ・アンリーシュド アフリカ3D + updates: [] +- regions: + - US + id: 00040000000AE500 + name: 'Outdoors Unleashed: Africa 3D' + updates: [] diff --git a/data/CTR-JAF/icon.jpg b/data/CTR-JAF/icon.jpg new file mode 100644 index 0000000..278a76d Binary files /dev/null and b/data/CTR-JAF/icon.jpg differ diff --git a/data/CTR-JAG/art.jpg b/data/CTR-JAG/art.jpg new file mode 100644 index 0000000..cd5d9a8 Binary files /dev/null and b/data/CTR-JAG/art.jpg differ diff --git a/data/CTR-JAG/data.yml b/data/CTR-JAG/data.yml new file mode 100644 index 0000000..ce0618d --- /dev/null +++ b/data/CTR-JAG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DC300 + name: Pick-A-Gem + updates: [] +- regions: + - JP + id: 0004000000131A00 + name: ピック・ア・ジュエル + updates: [] +- regions: + - US + id: 00040000000D6C00 + name: Pick-A-Gem + updates: [] diff --git a/data/CTR-JAG/icon.jpg b/data/CTR-JAG/icon.jpg new file mode 100644 index 0000000..9ddbf5e Binary files /dev/null and b/data/CTR-JAG/icon.jpg differ diff --git a/data/CTR-JAH/art.jpg b/data/CTR-JAH/art.jpg new file mode 100644 index 0000000..afa2b2d Binary files /dev/null and b/data/CTR-JAH/art.jpg differ diff --git a/data/CTR-JAH/data.yml b/data/CTR-JAH/data.yml new file mode 100644 index 0000000..ef8acf5 --- /dev/null +++ b/data/CTR-JAH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D1700 + name: Air Battle Hockey 3D + updates: [] +- regions: + - JP + id: 0004000000089100 + name: 3次元エアホッケー + updates: [] diff --git a/data/CTR-JAH/icon.jpg b/data/CTR-JAH/icon.jpg new file mode 100644 index 0000000..73111bb Binary files /dev/null and b/data/CTR-JAH/icon.jpg differ diff --git a/data/CTR-JAJ/art.jpg b/data/CTR-JAJ/art.jpg new file mode 100644 index 0000000..9ee90ca Binary files /dev/null and b/data/CTR-JAJ/art.jpg differ diff --git a/data/CTR-JAJ/data.yml b/data/CTR-JAJ/data.yml new file mode 100644 index 0000000..236db20 --- /dev/null +++ b/data/CTR-JAJ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F2000 + name: Brunch Panic + updates: [] +- regions: + - US + id: 00040000000F2C00 + name: Brunch Panic + updates: [] diff --git a/data/CTR-JAJ/icon.jpg b/data/CTR-JAJ/icon.jpg new file mode 100644 index 0000000..f14bc78 Binary files /dev/null and b/data/CTR-JAJ/icon.jpg differ diff --git a/data/CTR-JAK/art.jpg b/data/CTR-JAK/art.jpg new file mode 100644 index 0000000..c68e453 Binary files /dev/null and b/data/CTR-JAK/art.jpg differ diff --git a/data/CTR-JAK/data.yml b/data/CTR-JAK/data.yml new file mode 100644 index 0000000..d9f0a82 --- /dev/null +++ b/data/CTR-JAK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000010F300 + name: 殺人ミステリー 切り裂きジャック + updates: [] diff --git a/data/CTR-JAK/icon.jpg b/data/CTR-JAK/icon.jpg new file mode 100644 index 0000000..38753b9 Binary files /dev/null and b/data/CTR-JAK/icon.jpg differ diff --git a/data/CTR-JAL/art.jpg b/data/CTR-JAL/art.jpg new file mode 100644 index 0000000..df4a391 Binary files /dev/null and b/data/CTR-JAL/art.jpg differ diff --git a/data/CTR-JAL/data.yml b/data/CTR-JAL/data.yml new file mode 100644 index 0000000..c1097ad --- /dev/null +++ b/data/CTR-JAL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052C00 + name: おてがるパズルシリーズ アリスと魔法のトランプ + updates: [] diff --git a/data/CTR-JAL/icon.jpg b/data/CTR-JAL/icon.jpg new file mode 100644 index 0000000..4b13045 Binary files /dev/null and b/data/CTR-JAL/icon.jpg differ diff --git a/data/CTR-JAM/art.jpg b/data/CTR-JAM/art.jpg new file mode 100644 index 0000000..04eff96 Binary files /dev/null and b/data/CTR-JAM/art.jpg differ diff --git a/data/CTR-JAM/data.yml b/data/CTR-JAM/data.yml new file mode 100644 index 0000000..3c75ce4 --- /dev/null +++ b/data/CTR-JAM/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000007C500 + name: Dillon's Rolling Western™ + updates: [] +- regions: + - JP + id: 0004000000059B00 + name: ザ・ローリング・ウエスタン + updates: [] +- regions: + - KR + id: 00040000000EDD00 + name: Dillon's Rolling Western + updates: [] +- regions: + - US + id: 000400000007C400 + name: Dillon's Rolling Western™ + updates: [] diff --git a/data/CTR-JAM/icon.jpg b/data/CTR-JAM/icon.jpg new file mode 100644 index 0000000..93bdda5 Binary files /dev/null and b/data/CTR-JAM/icon.jpg differ diff --git a/data/CTR-JAN/art.jpg b/data/CTR-JAN/art.jpg new file mode 100644 index 0000000..7ec2782 Binary files /dev/null and b/data/CTR-JAN/art.jpg differ diff --git a/data/CTR-JAN/data.yml b/data/CTR-JAN/data.yml new file mode 100644 index 0000000..00793d9 --- /dev/null +++ b/data/CTR-JAN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010A400 + name: Angry Bunnies + updates: [] +- regions: + - US + id: 00040000000C5800 + name: Angry Bunnies + updates: [] diff --git a/data/CTR-JAN/icon.jpg b/data/CTR-JAN/icon.jpg new file mode 100644 index 0000000..4cfcb1c Binary files /dev/null and b/data/CTR-JAN/icon.jpg differ diff --git a/data/CTR-JAP/art.jpg b/data/CTR-JAP/art.jpg new file mode 100644 index 0000000..e572ef8 Binary files /dev/null and b/data/CTR-JAP/art.jpg differ diff --git a/data/CTR-JAP/data.yml b/data/CTR-JAP/data.yml new file mode 100644 index 0000000..e64883f --- /dev/null +++ b/data/CTR-JAP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BC200 + name: 'AERO PORTER™ ' + updates: [] +- regions: + - JP + id: 00040000000C8600 + name: AERO PORTER + updates: [] +- regions: + - US + id: 00040000000BC000 + name: AERO PORTER + updates: [] diff --git a/data/CTR-JAP/icon.jpg b/data/CTR-JAP/icon.jpg new file mode 100644 index 0000000..027a5c1 Binary files /dev/null and b/data/CTR-JAP/icon.jpg differ diff --git a/data/CTR-JAQ/art.jpg b/data/CTR-JAQ/art.jpg new file mode 100644 index 0000000..8fac7d7 Binary files /dev/null and b/data/CTR-JAQ/art.jpg differ diff --git a/data/CTR-JAQ/data.yml b/data/CTR-JAQ/data.yml new file mode 100644 index 0000000..09631b2 --- /dev/null +++ b/data/CTR-JAQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E7300 + name: '10-in-1: Arcade Collection' + updates: [] +- regions: + - JP + id: 0004000000123300 + name: 9-in-1 アーケードコレクション + updates: [] +- regions: + - US + id: 00040000000C1400 + name: '10-in-1: Arcade Collection' + updates: [] diff --git a/data/CTR-JAQ/icon.jpg b/data/CTR-JAQ/icon.jpg new file mode 100644 index 0000000..47a76aa Binary files /dev/null and b/data/CTR-JAQ/icon.jpg differ diff --git a/data/CTR-JAR/art.jpg b/data/CTR-JAR/art.jpg new file mode 100644 index 0000000..8e47aff Binary files /dev/null and b/data/CTR-JAR/art.jpg differ diff --git a/data/CTR-JAR/data.yml b/data/CTR-JAR/data.yml new file mode 100644 index 0000000..1f66e47 --- /dev/null +++ b/data/CTR-JAR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C1700 + name: AiRace Speed + updates: [] +- regions: + - JP + id: 0004000000114800 + name: Aiレース:スピード + updates: [] +- regions: + - US + id: 00040000000A2F00 + name: AiRace Speed + updates: [] diff --git a/data/CTR-JAR/icon.jpg b/data/CTR-JAR/icon.jpg new file mode 100644 index 0000000..5a6f59c Binary files /dev/null and b/data/CTR-JAR/icon.jpg differ diff --git a/data/CTR-JAT/art.jpg b/data/CTR-JAT/art.jpg new file mode 100644 index 0000000..6b0d5fc Binary files /dev/null and b/data/CTR-JAT/art.jpg differ diff --git a/data/CTR-JAT/data.yml b/data/CTR-JAT/data.yml new file mode 100644 index 0000000..b709d2b --- /dev/null +++ b/data/CTR-JAT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000107A00 + name: Blast 'Em Bunnies + updates: [] +- regions: + - US + id: 0004000000107700 + name: Blast 'Em Bunnies + updates: [] diff --git a/data/CTR-JAT/icon.jpg b/data/CTR-JAT/icon.jpg new file mode 100644 index 0000000..bea2f29 Binary files /dev/null and b/data/CTR-JAT/icon.jpg differ diff --git a/data/CTR-JAU/art.jpg b/data/CTR-JAU/art.jpg new file mode 100644 index 0000000..5b17667 Binary files /dev/null and b/data/CTR-JAU/art.jpg differ diff --git a/data/CTR-JAU/data.yml b/data/CTR-JAU/data.yml new file mode 100644 index 0000000..c182467 --- /dev/null +++ b/data/CTR-JAU/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B4F00 + name: Fallblox™ + updates: [] +- regions: + - JP + id: 00040000000AAD00 + name: 引ク落ツ + updates: [] +- regions: + - KR + id: 00040000000C8A00 + name: 밀고 떨구고 + updates: [] +- regions: + - US + id: 00040000000B6E00 + name: Crashmo™ + updates: [] diff --git a/data/CTR-JAU/icon.jpg b/data/CTR-JAU/icon.jpg new file mode 100644 index 0000000..2155205 Binary files /dev/null and b/data/CTR-JAU/icon.jpg differ diff --git a/data/CTR-JAV/art.jpg b/data/CTR-JAV/art.jpg new file mode 100644 index 0000000..f117124 Binary files /dev/null and b/data/CTR-JAV/art.jpg differ diff --git a/data/CTR-JAV/data.yml b/data/CTR-JAV/data.yml new file mode 100644 index 0000000..2e5f3b5 --- /dev/null +++ b/data/CTR-JAV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000107800 + name: Race To The Line + updates: [] diff --git a/data/CTR-JAV/icon.jpg b/data/CTR-JAV/icon.jpg new file mode 100644 index 0000000..4aa978c Binary files /dev/null and b/data/CTR-JAV/icon.jpg differ diff --git a/data/CTR-JAX/art.jpg b/data/CTR-JAX/art.jpg new file mode 100644 index 0000000..18fcf6d Binary files /dev/null and b/data/CTR-JAX/art.jpg differ diff --git a/data/CTR-JAX/data.yml b/data/CTR-JAX/data.yml new file mode 100644 index 0000000..4c6ea1d --- /dev/null +++ b/data/CTR-JAX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F1A00 + name: Mahjong 3D – Essentials + updates: [] diff --git a/data/CTR-JAX/icon.jpg b/data/CTR-JAX/icon.jpg new file mode 100644 index 0000000..2aadac9 Binary files /dev/null and b/data/CTR-JAX/icon.jpg differ diff --git a/data/CTR-JAY/art.jpg b/data/CTR-JAY/art.jpg new file mode 100644 index 0000000..f6c5143 Binary files /dev/null and b/data/CTR-JAY/art.jpg differ diff --git a/data/CTR-JAY/data.yml b/data/CTR-JAY/data.yml new file mode 100644 index 0000000..36ca187 --- /dev/null +++ b/data/CTR-JAY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000E9700 + name: ニコリのパズル ヤジリン + updates: [] diff --git a/data/CTR-JAY/icon.jpg b/data/CTR-JAY/icon.jpg new file mode 100644 index 0000000..e7609fa Binary files /dev/null and b/data/CTR-JAY/icon.jpg differ diff --git a/data/CTR-JAZ/art.jpg b/data/CTR-JAZ/art.jpg new file mode 100644 index 0000000..7ecc893 Binary files /dev/null and b/data/CTR-JAZ/art.jpg differ diff --git a/data/CTR-JAZ/data.yml b/data/CTR-JAZ/data.yml new file mode 100644 index 0000000..1593452 --- /dev/null +++ b/data/CTR-JAZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000E9500 + name: ニコリのパズル ナンバーリンク + updates: [] diff --git a/data/CTR-JAZ/icon.jpg b/data/CTR-JAZ/icon.jpg new file mode 100644 index 0000000..87891c5 Binary files /dev/null and b/data/CTR-JAZ/icon.jpg differ diff --git a/data/CTR-JB2/art.jpg b/data/CTR-JB2/art.jpg new file mode 100644 index 0000000..6b09951 Binary files /dev/null and b/data/CTR-JB2/art.jpg differ diff --git a/data/CTR-JB2/data.yml b/data/CTR-JB2/data.yml new file mode 100644 index 0000000..e8e7afa --- /dev/null +++ b/data/CTR-JB2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000C5500 + name: ぶれいぶるー くろーんふぁんたずま + updates: [] +- regions: + - KR + id: 0004000000165100 + name: 'BLAZBLUE -CLONEPHANTASMA- ' + updates: [] +- regions: + - US + id: 000400000010F800 + name: BLAZBLUE -CLONEPHANTASMA- + updates: [] diff --git a/data/CTR-JB2/icon.jpg b/data/CTR-JB2/icon.jpg new file mode 100644 index 0000000..03cf9a2 Binary files /dev/null and b/data/CTR-JB2/icon.jpg differ diff --git a/data/CTR-JB3/art.jpg b/data/CTR-JB3/art.jpg new file mode 100644 index 0000000..c2a69e5 Binary files /dev/null and b/data/CTR-JB3/art.jpg differ diff --git a/data/CTR-JB3/data.yml b/data/CTR-JB3/data.yml new file mode 100644 index 0000000..0a0b4fc --- /dev/null +++ b/data/CTR-JB3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000009B200 + name: Bomb Monkey™ + updates: [] diff --git a/data/CTR-JB3/icon.jpg b/data/CTR-JB3/icon.jpg new file mode 100644 index 0000000..a0d5c19 Binary files /dev/null and b/data/CTR-JB3/icon.jpg differ diff --git a/data/CTR-JB4/art.jpg b/data/CTR-JB4/art.jpg new file mode 100644 index 0000000..c1f45e8 Binary files /dev/null and b/data/CTR-JB4/art.jpg differ diff --git a/data/CTR-JB4/data.yml b/data/CTR-JB4/data.yml new file mode 100644 index 0000000..43e9669 --- /dev/null +++ b/data/CTR-JB4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000CF000 + name: BIT.TRIP SAGA + updates: [] diff --git a/data/CTR-JB4/icon.jpg b/data/CTR-JB4/icon.jpg new file mode 100644 index 0000000..4240c31 Binary files /dev/null and b/data/CTR-JB4/icon.jpg differ diff --git a/data/CTR-JB5/art.jpg b/data/CTR-JB5/art.jpg new file mode 100644 index 0000000..a48d2d6 Binary files /dev/null and b/data/CTR-JB5/art.jpg differ diff --git a/data/CTR-JB5/data.yml b/data/CTR-JB5/data.yml new file mode 100644 index 0000000..c200fc1 --- /dev/null +++ b/data/CTR-JB5/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D0500 + name: Smash Bowling 3D + updates: [] +- regions: + - US + id: 00040000000EC800 + name: Smash Bowling 3D + updates: [] diff --git a/data/CTR-JB5/icon.jpg b/data/CTR-JB5/icon.jpg new file mode 100644 index 0000000..5d8c3c7 Binary files /dev/null and b/data/CTR-JB5/icon.jpg differ diff --git a/data/CTR-JB6/art.jpg b/data/CTR-JB6/art.jpg new file mode 100644 index 0000000..f55d82e Binary files /dev/null and b/data/CTR-JB6/art.jpg differ diff --git a/data/CTR-JB6/data.yml b/data/CTR-JB6/data.yml new file mode 100644 index 0000000..b9c7e7b --- /dev/null +++ b/data/CTR-JB6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052A00 + name: 3Dブロック崩し + updates: [] diff --git a/data/CTR-JB6/icon.jpg b/data/CTR-JB6/icon.jpg new file mode 100644 index 0000000..e004e5d Binary files /dev/null and b/data/CTR-JB6/icon.jpg differ diff --git a/data/CTR-JB7/art.jpg b/data/CTR-JB7/art.jpg new file mode 100644 index 0000000..ab4e3a5 Binary files /dev/null and b/data/CTR-JB7/art.jpg differ diff --git a/data/CTR-JB7/data.yml b/data/CTR-JB7/data.yml new file mode 100644 index 0000000..d4502b1 --- /dev/null +++ b/data/CTR-JB7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D2F00 + name: 'Mario and Donkey Kong™: Minis on the Move' + updates: [] +- regions: + - JP + id: 00040000000D1E00 + name: マリオ AND ドンキーコング ミニミニカーニバル + updates: [] +- regions: + - US + id: 00040000000C9D00 + name: 'Mario and Donkey Kong™: Minis on the Move' + updates: [] diff --git a/data/CTR-JB7/icon.jpg b/data/CTR-JB7/icon.jpg new file mode 100644 index 0000000..cfb5480 Binary files /dev/null and b/data/CTR-JB7/icon.jpg differ diff --git a/data/CTR-JB8/art.jpg b/data/CTR-JB8/art.jpg new file mode 100644 index 0000000..b7cc5d7 Binary files /dev/null and b/data/CTR-JB8/art.jpg differ diff --git a/data/CTR-JB8/data.yml b/data/CTR-JB8/data.yml new file mode 100644 index 0000000..ed80425 --- /dev/null +++ b/data/CTR-JB8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010A500 + name: Bubble Pop World + updates: [] +- regions: + - US + id: 00040000000BF200 + name: Bubble Pop World + updates: [] diff --git a/data/CTR-JB8/icon.jpg b/data/CTR-JB8/icon.jpg new file mode 100644 index 0000000..649792a Binary files /dev/null and b/data/CTR-JB8/icon.jpg differ diff --git a/data/CTR-JB9/art.jpg b/data/CTR-JB9/art.jpg new file mode 100644 index 0000000..8ad11ac Binary files /dev/null and b/data/CTR-JB9/art.jpg differ diff --git a/data/CTR-JB9/data.yml b/data/CTR-JB9/data.yml new file mode 100644 index 0000000..428eea6 --- /dev/null +++ b/data/CTR-JB9/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A7100 + name: Balloon Pop® Remix + updates: [] +- regions: + - US + id: 00040000000A8300 + name: Balloon Pop® Remix + updates: [] diff --git a/data/CTR-JB9/icon.jpg b/data/CTR-JB9/icon.jpg new file mode 100644 index 0000000..1024d22 Binary files /dev/null and b/data/CTR-JB9/icon.jpg differ diff --git a/data/CTR-JBB/art.jpg b/data/CTR-JBB/art.jpg new file mode 100644 index 0000000..6e2be7f Binary files /dev/null and b/data/CTR-JBB/art.jpg differ diff --git a/data/CTR-JBB/data.yml b/data/CTR-JBB/data.yml new file mode 100644 index 0000000..e2e41ab --- /dev/null +++ b/data/CTR-JBB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012D000 + name: Bit Boy!! ARCADE + updates: [] +- regions: + - US + id: 000400000008D100 + name: Bit Boy!! ARCADE + updates: [] diff --git a/data/CTR-JBB/icon.jpg b/data/CTR-JBB/icon.jpg new file mode 100644 index 0000000..22b6311 Binary files /dev/null and b/data/CTR-JBB/icon.jpg differ diff --git a/data/CTR-JBC/art.jpg b/data/CTR-JBC/art.jpg new file mode 100644 index 0000000..034651c Binary files /dev/null and b/data/CTR-JBC/art.jpg differ diff --git a/data/CTR-JBC/data.yml b/data/CTR-JBC/data.yml new file mode 100644 index 0000000..27f33cc --- /dev/null +++ b/data/CTR-JBC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D2900 + name: だるめしスポーツ店 + updates: [] +- regions: + - KR + id: 0004000000126200 + name: 달구네 스포츠 야구편 + updates: [] +- regions: + - US + id: 0004000000106400 + name: Rusty's Real Deal Baseball™ + updates: [] diff --git a/data/CTR-JBC/icon.jpg b/data/CTR-JBC/icon.jpg new file mode 100644 index 0000000..1016e19 Binary files /dev/null and b/data/CTR-JBC/icon.jpg differ diff --git a/data/CTR-JBD/art.jpg b/data/CTR-JBD/art.jpg new file mode 100644 index 0000000..b3c0877 Binary files /dev/null and b/data/CTR-JBD/art.jpg differ diff --git a/data/CTR-JBD/data.yml b/data/CTR-JBD/data.yml new file mode 100644 index 0000000..bcbf8a1 --- /dev/null +++ b/data/CTR-JBD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000067C00 + name: 美人時計 + updates: [] diff --git a/data/CTR-JBD/icon.jpg b/data/CTR-JBD/icon.jpg new file mode 100644 index 0000000..b507acd Binary files /dev/null and b/data/CTR-JBD/icon.jpg differ diff --git a/data/CTR-JBE/art.jpg b/data/CTR-JBE/art.jpg new file mode 100644 index 0000000..16f7b9b Binary files /dev/null and b/data/CTR-JBE/art.jpg differ diff --git a/data/CTR-JBE/data.yml b/data/CTR-JBE/data.yml new file mode 100644 index 0000000..c3d5325 --- /dev/null +++ b/data/CTR-JBE/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000191B00 + name: Super Strike Beach Volleyball™ + updates: [] +- regions: + - JP + id: 000400000008AB00 + name: おきらくビーチバレー3D + updates: [] +- regions: + - KR + id: 0004000000186B00 + name: 패밀리 비치발리볼 3D + updates: [] +- regions: + - US + id: 0004000000190400 + name: Super Strike Beach Volleyball™ + updates: [] diff --git a/data/CTR-JBE/icon.jpg b/data/CTR-JBE/icon.jpg new file mode 100644 index 0000000..0870404 Binary files /dev/null and b/data/CTR-JBE/icon.jpg differ diff --git a/data/CTR-JBG/art.jpg b/data/CTR-JBG/art.jpg new file mode 100644 index 0000000..627b451 Binary files /dev/null and b/data/CTR-JBG/art.jpg differ diff --git a/data/CTR-JBG/data.yml b/data/CTR-JBG/data.yml new file mode 100644 index 0000000..72c755f --- /dev/null +++ b/data/CTR-JBG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D1600 + name: Witch's Cat + updates: [] +- regions: + - JP + id: 0004000000059200 + name: ラビラビ外伝 Witch's Cat (ウィッチズキャット) + updates: [] diff --git a/data/CTR-JBG/icon.jpg b/data/CTR-JBG/icon.jpg new file mode 100644 index 0000000..313fdfc Binary files /dev/null and b/data/CTR-JBG/icon.jpg differ diff --git a/data/CTR-JBH/art.jpg b/data/CTR-JBH/art.jpg new file mode 100644 index 0000000..51a8c5a Binary files /dev/null and b/data/CTR-JBH/art.jpg differ diff --git a/data/CTR-JBH/data.yml b/data/CTR-JBH/data.yml new file mode 100644 index 0000000..7bc0d24 --- /dev/null +++ b/data/CTR-JBH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000A2000 + name: 鷹狩王 + updates: [] diff --git a/data/CTR-JBH/icon.jpg b/data/CTR-JBH/icon.jpg new file mode 100644 index 0000000..7348137 Binary files /dev/null and b/data/CTR-JBH/icon.jpg differ diff --git a/data/CTR-JBJ/art.jpg b/data/CTR-JBJ/art.jpg new file mode 100644 index 0000000..db3ac38 Binary files /dev/null and b/data/CTR-JBJ/art.jpg differ diff --git a/data/CTR-JBJ/data.yml b/data/CTR-JBJ/data.yml new file mode 100644 index 0000000..9fe0f20 --- /dev/null +++ b/data/CTR-JBJ/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000095900 + name: Akari by Nikoli + updates: [] +- regions: + - JP + id: 0004000000066B00 + name: ニコリのパズル 美術館 + updates: [] +- regions: + - KR + id: 00040000000E6100 + name: Akari by Nikoli + updates: [] +- regions: + - US + id: 000400000008CE00 + name: Akari by Nikoli + updates: [] diff --git a/data/CTR-JBJ/icon.jpg b/data/CTR-JBJ/icon.jpg new file mode 100644 index 0000000..f4d6160 Binary files /dev/null and b/data/CTR-JBJ/icon.jpg differ diff --git a/data/CTR-JBK/art.jpg b/data/CTR-JBK/art.jpg new file mode 100644 index 0000000..2a3d70b Binary files /dev/null and b/data/CTR-JBK/art.jpg differ diff --git a/data/CTR-JBK/data.yml b/data/CTR-JBK/data.yml new file mode 100644 index 0000000..91221a1 --- /dev/null +++ b/data/CTR-JBK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000115000 + name: WEAPON SHOP de OMASSE™ + updates: [] +- regions: + - JP + id: 00040000000C8400 + name: レンタル武器屋deオマッセ + updates: [] +- regions: + - US + id: 0004000000115100 + name: 'WEAPON SHOP de OMASSE™ ' + updates: [] diff --git a/data/CTR-JBK/icon.jpg b/data/CTR-JBK/icon.jpg new file mode 100644 index 0000000..a492918 Binary files /dev/null and b/data/CTR-JBK/icon.jpg differ diff --git a/data/CTR-JBL/art.jpg b/data/CTR-JBL/art.jpg new file mode 100644 index 0000000..f2f5672 Binary files /dev/null and b/data/CTR-JBL/art.jpg differ diff --git a/data/CTR-JBL/data.yml b/data/CTR-JBL/data.yml new file mode 100644 index 0000000..dae74ea --- /dev/null +++ b/data/CTR-JBL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D1800 + name: Bloody Vampire + updates: [] +- regions: + - JP + id: 0004000000088B00 + name: ブラッディヴァンパイア + updates: [] diff --git a/data/CTR-JBL/icon.jpg b/data/CTR-JBL/icon.jpg new file mode 100644 index 0000000..6fcc292 Binary files /dev/null and b/data/CTR-JBL/icon.jpg differ diff --git a/data/CTR-JBN/art.jpg b/data/CTR-JBN/art.jpg new file mode 100644 index 0000000..b6b0d22 Binary files /dev/null and b/data/CTR-JBN/art.jpg differ diff --git a/data/CTR-JBN/data.yml b/data/CTR-JBN/data.yml new file mode 100644 index 0000000..333f397 --- /dev/null +++ b/data/CTR-JBN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3600 + name: ブランチ☆パニック! + updates: [] +- regions: + - KR + id: 000400000011BE00 + name: BRUNCH PANIC + updates: [] +- regions: + - TW + id: 000400000010DB00 + name: 邦妮早午餐 + updates: [] diff --git a/data/CTR-JBN/icon.jpg b/data/CTR-JBN/icon.jpg new file mode 100644 index 0000000..e07b8ab Binary files /dev/null and b/data/CTR-JBN/icon.jpg differ diff --git a/data/CTR-JBP/art.jpg b/data/CTR-JBP/art.jpg new file mode 100644 index 0000000..8ad41d7 Binary files /dev/null and b/data/CTR-JBP/art.jpg differ diff --git a/data/CTR-JBP/data.yml b/data/CTR-JBP/data.yml new file mode 100644 index 0000000..c9a1f6e --- /dev/null +++ b/data/CTR-JBP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000053000 + name: 'ARC STYLE: Jazzy BILLIARDS 3D Professional' + updates: [] diff --git a/data/CTR-JBP/icon.jpg b/data/CTR-JBP/icon.jpg new file mode 100644 index 0000000..18a0b2a Binary files /dev/null and b/data/CTR-JBP/icon.jpg differ diff --git a/data/CTR-JBQ/art.jpg b/data/CTR-JBQ/art.jpg new file mode 100644 index 0000000..c4e51ff Binary files /dev/null and b/data/CTR-JBQ/art.jpg differ diff --git a/data/CTR-JBQ/data.yml b/data/CTR-JBQ/data.yml new file mode 100644 index 0000000..5ded99f --- /dev/null +++ b/data/CTR-JBQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000088F00 + name: ハイパーパドル ブロックラッシャー + updates: [] diff --git a/data/CTR-JBQ/icon.jpg b/data/CTR-JBQ/icon.jpg new file mode 100644 index 0000000..2a368b6 Binary files /dev/null and b/data/CTR-JBQ/icon.jpg differ diff --git a/data/CTR-JBS/art.jpg b/data/CTR-JBS/art.jpg new file mode 100644 index 0000000..5f6aeb7 Binary files /dev/null and b/data/CTR-JBS/art.jpg differ diff --git a/data/CTR-JBS/data.yml b/data/CTR-JBS/data.yml new file mode 100644 index 0000000..ad0815a --- /dev/null +++ b/data/CTR-JBS/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000143F00 + name: 'ARC STYLE: Baseball 3D' + updates: [] +- regions: + - JP + id: 0004000000095E00 + name: 'ARC STYLE: 野球!!3D' + updates: [] +- regions: + - KR + id: 0004000000169200 + name: 아크스타일 베이스볼 3D + updates: [] +- regions: + - US + id: 000400000010C600 + name: 'ARC STYLE: Baseball 3D' + updates: [] diff --git a/data/CTR-JBS/icon.jpg b/data/CTR-JBS/icon.jpg new file mode 100644 index 0000000..e1aa592 Binary files /dev/null and b/data/CTR-JBS/icon.jpg differ diff --git a/data/CTR-JBT/art.jpg b/data/CTR-JBT/art.jpg new file mode 100644 index 0000000..14e8483 Binary files /dev/null and b/data/CTR-JBT/art.jpg differ diff --git a/data/CTR-JBT/data.yml b/data/CTR-JBT/data.yml new file mode 100644 index 0000000..aca584d --- /dev/null +++ b/data/CTR-JBT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000147300 + name: Crazy Construction + updates: [] +- regions: + - JP + id: 000400000006E100 + name: 超高層建造計画 ビルディンガー + updates: [] +- regions: + - US + id: 00040000000CEE00 + name: CRAZY CONSTRUCTION + updates: [] diff --git a/data/CTR-JBT/icon.jpg b/data/CTR-JBT/icon.jpg new file mode 100644 index 0000000..ac74522 Binary files /dev/null and b/data/CTR-JBT/icon.jpg differ diff --git a/data/CTR-JBV/art.jpg b/data/CTR-JBV/art.jpg new file mode 100644 index 0000000..a696793 Binary files /dev/null and b/data/CTR-JBV/art.jpg differ diff --git a/data/CTR-JBV/data.yml b/data/CTR-JBV/data.yml new file mode 100644 index 0000000..b38b0af --- /dev/null +++ b/data/CTR-JBV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000053100 + name: VectorRacing + updates: [] +- regions: + - US + id: 000400000008B800 + name: VectorRacing + updates: [] diff --git a/data/CTR-JBV/icon.jpg b/data/CTR-JBV/icon.jpg new file mode 100644 index 0000000..44958f8 Binary files /dev/null and b/data/CTR-JBV/icon.jpg differ diff --git a/data/CTR-JBW/art.jpg b/data/CTR-JBW/art.jpg new file mode 100644 index 0000000..9c73f3e Binary files /dev/null and b/data/CTR-JBW/art.jpg differ diff --git a/data/CTR-JBW/data.yml b/data/CTR-JBW/data.yml new file mode 100644 index 0000000..8946b25 --- /dev/null +++ b/data/CTR-JBW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010B100 + name: Family Bowling 3D + updates: [] +- regions: + - JP + id: 000400000006DE00 + name: おきらくボウリング3D + updates: [] +- regions: + - US + id: 00040000000AE800 + name: Family Bowling 3D + updates: [] diff --git a/data/CTR-JBW/icon.jpg b/data/CTR-JBW/icon.jpg new file mode 100644 index 0000000..8c963c1 Binary files /dev/null and b/data/CTR-JBW/icon.jpg differ diff --git a/data/CTR-JBX/art.jpg b/data/CTR-JBX/art.jpg new file mode 100644 index 0000000..ad94498 Binary files /dev/null and b/data/CTR-JBX/art.jpg differ diff --git a/data/CTR-JBX/data.yml b/data/CTR-JBX/data.yml new file mode 100644 index 0000000..518b4b3 --- /dev/null +++ b/data/CTR-JBX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D0600 + name: 'Big Bass Arcade: No Limit' + updates: [] +- regions: + - JP + id: 0004000000110700 + name: ビッグバス アーケード + updates: [] +- regions: + - US + id: 00040000000D6600 + name: 'Big Bass Arcade: No Limit' + updates: [] diff --git a/data/CTR-JBX/icon.jpg b/data/CTR-JBX/icon.jpg new file mode 100644 index 0000000..2f951a1 Binary files /dev/null and b/data/CTR-JBX/icon.jpg differ diff --git a/data/CTR-JBZ/art.jpg b/data/CTR-JBZ/art.jpg new file mode 100644 index 0000000..75848e4 Binary files /dev/null and b/data/CTR-JBZ/art.jpg differ diff --git a/data/CTR-JBZ/data.yml b/data/CTR-JBZ/data.yml new file mode 100644 index 0000000..0a88eaa --- /dev/null +++ b/data/CTR-JBZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000011C700 + name: BearShark + updates: [] diff --git a/data/CTR-JBZ/icon.jpg b/data/CTR-JBZ/icon.jpg new file mode 100644 index 0000000..42724b9 Binary files /dev/null and b/data/CTR-JBZ/icon.jpg differ diff --git a/data/CTR-JC2/art.jpg b/data/CTR-JC2/art.jpg new file mode 100644 index 0000000..60ba98d Binary files /dev/null and b/data/CTR-JC2/art.jpg differ diff --git a/data/CTR-JC2/data.yml b/data/CTR-JC2/data.yml new file mode 100644 index 0000000..ce51058 --- /dev/null +++ b/data/CTR-JC2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F7400 + name: Coaster Creator 3D + updates: [] +- regions: + - JP + id: 00040000000FAF00 + name: ジェットコースターをつくろう!3D + updates: [] +- regions: + - US + id: 000400000008B200 + name: Coaster Creator 3D + updates: [] diff --git a/data/CTR-JC2/icon.jpg b/data/CTR-JC2/icon.jpg new file mode 100644 index 0000000..96c84ed Binary files /dev/null and b/data/CTR-JC2/icon.jpg differ diff --git a/data/CTR-JC3/art.jpg b/data/CTR-JC3/art.jpg new file mode 100644 index 0000000..c6b2b99 Binary files /dev/null and b/data/CTR-JC3/art.jpg differ diff --git a/data/CTR-JC3/data.yml b/data/CTR-JC3/data.yml new file mode 100644 index 0000000..15b8876 --- /dev/null +++ b/data/CTR-JC3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000066800 + name: ニコリのパズル スリザーリンク + updates: [] +- regions: + - KR + id: 0004000000102500 + name: Slitherlink by Nikoli + updates: [] +- regions: + - US + id: 000400000008D000 + name: Slitherlink by Nikoli + updates: [] diff --git a/data/CTR-JC3/icon.jpg b/data/CTR-JC3/icon.jpg new file mode 100644 index 0000000..b212e16 Binary files /dev/null and b/data/CTR-JC3/icon.jpg differ diff --git a/data/CTR-JC4/art.jpg b/data/CTR-JC4/art.jpg new file mode 100644 index 0000000..4f6a0a2 Binary files /dev/null and b/data/CTR-JC4/art.jpg differ diff --git a/data/CTR-JC4/data.yml b/data/CTR-JC4/data.yml new file mode 100644 index 0000000..6dd6fcc --- /dev/null +++ b/data/CTR-JC4/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000102C00 + name: Cube Tactics + updates: [] +- regions: + - JP + id: 00040000000D1000 + name: peakvox CUBE タクティクス + updates: [] +- regions: + - US + id: 0004000000101C00 + name: Cube Tactics + updates: [] diff --git a/data/CTR-JC4/icon.jpg b/data/CTR-JC4/icon.jpg new file mode 100644 index 0000000..1a3d7ae Binary files /dev/null and b/data/CTR-JC4/icon.jpg differ diff --git a/data/CTR-JC5/art.jpg b/data/CTR-JC5/art.jpg new file mode 100644 index 0000000..6b187df Binary files /dev/null and b/data/CTR-JC5/art.jpg differ diff --git a/data/CTR-JC5/data.yml b/data/CTR-JC5/data.yml new file mode 100644 index 0000000..b53b434 --- /dev/null +++ b/data/CTR-JC5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010A700 + name: 'The Mysterious Cities of Gold: Secret Paths' + updates: [] diff --git a/data/CTR-JC5/icon.jpg b/data/CTR-JC5/icon.jpg new file mode 100644 index 0000000..0d03e8f Binary files /dev/null and b/data/CTR-JC5/icon.jpg differ diff --git a/data/CTR-JC6/art.jpg b/data/CTR-JC6/art.jpg new file mode 100644 index 0000000..6f00dfa Binary files /dev/null and b/data/CTR-JC6/art.jpg differ diff --git a/data/CTR-JC6/data.yml b/data/CTR-JC6/data.yml new file mode 100644 index 0000000..55007d1 --- /dev/null +++ b/data/CTR-JC6/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E8100 + name: Cut the Rope + updates: [] +- regions: + - US + id: 00040000000EB900 + name: Cut the Rope + updates: [] diff --git a/data/CTR-JC6/icon.jpg b/data/CTR-JC6/icon.jpg new file mode 100644 index 0000000..7bf9f7a Binary files /dev/null and b/data/CTR-JC6/icon.jpg differ diff --git a/data/CTR-JCA/art.jpg b/data/CTR-JCA/art.jpg new file mode 100644 index 0000000..e3a78df Binary files /dev/null and b/data/CTR-JCA/art.jpg differ diff --git a/data/CTR-JCA/data.yml b/data/CTR-JCA/data.yml new file mode 100644 index 0000000..2c2af04 --- /dev/null +++ b/data/CTR-JCA/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000068F00 + name: Pullblox™ + updates: [] +- regions: + - JP + id: 0004000000068D00 + name: 引ク押ス + updates: [] +- regions: + - KR + id: 0004000000086700 + name: 밀고 당기고 + updates: [] +- regions: + - TW + id: 0004000000086800 + name: 推拉方塊(繁體中文版) + updates: [] +- regions: + - US + id: 0004000000068E00 + name: Pushmo™ + updates: [] diff --git a/data/CTR-JCA/icon.jpg b/data/CTR-JCA/icon.jpg new file mode 100644 index 0000000..b31fc94 Binary files /dev/null and b/data/CTR-JCA/icon.jpg differ diff --git a/data/CTR-JCB/art.jpg b/data/CTR-JCB/art.jpg new file mode 100644 index 0000000..fff0f75 Binary files /dev/null and b/data/CTR-JCB/art.jpg differ diff --git a/data/CTR-JCB/data.yml b/data/CTR-JCB/data.yml new file mode 100644 index 0000000..604526e --- /dev/null +++ b/data/CTR-JCB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000192D00 + name: Chain Blaster + updates: [] +- regions: + - JP + id: 00040000000CF100 + name: CHAIN BLASTER + updates: [] +- regions: + - US + id: 00040000000DCC00 + name: Chain Blaster + updates: [] diff --git a/data/CTR-JCB/icon.jpg b/data/CTR-JCB/icon.jpg new file mode 100644 index 0000000..27bc4b6 Binary files /dev/null and b/data/CTR-JCB/icon.jpg differ diff --git a/data/CTR-JCD/art.jpg b/data/CTR-JCD/art.jpg new file mode 100644 index 0000000..d244ee3 Binary files /dev/null and b/data/CTR-JCD/art.jpg differ diff --git a/data/CTR-JCD/data.yml b/data/CTR-JCD/data.yml new file mode 100644 index 0000000..dbe923f --- /dev/null +++ b/data/CTR-JCD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A6D00 + name: Castle Conqueror Defender + updates: [] +- regions: + - JP + id: 0004000000177700 + name: お城クラッシュ + updates: [] +- regions: + - US + id: 00040000000A8400 + name: Castle Conqueror Defender + updates: [] diff --git a/data/CTR-JCD/icon.jpg b/data/CTR-JCD/icon.jpg new file mode 100644 index 0000000..4b8e946 Binary files /dev/null and b/data/CTR-JCD/icon.jpg differ diff --git a/data/CTR-JCF/art.jpg b/data/CTR-JCF/art.jpg new file mode 100644 index 0000000..4fedd42 Binary files /dev/null and b/data/CTR-JCF/art.jpg differ diff --git a/data/CTR-JCF/data.yml b/data/CTR-JCF/data.yml new file mode 100644 index 0000000..26e39cc --- /dev/null +++ b/data/CTR-JCF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FEA00 + name: Best of Board Games - Chess + updates: [] +- regions: + - US + id: 0004000000101900 + name: Best of Board Games - Chess + updates: [] diff --git a/data/CTR-JCF/icon.jpg b/data/CTR-JCF/icon.jpg new file mode 100644 index 0000000..e4944e4 Binary files /dev/null and b/data/CTR-JCF/icon.jpg differ diff --git a/data/CTR-JCG/art.jpg b/data/CTR-JCG/art.jpg new file mode 100644 index 0000000..e8dd071 Binary files /dev/null and b/data/CTR-JCG/art.jpg differ diff --git a/data/CTR-JCG/data.yml b/data/CTR-JCG/data.yml new file mode 100644 index 0000000..9736fe7 --- /dev/null +++ b/data/CTR-JCG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000ED700 + name: Classic Card Games + updates: [] diff --git a/data/CTR-JCG/icon.jpg b/data/CTR-JCG/icon.jpg new file mode 100644 index 0000000..bbb714c Binary files /dev/null and b/data/CTR-JCG/icon.jpg differ diff --git a/data/CTR-JCJ/art.jpg b/data/CTR-JCJ/art.jpg new file mode 100644 index 0000000..e9b7345 Binary files /dev/null and b/data/CTR-JCJ/art.jpg differ diff --git a/data/CTR-JCJ/data.yml b/data/CTR-JCJ/data.yml new file mode 100644 index 0000000..c90b8de --- /dev/null +++ b/data/CTR-JCJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010DF00 + name: Squids Odyssey + updates: [] +- regions: + - JP + id: 0004000000130000 + name: SQUIDS-ひっぱりイカの大冒険- + updates: [] +- regions: + - US + id: 000400000010E900 + name: Squids Odyssey + updates: [] diff --git a/data/CTR-JCJ/icon.jpg b/data/CTR-JCJ/icon.jpg new file mode 100644 index 0000000..fbd19be Binary files /dev/null and b/data/CTR-JCJ/icon.jpg differ diff --git a/data/CTR-JCK/art.jpg b/data/CTR-JCK/art.jpg new file mode 100644 index 0000000..eda6c87 Binary files /dev/null and b/data/CTR-JCK/art.jpg differ diff --git a/data/CTR-JCK/data.yml b/data/CTR-JCK/data.yml new file mode 100644 index 0000000..43371a3 --- /dev/null +++ b/data/CTR-JCK/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000005DB00 + name: 鹿狩王 + updates: [] +- regions: + - US + id: 0004000000092600 + name: Deer Hunting King + updates: [] diff --git a/data/CTR-JCK/icon.jpg b/data/CTR-JCK/icon.jpg new file mode 100644 index 0000000..efc55d7 Binary files /dev/null and b/data/CTR-JCK/icon.jpg differ diff --git a/data/CTR-JCM/art.jpg b/data/CTR-JCM/art.jpg new file mode 100644 index 0000000..c5ab514 Binary files /dev/null and b/data/CTR-JCM/art.jpg differ diff --git a/data/CTR-JCM/data.yml b/data/CTR-JCM/data.yml new file mode 100644 index 0000000..15a8ef4 --- /dev/null +++ b/data/CTR-JCM/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014F400 + name: Monster Combine TD + updates: [] +- regions: + - JP + id: 00040000000CF300 + name: カスタムモンスターズ + updates: + - id: 0004000E000CF300 + name: 更新データ Ver. 1.1 カスタムモンスターズ +- regions: + - US + id: 0004000000150500 + name: Monster Combine TD + updates: [] diff --git a/data/CTR-JCM/icon.jpg b/data/CTR-JCM/icon.jpg new file mode 100644 index 0000000..0e12ebc Binary files /dev/null and b/data/CTR-JCM/icon.jpg differ diff --git a/data/CTR-JCN/art.jpg b/data/CTR-JCN/art.jpg new file mode 100644 index 0000000..1b519d3 Binary files /dev/null and b/data/CTR-JCN/art.jpg differ diff --git a/data/CTR-JCN/data.yml b/data/CTR-JCN/data.yml new file mode 100644 index 0000000..73ccd99 --- /dev/null +++ b/data/CTR-JCN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000188600 + name: Chronus Arc + updates: [] +- regions: + - JP + id: 000400000016BB00 + name: クロノスアーク + updates: [] +- regions: + - US + id: 0004000000179000 + name: Chronus Arc + updates: [] diff --git a/data/CTR-JCN/icon.jpg b/data/CTR-JCN/icon.jpg new file mode 100644 index 0000000..2314d83 Binary files /dev/null and b/data/CTR-JCN/icon.jpg differ diff --git a/data/CTR-JCP/art.jpg b/data/CTR-JCP/art.jpg new file mode 100644 index 0000000..9b63b70 Binary files /dev/null and b/data/CTR-JCP/art.jpg differ diff --git a/data/CTR-JCP/data.yml b/data/CTR-JCP/data.yml new file mode 100644 index 0000000..0ff556f --- /dev/null +++ b/data/CTR-JCP/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000154600 + name: BOXBOY!™ + updates: [] +- regions: + - JP + id: 0004000000126800 + name: ハコボーイ! + updates: [] +- regions: + - KR + id: 00040000001A5300 + name: 'BOXBOY! ' + updates: [] +- regions: + - US + id: 0004000000154500 + name: BOXBOY!™ + updates: [] diff --git a/data/CTR-JCP/icon.jpg b/data/CTR-JCP/icon.jpg new file mode 100644 index 0000000..9cd887b Binary files /dev/null and b/data/CTR-JCP/icon.jpg differ diff --git a/data/CTR-JCQ/art.jpg b/data/CTR-JCQ/art.jpg new file mode 100644 index 0000000..8c74e74 Binary files /dev/null and b/data/CTR-JCQ/art.jpg differ diff --git a/data/CTR-JCQ/data.yml b/data/CTR-JCQ/data.yml new file mode 100644 index 0000000..683793a --- /dev/null +++ b/data/CTR-JCQ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000009FC00 + name: ニコリのパズル 四角に切れ + updates: [] +- regions: + - KR + id: 0004000000109F00 + name: Shikaku by Nikoli + updates: [] diff --git a/data/CTR-JCQ/icon.jpg b/data/CTR-JCQ/icon.jpg new file mode 100644 index 0000000..a96922d Binary files /dev/null and b/data/CTR-JCQ/icon.jpg differ diff --git a/data/CTR-JCR/art.jpg b/data/CTR-JCR/art.jpg new file mode 100644 index 0000000..ffd59d8 Binary files /dev/null and b/data/CTR-JCR/art.jpg differ diff --git a/data/CTR-JCR/data.yml b/data/CTR-JCR/data.yml new file mode 100644 index 0000000..8d66f05 --- /dev/null +++ b/data/CTR-JCR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008A800 + name: Colors! 3D + updates: [] +- regions: + - JP + id: 00040000000FB700 + name: Colors! 3D + updates: [] +- regions: + - US + id: 0004000000081100 + name: Colors! 3D + updates: [] diff --git a/data/CTR-JCR/icon.jpg b/data/CTR-JCR/icon.jpg new file mode 100644 index 0000000..d3808b3 Binary files /dev/null and b/data/CTR-JCR/icon.jpg differ diff --git a/data/CTR-JCS/art.jpg b/data/CTR-JCS/art.jpg new file mode 100644 index 0000000..3e531dc Binary files /dev/null and b/data/CTR-JCS/art.jpg differ diff --git a/data/CTR-JCS/data.yml b/data/CTR-JCS/data.yml new file mode 100644 index 0000000..886ab2a --- /dev/null +++ b/data/CTR-JCS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000066600 + name: 'ARC STYLE: スパイダーソリティア' + updates: [] diff --git a/data/CTR-JCS/icon.jpg b/data/CTR-JCS/icon.jpg new file mode 100644 index 0000000..460627e Binary files /dev/null and b/data/CTR-JCS/icon.jpg differ diff --git a/data/CTR-JCT/art.jpg b/data/CTR-JCT/art.jpg new file mode 100644 index 0000000..830a916 Binary files /dev/null and b/data/CTR-JCT/art.jpg differ diff --git a/data/CTR-JCT/data.yml b/data/CTR-JCT/data.yml new file mode 100644 index 0000000..ffae37d --- /dev/null +++ b/data/CTR-JCT/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000CBD00 + name: みんなのおしゃべりチャット + updates: + - id: 0004000E000CBD00 + name: 更新データ Ver. 1.4 みんなのおしゃべりチャット diff --git a/data/CTR-JCT/icon.jpg b/data/CTR-JCT/icon.jpg new file mode 100644 index 0000000..bfb5cef Binary files /dev/null and b/data/CTR-JCT/icon.jpg differ diff --git a/data/CTR-JCU/art.jpg b/data/CTR-JCU/art.jpg new file mode 100644 index 0000000..0d6ab3b Binary files /dev/null and b/data/CTR-JCU/art.jpg differ diff --git a/data/CTR-JCU/data.yml b/data/CTR-JCU/data.yml new file mode 100644 index 0000000..7575591 --- /dev/null +++ b/data/CTR-JCU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000110F00 + name: Castle Clout 3D + updates: [] +- regions: + - JP + id: 00040000000E9400 + name: Castle Clout 3D 攻城戦線キャッスルクラウト + updates: [] +- regions: + - US + id: 0004000000097300 + name: Castle Clout 3D + updates: [] diff --git a/data/CTR-JCU/icon.jpg b/data/CTR-JCU/icon.jpg new file mode 100644 index 0000000..2f91d79 Binary files /dev/null and b/data/CTR-JCU/icon.jpg differ diff --git a/data/CTR-JCV/art.jpg b/data/CTR-JCV/art.jpg new file mode 100644 index 0000000..72e5957 Binary files /dev/null and b/data/CTR-JCV/art.jpg differ diff --git a/data/CTR-JCV/data.yml b/data/CTR-JCV/data.yml new file mode 100644 index 0000000..f569909 --- /dev/null +++ b/data/CTR-JCV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008CC00 + name: Sparkle Snapshots™ 3D + updates: [] +- regions: + - US + id: 000400000008CD00 + name: 'Sparkle Snapshots™ 3D ' + updates: [] diff --git a/data/CTR-JCV/icon.jpg b/data/CTR-JCV/icon.jpg new file mode 100644 index 0000000..b28122a Binary files /dev/null and b/data/CTR-JCV/icon.jpg differ diff --git a/data/CTR-JCX/art.jpg b/data/CTR-JCX/art.jpg new file mode 100644 index 0000000..6293e60 Binary files /dev/null and b/data/CTR-JCX/art.jpg differ diff --git a/data/CTR-JCX/data.yml b/data/CTR-JCX/data.yml new file mode 100644 index 0000000..3686a0e --- /dev/null +++ b/data/CTR-JCX/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F8400 + name: Bike Rider DX + updates: [] +- regions: + - JP + id: 00040000000AFB00 + name: チャリ走 DX + updates: + - id: 0004000E000AFB00 + name: 更新データ Ver. 1.1 チャリ走DX +- regions: + - KR + id: 0004000000107400 + name: Bike Rider DX + updates: [] +- regions: + - US + id: 00040000000FC000 + name: Bike Rider DX + updates: [] diff --git a/data/CTR-JCX/icon.jpg b/data/CTR-JCX/icon.jpg new file mode 100644 index 0000000..2ae5134 Binary files /dev/null and b/data/CTR-JCX/icon.jpg differ diff --git a/data/CTR-JCY/art.jpg b/data/CTR-JCY/art.jpg new file mode 100644 index 0000000..85ef27f Binary files /dev/null and b/data/CTR-JCY/art.jpg differ diff --git a/data/CTR-JCY/data.yml b/data/CTR-JCY/data.yml new file mode 100644 index 0000000..cf934f8 --- /dev/null +++ b/data/CTR-JCY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000124A00 + name: リアル脱出ゲーム×ニンテンドー 3DS 超破壊計画からの脱出 + updates: [] diff --git a/data/CTR-JCY/icon.jpg b/data/CTR-JCY/icon.jpg new file mode 100644 index 0000000..ea257d9 Binary files /dev/null and b/data/CTR-JCY/icon.jpg differ diff --git a/data/CTR-JCZ/art.jpg b/data/CTR-JCZ/art.jpg new file mode 100644 index 0000000..6941521 Binary files /dev/null and b/data/CTR-JCZ/art.jpg differ diff --git a/data/CTR-JCZ/data.yml b/data/CTR-JCZ/data.yml new file mode 100644 index 0000000..b69d317 --- /dev/null +++ b/data/CTR-JCZ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BC300 + name: 'CRIMSON SHROUD™ ' + updates: [] +- regions: + - JP + id: 00040000000C2600 + name: CRIMSON SHROUD クリムゾン シュラウド + updates: [] +- regions: + - US + id: 00040000000BBF00 + name: CRIMSON SHROUD + updates: [] diff --git a/data/CTR-JCZ/icon.jpg b/data/CTR-JCZ/icon.jpg new file mode 100644 index 0000000..e3e96d3 Binary files /dev/null and b/data/CTR-JCZ/icon.jpg differ diff --git a/data/CTR-JD2/art.jpg b/data/CTR-JD2/art.jpg new file mode 100644 index 0000000..df3daa9 Binary files /dev/null and b/data/CTR-JD2/art.jpg differ diff --git a/data/CTR-JD2/data.yml b/data/CTR-JD2/data.yml new file mode 100644 index 0000000..ce5faf9 --- /dev/null +++ b/data/CTR-JD2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000EAF00 + name: 'THE "DENPA" MEN 2: Beyond the Waves' + updates: [] +- regions: + - JP + id: 00040000000A7900 + name: 電波人間のRPG2 + updates: [] +- regions: + - US + id: 00040000000C3300 + name: 'THE "DENPA" MEN 2: Beyond the Waves' + updates: [] diff --git a/data/CTR-JD2/icon.jpg b/data/CTR-JD2/icon.jpg new file mode 100644 index 0000000..df23d21 Binary files /dev/null and b/data/CTR-JD2/icon.jpg differ diff --git a/data/CTR-JD4/art.jpg b/data/CTR-JD4/art.jpg new file mode 100644 index 0000000..83a6610 Binary files /dev/null and b/data/CTR-JD4/art.jpg differ diff --git a/data/CTR-JD4/data.yml b/data/CTR-JD4/data.yml new file mode 100644 index 0000000..eeedb77 --- /dev/null +++ b/data/CTR-JD4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000E9200 + name: '@SIMPLE DLシリーズ Vol.12 THE 脱出ゲーム 危険な5つの密室' + updates: [] diff --git a/data/CTR-JD4/icon.jpg b/data/CTR-JD4/icon.jpg new file mode 100644 index 0000000..6bed755 Binary files /dev/null and b/data/CTR-JD4/icon.jpg differ diff --git a/data/CTR-JD5/art.jpg b/data/CTR-JD5/art.jpg new file mode 100644 index 0000000..066c753 Binary files /dev/null and b/data/CTR-JD5/art.jpg differ diff --git a/data/CTR-JD5/data.yml b/data/CTR-JD5/data.yml new file mode 100644 index 0000000..c5ab24c --- /dev/null +++ b/data/CTR-JD5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000E9300 + name: '@SIMPLE DLシリーズ Vol.14 THE 脱出ゲーム ~裏切りの密室~' + updates: [] diff --git a/data/CTR-JD5/icon.jpg b/data/CTR-JD5/icon.jpg new file mode 100644 index 0000000..0daedb5 Binary files /dev/null and b/data/CTR-JD5/icon.jpg differ diff --git a/data/CTR-JD6/art.jpg b/data/CTR-JD6/art.jpg new file mode 100644 index 0000000..c312437 Binary files /dev/null and b/data/CTR-JD6/art.jpg differ diff --git a/data/CTR-JD6/data.yml b/data/CTR-JD6/data.yml new file mode 100644 index 0000000..22641c5 --- /dev/null +++ b/data/CTR-JD6/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103E00 + name: '@SIMPLE DLシリーズ Vol.27 THE イラストパズル' + updates: + - id: 0004000E00103E00 + name: 更新データ Ver. 1.1.0 @SIMPLE DL Vol.27 THE イラストパズル diff --git a/data/CTR-JD6/icon.jpg b/data/CTR-JD6/icon.jpg new file mode 100644 index 0000000..18c3dc0 Binary files /dev/null and b/data/CTR-JD6/icon.jpg differ diff --git a/data/CTR-JD7/art.jpg b/data/CTR-JD7/art.jpg new file mode 100644 index 0000000..07f1078 Binary files /dev/null and b/data/CTR-JD7/art.jpg differ diff --git a/data/CTR-JD7/data.yml b/data/CTR-JD7/data.yml new file mode 100644 index 0000000..755bf1a --- /dev/null +++ b/data/CTR-JD7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F2100 + name: Darts Up 3D + updates: [] +- regions: + - JP + id: 000400000012B300 + name: スター★シリーズ:3D ダーツ + updates: [] +- regions: + - US + id: 00040000000EB200 + name: Darts Up 3D + updates: [] diff --git a/data/CTR-JD7/icon.jpg b/data/CTR-JD7/icon.jpg new file mode 100644 index 0000000..279c655 Binary files /dev/null and b/data/CTR-JD7/icon.jpg differ diff --git a/data/CTR-JD8/art.jpg b/data/CTR-JD8/art.jpg new file mode 100644 index 0000000..4ebef9e Binary files /dev/null and b/data/CTR-JD8/art.jpg differ diff --git a/data/CTR-JD8/data.yml b/data/CTR-JD8/data.yml new file mode 100644 index 0000000..f2d58a3 --- /dev/null +++ b/data/CTR-JD8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2400 + name: 'THE "DENPA" MEN: They Came By Wave' + updates: [] +- regions: + - JP + id: 0004000000077E00 + name: 電波人間のRPG + updates: [] +- regions: + - US + id: 00040000000A3100 + name: THE "DENPA" MEN They Came By Wave + updates: [] diff --git a/data/CTR-JD8/icon.jpg b/data/CTR-JD8/icon.jpg new file mode 100644 index 0000000..83789dc Binary files /dev/null and b/data/CTR-JD8/icon.jpg differ diff --git a/data/CTR-JD9/art.jpg b/data/CTR-JD9/art.jpg new file mode 100644 index 0000000..3af0b06 Binary files /dev/null and b/data/CTR-JD9/art.jpg differ diff --git a/data/CTR-JD9/data.yml b/data/CTR-JD9/data.yml new file mode 100644 index 0000000..2952910 --- /dev/null +++ b/data/CTR-JD9/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000098900 + name: Cave Story + updates: [] +- regions: + - JP + id: 0004000000179A00 + name: 洞窟物語 + updates: [] +- regions: + - KR + id: 00040000001A5500 + name: Cave Story 동굴 이야기 + updates: [] +- regions: + - US + id: 000400000009B300 + name: Cave Story + updates: [] diff --git a/data/CTR-JD9/icon.jpg b/data/CTR-JD9/icon.jpg new file mode 100644 index 0000000..fdad04f Binary files /dev/null and b/data/CTR-JD9/icon.jpg differ diff --git a/data/CTR-JDD/art.jpg b/data/CTR-JDD/art.jpg new file mode 100644 index 0000000..d9935eb Binary files /dev/null and b/data/CTR-JDD/art.jpg differ diff --git a/data/CTR-JDD/data.yml b/data/CTR-JDD/data.yml new file mode 100644 index 0000000..992c294 --- /dev/null +++ b/data/CTR-JDD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F0C00 + name: 101 DinoPets 3D + updates: [] +- regions: + - JP + id: 00040000000D8B00 + name: きょうりゅうペット3D + updates: [] +- regions: + - US + id: 00040000000B8500 + name: 101 DinoPets 3D + updates: [] diff --git a/data/CTR-JDD/icon.jpg b/data/CTR-JDD/icon.jpg new file mode 100644 index 0000000..c411981 Binary files /dev/null and b/data/CTR-JDD/icon.jpg differ diff --git a/data/CTR-JDH/art.jpg b/data/CTR-JDH/art.jpg new file mode 100644 index 0000000..00aa3e7 Binary files /dev/null and b/data/CTR-JDH/art.jpg differ diff --git a/data/CTR-JDH/data.yml b/data/CTR-JDH/data.yml new file mode 100644 index 0000000..f928663 --- /dev/null +++ b/data/CTR-JDH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017DB00 + name: The Delusions of Von Sottendorff and his Square Mind + updates: [] +- regions: + - US + id: 00040000000E5900 + name: The delusions of Von Sottendorff + updates: [] diff --git a/data/CTR-JDH/icon.jpg b/data/CTR-JDH/icon.jpg new file mode 100644 index 0000000..5a4e20e Binary files /dev/null and b/data/CTR-JDH/icon.jpg differ diff --git a/data/CTR-JDK/art.jpg b/data/CTR-JDK/art.jpg new file mode 100644 index 0000000..eb3567b Binary files /dev/null and b/data/CTR-JDK/art.jpg differ diff --git a/data/CTR-JDK/data.yml b/data/CTR-JDK/data.yml new file mode 100644 index 0000000..a658069 --- /dev/null +++ b/data/CTR-JDK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103500 + name: '@SIMPLE DLシリーズ Vol.21 THE 鑑識官 File.1' + updates: [] diff --git a/data/CTR-JDK/icon.jpg b/data/CTR-JDK/icon.jpg new file mode 100644 index 0000000..126f8fb Binary files /dev/null and b/data/CTR-JDK/icon.jpg differ diff --git a/data/CTR-JDL/art.jpg b/data/CTR-JDL/art.jpg new file mode 100644 index 0000000..3c77715 Binary files /dev/null and b/data/CTR-JDL/art.jpg differ diff --git a/data/CTR-JDL/data.yml b/data/CTR-JDL/data.yml new file mode 100644 index 0000000..a867364 --- /dev/null +++ b/data/CTR-JDL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DE300 + name: 3D Ecco The Dolphin + updates: [] +- regions: + - JP + id: 00040000000EE700 + name: 3D エコー・ザ・ドルフィン + updates: [] +- regions: + - US + id: 00040000000D9E00 + name: '3D Ecco the Dolphin™ ' + updates: [] diff --git a/data/CTR-JDL/icon.jpg b/data/CTR-JDL/icon.jpg new file mode 100644 index 0000000..4593c5e Binary files /dev/null and b/data/CTR-JDL/icon.jpg differ diff --git a/data/CTR-JDM/art.jpg b/data/CTR-JDM/art.jpg new file mode 100644 index 0000000..48d2304 Binary files /dev/null and b/data/CTR-JDM/art.jpg differ diff --git a/data/CTR-JDM/data.yml b/data/CTR-JDM/data.yml new file mode 100644 index 0000000..a854ea8 --- /dev/null +++ b/data/CTR-JDM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D9600 + name: THE STARSHIP DAMREY™ + updates: [] +- regions: + - JP + id: 00040000000D0E00 + name: 宇宙船ダムレイ号 + updates: [] +- regions: + - US + id: 00040000000D9900 + name: THE STARSHIP DAMREY™ + updates: [] diff --git a/data/CTR-JDM/icon.jpg b/data/CTR-JDM/icon.jpg new file mode 100644 index 0000000..524918b Binary files /dev/null and b/data/CTR-JDM/icon.jpg differ diff --git a/data/CTR-JDN/art.jpg b/data/CTR-JDN/art.jpg new file mode 100644 index 0000000..c8a3a57 Binary files /dev/null and b/data/CTR-JDN/art.jpg differ diff --git a/data/CTR-JDN/data.yml b/data/CTR-JDN/data.yml new file mode 100644 index 0000000..3b5ed64 --- /dev/null +++ b/data/CTR-JDN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B0E00 + name: 'Dot Runner: Complete Edition' + updates: [] +- regions: + - JP + id: 0004000000066400 + name: ドットイーター ニューピックダン + updates: [] +- regions: + - US + id: 0004000000095300 + name: 'Dot Runner: Complete Edition' + updates: [] diff --git a/data/CTR-JDN/icon.jpg b/data/CTR-JDN/icon.jpg new file mode 100644 index 0000000..91573cf Binary files /dev/null and b/data/CTR-JDN/icon.jpg differ diff --git a/data/CTR-JDP/art.jpg b/data/CTR-JDP/art.jpg new file mode 100644 index 0000000..749c44d Binary files /dev/null and b/data/CTR-JDP/art.jpg differ diff --git a/data/CTR-JDP/data.yml b/data/CTR-JDP/data.yml new file mode 100644 index 0000000..e57837e --- /dev/null +++ b/data/CTR-JDP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BB200 + name: 'Dress To Play: Cute Witches!' + updates: [] +- regions: + - JP + id: 000400000012A300 + name: 'スター★シリーズ: キュートウィッチ' + updates: [] +- regions: + - US + id: 00040000000B7700 + name: 'Dress To Play: Cute Witches!' + updates: [] diff --git a/data/CTR-JDP/icon.jpg b/data/CTR-JDP/icon.jpg new file mode 100644 index 0000000..4141af5 Binary files /dev/null and b/data/CTR-JDP/icon.jpg differ diff --git a/data/CTR-JDQ/art.jpg b/data/CTR-JDQ/art.jpg new file mode 100644 index 0000000..b94e5fa Binary files /dev/null and b/data/CTR-JDQ/art.jpg differ diff --git a/data/CTR-JDQ/data.yml b/data/CTR-JDQ/data.yml new file mode 100644 index 0000000..98b6bc6 --- /dev/null +++ b/data/CTR-JDQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000008C800 + name: ドラゴンクエストⅩ おでかけモシャスdeバトル + updates: [] diff --git a/data/CTR-JDQ/icon.jpg b/data/CTR-JDQ/icon.jpg new file mode 100644 index 0000000..c4743a0 Binary files /dev/null and b/data/CTR-JDQ/icon.jpg differ diff --git a/data/CTR-JDR/art.jpg b/data/CTR-JDR/art.jpg new file mode 100644 index 0000000..363616f Binary files /dev/null and b/data/CTR-JDR/art.jpg differ diff --git a/data/CTR-JDR/data.yml b/data/CTR-JDR/data.yml new file mode 100644 index 0000000..3b2f708 --- /dev/null +++ b/data/CTR-JDR/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000011C800 + name: THE "DENPA" MEN 3 The Rise of Digitoll + updates: [] +- regions: + - JP + id: 00040000000EF000 + name: 電波人間のRPG3 + updates: + - id: 0004000E000EF000 + name: 更新データ Ver. 1.4 電波人間のRPG3 +- regions: + - US + id: 000400000011DE00 + name: THE "DENPA" MEN 3 The Rise of Digitoll + updates: [] diff --git a/data/CTR-JDR/icon.jpg b/data/CTR-JDR/icon.jpg new file mode 100644 index 0000000..1aa9feb Binary files /dev/null and b/data/CTR-JDR/icon.jpg differ diff --git a/data/CTR-JDS/art.jpg b/data/CTR-JDS/art.jpg new file mode 100644 index 0000000..83d3a48 Binary files /dev/null and b/data/CTR-JDS/art.jpg differ diff --git a/data/CTR-JDS/data.yml b/data/CTR-JDS/data.yml new file mode 100644 index 0000000..7a96146 --- /dev/null +++ b/data/CTR-JDS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103600 + name: '@SIMPLE DLシリーズ Vol.23 THE 鑑識官 File.2' + updates: [] diff --git a/data/CTR-JDS/icon.jpg b/data/CTR-JDS/icon.jpg new file mode 100644 index 0000000..7de9917 Binary files /dev/null and b/data/CTR-JDS/icon.jpg differ diff --git a/data/CTR-JDU/art.jpg b/data/CTR-JDU/art.jpg new file mode 100644 index 0000000..cd83fd3 Binary files /dev/null and b/data/CTR-JDU/art.jpg differ diff --git a/data/CTR-JDU/data.yml b/data/CTR-JDU/data.yml new file mode 100644 index 0000000..8f75a5d --- /dev/null +++ b/data/CTR-JDU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103800 + name: '@SIMPLE DLシリーズ Vol.18 THE 将棋' + updates: [] diff --git a/data/CTR-JDU/icon.jpg b/data/CTR-JDU/icon.jpg new file mode 100644 index 0000000..268344a Binary files /dev/null and b/data/CTR-JDU/icon.jpg differ diff --git a/data/CTR-JDV/art.jpg b/data/CTR-JDV/art.jpg new file mode 100644 index 0000000..a7eaff0 Binary files /dev/null and b/data/CTR-JDV/art.jpg differ diff --git a/data/CTR-JDV/data.yml b/data/CTR-JDV/data.yml new file mode 100644 index 0000000..5802205 --- /dev/null +++ b/data/CTR-JDV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103700 + name: '@SIMPLE DLシリーズ Vol.19 THE 囲碁' + updates: [] diff --git a/data/CTR-JDV/icon.jpg b/data/CTR-JDV/icon.jpg new file mode 100644 index 0000000..4f9c1b2 Binary files /dev/null and b/data/CTR-JDV/icon.jpg differ diff --git a/data/CTR-JDW/art.jpg b/data/CTR-JDW/art.jpg new file mode 100644 index 0000000..4430696 Binary files /dev/null and b/data/CTR-JDW/art.jpg differ diff --git a/data/CTR-JDW/data.yml b/data/CTR-JDW/data.yml new file mode 100644 index 0000000..a85c86f --- /dev/null +++ b/data/CTR-JDW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103900 + name: '@SIMPLE DLシリーズ Vol.20 THE カード' + updates: + - id: 0004000E00103900 + name: 更新データ Ver.1.1 @SIMPLE DL Vol.20 THE カード diff --git a/data/CTR-JDW/icon.jpg b/data/CTR-JDW/icon.jpg new file mode 100644 index 0000000..3e951dc Binary files /dev/null and b/data/CTR-JDW/icon.jpg differ diff --git a/data/CTR-JDX/art.jpg b/data/CTR-JDX/art.jpg new file mode 100644 index 0000000..6e9878d Binary files /dev/null and b/data/CTR-JDX/art.jpg differ diff --git a/data/CTR-JDX/data.yml b/data/CTR-JDX/data.yml new file mode 100644 index 0000000..e47177f --- /dev/null +++ b/data/CTR-JDX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000005DC00 + name: ドーパミックス + updates: [] diff --git a/data/CTR-JDX/icon.jpg b/data/CTR-JDX/icon.jpg new file mode 100644 index 0000000..9844895 Binary files /dev/null and b/data/CTR-JDX/icon.jpg differ diff --git a/data/CTR-JDY/art.jpg b/data/CTR-JDY/art.jpg new file mode 100644 index 0000000..28e6fcf Binary files /dev/null and b/data/CTR-JDY/art.jpg differ diff --git a/data/CTR-JDY/data.yml b/data/CTR-JDY/data.yml new file mode 100644 index 0000000..6bf5728 --- /dev/null +++ b/data/CTR-JDY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103A00 + name: '@SIMPLE DLシリーズ Vol.25 THE ソリティア' + updates: [] diff --git a/data/CTR-JDY/icon.jpg b/data/CTR-JDY/icon.jpg new file mode 100644 index 0000000..577f199 Binary files /dev/null and b/data/CTR-JDY/icon.jpg differ diff --git a/data/CTR-JDZ/art.jpg b/data/CTR-JDZ/art.jpg new file mode 100644 index 0000000..c275ca8 Binary files /dev/null and b/data/CTR-JDZ/art.jpg differ diff --git a/data/CTR-JDZ/data.yml b/data/CTR-JDZ/data.yml new file mode 100644 index 0000000..dc5d2ec --- /dev/null +++ b/data/CTR-JDZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103B00 + name: '@SIMPLE DLシリーズ Vol.29 THE ラインパズル' + updates: [] diff --git a/data/CTR-JDZ/icon.jpg b/data/CTR-JDZ/icon.jpg new file mode 100644 index 0000000..f496aa2 Binary files /dev/null and b/data/CTR-JDZ/icon.jpg differ diff --git a/data/CTR-JEB/art.jpg b/data/CTR-JEB/art.jpg new file mode 100644 index 0000000..eda18fb Binary files /dev/null and b/data/CTR-JEB/art.jpg differ diff --git a/data/CTR-JEB/data.yml b/data/CTR-JEB/data.yml new file mode 100644 index 0000000..0b533b4 --- /dev/null +++ b/data/CTR-JEB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B4700 + name: どこでも本屋さん + updates: [] diff --git a/data/CTR-JEB/icon.jpg b/data/CTR-JEB/icon.jpg new file mode 100644 index 0000000..89fa449 Binary files /dev/null and b/data/CTR-JEB/icon.jpg differ diff --git a/data/CTR-JEF/art.jpg b/data/CTR-JEF/art.jpg new file mode 100644 index 0000000..7635661 Binary files /dev/null and b/data/CTR-JEF/art.jpg differ diff --git a/data/CTR-JEF/data.yml b/data/CTR-JEF/data.yml new file mode 100644 index 0000000..a632370 --- /dev/null +++ b/data/CTR-JEF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012AE00 + name: Excave + updates: [] +- regions: + - JP + id: 000400000010EF00 + name: エクスケーブ + updates: [] +- regions: + - US + id: 0004000000158500 + name: Excave + updates: [] diff --git a/data/CTR-JEF/icon.jpg b/data/CTR-JEF/icon.jpg new file mode 100644 index 0000000..fe24d6a Binary files /dev/null and b/data/CTR-JEF/icon.jpg differ diff --git a/data/CTR-JEG/art.jpg b/data/CTR-JEG/art.jpg new file mode 100644 index 0000000..ba665e5 Binary files /dev/null and b/data/CTR-JEG/art.jpg differ diff --git a/data/CTR-JEG/data.yml b/data/CTR-JEG/data.yml new file mode 100644 index 0000000..71da717 --- /dev/null +++ b/data/CTR-JEG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000108A00 + name: EDGE + updates: [] +- regions: + - JP + id: 0004000000139B00 + name: EDGE + updates: [] +- regions: + - US + id: 0004000000108B00 + name: 'EDGE ' + updates: [] diff --git a/data/CTR-JEG/icon.jpg b/data/CTR-JEG/icon.jpg new file mode 100644 index 0000000..aa5a016 Binary files /dev/null and b/data/CTR-JEG/icon.jpg differ diff --git a/data/CTR-JEH/art.jpg b/data/CTR-JEH/art.jpg new file mode 100644 index 0000000..979db4b Binary files /dev/null and b/data/CTR-JEH/art.jpg differ diff --git a/data/CTR-JEH/data.yml b/data/CTR-JEH/data.yml new file mode 100644 index 0000000..41273d1 --- /dev/null +++ b/data/CTR-JEH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000114500 + name: '@SIMPLE DLシリーズ Vol.24 THE 密室からの脱出 温泉編' + updates: [] diff --git a/data/CTR-JEH/icon.jpg b/data/CTR-JEH/icon.jpg new file mode 100644 index 0000000..9c664ff Binary files /dev/null and b/data/CTR-JEH/icon.jpg differ diff --git a/data/CTR-JEJ/art.jpg b/data/CTR-JEJ/art.jpg new file mode 100644 index 0000000..f3a02cd Binary files /dev/null and b/data/CTR-JEJ/art.jpg differ diff --git a/data/CTR-JEJ/data.yml b/data/CTR-JEJ/data.yml new file mode 100644 index 0000000..bf29a7b --- /dev/null +++ b/data/CTR-JEJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015B400 + name: 'Excave II: Wizard of the Underworld' + updates: [] +- regions: + - JP + id: 0004000000128700 + name: エクスケーブ ~異界の魔導師編~ + updates: [] +- regions: + - US + id: 000400000015C500 + name: 'Excave II : Wizard of the Underworld' + updates: [] diff --git a/data/CTR-JEJ/icon.jpg b/data/CTR-JEJ/icon.jpg new file mode 100644 index 0000000..e2dbf1a Binary files /dev/null and b/data/CTR-JEJ/icon.jpg differ diff --git a/data/CTR-JEL/art.jpg b/data/CTR-JEL/art.jpg new file mode 100644 index 0000000..258951d Binary files /dev/null and b/data/CTR-JEL/art.jpg differ diff --git a/data/CTR-JEL/data.yml b/data/CTR-JEL/data.yml new file mode 100644 index 0000000..58e6073 --- /dev/null +++ b/data/CTR-JEL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000007AC00 + name: "SpeedThru: Potzol's Puzzle™" + updates: [] +- regions: + - JP + id: 0004000000064C00 + name: 疾走すりぬけ アナトウス + updates: [] +- regions: + - US + id: 0004000000083800 + name: Ketzal's Corridors™ + updates: [] diff --git a/data/CTR-JEL/icon.jpg b/data/CTR-JEL/icon.jpg new file mode 100644 index 0000000..ba4a6fc Binary files /dev/null and b/data/CTR-JEL/icon.jpg differ diff --git a/data/CTR-JEM/art.jpg b/data/CTR-JEM/art.jpg new file mode 100644 index 0000000..43928a1 Binary files /dev/null and b/data/CTR-JEM/art.jpg differ diff --git a/data/CTR-JEM/data.yml b/data/CTR-JEM/data.yml new file mode 100644 index 0000000..4319677 --- /dev/null +++ b/data/CTR-JEM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000EE600 + name: どぎめぎインリョクちゃん + updates: [] diff --git a/data/CTR-JEM/icon.jpg b/data/CTR-JEM/icon.jpg new file mode 100644 index 0000000..e63d06e Binary files /dev/null and b/data/CTR-JEM/icon.jpg differ diff --git a/data/CTR-JEN/art.jpg b/data/CTR-JEN/art.jpg new file mode 100644 index 0000000..595b886 Binary files /dev/null and b/data/CTR-JEN/art.jpg differ diff --git a/data/CTR-JEN/data.yml b/data/CTR-JEN/data.yml new file mode 100644 index 0000000..9ee1560 --- /dev/null +++ b/data/CTR-JEN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000006A200 + name: Zen Pinball 3D + updates: [] +- regions: + - US + id: 000400000007FC00 + name: Zen Pinball 3D + updates: [] diff --git a/data/CTR-JEN/icon.jpg b/data/CTR-JEN/icon.jpg new file mode 100644 index 0000000..ef95df9 Binary files /dev/null and b/data/CTR-JEN/icon.jpg differ diff --git a/data/CTR-JEP/art.jpg b/data/CTR-JEP/art.jpg new file mode 100644 index 0000000..b2d2c0b Binary files /dev/null and b/data/CTR-JEP/art.jpg differ diff --git a/data/CTR-JEP/data.yml b/data/CTR-JEP/data.yml new file mode 100644 index 0000000..3958ea0 --- /dev/null +++ b/data/CTR-JEP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000128400 + name: PICROSS e4 + updates: [] +- regions: + - JP + id: 000400000010F000 + name: ピクロスe4 + updates: [] +- regions: + - US + id: 0004000000127300 + name: PICROSS e4 + updates: [] diff --git a/data/CTR-JEP/icon.jpg b/data/CTR-JEP/icon.jpg new file mode 100644 index 0000000..a509a30 Binary files /dev/null and b/data/CTR-JEP/icon.jpg differ diff --git a/data/CTR-JEQ/art.jpg b/data/CTR-JEQ/art.jpg new file mode 100644 index 0000000..1fe8c17 Binary files /dev/null and b/data/CTR-JEQ/art.jpg differ diff --git a/data/CTR-JEQ/data.yml b/data/CTR-JEQ/data.yml new file mode 100644 index 0000000..8d1a072 --- /dev/null +++ b/data/CTR-JEQ/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000149700 + name: Painting Workshop + updates: [] +- regions: + - JP + id: 000400000009FE00 + name: もっと気軽に!お絵描き工房プラス + updates: + - id: 0004000E0009FE00 + name: 更新データ Ver. 1.1 もっと気軽に!お絵描き工房プラス diff --git a/data/CTR-JEQ/icon.jpg b/data/CTR-JEQ/icon.jpg new file mode 100644 index 0000000..78c61b3 Binary files /dev/null and b/data/CTR-JEQ/icon.jpg differ diff --git a/data/CTR-JES/art.jpg b/data/CTR-JES/art.jpg new file mode 100644 index 0000000..24ab661 Binary files /dev/null and b/data/CTR-JES/art.jpg differ diff --git a/data/CTR-JES/data.yml b/data/CTR-JES/data.yml new file mode 100644 index 0000000..7787d94 --- /dev/null +++ b/data/CTR-JES/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000004AA00 + name: Nintendo Video + updates: [] diff --git a/data/CTR-JES/icon.jpg b/data/CTR-JES/icon.jpg new file mode 100644 index 0000000..c76614d Binary files /dev/null and b/data/CTR-JES/icon.jpg differ diff --git a/data/CTR-JET/art.jpg b/data/CTR-JET/art.jpg new file mode 100644 index 0000000..99c15c7 Binary files /dev/null and b/data/CTR-JET/art.jpg differ diff --git a/data/CTR-JET/data.yml b/data/CTR-JET/data.yml new file mode 100644 index 0000000..a0221fe --- /dev/null +++ b/data/CTR-JET/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000102900 + name: PICROSS e3 + updates: [] +- regions: + - JP + id: 00040000000EEA00 + name: ピクロスe3 + updates: [] +- regions: + - US + id: 0004000000101D00 + name: PICROSS e3 + updates: [] diff --git a/data/CTR-JET/icon.jpg b/data/CTR-JET/icon.jpg new file mode 100644 index 0000000..6c7d392 Binary files /dev/null and b/data/CTR-JET/icon.jpg differ diff --git a/data/CTR-JEU/art.jpg b/data/CTR-JEU/art.jpg new file mode 100644 index 0000000..f25660f Binary files /dev/null and b/data/CTR-JEU/art.jpg differ diff --git a/data/CTR-JEU/data.yml b/data/CTR-JEU/data.yml new file mode 100644 index 0000000..81be979 --- /dev/null +++ b/data/CTR-JEU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000112B00 + name: 'INAZUMA ELEVEN™ ' + updates: [] diff --git a/data/CTR-JEU/icon.jpg b/data/CTR-JEU/icon.jpg new file mode 100644 index 0000000..a5d505a Binary files /dev/null and b/data/CTR-JEU/icon.jpg differ diff --git a/data/CTR-JEV/art.jpg b/data/CTR-JEV/art.jpg new file mode 100644 index 0000000..7f430e5 Binary files /dev/null and b/data/CTR-JEV/art.jpg differ diff --git a/data/CTR-JEV/data.yml b/data/CTR-JEV/data.yml new file mode 100644 index 0000000..5127b60 --- /dev/null +++ b/data/CTR-JEV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008C200 + name: escapeVektor + updates: [] +- regions: + - JP + id: 000400000010F400 + name: 電脳からの脱出 escapeVektor + updates: [] +- regions: + - US + id: 0004000000086C00 + name: escapeVektor™ + updates: [] diff --git a/data/CTR-JEV/icon.jpg b/data/CTR-JEV/icon.jpg new file mode 100644 index 0000000..336f358 Binary files /dev/null and b/data/CTR-JEV/icon.jpg differ diff --git a/data/CTR-JEX/art.jpg b/data/CTR-JEX/art.jpg new file mode 100644 index 0000000..94a3317 Binary files /dev/null and b/data/CTR-JEX/art.jpg differ diff --git a/data/CTR-JEX/data.yml b/data/CTR-JEX/data.yml new file mode 100644 index 0000000..0109bfa --- /dev/null +++ b/data/CTR-JEX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A9200 + name: PICROSS e + updates: [] +- regions: + - JP + id: 0004000000064200 + name: ピクロスe + updates: [] +- regions: + - US + id: 00040000000E5D00 + name: PICROSS e + updates: [] diff --git a/data/CTR-JEX/icon.jpg b/data/CTR-JEX/icon.jpg new file mode 100644 index 0000000..ad6f44b Binary files /dev/null and b/data/CTR-JEX/icon.jpg differ diff --git a/data/CTR-JF2/art.jpg b/data/CTR-JF2/art.jpg new file mode 100644 index 0000000..69cc1d0 Binary files /dev/null and b/data/CTR-JF2/art.jpg differ diff --git a/data/CTR-JF2/data.yml b/data/CTR-JF2/data.yml new file mode 100644 index 0000000..639c759 --- /dev/null +++ b/data/CTR-JF2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000052100 + name: Fun! Fun! Minigolf TOUCH! + updates: [] +- regions: + - US + id: 0004000000086E00 + name: Fun! Fun! Minigolf TOUCH! + updates: [] diff --git a/data/CTR-JF2/icon.jpg b/data/CTR-JF2/icon.jpg new file mode 100644 index 0000000..c6b6021 Binary files /dev/null and b/data/CTR-JF2/icon.jpg differ diff --git a/data/CTR-JF3/art.jpg b/data/CTR-JF3/art.jpg new file mode 100644 index 0000000..c9e978b Binary files /dev/null and b/data/CTR-JF3/art.jpg differ diff --git a/data/CTR-JF3/data.yml b/data/CTR-JF3/data.yml new file mode 100644 index 0000000..d61346b --- /dev/null +++ b/data/CTR-JF3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FA300 + name: '@SIMPLE DLシリーズ Vol.16 THE 密室からの脱出 ファミレス編' + updates: [] diff --git a/data/CTR-JF3/icon.jpg b/data/CTR-JF3/icon.jpg new file mode 100644 index 0000000..ec87ed1 Binary files /dev/null and b/data/CTR-JF3/icon.jpg differ diff --git a/data/CTR-JF4/art.jpg b/data/CTR-JF4/art.jpg new file mode 100644 index 0000000..c7e671c Binary files /dev/null and b/data/CTR-JF4/art.jpg differ diff --git a/data/CTR-JF4/data.yml b/data/CTR-JF4/data.yml new file mode 100644 index 0000000..ba9c144 --- /dev/null +++ b/data/CTR-JF4/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010A600 + name: 'Fishdom H2O: Hidden Odyssey' + updates: [] +- regions: + - US + id: 00040000000C5900 + name: 'Fishdom H2O: Hidden Odyssey' + updates: [] diff --git a/data/CTR-JF4/icon.jpg b/data/CTR-JF4/icon.jpg new file mode 100644 index 0000000..c9b5855 Binary files /dev/null and b/data/CTR-JF4/icon.jpg differ diff --git a/data/CTR-JF5/art.jpg b/data/CTR-JF5/art.jpg new file mode 100644 index 0000000..c4b2b30 Binary files /dev/null and b/data/CTR-JF5/art.jpg differ diff --git a/data/CTR-JF5/data.yml b/data/CTR-JF5/data.yml new file mode 100644 index 0000000..a002488 --- /dev/null +++ b/data/CTR-JF5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000008C700 + name: おきらく大富豪3D + updates: [] diff --git a/data/CTR-JF5/icon.jpg b/data/CTR-JF5/icon.jpg new file mode 100644 index 0000000..775d0e4 Binary files /dev/null and b/data/CTR-JF5/icon.jpg differ diff --git a/data/CTR-JF7/art.jpg b/data/CTR-JF7/art.jpg new file mode 100644 index 0000000..c0ea950 Binary files /dev/null and b/data/CTR-JF7/art.jpg differ diff --git a/data/CTR-JF7/data.yml b/data/CTR-JF7/data.yml new file mode 100644 index 0000000..92c696d --- /dev/null +++ b/data/CTR-JF7/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000125D00 + name: 電波人間のRPG FREE! + updates: + - id: 0004000E00125D00 + name: 更新データ Ver. 1.14 電波人間のRPG FREE! diff --git a/data/CTR-JF7/icon.jpg b/data/CTR-JF7/icon.jpg new file mode 100644 index 0000000..2856930 Binary files /dev/null and b/data/CTR-JF7/icon.jpg differ diff --git a/data/CTR-JF8/art.jpg b/data/CTR-JF8/art.jpg new file mode 100644 index 0000000..31be614 Binary files /dev/null and b/data/CTR-JF8/art.jpg differ diff --git a/data/CTR-JF8/data.yml b/data/CTR-JF8/data.yml new file mode 100644 index 0000000..c3d5d6c --- /dev/null +++ b/data/CTR-JF8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000152400 + name: 3D Fantasy Zone + updates: [] +- regions: + - JP + id: 0004000000120100 + name: 3D ファンタジーゾーン オパオパブラザーズ + updates: [] +- regions: + - US + id: 0004000000152300 + name: 3D Fantasy Zone™ + updates: [] diff --git a/data/CTR-JF8/icon.jpg b/data/CTR-JF8/icon.jpg new file mode 100644 index 0000000..1478d4c Binary files /dev/null and b/data/CTR-JF8/icon.jpg differ diff --git a/data/CTR-JF9/art.jpg b/data/CTR-JF9/art.jpg new file mode 100644 index 0000000..1926f2d Binary files /dev/null and b/data/CTR-JF9/art.jpg differ diff --git a/data/CTR-JF9/data.yml b/data/CTR-JF9/data.yml new file mode 100644 index 0000000..cfc0c6b --- /dev/null +++ b/data/CTR-JF9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000128000 + name: プチノベル「闘劇の五月」 + updates: [] diff --git a/data/CTR-JF9/icon.jpg b/data/CTR-JF9/icon.jpg new file mode 100644 index 0000000..1da130d Binary files /dev/null and b/data/CTR-JF9/icon.jpg differ diff --git a/data/CTR-JFA/art.jpg b/data/CTR-JFA/art.jpg new file mode 100644 index 0000000..dcf139c Binary files /dev/null and b/data/CTR-JFA/art.jpg differ diff --git a/data/CTR-JFA/data.yml b/data/CTR-JFA/data.yml new file mode 100644 index 0000000..d69067b --- /dev/null +++ b/data/CTR-JFA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BED00 + name: Carps & Dragons + updates: [] +- regions: + - JP + id: 0004000000122000 + name: ウオキャッチ! + updates: [] +- regions: + - US + id: 0004000000086D00 + name: Carps & Dragons + updates: [] diff --git a/data/CTR-JFA/icon.jpg b/data/CTR-JFA/icon.jpg new file mode 100644 index 0000000..8834f7b Binary files /dev/null and b/data/CTR-JFA/icon.jpg differ diff --git a/data/CTR-JFB/art.jpg b/data/CTR-JFB/art.jpg new file mode 100644 index 0000000..153d57d Binary files /dev/null and b/data/CTR-JFB/art.jpg differ diff --git a/data/CTR-JFB/data.yml b/data/CTR-JFB/data.yml new file mode 100644 index 0000000..c5654c0 --- /dev/null +++ b/data/CTR-JFB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000108E00 + name: Cocoro - Line Defender + updates: [] +- regions: + - US + id: 0004000000109900 + name: Cocoro - Line Defender + updates: [] diff --git a/data/CTR-JFB/icon.jpg b/data/CTR-JFB/icon.jpg new file mode 100644 index 0000000..a9e6a74 Binary files /dev/null and b/data/CTR-JFB/icon.jpg differ diff --git a/data/CTR-JFC/art.jpg b/data/CTR-JFC/art.jpg new file mode 100644 index 0000000..3ae4bcc Binary files /dev/null and b/data/CTR-JFC/art.jpg differ diff --git a/data/CTR-JFC/data.yml b/data/CTR-JFC/data.yml new file mode 100644 index 0000000..ff27354 --- /dev/null +++ b/data/CTR-JFC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000158100 + name: 3D Fantasy Zone 2™ + updates: [] +- regions: + - JP + id: 0004000000121D00 + name: 3D ファンタジーゾーンⅡダブル + updates: [] +- regions: + - US + id: 0004000000158B00 + name: 3D Fantasy Zone II W + updates: [] diff --git a/data/CTR-JFC/icon.jpg b/data/CTR-JFC/icon.jpg new file mode 100644 index 0000000..c790d26 Binary files /dev/null and b/data/CTR-JFC/icon.jpg differ diff --git a/data/CTR-JFD/art.jpg b/data/CTR-JFD/art.jpg new file mode 100644 index 0000000..93ffb16 Binary files /dev/null and b/data/CTR-JFD/art.jpg differ diff --git a/data/CTR-JFD/data.yml b/data/CTR-JFD/data.yml new file mode 100644 index 0000000..b0116da --- /dev/null +++ b/data/CTR-JFD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B0300 + name: Fractured Soul + updates: [] +- regions: + - US + id: 00040000000AA800 + name: Fractured Soul + updates: [] diff --git a/data/CTR-JFD/icon.jpg b/data/CTR-JFD/icon.jpg new file mode 100644 index 0000000..d0eabe3 Binary files /dev/null and b/data/CTR-JFD/icon.jpg differ diff --git a/data/CTR-JFE/art.jpg b/data/CTR-JFE/art.jpg new file mode 100644 index 0000000..a5f02aa Binary files /dev/null and b/data/CTR-JFE/art.jpg differ diff --git a/data/CTR-JFE/data.yml b/data/CTR-JFE/data.yml new file mode 100644 index 0000000..75e91c4 --- /dev/null +++ b/data/CTR-JFE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000143D00 + name: 2048 + updates: [] +- regions: + - JP + id: 000400000014AF00 + name: 2048 + updates: [] +- regions: + - US + id: 0004000000139000 + name: 2048 + updates: [] diff --git a/data/CTR-JFE/icon.jpg b/data/CTR-JFE/icon.jpg new file mode 100644 index 0000000..755e336 Binary files /dev/null and b/data/CTR-JFE/icon.jpg differ diff --git a/data/CTR-JFF/art.jpg b/data/CTR-JFF/art.jpg new file mode 100644 index 0000000..100e716 Binary files /dev/null and b/data/CTR-JFF/art.jpg differ diff --git a/data/CTR-JFF/data.yml b/data/CTR-JFF/data.yml new file mode 100644 index 0000000..8541715 --- /dev/null +++ b/data/CTR-JFF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000005DA00 + name: FINAL FANTASY + updates: [] diff --git a/data/CTR-JFF/icon.jpg b/data/CTR-JFF/icon.jpg new file mode 100644 index 0000000..2537286 Binary files /dev/null and b/data/CTR-JFF/icon.jpg differ diff --git a/data/CTR-JFG/art.jpg b/data/CTR-JFG/art.jpg new file mode 100644 index 0000000..83289c0 Binary files /dev/null and b/data/CTR-JFG/art.jpg differ diff --git a/data/CTR-JFG/data.yml b/data/CTR-JFG/data.yml new file mode 100644 index 0000000..430f941 --- /dev/null +++ b/data/CTR-JFG/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017F600 + name: Family Fishing + updates: [] +- regions: + - JP + id: 0004000000114A00 + name: おきらくフィッシング3D + updates: [] +- regions: + - KR + id: 000400000017DA00 + name: 패밀리 루어피싱 3D + updates: [] +- regions: + - US + id: 0004000000178F00 + name: Family Fishing + updates: [] diff --git a/data/CTR-JFG/icon.jpg b/data/CTR-JFG/icon.jpg new file mode 100644 index 0000000..c86a4e3 Binary files /dev/null and b/data/CTR-JFG/icon.jpg differ diff --git a/data/CTR-JFJ/art.jpg b/data/CTR-JFJ/art.jpg new file mode 100644 index 0000000..4b3fb6d Binary files /dev/null and b/data/CTR-JFJ/art.jpg differ diff --git a/data/CTR-JFJ/data.yml b/data/CTR-JFJ/data.yml new file mode 100644 index 0000000..d304209 --- /dev/null +++ b/data/CTR-JFJ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - US + id: 000400000017C100 + name: Pokémon™ Picross + updates: [] diff --git a/data/CTR-JFJ/icon.jpg b/data/CTR-JFJ/icon.jpg new file mode 100644 index 0000000..1b2ad50 Binary files /dev/null and b/data/CTR-JFJ/icon.jpg differ diff --git a/data/CTR-JFL/art.jpg b/data/CTR-JFL/art.jpg new file mode 100644 index 0000000..c09c1eb Binary files /dev/null and b/data/CTR-JFL/art.jpg differ diff --git a/data/CTR-JFL/data.yml b/data/CTR-JFL/data.yml new file mode 100644 index 0000000..e5aef15 --- /dev/null +++ b/data/CTR-JFL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000057700 + name: Netflix + updates: [] diff --git a/data/CTR-JFL/icon.jpg b/data/CTR-JFL/icon.jpg new file mode 100644 index 0000000..122469b Binary files /dev/null and b/data/CTR-JFL/icon.jpg differ diff --git a/data/CTR-JFN/art.jpg b/data/CTR-JFN/art.jpg new file mode 100644 index 0000000..09b6a3d Binary files /dev/null and b/data/CTR-JFN/art.jpg differ diff --git a/data/CTR-JFN/data.yml b/data/CTR-JFN/data.yml new file mode 100644 index 0000000..0770c8b --- /dev/null +++ b/data/CTR-JFN/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015FE00 + name: Adventure Bar Story + updates: [] +- regions: + - JP + id: 0004000000129D00 + name: 不思議の国の冒険酒場 + updates: + - id: 0004000E00129D00 + name: 更新データ Ver. 1.1 不思議の国の冒険酒場 +- regions: + - US + id: 0004000000160F00 + name: Adventure Bar Story + updates: [] diff --git a/data/CTR-JFN/icon.jpg b/data/CTR-JFN/icon.jpg new file mode 100644 index 0000000..4f71a7f Binary files /dev/null and b/data/CTR-JFN/icon.jpg differ diff --git a/data/CTR-JFP/art.jpg b/data/CTR-JFP/art.jpg new file mode 100644 index 0000000..87829c7 Binary files /dev/null and b/data/CTR-JFP/art.jpg differ diff --git a/data/CTR-JFP/data.yml b/data/CTR-JFP/data.yml new file mode 100644 index 0000000..65b9c41 --- /dev/null +++ b/data/CTR-JFP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000066500 + name: 'ARC STYLE: フリーセル' + updates: [] diff --git a/data/CTR-JFP/icon.jpg b/data/CTR-JFP/icon.jpg new file mode 100644 index 0000000..3db6466 Binary files /dev/null and b/data/CTR-JFP/icon.jpg differ diff --git a/data/CTR-JFQ/art.jpg b/data/CTR-JFQ/art.jpg new file mode 100644 index 0000000..523beb6 Binary files /dev/null and b/data/CTR-JFQ/art.jpg differ diff --git a/data/CTR-JFQ/data.yml b/data/CTR-JFQ/data.yml new file mode 100644 index 0000000..9ca69a3 --- /dev/null +++ b/data/CTR-JFQ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000007A400 + name: Flick Golf 3D + updates: [] +- regions: + - US + id: 000400000015C600 + name: Flick Golf 3D + updates: [] diff --git a/data/CTR-JFQ/icon.jpg b/data/CTR-JFQ/icon.jpg new file mode 100644 index 0000000..21761e7 Binary files /dev/null and b/data/CTR-JFQ/icon.jpg differ diff --git a/data/CTR-JFR/art.jpg b/data/CTR-JFR/art.jpg new file mode 100644 index 0000000..76e6323 Binary files /dev/null and b/data/CTR-JFR/art.jpg differ diff --git a/data/CTR-JFR/data.yml b/data/CTR-JFR/data.yml new file mode 100644 index 0000000..d9ec861 --- /dev/null +++ b/data/CTR-JFR/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000051800 + name: Nintendo Letter Box + updates: [] +- regions: + - JP + id: 0004000000051600 + name: いつの間に交換日記 + updates: [] +- regions: + - KR + id: 00040000000CC900 + name: 어느새 교환 일기 + updates: [] +- regions: + - TW + id: 00040000000CCA00 + name: 悄悄互動日記 + updates: [] +- regions: + - US + id: 0004000000051700 + name: Swapnote™ + updates: [] diff --git a/data/CTR-JFR/icon.jpg b/data/CTR-JFR/icon.jpg new file mode 100644 index 0000000..6718f7e Binary files /dev/null and b/data/CTR-JFR/icon.jpg differ diff --git a/data/CTR-JFT/art.jpg b/data/CTR-JFT/art.jpg new file mode 100644 index 0000000..f8552ad Binary files /dev/null and b/data/CTR-JFT/art.jpg differ diff --git a/data/CTR-JFT/data.yml b/data/CTR-JFT/data.yml new file mode 100644 index 0000000..272011e --- /dev/null +++ b/data/CTR-JFT/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000182900 + name: SADAME + updates: [] +- regions: + - JP + id: 0004000000114900 + name: 異史戦国伝宿業 + updates: + - id: 0004000E00114900 + name: 更新データ Ver. 1.1 異史戦国伝宿業 +- regions: + - US + id: 0004000000186C00 + name: Sadame + updates: [] diff --git a/data/CTR-JFT/icon.jpg b/data/CTR-JFT/icon.jpg new file mode 100644 index 0000000..a7bd9e1 Binary files /dev/null and b/data/CTR-JFT/icon.jpg differ diff --git a/data/CTR-JFW/art.jpg b/data/CTR-JFW/art.jpg new file mode 100644 index 0000000..31c87c5 Binary files /dev/null and b/data/CTR-JFW/art.jpg differ diff --git a/data/CTR-JFW/data.yml b/data/CTR-JFW/data.yml new file mode 100644 index 0000000..a6cfe33 --- /dev/null +++ b/data/CTR-JFW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000012B200 + name: 名画と楽しむ大人の間違い探し + updates: [] diff --git a/data/CTR-JFW/icon.jpg b/data/CTR-JFW/icon.jpg new file mode 100644 index 0000000..697f0d0 Binary files /dev/null and b/data/CTR-JFW/icon.jpg differ diff --git a/data/CTR-JFX/art.jpg b/data/CTR-JFX/art.jpg new file mode 100644 index 0000000..aa4d071 Binary files /dev/null and b/data/CTR-JFX/art.jpg differ diff --git a/data/CTR-JFX/data.yml b/data/CTR-JFX/data.yml new file mode 100644 index 0000000..128edf4 --- /dev/null +++ b/data/CTR-JFX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000129700 + name: My First Songs 2 + updates: [] +- regions: + - US + id: 000400000012D500 + name: My First Songs 2 + updates: [] diff --git a/data/CTR-JFX/icon.jpg b/data/CTR-JFX/icon.jpg new file mode 100644 index 0000000..3533bfd Binary files /dev/null and b/data/CTR-JFX/icon.jpg differ diff --git a/data/CTR-JFY/art.jpg b/data/CTR-JFY/art.jpg new file mode 100644 index 0000000..1228756 Binary files /dev/null and b/data/CTR-JFY/art.jpg differ diff --git a/data/CTR-JFY/data.yml b/data/CTR-JFY/data.yml new file mode 100644 index 0000000..9c28d62 --- /dev/null +++ b/data/CTR-JFY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B4400 + name: Butterfly Inchworm Animation II + updates: [] +- regions: + - JP + id: 00040000001B6500 + name: インチワームアニメーション2 + updates: [] +- regions: + - US + id: 0004000000110E00 + name: Butterfly Inchworm Animation II + updates: [] diff --git a/data/CTR-JFY/icon.jpg b/data/CTR-JFY/icon.jpg new file mode 100644 index 0000000..107e3ab Binary files /dev/null and b/data/CTR-JFY/icon.jpg differ diff --git a/data/CTR-JG4/art.jpg b/data/CTR-JG4/art.jpg new file mode 100644 index 0000000..3cb1539 Binary files /dev/null and b/data/CTR-JG4/art.jpg differ diff --git a/data/CTR-JG4/data.yml b/data/CTR-JG4/data.yml new file mode 100644 index 0000000..a5de828 --- /dev/null +++ b/data/CTR-JG4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052B00 + name: 銀星将棋3D + updates: [] diff --git a/data/CTR-JG4/icon.jpg b/data/CTR-JG4/icon.jpg new file mode 100644 index 0000000..49a4c03 Binary files /dev/null and b/data/CTR-JG4/icon.jpg differ diff --git a/data/CTR-JG6/art.jpg b/data/CTR-JG6/art.jpg new file mode 100644 index 0000000..83c3189 Binary files /dev/null and b/data/CTR-JG6/art.jpg differ diff --git a/data/CTR-JG6/data.yml b/data/CTR-JG6/data.yml new file mode 100644 index 0000000..faf3643 --- /dev/null +++ b/data/CTR-JG6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FAC00 + name: グレコからの挑戦状! 計算の城とオバケたち わり算 + updates: [] diff --git a/data/CTR-JG6/icon.jpg b/data/CTR-JG6/icon.jpg new file mode 100644 index 0000000..f65c89d Binary files /dev/null and b/data/CTR-JG6/icon.jpg differ diff --git a/data/CTR-JG8/art.jpg b/data/CTR-JG8/art.jpg new file mode 100644 index 0000000..4b0553c Binary files /dev/null and b/data/CTR-JG8/art.jpg differ diff --git a/data/CTR-JG8/data.yml b/data/CTR-JG8/data.yml new file mode 100644 index 0000000..5fdf3b0 --- /dev/null +++ b/data/CTR-JG8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FAA00 + name: グレコからの挑戦状! 計算の城とオバケたち ひき算 + updates: [] diff --git a/data/CTR-JG8/icon.jpg b/data/CTR-JG8/icon.jpg new file mode 100644 index 0000000..e7f5409 Binary files /dev/null and b/data/CTR-JG8/icon.jpg differ diff --git a/data/CTR-JG9/art.jpg b/data/CTR-JG9/art.jpg new file mode 100644 index 0000000..331e068 Binary files /dev/null and b/data/CTR-JG9/art.jpg differ diff --git a/data/CTR-JG9/data.yml b/data/CTR-JG9/data.yml new file mode 100644 index 0000000..30b5fa6 --- /dev/null +++ b/data/CTR-JG9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FA900 + name: グレコからの挑戦状! 計算の城とオバケたち たし算 + updates: [] diff --git a/data/CTR-JG9/icon.jpg b/data/CTR-JG9/icon.jpg new file mode 100644 index 0000000..c794832 Binary files /dev/null and b/data/CTR-JG9/icon.jpg differ diff --git a/data/CTR-JGA/art.jpg b/data/CTR-JGA/art.jpg new file mode 100644 index 0000000..f60405f Binary files /dev/null and b/data/CTR-JGA/art.jpg differ diff --git a/data/CTR-JGA/data.yml b/data/CTR-JGA/data.yml new file mode 100644 index 0000000..9128e43 --- /dev/null +++ b/data/CTR-JGA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121F00 + name: 神創世界グリンシア + updates: [] +- regions: + - US + id: 0004000000111100 + name: Grinsia + updates: [] diff --git a/data/CTR-JGA/icon.jpg b/data/CTR-JGA/icon.jpg new file mode 100644 index 0000000..756ac88 Binary files /dev/null and b/data/CTR-JGA/icon.jpg differ diff --git a/data/CTR-JGB/art.jpg b/data/CTR-JGB/art.jpg new file mode 100644 index 0000000..061e33b Binary files /dev/null and b/data/CTR-JGB/art.jpg differ diff --git a/data/CTR-JGB/data.yml b/data/CTR-JGB/data.yml new file mode 100644 index 0000000..e85f3af --- /dev/null +++ b/data/CTR-JGB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000000E7700 + name: Gabrielle's Ghostly Groove™ Mini + updates: [] diff --git a/data/CTR-JGB/icon.jpg b/data/CTR-JGB/icon.jpg new file mode 100644 index 0000000..6d0a29c Binary files /dev/null and b/data/CTR-JGB/icon.jpg differ diff --git a/data/CTR-JGC/art.jpg b/data/CTR-JGC/art.jpg new file mode 100644 index 0000000..8cbbce5 Binary files /dev/null and b/data/CTR-JGC/art.jpg differ diff --git a/data/CTR-JGC/data.yml b/data/CTR-JGC/data.yml new file mode 100644 index 0000000..fdd932f --- /dev/null +++ b/data/CTR-JGC/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C6300 + name: Gunman Clive + updates: [] +- regions: + - JP + id: 00040000000E8800 + name: ガンマンストーリー + updates: [] +- regions: + - KR + id: 000400000010B000 + name: GUNMAN STORY + updates: [] +- regions: + - TW + id: 00040000000FE800 + name: 神槍手物語 + updates: [] +- regions: + - US + id: 00040000000B8F00 + name: Gunman Clive + updates: [] diff --git a/data/CTR-JGC/icon.jpg b/data/CTR-JGC/icon.jpg new file mode 100644 index 0000000..0a1941b Binary files /dev/null and b/data/CTR-JGC/icon.jpg differ diff --git a/data/CTR-JGD/art.jpg b/data/CTR-JGD/art.jpg new file mode 100644 index 0000000..fd4e426 Binary files /dev/null and b/data/CTR-JGD/art.jpg differ diff --git a/data/CTR-JGD/data.yml b/data/CTR-JGD/data.yml new file mode 100644 index 0000000..6658e98 --- /dev/null +++ b/data/CTR-JGD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000ADE00 + name: 脱出アドベンチャー 旧校舎の少女 + updates: [] diff --git a/data/CTR-JGD/icon.jpg b/data/CTR-JGD/icon.jpg new file mode 100644 index 0000000..ef9b2a4 Binary files /dev/null and b/data/CTR-JGD/icon.jpg differ diff --git a/data/CTR-JGE/art.jpg b/data/CTR-JGE/art.jpg new file mode 100644 index 0000000..094ca1d Binary files /dev/null and b/data/CTR-JGE/art.jpg differ diff --git a/data/CTR-JGE/data.yml b/data/CTR-JGE/data.yml new file mode 100644 index 0000000..e103b58 --- /dev/null +++ b/data/CTR-JGE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000066900 + name: 銀星囲碁3D + updates: [] diff --git a/data/CTR-JGE/icon.jpg b/data/CTR-JGE/icon.jpg new file mode 100644 index 0000000..5589a7f Binary files /dev/null and b/data/CTR-JGE/icon.jpg differ diff --git a/data/CTR-JGF/art.jpg b/data/CTR-JGF/art.jpg new file mode 100644 index 0000000..78a3f3d Binary files /dev/null and b/data/CTR-JGF/art.jpg differ diff --git a/data/CTR-JGF/data.yml b/data/CTR-JGF/data.yml new file mode 100644 index 0000000..5a93167 --- /dev/null +++ b/data/CTR-JGF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C0900 + name: 3D Galaxy Force II + updates: [] +- regions: + - JP + id: 00040000000FB900 + name: 3D ギャラクシーフォースⅡ + updates: [] +- regions: + - US + id: 00040000000C0B00 + name: 3D Galaxy Force II + updates: [] diff --git a/data/CTR-JGF/icon.jpg b/data/CTR-JGF/icon.jpg new file mode 100644 index 0000000..fbc3b4b Binary files /dev/null and b/data/CTR-JGF/icon.jpg differ diff --git a/data/CTR-JGL/art.jpg b/data/CTR-JGL/art.jpg new file mode 100644 index 0000000..ec04153 Binary files /dev/null and b/data/CTR-JGL/art.jpg differ diff --git a/data/CTR-JGL/data.yml b/data/CTR-JGL/data.yml new file mode 100644 index 0000000..dca66f6 --- /dev/null +++ b/data/CTR-JGL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000064400 + name: おきらくゴルフ3D + updates: [] diff --git a/data/CTR-JGL/icon.jpg b/data/CTR-JGL/icon.jpg new file mode 100644 index 0000000..4df983d Binary files /dev/null and b/data/CTR-JGL/icon.jpg differ diff --git a/data/CTR-JGP/art.jpg b/data/CTR-JGP/art.jpg new file mode 100644 index 0000000..605a1f8 Binary files /dev/null and b/data/CTR-JGP/art.jpg differ diff --git a/data/CTR-JGP/data.yml b/data/CTR-JGP/data.yml new file mode 100644 index 0000000..b615bf7 --- /dev/null +++ b/data/CTR-JGP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F0F00 + name: Governor of Poker + updates: [] +- regions: + - JP + id: 0004000000116F00 + name: ガバナー オブ ポーカー + updates: [] +- regions: + - US + id: 00040000000ED500 + name: Governor of Poker + updates: [] diff --git a/data/CTR-JGP/icon.jpg b/data/CTR-JGP/icon.jpg new file mode 100644 index 0000000..66fe511 Binary files /dev/null and b/data/CTR-JGP/icon.jpg differ diff --git a/data/CTR-JGR/art.jpg b/data/CTR-JGR/art.jpg new file mode 100644 index 0000000..d40ea9c Binary files /dev/null and b/data/CTR-JGR/art.jpg differ diff --git a/data/CTR-JGR/data.yml b/data/CTR-JGR/data.yml new file mode 100644 index 0000000..c7aee08 --- /dev/null +++ b/data/CTR-JGR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000010F200 + name: 難攻不落三国伝 ~呉と大河の衛者~ + updates: [] diff --git a/data/CTR-JGR/icon.jpg b/data/CTR-JGR/icon.jpg new file mode 100644 index 0000000..046cc9c Binary files /dev/null and b/data/CTR-JGR/icon.jpg differ diff --git a/data/CTR-JGS/art.jpg b/data/CTR-JGS/art.jpg new file mode 100644 index 0000000..8b72a0d Binary files /dev/null and b/data/CTR-JGS/art.jpg differ diff --git a/data/CTR-JGS/data.yml b/data/CTR-JGS/data.yml new file mode 100644 index 0000000..0557f42 --- /dev/null +++ b/data/CTR-JGS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000010F100 + name: 難攻不落三国伝 ~魏と大いなる戦線~ + updates: [] diff --git a/data/CTR-JGS/icon.jpg b/data/CTR-JGS/icon.jpg new file mode 100644 index 0000000..79dffe6 Binary files /dev/null and b/data/CTR-JGS/icon.jpg differ diff --git a/data/CTR-JGT/art.jpg b/data/CTR-JGT/art.jpg new file mode 100644 index 0000000..287f826 Binary files /dev/null and b/data/CTR-JGT/art.jpg differ diff --git a/data/CTR-JGT/data.yml b/data/CTR-JGT/data.yml new file mode 100644 index 0000000..2d47054 --- /dev/null +++ b/data/CTR-JGT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FF700 + name: Best of Arcade Games - Air Hockey + updates: [] +- regions: + - US + id: 0004000000101600 + name: Best of Arcade Games - Air Hockey + updates: [] diff --git a/data/CTR-JGT/icon.jpg b/data/CTR-JGT/icon.jpg new file mode 100644 index 0000000..159fed1 Binary files /dev/null and b/data/CTR-JGT/icon.jpg differ diff --git a/data/CTR-JGU/art.jpg b/data/CTR-JGU/art.jpg new file mode 100644 index 0000000..b674348 Binary files /dev/null and b/data/CTR-JGU/art.jpg differ diff --git a/data/CTR-JGU/data.yml b/data/CTR-JGU/data.yml new file mode 100644 index 0000000..601adf2 --- /dev/null +++ b/data/CTR-JGU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FF600 + name: Best of Arcade Games - Brick Breaker + updates: [] +- regions: + - US + id: 0004000000101E00 + name: Best of Arcade Games - Brick Breaker + updates: [] diff --git a/data/CTR-JGU/icon.jpg b/data/CTR-JGU/icon.jpg new file mode 100644 index 0000000..573b5e1 Binary files /dev/null and b/data/CTR-JGU/icon.jpg differ diff --git a/data/CTR-JGV/art.jpg b/data/CTR-JGV/art.jpg new file mode 100644 index 0000000..91ace54 Binary files /dev/null and b/data/CTR-JGV/art.jpg differ diff --git a/data/CTR-JGV/data.yml b/data/CTR-JGV/data.yml new file mode 100644 index 0000000..cc5cf3f --- /dev/null +++ b/data/CTR-JGV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FF500 + name: Best of Arcade Games - Bubble Buster + updates: [] +- regions: + - US + id: 0004000000101700 + name: Best of Arcade Games - Bubble Buster + updates: [] diff --git a/data/CTR-JGV/icon.jpg b/data/CTR-JGV/icon.jpg new file mode 100644 index 0000000..5a03f6f Binary files /dev/null and b/data/CTR-JGV/icon.jpg differ diff --git a/data/CTR-JGW/art.jpg b/data/CTR-JGW/art.jpg new file mode 100644 index 0000000..da1b533 Binary files /dev/null and b/data/CTR-JGW/art.jpg differ diff --git a/data/CTR-JGW/data.yml b/data/CTR-JGW/data.yml new file mode 100644 index 0000000..f90df02 --- /dev/null +++ b/data/CTR-JGW/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000CC600 + name: "Dillon's Rolling Western™: The Last Ranger" + updates: [] +- regions: + - JP + id: 00040000000C7200 + name: ザ・ローリング・ウエスタン 最後の用心棒 + updates: [] +- regions: + - KR + id: 00040000000EDC00 + name: Dillon's Rolling Western The Last Ranger + updates: [] +- regions: + - US + id: 00040000000CC500 + name: Dillon's Rolling Western™ The Last Ranger + updates: [] diff --git a/data/CTR-JGW/icon.jpg b/data/CTR-JGW/icon.jpg new file mode 100644 index 0000000..2ff42de Binary files /dev/null and b/data/CTR-JGW/icon.jpg differ diff --git a/data/CTR-JGX/art.jpg b/data/CTR-JGX/art.jpg new file mode 100644 index 0000000..6f6906d Binary files /dev/null and b/data/CTR-JGX/art.jpg differ diff --git a/data/CTR-JGX/data.yml b/data/CTR-JGX/data.yml new file mode 100644 index 0000000..1880bb9 --- /dev/null +++ b/data/CTR-JGX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FAE00 + name: グレコからの挑戦状! 計算の城とオバケたち かけ算 + updates: [] diff --git a/data/CTR-JGX/icon.jpg b/data/CTR-JGX/icon.jpg new file mode 100644 index 0000000..41d2714 Binary files /dev/null and b/data/CTR-JGX/icon.jpg differ diff --git a/data/CTR-JGY/art.jpg b/data/CTR-JGY/art.jpg new file mode 100644 index 0000000..fa35fc2 Binary files /dev/null and b/data/CTR-JGY/art.jpg differ diff --git a/data/CTR-JGY/data.yml b/data/CTR-JGY/data.yml new file mode 100644 index 0000000..fd820ea --- /dev/null +++ b/data/CTR-JGY/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000161100 + name: 'BIKE RIDER DX2: GALAXY' + updates: [] +- regions: + - JP + id: 0004000000111E00 + name: チャリ走 DX2 ギャラクシー + updates: + - id: 0004000E00111E00 + name: 更新データ Ver. 1.2 チャリ走 DX2 ギャラクシー +- regions: + - KR + id: 0004000000161400 + name: BIKE RIDER DX2 GALAXY + updates: [] +- regions: + - US + id: 0004000000128600 + name: 'BIKE RIDER DX2: GALAXY' + updates: [] diff --git a/data/CTR-JGY/icon.jpg b/data/CTR-JGY/icon.jpg new file mode 100644 index 0000000..4f849d5 Binary files /dev/null and b/data/CTR-JGY/icon.jpg differ diff --git a/data/CTR-JH3/art.jpg b/data/CTR-JH3/art.jpg new file mode 100644 index 0000000..0f2043a Binary files /dev/null and b/data/CTR-JH3/art.jpg differ diff --git a/data/CTR-JH3/data.yml b/data/CTR-JH3/data.yml new file mode 100644 index 0000000..66a8441 --- /dev/null +++ b/data/CTR-JH3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8600 + name: '@SIMPLE DLシリーズ Vol.22 THE 歩兵~戦場の犬たち~' + updates: [] diff --git a/data/CTR-JH3/icon.jpg b/data/CTR-JH3/icon.jpg new file mode 100644 index 0000000..05c4203 Binary files /dev/null and b/data/CTR-JH3/icon.jpg differ diff --git a/data/CTR-JH4/art.jpg b/data/CTR-JH4/art.jpg new file mode 100644 index 0000000..ef21c01 Binary files /dev/null and b/data/CTR-JH4/art.jpg differ diff --git a/data/CTR-JH4/data.yml b/data/CTR-JH4/data.yml new file mode 100644 index 0000000..3db5009 --- /dev/null +++ b/data/CTR-JH4/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000092200 + name: Sudoku by Nikoli + updates: [] +- regions: + - JP + id: 0004000000052900 + name: ニコリのパズル 数独 + updates: [] +- regions: + - KR + id: 00040000000CD600 + name: Sudoku by Nikoli + updates: [] +- regions: + - US + id: 000400000008E000 + name: Sudoku by Nikoli + updates: [] diff --git a/data/CTR-JH4/icon.jpg b/data/CTR-JH4/icon.jpg new file mode 100644 index 0000000..134a2d1 Binary files /dev/null and b/data/CTR-JH4/icon.jpg differ diff --git a/data/CTR-JH5/art.jpg b/data/CTR-JH5/art.jpg new file mode 100644 index 0000000..9ea0f36 Binary files /dev/null and b/data/CTR-JH5/art.jpg differ diff --git a/data/CTR-JH5/data.yml b/data/CTR-JH5/data.yml new file mode 100644 index 0000000..ad0a1d9 --- /dev/null +++ b/data/CTR-JH5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000080500 + name: CahiEr ~飼い絵~ + updates: [] diff --git a/data/CTR-JH5/icon.jpg b/data/CTR-JH5/icon.jpg new file mode 100644 index 0000000..21f1cf4 Binary files /dev/null and b/data/CTR-JH5/icon.jpg differ diff --git a/data/CTR-JH7/art.jpg b/data/CTR-JH7/art.jpg new file mode 100644 index 0000000..2b2a9bb Binary files /dev/null and b/data/CTR-JH7/art.jpg differ diff --git a/data/CTR-JH7/data.yml b/data/CTR-JH7/data.yml new file mode 100644 index 0000000..4419ef3 --- /dev/null +++ b/data/CTR-JH7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B6700 + name: 毎度 花札 + updates: [] diff --git a/data/CTR-JH7/icon.jpg b/data/CTR-JH7/icon.jpg new file mode 100644 index 0000000..8705358 Binary files /dev/null and b/data/CTR-JH7/icon.jpg differ diff --git a/data/CTR-JH8/art.jpg b/data/CTR-JH8/art.jpg new file mode 100644 index 0000000..b983bda Binary files /dev/null and b/data/CTR-JH8/art.jpg differ diff --git a/data/CTR-JH8/data.yml b/data/CTR-JH8/data.yml new file mode 100644 index 0000000..fc8ec9c --- /dev/null +++ b/data/CTR-JH8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F2E00 + name: Happy Circus + updates: [] +- regions: + - US + id: 00040000000EBC00 + name: Happy Circus + updates: [] diff --git a/data/CTR-JH8/icon.jpg b/data/CTR-JH8/icon.jpg new file mode 100644 index 0000000..7061c23 Binary files /dev/null and b/data/CTR-JH8/icon.jpg differ diff --git a/data/CTR-JHA/art.jpg b/data/CTR-JHA/art.jpg new file mode 100644 index 0000000..ec08382 Binary files /dev/null and b/data/CTR-JHA/art.jpg differ diff --git a/data/CTR-JHA/data.yml b/data/CTR-JHA/data.yml new file mode 100644 index 0000000..8644788 --- /dev/null +++ b/data/CTR-JHA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C0A00 + name: 3D Super Hang On + updates: [] +- regions: + - JP + id: 00040000000D7B00 + name: 3D スーパーハングオン + updates: [] +- regions: + - US + id: 00040000000C0D00 + name: 3D Super Hang-On + updates: [] diff --git a/data/CTR-JHA/icon.jpg b/data/CTR-JHA/icon.jpg new file mode 100644 index 0000000..968e740 Binary files /dev/null and b/data/CTR-JHA/icon.jpg differ diff --git a/data/CTR-JHB/art.jpg b/data/CTR-JHB/art.jpg new file mode 100644 index 0000000..8182fbf Binary files /dev/null and b/data/CTR-JHB/art.jpg differ diff --git a/data/CTR-JHB/data.yml b/data/CTR-JHB/data.yml new file mode 100644 index 0000000..818b9fa --- /dev/null +++ b/data/CTR-JHB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000AB900 + name: ハングリーバーガー + updates: [] diff --git a/data/CTR-JHB/icon.jpg b/data/CTR-JHB/icon.jpg new file mode 100644 index 0000000..0f84e12 Binary files /dev/null and b/data/CTR-JHB/icon.jpg differ diff --git a/data/CTR-JHC/art.jpg b/data/CTR-JHC/art.jpg new file mode 100644 index 0000000..f623f5e Binary files /dev/null and b/data/CTR-JHC/art.jpg differ diff --git a/data/CTR-JHC/data.yml b/data/CTR-JHC/data.yml new file mode 100644 index 0000000..88df162 --- /dev/null +++ b/data/CTR-JHC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000009FB00 + name: ニコリのパズル 橋をかけろ + updates: [] diff --git a/data/CTR-JHC/icon.jpg b/data/CTR-JHC/icon.jpg new file mode 100644 index 0000000..4fedd53 Binary files /dev/null and b/data/CTR-JHC/icon.jpg differ diff --git a/data/CTR-JHD/art.jpg b/data/CTR-JHD/art.jpg new file mode 100644 index 0000000..8283944 Binary files /dev/null and b/data/CTR-JHD/art.jpg differ diff --git a/data/CTR-JHD/data.yml b/data/CTR-JHD/data.yml new file mode 100644 index 0000000..7064756 --- /dev/null +++ b/data/CTR-JHD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000157100 + name: 101 Pony Pets 3D + updates: [] +- regions: + - JP + id: 0004000000166000 + name: ポニーペット3D + updates: [] +- regions: + - US + id: 0004000000124F00 + name: 101 Pony Pets 3D + updates: [] diff --git a/data/CTR-JHD/icon.jpg b/data/CTR-JHD/icon.jpg new file mode 100644 index 0000000..e2f61c9 Binary files /dev/null and b/data/CTR-JHD/icon.jpg differ diff --git a/data/CTR-JHE/art.jpg b/data/CTR-JHE/art.jpg new file mode 100644 index 0000000..3faed7e Binary files /dev/null and b/data/CTR-JHE/art.jpg differ diff --git a/data/CTR-JHE/data.yml b/data/CTR-JHE/data.yml new file mode 100644 index 0000000..4420d8d --- /dev/null +++ b/data/CTR-JHE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000CF200 + name: 毎度 へぼ将棋 + updates: [] diff --git a/data/CTR-JHE/icon.jpg b/data/CTR-JHE/icon.jpg new file mode 100644 index 0000000..d7661b4 Binary files /dev/null and b/data/CTR-JHE/icon.jpg differ diff --git a/data/CTR-JHF/art.jpg b/data/CTR-JHF/art.jpg new file mode 100644 index 0000000..1b1ff28 Binary files /dev/null and b/data/CTR-JHF/art.jpg differ diff --git a/data/CTR-JHF/data.yml b/data/CTR-JHF/data.yml new file mode 100644 index 0000000..76edf4b --- /dev/null +++ b/data/CTR-JHF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B1000 + name: 'Heavy Fire: Special Operations 3D' + updates: [] +- regions: + - US + id: 00040000000AAF00 + name: 'Heavy Fire: Special Operations 3D' + updates: [] diff --git a/data/CTR-JHF/icon.jpg b/data/CTR-JHF/icon.jpg new file mode 100644 index 0000000..8652e3c Binary files /dev/null and b/data/CTR-JHF/icon.jpg differ diff --git a/data/CTR-JHH/art.jpg b/data/CTR-JHH/art.jpg new file mode 100644 index 0000000..abf78f2 Binary files /dev/null and b/data/CTR-JHH/art.jpg differ diff --git a/data/CTR-JHH/data.yml b/data/CTR-JHH/data.yml new file mode 100644 index 0000000..821018e --- /dev/null +++ b/data/CTR-JHH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B4900 + name: Johnny Hotshot™ + updates: [] +- regions: + - US + id: 00040000000B7A00 + name: Johnny Hotshot™ + updates: [] diff --git a/data/CTR-JHH/icon.jpg b/data/CTR-JHH/icon.jpg new file mode 100644 index 0000000..a9d517a Binary files /dev/null and b/data/CTR-JHH/icon.jpg differ diff --git a/data/CTR-JHJ/art.jpg b/data/CTR-JHJ/art.jpg new file mode 100644 index 0000000..2055405 Binary files /dev/null and b/data/CTR-JHJ/art.jpg differ diff --git a/data/CTR-JHJ/data.yml b/data/CTR-JHJ/data.yml new file mode 100644 index 0000000..d978145 --- /dev/null +++ b/data/CTR-JHJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DB500 + name: 3D Sonic the Hedgehog + updates: [] +- regions: + - JP + id: 00040000000E9900 + name: 3D ソニック・ザ・ヘッジホッグ + updates: [] +- regions: + - US + id: 00040000000DA000 + name: 3D Sonic The Hedgehog + updates: [] diff --git a/data/CTR-JHJ/icon.jpg b/data/CTR-JHJ/icon.jpg new file mode 100644 index 0000000..22c23b6 Binary files /dev/null and b/data/CTR-JHJ/icon.jpg differ diff --git a/data/CTR-JHM/art.jpg b/data/CTR-JHM/art.jpg new file mode 100644 index 0000000..0d26974 Binary files /dev/null and b/data/CTR-JHM/art.jpg differ diff --git a/data/CTR-JHM/data.yml b/data/CTR-JHM/data.yml new file mode 100644 index 0000000..e9b5a8b --- /dev/null +++ b/data/CTR-JHM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000068700 + name: 謎惑館 音の間に間に 第一話「光る目」 + updates: [] diff --git a/data/CTR-JHM/icon.jpg b/data/CTR-JHM/icon.jpg new file mode 100644 index 0000000..92ad089 Binary files /dev/null and b/data/CTR-JHM/icon.jpg differ diff --git a/data/CTR-JHN/art.jpg b/data/CTR-JHN/art.jpg new file mode 100644 index 0000000..aeb03a1 Binary files /dev/null and b/data/CTR-JHN/art.jpg differ diff --git a/data/CTR-JHN/data.yml b/data/CTR-JHN/data.yml new file mode 100644 index 0000000..877881d --- /dev/null +++ b/data/CTR-JHN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000009A500 + name: Johnny Impossible™ + updates: [] diff --git a/data/CTR-JHN/icon.jpg b/data/CTR-JHN/icon.jpg new file mode 100644 index 0000000..8d8c0d2 Binary files /dev/null and b/data/CTR-JHN/icon.jpg differ diff --git a/data/CTR-JHP/art.jpg b/data/CTR-JHP/art.jpg new file mode 100644 index 0000000..75edf5a Binary files /dev/null and b/data/CTR-JHP/art.jpg differ diff --git a/data/CTR-JHP/data.yml b/data/CTR-JHP/data.yml new file mode 100644 index 0000000..3dbd189 --- /dev/null +++ b/data/CTR-JHP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000006DC00 + name: 'ARC STYLE: ハッピーオーシャン' + updates: [] diff --git a/data/CTR-JHP/icon.jpg b/data/CTR-JHP/icon.jpg new file mode 100644 index 0000000..afaa948 Binary files /dev/null and b/data/CTR-JHP/icon.jpg differ diff --git a/data/CTR-JHR/art.jpg b/data/CTR-JHR/art.jpg new file mode 100644 index 0000000..0b82b0f Binary files /dev/null and b/data/CTR-JHR/art.jpg differ diff --git a/data/CTR-JHR/data.yml b/data/CTR-JHR/data.yml new file mode 100644 index 0000000..d1f7a02 --- /dev/null +++ b/data/CTR-JHR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E5700 + name: 'Halloween: Trick or Treat 2' + updates: [] diff --git a/data/CTR-JHR/icon.jpg b/data/CTR-JHR/icon.jpg new file mode 100644 index 0000000..fe9b19b Binary files /dev/null and b/data/CTR-JHR/icon.jpg differ diff --git a/data/CTR-JHS/art.jpg b/data/CTR-JHS/art.jpg new file mode 100644 index 0000000..bd6317b Binary files /dev/null and b/data/CTR-JHS/art.jpg differ diff --git a/data/CTR-JHS/data.yml b/data/CTR-JHS/data.yml new file mode 100644 index 0000000..7226705 --- /dev/null +++ b/data/CTR-JHS/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C8800 + name: Splash or Crash™ + updates: [] +- regions: + - JP + id: 0004000000055800 + name: ひゅ~ストン + updates: [] +- regions: + - KR + id: 00040000000C8900 + name: 짜릿! 우물로 드롭 + updates: [] +- regions: + - US + id: 00040000000C8700 + name: Kersploosh!™ + updates: [] diff --git a/data/CTR-JHS/icon.jpg b/data/CTR-JHS/icon.jpg new file mode 100644 index 0000000..b1cab62 Binary files /dev/null and b/data/CTR-JHS/icon.jpg differ diff --git a/data/CTR-JHT/art.jpg b/data/CTR-JHT/art.jpg new file mode 100644 index 0000000..7a8be73 Binary files /dev/null and b/data/CTR-JHT/art.jpg differ diff --git a/data/CTR-JHT/data.yml b/data/CTR-JHT/data.yml new file mode 100644 index 0000000..29fd6dd --- /dev/null +++ b/data/CTR-JHT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000073E00 + name: ニコリのパズル ひとりにしてくれ + updates: [] +- regions: + - KR + id: 0004000000109D00 + name: Hitori by Nikoli + updates: [] +- regions: + - US + id: 0004000000092900 + name: Hitori by Nikoli + updates: [] diff --git a/data/CTR-JHT/icon.jpg b/data/CTR-JHT/icon.jpg new file mode 100644 index 0000000..e77853d Binary files /dev/null and b/data/CTR-JHT/icon.jpg differ diff --git a/data/CTR-JHU/art.jpg b/data/CTR-JHU/art.jpg new file mode 100644 index 0000000..707ea81 Binary files /dev/null and b/data/CTR-JHU/art.jpg differ diff --git a/data/CTR-JHU/data.yml b/data/CTR-JHU/data.yml new file mode 100644 index 0000000..7cde12b --- /dev/null +++ b/data/CTR-JHU/data.yml @@ -0,0 +1,15 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - TW + - US + id: 0004000000196F00 + name: Kirby’s Blowout Blast™ + updates: [] +- regions: + - KR + id: 0004000000197000 + name: 커비의 빨아들이기 대작전 + updates: [] diff --git a/data/CTR-JHU/icon.jpg b/data/CTR-JHU/icon.jpg new file mode 100644 index 0000000..a486fe9 Binary files /dev/null and b/data/CTR-JHU/icon.jpg differ diff --git a/data/CTR-JHV/art.jpg b/data/CTR-JHV/art.jpg new file mode 100644 index 0000000..63e3c46 Binary files /dev/null and b/data/CTR-JHV/art.jpg differ diff --git a/data/CTR-JHV/data.yml b/data/CTR-JHV/data.yml new file mode 100644 index 0000000..99bb720 --- /dev/null +++ b/data/CTR-JHV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FBE00 + name: 'Heavy Fire: Black Arms 3D' + updates: [] +- regions: + - US + id: 00040000000C4000 + name: 'Heavy Fire: Black Arms 3D' + updates: [] diff --git a/data/CTR-JHV/icon.jpg b/data/CTR-JHV/icon.jpg new file mode 100644 index 0000000..ee6befe Binary files /dev/null and b/data/CTR-JHV/icon.jpg differ diff --git a/data/CTR-JHW/art.jpg b/data/CTR-JHW/art.jpg new file mode 100644 index 0000000..2a2b976 Binary files /dev/null and b/data/CTR-JHW/art.jpg differ diff --git a/data/CTR-JHW/data.yml b/data/CTR-JHW/data.yml new file mode 100644 index 0000000..10d376c --- /dev/null +++ b/data/CTR-JHW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000006DD00 + name: ニコリのパズル へやわけ + updates: [] +- regions: + - KR + id: 0004000000109C00 + name: Heyawake by Nikoli + updates: [] +- regions: + - US + id: 0004000000092800 + name: Heyawake by Nikoli + updates: [] diff --git a/data/CTR-JHW/icon.jpg b/data/CTR-JHW/icon.jpg new file mode 100644 index 0000000..428a432 Binary files /dev/null and b/data/CTR-JHW/icon.jpg differ diff --git a/data/CTR-JHY/art.jpg b/data/CTR-JHY/art.jpg new file mode 100644 index 0000000..3e231e6 Binary files /dev/null and b/data/CTR-JHY/art.jpg differ diff --git a/data/CTR-JHY/data.yml b/data/CTR-JHY/data.yml new file mode 100644 index 0000000..2c1cb53 --- /dev/null +++ b/data/CTR-JHY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FA100 + name: マル合格! 秘書検定 + updates: [] diff --git a/data/CTR-JHY/icon.jpg b/data/CTR-JHY/icon.jpg new file mode 100644 index 0000000..c73e577 Binary files /dev/null and b/data/CTR-JHY/icon.jpg differ diff --git a/data/CTR-JJA/art.jpg b/data/CTR-JJA/art.jpg new file mode 100644 index 0000000..6599dee Binary files /dev/null and b/data/CTR-JJA/art.jpg differ diff --git a/data/CTR-JJA/data.yml b/data/CTR-JJA/data.yml new file mode 100644 index 0000000..dd9f812 --- /dev/null +++ b/data/CTR-JJA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000192E00 + name: Alien on the run + updates: [] +- regions: + - JP + id: 000400000010E400 + name: 脱出星人!? デルデルデルデ + updates: [] +- regions: + - US + id: 0004000000127600 + name: Alien On The Run + updates: [] diff --git a/data/CTR-JJA/icon.jpg b/data/CTR-JJA/icon.jpg new file mode 100644 index 0000000..29fd78f Binary files /dev/null and b/data/CTR-JJA/icon.jpg differ diff --git a/data/CTR-JK3/art.jpg b/data/CTR-JK3/art.jpg new file mode 100644 index 0000000..3475c9c Binary files /dev/null and b/data/CTR-JK3/art.jpg differ diff --git a/data/CTR-JK3/data.yml b/data/CTR-JK3/data.yml new file mode 100644 index 0000000..3d6def3 --- /dev/null +++ b/data/CTR-JK3/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A2E00 + name: Family Tennis 3D + updates: [] +- regions: + - JP + id: 0004000000052F00 + name: おきらくテニス3D + updates: [] +- regions: + - KR + id: 00040000000CB000 + name: Family Tennis + updates: [] +- regions: + - US + id: 000400000008BF00 + name: Family Tennis 3D + updates: [] diff --git a/data/CTR-JK3/icon.jpg b/data/CTR-JK3/icon.jpg new file mode 100644 index 0000000..0d9c0af Binary files /dev/null and b/data/CTR-JK3/icon.jpg differ diff --git a/data/CTR-JK5/art.jpg b/data/CTR-JK5/art.jpg new file mode 100644 index 0000000..2f382fa Binary files /dev/null and b/data/CTR-JK5/art.jpg differ diff --git a/data/CTR-JK5/data.yml b/data/CTR-JK5/data.yml new file mode 100644 index 0000000..9deab1a --- /dev/null +++ b/data/CTR-JK5/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000192B00 + name: Conveni Dream + updates: [] +- regions: + - JP + id: 0004000000115A00 + name: コンビニドリーム + updates: [] +- regions: + - US + id: 0004000000194400 + name: Conveni Dream + updates: [] diff --git a/data/CTR-JK5/icon.jpg b/data/CTR-JK5/icon.jpg new file mode 100644 index 0000000..3fbe75b Binary files /dev/null and b/data/CTR-JK5/icon.jpg differ diff --git a/data/CTR-JK6/art.jpg b/data/CTR-JK6/art.jpg new file mode 100644 index 0000000..b963c2d Binary files /dev/null and b/data/CTR-JK6/art.jpg differ diff --git a/data/CTR-JK6/data.yml b/data/CTR-JK6/data.yml new file mode 100644 index 0000000..2ea162c --- /dev/null +++ b/data/CTR-JK6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000066A00 + name: ニコリのパズル カックロ + updates: [] +- regions: + - KR + id: 0004000000109B00 + name: Kakuro by Nikoli + updates: [] +- regions: + - US + id: 0004000000087200 + name: Kakuro by Nikoli + updates: [] diff --git a/data/CTR-JK6/icon.jpg b/data/CTR-JK6/icon.jpg new file mode 100644 index 0000000..73548ca Binary files /dev/null and b/data/CTR-JK6/icon.jpg differ diff --git a/data/CTR-JK8/art.jpg b/data/CTR-JK8/art.jpg new file mode 100644 index 0000000..3c2d8d4 Binary files /dev/null and b/data/CTR-JK8/art.jpg differ diff --git a/data/CTR-JK8/data.yml b/data/CTR-JK8/data.yml new file mode 100644 index 0000000..6522504 --- /dev/null +++ b/data/CTR-JK8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012CB00 + name: 'Shovel Knight: Treasure Trove' + updates: [] +- regions: + - US + id: 0004000000119A00 + name: 'Shovel Knight: Treasure Trove' + updates: [] diff --git a/data/CTR-JK8/icon.jpg b/data/CTR-JK8/icon.jpg new file mode 100644 index 0000000..e852f3f Binary files /dev/null and b/data/CTR-JK8/icon.jpg differ diff --git a/data/CTR-JK9/art.jpg b/data/CTR-JK9/art.jpg new file mode 100644 index 0000000..940b5c5 Binary files /dev/null and b/data/CTR-JK9/art.jpg differ diff --git a/data/CTR-JK9/data.yml b/data/CTR-JK9/data.yml new file mode 100644 index 0000000..1e92128 --- /dev/null +++ b/data/CTR-JK9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000124C00 + name: Tiny Games - Knights & Dragons + updates: [] +- regions: + - JP + id: 000400000014B400 + name: ちっちゃなげ~む Vol.1 ナイトとドラゴンのヒマつぶし + updates: [] +- regions: + - US + id: 0004000000125300 + name: Tiny Games - Knights & Dragons + updates: [] diff --git a/data/CTR-JK9/icon.jpg b/data/CTR-JK9/icon.jpg new file mode 100644 index 0000000..c96ca25 Binary files /dev/null and b/data/CTR-JK9/icon.jpg differ diff --git a/data/CTR-JKA/art.jpg b/data/CTR-JKA/art.jpg new file mode 100644 index 0000000..f05ca21 Binary files /dev/null and b/data/CTR-JKA/art.jpg differ diff --git a/data/CTR-JKA/data.yml b/data/CTR-JKA/data.yml new file mode 100644 index 0000000..990744f --- /dev/null +++ b/data/CTR-JKA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000C9200 + name: レイトン教授と奇跡の仮面プラス + updates: [] diff --git a/data/CTR-JKA/icon.jpg b/data/CTR-JKA/icon.jpg new file mode 100644 index 0000000..a40d909 Binary files /dev/null and b/data/CTR-JKA/icon.jpg differ diff --git a/data/CTR-JKC/art.jpg b/data/CTR-JKC/art.jpg new file mode 100644 index 0000000..37d6e3e Binary files /dev/null and b/data/CTR-JKC/art.jpg differ diff --git a/data/CTR-JKC/data.yml b/data/CTR-JKC/data.yml new file mode 100644 index 0000000..096c8cb --- /dev/null +++ b/data/CTR-JKC/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A3300 + name: いかちゃん + updates: [] +- regions: + - US + id: 00040000000C4300 + name: Ikachan + updates: [] diff --git a/data/CTR-JKC/icon.jpg b/data/CTR-JKC/icon.jpg new file mode 100644 index 0000000..28d331e Binary files /dev/null and b/data/CTR-JKC/icon.jpg differ diff --git a/data/CTR-JKD/art.jpg b/data/CTR-JKD/art.jpg new file mode 100644 index 0000000..e07e331 Binary files /dev/null and b/data/CTR-JKD/art.jpg differ diff --git a/data/CTR-JKD/data.yml b/data/CTR-JKD/data.yml new file mode 100644 index 0000000..8f19da5 --- /dev/null +++ b/data/CTR-JKD/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FB000 + name: 文字パズル ことだまーる★ + updates: + - id: 0004000E000FB000 + name: 更新データ Ver. 1.1 文字パズル ことだまーる★ diff --git a/data/CTR-JKD/icon.jpg b/data/CTR-JKD/icon.jpg new file mode 100644 index 0000000..e13e3a2 Binary files /dev/null and b/data/CTR-JKD/icon.jpg differ diff --git a/data/CTR-JKE/art.jpg b/data/CTR-JKE/art.jpg new file mode 100644 index 0000000..163635c Binary files /dev/null and b/data/CTR-JKE/art.jpg differ diff --git a/data/CTR-JKE/data.yml b/data/CTR-JKE/data.yml new file mode 100644 index 0000000..38208b3 --- /dev/null +++ b/data/CTR-JKE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E7500 + name: ATTACK OF THE FRIDAY MONSTERS! A TOKYO TALE™ + updates: [] +- regions: + - JP + id: 00040000000D0D00 + name: 怪獣が出る金曜日 + updates: [] +- regions: + - US + id: 00040000000E7600 + name: ATTACK OF THE FRIDAY MONSTERS! A TOKYO TALE™ + updates: [] diff --git a/data/CTR-JKE/icon.jpg b/data/CTR-JKE/icon.jpg new file mode 100644 index 0000000..2caff40 Binary files /dev/null and b/data/CTR-JKE/icon.jpg differ diff --git a/data/CTR-JKF/art.jpg b/data/CTR-JKF/art.jpg new file mode 100644 index 0000000..9fa4d66 Binary files /dev/null and b/data/CTR-JKF/art.jpg differ diff --git a/data/CTR-JKF/data.yml b/data/CTR-JKF/data.yml new file mode 100644 index 0000000..7493a1d --- /dev/null +++ b/data/CTR-JKF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000009F400 + name: Johnny Kung Fu™ + updates: [] +- regions: + - US + id: 0004000000090000 + name: Johnny Kung Fu™ + updates: [] diff --git a/data/CTR-JKF/icon.jpg b/data/CTR-JKF/icon.jpg new file mode 100644 index 0000000..fc5c477 Binary files /dev/null and b/data/CTR-JKF/icon.jpg differ diff --git a/data/CTR-JKG/art.jpg b/data/CTR-JKG/art.jpg new file mode 100644 index 0000000..7959a55 Binary files /dev/null and b/data/CTR-JKG/art.jpg differ diff --git a/data/CTR-JKG/data.yml b/data/CTR-JKG/data.yml new file mode 100644 index 0000000..4722c88 --- /dev/null +++ b/data/CTR-JKG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A7E00 + name: Crazy Kangaroo + updates: [] +- regions: + - JP + id: 00040000000CA100 + name: クレイジーカンガルー + updates: [] +- regions: + - US + id: 0004000000092400 + name: Crazy Kangaroo + updates: [] diff --git a/data/CTR-JKG/icon.jpg b/data/CTR-JKG/icon.jpg new file mode 100644 index 0000000..cea2162 Binary files /dev/null and b/data/CTR-JKG/icon.jpg differ diff --git a/data/CTR-JKJ/art.jpg b/data/CTR-JKJ/art.jpg new file mode 100644 index 0000000..42cf3bd Binary files /dev/null and b/data/CTR-JKJ/art.jpg differ diff --git a/data/CTR-JKJ/data.yml b/data/CTR-JKJ/data.yml new file mode 100644 index 0000000..c5a48af --- /dev/null +++ b/data/CTR-JKJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AE800 + name: SKYPEACE + updates: [] +- regions: + - JP + id: 0004000000129A00 + name: SKYPEACE + updates: [] +- regions: + - US + id: 000400000013CC00 + name: SKYPEACE + updates: [] diff --git a/data/CTR-JKJ/icon.jpg b/data/CTR-JKJ/icon.jpg new file mode 100644 index 0000000..4480555 Binary files /dev/null and b/data/CTR-JKJ/icon.jpg differ diff --git a/data/CTR-JKK/art.jpg b/data/CTR-JKK/art.jpg new file mode 100644 index 0000000..dd6afb6 Binary files /dev/null and b/data/CTR-JKK/art.jpg differ diff --git a/data/CTR-JKK/data.yml b/data/CTR-JKK/data.yml new file mode 100644 index 0000000..4769569 --- /dev/null +++ b/data/CTR-JKK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052E00 + name: TRUE REMEMBRANCE ~記憶のかけら~ + updates: [] diff --git a/data/CTR-JKK/icon.jpg b/data/CTR-JKK/icon.jpg new file mode 100644 index 0000000..6b8b882 Binary files /dev/null and b/data/CTR-JKK/icon.jpg differ diff --git a/data/CTR-JKM/art.jpg b/data/CTR-JKM/art.jpg new file mode 100644 index 0000000..f19b2de Binary files /dev/null and b/data/CTR-JKM/art.jpg differ diff --git a/data/CTR-JKM/data.yml b/data/CTR-JKM/data.yml new file mode 100644 index 0000000..e6461ca --- /dev/null +++ b/data/CTR-JKM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000066700 + name: 'ARC STYLE: ソリティア' + updates: [] +- regions: + - US + id: 00040000000AE900 + name: 'ARC STYLE: Solitaire' + updates: [] diff --git a/data/CTR-JKM/icon.jpg b/data/CTR-JKM/icon.jpg new file mode 100644 index 0000000..bf99ccf Binary files /dev/null and b/data/CTR-JKM/icon.jpg differ diff --git a/data/CTR-JKN/art.jpg b/data/CTR-JKN/art.jpg new file mode 100644 index 0000000..6b59c7e Binary files /dev/null and b/data/CTR-JKN/art.jpg differ diff --git a/data/CTR-JKN/data.yml b/data/CTR-JKN/data.yml new file mode 100644 index 0000000..c364414 --- /dev/null +++ b/data/CTR-JKN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000AB800 + name: '@SIMPLE DLシリーズ Vol.5 THE 呪いの廃病院' + updates: [] diff --git a/data/CTR-JKN/icon.jpg b/data/CTR-JKN/icon.jpg new file mode 100644 index 0000000..09d4a1c Binary files /dev/null and b/data/CTR-JKN/icon.jpg differ diff --git a/data/CTR-JKP/art.jpg b/data/CTR-JKP/art.jpg new file mode 100644 index 0000000..d39f007 Binary files /dev/null and b/data/CTR-JKP/art.jpg differ diff --git a/data/CTR-JKP/data.yml b/data/CTR-JKP/data.yml new file mode 100644 index 0000000..dd00fbc --- /dev/null +++ b/data/CTR-JKP/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BB700 + name: Go! Go! Kokopolo 3D + updates: + - id: 0004000E001BB700 + name: 'Go! Go! Kokopolo 3D: Update Ver. 1.1' +- regions: + - JP + id: 00040000001C9800 + name: ゴー!ゴー!ココポロ3D + updates: [] +- regions: + - US + id: 00040000000B7800 + name: Go! Go! Kokopolo 3D + updates: + - id: 0004000E000B7800 + name: Go! Go! Kokopolo 3D Update Ver. 1.1 diff --git a/data/CTR-JKP/icon.jpg b/data/CTR-JKP/icon.jpg new file mode 100644 index 0000000..53f2d49 Binary files /dev/null and b/data/CTR-JKP/icon.jpg differ diff --git a/data/CTR-JKQ/art.jpg b/data/CTR-JKQ/art.jpg new file mode 100644 index 0000000..fee1613 Binary files /dev/null and b/data/CTR-JKQ/art.jpg differ diff --git a/data/CTR-JKQ/data.yml b/data/CTR-JKQ/data.yml new file mode 100644 index 0000000..cabcf7d --- /dev/null +++ b/data/CTR-JKQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F4B00 + name: 脱出アドベンチャー 悪夢の死神列車 + updates: [] diff --git a/data/CTR-JKQ/icon.jpg b/data/CTR-JKQ/icon.jpg new file mode 100644 index 0000000..783d94e Binary files /dev/null and b/data/CTR-JKQ/icon.jpg differ diff --git a/data/CTR-JKR/art.jpg b/data/CTR-JKR/art.jpg new file mode 100644 index 0000000..ef0ffb9 Binary files /dev/null and b/data/CTR-JKR/art.jpg differ diff --git a/data/CTR-JKR/data.yml b/data/CTR-JKR/data.yml new file mode 100644 index 0000000..745c57c --- /dev/null +++ b/data/CTR-JKR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F0800 + name: KORG M01D + updates: [] +- regions: + - JP + id: 00040000000DB800 + name: KORG M01D + updates: [] +- regions: + - US + id: 00040000000F1600 + name: KORG M01D + updates: [] diff --git a/data/CTR-JKR/icon.jpg b/data/CTR-JKR/icon.jpg new file mode 100644 index 0000000..fe1fc8f Binary files /dev/null and b/data/CTR-JKR/icon.jpg differ diff --git a/data/CTR-JKS/art.jpg b/data/CTR-JKS/art.jpg new file mode 100644 index 0000000..e176faf Binary files /dev/null and b/data/CTR-JKS/art.jpg differ diff --git a/data/CTR-JKS/data.yml b/data/CTR-JKS/data.yml new file mode 100644 index 0000000..c0fa37d --- /dev/null +++ b/data/CTR-JKS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BC100 + name: LIBERATION MAIDEN™ + updates: [] +- regions: + - JP + id: 00040000000C8500 + name: 解放少女 + updates: [] +- regions: + - US + id: 00040000000BBE00 + name: LIBERATION MAIDEN + updates: [] diff --git a/data/CTR-JKS/icon.jpg b/data/CTR-JKS/icon.jpg new file mode 100644 index 0000000..90baba9 Binary files /dev/null and b/data/CTR-JKS/icon.jpg differ diff --git a/data/CTR-JKT/art.jpg b/data/CTR-JKT/art.jpg new file mode 100644 index 0000000..aa02d94 Binary files /dev/null and b/data/CTR-JKT/art.jpg differ diff --git a/data/CTR-JKT/data.yml b/data/CTR-JKT/data.yml new file mode 100644 index 0000000..2c1b848 --- /dev/null +++ b/data/CTR-JKT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2300 + name: Family Kart 3D + updates: [] +- regions: + - JP + id: 0004000000052500 + name: おきらくカート3D + updates: [] +- regions: + - US + id: 00040000000AE700 + name: Family Kart 3D + updates: [] diff --git a/data/CTR-JKT/icon.jpg b/data/CTR-JKT/icon.jpg new file mode 100644 index 0000000..bed5bd0 Binary files /dev/null and b/data/CTR-JKT/icon.jpg differ diff --git a/data/CTR-JKU/art.jpg b/data/CTR-JKU/art.jpg new file mode 100644 index 0000000..cc82732 Binary files /dev/null and b/data/CTR-JKU/art.jpg differ diff --git a/data/CTR-JKU/data.yml b/data/CTR-JKU/data.yml new file mode 100644 index 0000000..cc7b4d2 --- /dev/null +++ b/data/CTR-JKU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F9700 + name: 王だぁランド! + updates: + - id: 0004000E000F9700 + name: 更新データ Ver. 1.1 王だぁランド! diff --git a/data/CTR-JKU/icon.jpg b/data/CTR-JKU/icon.jpg new file mode 100644 index 0000000..7f2463a Binary files /dev/null and b/data/CTR-JKU/icon.jpg differ diff --git a/data/CTR-JKV/art.jpg b/data/CTR-JKV/art.jpg new file mode 100644 index 0000000..08db8d8 Binary files /dev/null and b/data/CTR-JKV/art.jpg differ diff --git a/data/CTR-JKV/data.yml b/data/CTR-JKV/data.yml new file mode 100644 index 0000000..8a368ff --- /dev/null +++ b/data/CTR-JKV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000111A00 + name: Kung Fu Rabbit + updates: [] +- regions: + - JP + id: 0004000000152E00 + name: カンフーラビット + updates: [] +- regions: + - US + id: 000400000010F700 + name: Kung Fu Rabbit + updates: [] diff --git a/data/CTR-JKV/icon.jpg b/data/CTR-JKV/icon.jpg new file mode 100644 index 0000000..26734cb Binary files /dev/null and b/data/CTR-JKV/icon.jpg differ diff --git a/data/CTR-JKW/art.jpg b/data/CTR-JKW/art.jpg new file mode 100644 index 0000000..5a93db8 Binary files /dev/null and b/data/CTR-JKW/art.jpg differ diff --git a/data/CTR-JKW/data.yml b/data/CTR-JKW/data.yml new file mode 100644 index 0000000..b80607f --- /dev/null +++ b/data/CTR-JKW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000114C00 + name: マル合格! 地方公務員上級 教養試験 2015年度版 + updates: [] diff --git a/data/CTR-JKW/icon.jpg b/data/CTR-JKW/icon.jpg new file mode 100644 index 0000000..8932f97 Binary files /dev/null and b/data/CTR-JKW/icon.jpg differ diff --git a/data/CTR-JKX/art.jpg b/data/CTR-JKX/art.jpg new file mode 100644 index 0000000..974ceef Binary files /dev/null and b/data/CTR-JKX/art.jpg differ diff --git a/data/CTR-JKX/data.yml b/data/CTR-JKX/data.yml new file mode 100644 index 0000000..7f14107 --- /dev/null +++ b/data/CTR-JKX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8200 + name: コロケス + updates: [] diff --git a/data/CTR-JKX/icon.jpg b/data/CTR-JKX/icon.jpg new file mode 100644 index 0000000..484e233 Binary files /dev/null and b/data/CTR-JKX/icon.jpg differ diff --git a/data/CTR-JKY/art.jpg b/data/CTR-JKY/art.jpg new file mode 100644 index 0000000..514eef6 Binary files /dev/null and b/data/CTR-JKY/art.jpg differ diff --git a/data/CTR-JKY/data.yml b/data/CTR-JKY/data.yml new file mode 100644 index 0000000..208a5c1 --- /dev/null +++ b/data/CTR-JKY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000009F900 + name: AZITO 3D Kyoto + updates: [] diff --git a/data/CTR-JKY/icon.jpg b/data/CTR-JKY/icon.jpg new file mode 100644 index 0000000..02df2d1 Binary files /dev/null and b/data/CTR-JKY/icon.jpg differ diff --git a/data/CTR-JKZ/art.jpg b/data/CTR-JKZ/art.jpg new file mode 100644 index 0000000..2be36e6 Binary files /dev/null and b/data/CTR-JKZ/art.jpg differ diff --git a/data/CTR-JKZ/data.yml b/data/CTR-JKZ/data.yml new file mode 100644 index 0000000..e61415a --- /dev/null +++ b/data/CTR-JKZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000056C00 + name: うごくメモ帳 3D + updates: [] diff --git a/data/CTR-JKZ/icon.jpg b/data/CTR-JKZ/icon.jpg new file mode 100644 index 0000000..f4cd7ff Binary files /dev/null and b/data/CTR-JKZ/icon.jpg differ diff --git a/data/CTR-JL2/art.jpg b/data/CTR-JL2/art.jpg new file mode 100644 index 0000000..504c813 Binary files /dev/null and b/data/CTR-JL2/art.jpg differ diff --git a/data/CTR-JL2/data.yml b/data/CTR-JL2/data.yml new file mode 100644 index 0000000..a6af751 --- /dev/null +++ b/data/CTR-JL2/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000131000 + name: Slice It! + updates: [] +- regions: + - JP + id: 000400000012A600 + name: SLICE IT! + updates: [] +- regions: + - KR + id: 0004000000178A00 + name: 슬라이스 잇! + updates: [] +- regions: + - US + id: 0004000000131400 + name: Slice It! + updates: [] diff --git a/data/CTR-JL2/icon.jpg b/data/CTR-JL2/icon.jpg new file mode 100644 index 0000000..96dac44 Binary files /dev/null and b/data/CTR-JL2/icon.jpg differ diff --git a/data/CTR-JL3/art.jpg b/data/CTR-JL3/art.jpg new file mode 100644 index 0000000..91f3cc4 Binary files /dev/null and b/data/CTR-JL3/art.jpg differ diff --git a/data/CTR-JL3/data.yml b/data/CTR-JL3/data.yml new file mode 100644 index 0000000..a04d9aa --- /dev/null +++ b/data/CTR-JL3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000128C00 + name: プチノベル「恋々の三月」 + updates: [] diff --git a/data/CTR-JL3/icon.jpg b/data/CTR-JL3/icon.jpg new file mode 100644 index 0000000..ccf05d7 Binary files /dev/null and b/data/CTR-JL3/icon.jpg differ diff --git a/data/CTR-JL5/art.jpg b/data/CTR-JL5/art.jpg new file mode 100644 index 0000000..122527b Binary files /dev/null and b/data/CTR-JL5/art.jpg differ diff --git a/data/CTR-JL5/data.yml b/data/CTR-JL5/data.yml new file mode 100644 index 0000000..4d4ad99 --- /dev/null +++ b/data/CTR-JL5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A6200 + name: LEGO® ムービー 3D + updates: [] diff --git a/data/CTR-JL5/icon.jpg b/data/CTR-JL5/icon.jpg new file mode 100644 index 0000000..f0442d5 Binary files /dev/null and b/data/CTR-JL5/icon.jpg differ diff --git a/data/CTR-JL6/art.jpg b/data/CTR-JL6/art.jpg new file mode 100644 index 0000000..cc8feb7 Binary files /dev/null and b/data/CTR-JL6/art.jpg differ diff --git a/data/CTR-JL6/data.yml b/data/CTR-JL6/data.yml new file mode 100644 index 0000000..89a7830 --- /dev/null +++ b/data/CTR-JL6/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AF100 + name: 新みんなの塗り絵 Little Twin Stars + updates: + - id: 0004000E001AF100 + name: 更新データ Ver. 1.1 新みんなの塗り絵 Little Twin Stars diff --git a/data/CTR-JL6/icon.jpg b/data/CTR-JL6/icon.jpg new file mode 100644 index 0000000..a70b850 Binary files /dev/null and b/data/CTR-JL6/icon.jpg differ diff --git a/data/CTR-JL8/art.jpg b/data/CTR-JL8/art.jpg new file mode 100644 index 0000000..98157d6 Binary files /dev/null and b/data/CTR-JL8/art.jpg differ diff --git a/data/CTR-JL8/data.yml b/data/CTR-JL8/data.yml new file mode 100644 index 0000000..59ac69f --- /dev/null +++ b/data/CTR-JL8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3E00 + name: 'スーパーリトルリス3D ' + updates: [] +- regions: + - KR + id: 00040000000F0700 + name: Super Little Acorns 3D Turbo + updates: [] diff --git a/data/CTR-JL8/icon.jpg b/data/CTR-JL8/icon.jpg new file mode 100644 index 0000000..7157a3f Binary files /dev/null and b/data/CTR-JL8/icon.jpg differ diff --git a/data/CTR-JLA/art.jpg b/data/CTR-JLA/art.jpg new file mode 100644 index 0000000..85683f3 Binary files /dev/null and b/data/CTR-JLA/art.jpg differ diff --git a/data/CTR-JLA/data.yml b/data/CTR-JLA/data.yml new file mode 100644 index 0000000..55754cb --- /dev/null +++ b/data/CTR-JLA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000128B00 + name: LolaのABCパーティー + updates: [] diff --git a/data/CTR-JLA/icon.jpg b/data/CTR-JLA/icon.jpg new file mode 100644 index 0000000..72949d8 Binary files /dev/null and b/data/CTR-JLA/icon.jpg differ diff --git a/data/CTR-JLC/art.jpg b/data/CTR-JLC/art.jpg new file mode 100644 index 0000000..4b4d993 Binary files /dev/null and b/data/CTR-JLC/art.jpg differ diff --git a/data/CTR-JLC/data.yml b/data/CTR-JLC/data.yml new file mode 100644 index 0000000..78a6371 --- /dev/null +++ b/data/CTR-JLC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FB600 + name: リトルドールプリンセス ~料理編~ + updates: [] diff --git a/data/CTR-JLC/icon.jpg b/data/CTR-JLC/icon.jpg new file mode 100644 index 0000000..856cec6 Binary files /dev/null and b/data/CTR-JLC/icon.jpg differ diff --git a/data/CTR-JLE/art.jpg b/data/CTR-JLE/art.jpg new file mode 100644 index 0000000..f3a926d Binary files /dev/null and b/data/CTR-JLE/art.jpg differ diff --git a/data/CTR-JLE/data.yml b/data/CTR-JLE/data.yml new file mode 100644 index 0000000..0c3bcd0 --- /dev/null +++ b/data/CTR-JLE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000197900 + name: Defend Your Crypt + updates: [] +- regions: + - JP + id: 00040000001AF700 + name: お宝ディフェンダー ~ファラオの秘宝~ + updates: [] +- regions: + - US + id: 0004000000198200 + name: Defend your Crypt + updates: [] diff --git a/data/CTR-JLE/icon.jpg b/data/CTR-JLE/icon.jpg new file mode 100644 index 0000000..da52e29 Binary files /dev/null and b/data/CTR-JLE/icon.jpg differ diff --git a/data/CTR-JLG/art.jpg b/data/CTR-JLG/art.jpg new file mode 100644 index 0000000..e7c535c Binary files /dev/null and b/data/CTR-JLG/art.jpg differ diff --git a/data/CTR-JLG/data.yml b/data/CTR-JLG/data.yml new file mode 100644 index 0000000..49d3526 --- /dev/null +++ b/data/CTR-JLG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000052000 + name: Let's Golf! 3D + updates: [] +- regions: + - US + id: 000400000005CA00 + name: Let's Golf! 3D + updates: [] diff --git a/data/CTR-JLG/icon.jpg b/data/CTR-JLG/icon.jpg new file mode 100644 index 0000000..e52701c Binary files /dev/null and b/data/CTR-JLG/icon.jpg differ diff --git a/data/CTR-JLH/art.jpg b/data/CTR-JLH/art.jpg new file mode 100644 index 0000000..6b0571a Binary files /dev/null and b/data/CTR-JLH/art.jpg differ diff --git a/data/CTR-JLH/data.yml b/data/CTR-JLH/data.yml new file mode 100644 index 0000000..0c42d92 --- /dev/null +++ b/data/CTR-JLH/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DC400 + name: League of Heroes + updates: [] +- regions: + - JP + id: 000400000015DB00 + name: リーグ オブ ヒーローズ + updates: [] +- regions: + - US + id: 00040000000D6800 + name: League of Heroes + updates: [] diff --git a/data/CTR-JLH/icon.jpg b/data/CTR-JLH/icon.jpg new file mode 100644 index 0000000..7b4feb6 Binary files /dev/null and b/data/CTR-JLH/icon.jpg differ diff --git a/data/CTR-JLK/art.jpg b/data/CTR-JLK/art.jpg new file mode 100644 index 0000000..05f04ed Binary files /dev/null and b/data/CTR-JLK/art.jpg differ diff --git a/data/CTR-JLK/data.yml b/data/CTR-JLK/data.yml new file mode 100644 index 0000000..1e87380 --- /dev/null +++ b/data/CTR-JLK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB900 + name: Team Kirby Clash Deluxe™ + updates: [] +- regions: + - JP + id: 00040000001A0000 + name: みんなで!カービィハンターズZ + updates: [] +- regions: + - US + id: 00040000001AB800 + name: Team Kirby Clash Deluxe™ + updates: [] diff --git a/data/CTR-JLK/icon.jpg b/data/CTR-JLK/icon.jpg new file mode 100644 index 0000000..4f5f2d8 Binary files /dev/null and b/data/CTR-JLK/icon.jpg differ diff --git a/data/CTR-JLL/art.jpg b/data/CTR-JLL/art.jpg new file mode 100644 index 0000000..8b26fa1 Binary files /dev/null and b/data/CTR-JLL/art.jpg differ diff --git a/data/CTR-JLL/data.yml b/data/CTR-JLL/data.yml new file mode 100644 index 0000000..2f4f25c --- /dev/null +++ b/data/CTR-JLL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BC600 + name: Hana Samurai Art of the Sword™ + updates: [] +- regions: + - JP + id: 000400000005AC00 + name: ひらり 桜侍 + updates: [] +- regions: + - US + id: 000400000007CD00 + name: 'Sakura Samurai: Art of the Sword™' + updates: [] diff --git a/data/CTR-JLL/icon.jpg b/data/CTR-JLL/icon.jpg new file mode 100644 index 0000000..c715030 Binary files /dev/null and b/data/CTR-JLL/icon.jpg differ diff --git a/data/CTR-JLM/art.jpg b/data/CTR-JLM/art.jpg new file mode 100644 index 0000000..ce0b333 Binary files /dev/null and b/data/CTR-JLM/art.jpg differ diff --git a/data/CTR-JLM/data.yml b/data/CTR-JLM/data.yml new file mode 100644 index 0000000..83c7531 --- /dev/null +++ b/data/CTR-JLM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DE100 + name: Lola's Math Train + updates: [] +- regions: + - JP + id: 00040000000C9A00 + name: ローラのさんすうでんしゃ + updates: [] diff --git a/data/CTR-JLM/icon.jpg b/data/CTR-JLM/icon.jpg new file mode 100644 index 0000000..245f5c2 Binary files /dev/null and b/data/CTR-JLM/icon.jpg differ diff --git a/data/CTR-JLN/art.jpg b/data/CTR-JLN/art.jpg new file mode 100644 index 0000000..2f306fb Binary files /dev/null and b/data/CTR-JLN/art.jpg differ diff --git a/data/CTR-JLN/data.yml b/data/CTR-JLN/data.yml new file mode 100644 index 0000000..1e5d7e9 --- /dev/null +++ b/data/CTR-JLN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B5200 + name: Dodge Club Pocket + updates: [] +- regions: + - US + id: 00040000001A0200 + name: Dodge Club Pocket + updates: [] diff --git a/data/CTR-JLN/icon.jpg b/data/CTR-JLN/icon.jpg new file mode 100644 index 0000000..fa093f9 Binary files /dev/null and b/data/CTR-JLN/icon.jpg differ diff --git a/data/CTR-JLP/art.jpg b/data/CTR-JLP/art.jpg new file mode 100644 index 0000000..a272d5d Binary files /dev/null and b/data/CTR-JLP/art.jpg differ diff --git a/data/CTR-JLP/data.yml b/data/CTR-JLP/data.yml new file mode 100644 index 0000000..9baba5f --- /dev/null +++ b/data/CTR-JLP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000077500 + name: ラブプラスTOOLS + updates: [] diff --git a/data/CTR-JLP/icon.jpg b/data/CTR-JLP/icon.jpg new file mode 100644 index 0000000..46bc64c Binary files /dev/null and b/data/CTR-JLP/icon.jpg differ diff --git a/data/CTR-JLQ/art.jpg b/data/CTR-JLQ/art.jpg new file mode 100644 index 0000000..254b530 Binary files /dev/null and b/data/CTR-JLQ/art.jpg differ diff --git a/data/CTR-JLQ/data.yml b/data/CTR-JLQ/data.yml new file mode 100644 index 0000000..587effd --- /dev/null +++ b/data/CTR-JLQ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117D00 + name: Rubik's® Cube + updates: [] +- regions: + - US + id: 000400000010BD00 + name: Rubik's® Cube + updates: [] diff --git a/data/CTR-JLQ/icon.jpg b/data/CTR-JLQ/icon.jpg new file mode 100644 index 0000000..bb660e9 Binary files /dev/null and b/data/CTR-JLQ/icon.jpg differ diff --git a/data/CTR-JLS/art.jpg b/data/CTR-JLS/art.jpg new file mode 100644 index 0000000..1caf88f Binary files /dev/null and b/data/CTR-JLS/art.jpg differ diff --git a/data/CTR-JLS/data.yml b/data/CTR-JLS/data.yml new file mode 100644 index 0000000..0aac83f --- /dev/null +++ b/data/CTR-JLS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FB500 + name: リトルドールプリンセス ~おやつ編~ + updates: [] diff --git a/data/CTR-JLS/icon.jpg b/data/CTR-JLS/icon.jpg new file mode 100644 index 0000000..9bdc504 Binary files /dev/null and b/data/CTR-JLS/icon.jpg differ diff --git a/data/CTR-JLT/art.jpg b/data/CTR-JLT/art.jpg new file mode 100644 index 0000000..1ea0bac Binary files /dev/null and b/data/CTR-JLT/art.jpg differ diff --git a/data/CTR-JLT/data.yml b/data/CTR-JLT/data.yml new file mode 100644 index 0000000..58a9461 --- /dev/null +++ b/data/CTR-JLT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000175700 + name: Brave Tank Hero™ + updates: [] +- regions: + - JP + id: 00040000000D0B00 + name: 戦車3D + updates: [] +- regions: + - US + id: 0004000000175A00 + name: Brave Tank Hero™ + updates: [] diff --git a/data/CTR-JLT/icon.jpg b/data/CTR-JLT/icon.jpg new file mode 100644 index 0000000..cf43e58 Binary files /dev/null and b/data/CTR-JLT/icon.jpg differ diff --git a/data/CTR-JM2/art.jpg b/data/CTR-JM2/art.jpg new file mode 100644 index 0000000..2952f62 Binary files /dev/null and b/data/CTR-JM2/art.jpg differ diff --git a/data/CTR-JM2/data.yml b/data/CTR-JM2/data.yml new file mode 100644 index 0000000..0d2267d --- /dev/null +++ b/data/CTR-JM2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000071900 + name: '@SIMPLE DLシリーズ Vol.2 THE 密室からの脱出 学校の旧校舎編' + updates: [] diff --git a/data/CTR-JM2/icon.jpg b/data/CTR-JM2/icon.jpg new file mode 100644 index 0000000..f833c16 Binary files /dev/null and b/data/CTR-JM2/icon.jpg differ diff --git a/data/CTR-JM3/art.jpg b/data/CTR-JM3/art.jpg new file mode 100644 index 0000000..d879875 Binary files /dev/null and b/data/CTR-JM3/art.jpg differ diff --git a/data/CTR-JM3/data.yml b/data/CTR-JM3/data.yml new file mode 100644 index 0000000..bb89efc --- /dev/null +++ b/data/CTR-JM3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000088E00 + name: '@SIMPLE DLシリーズ Vol.3 THE 密室からの脱出 セレブな豪邸編' + updates: [] diff --git a/data/CTR-JM3/icon.jpg b/data/CTR-JM3/icon.jpg new file mode 100644 index 0000000..078dec5 Binary files /dev/null and b/data/CTR-JM3/icon.jpg differ diff --git a/data/CTR-JM4/art.jpg b/data/CTR-JM4/art.jpg new file mode 100644 index 0000000..71a5971 Binary files /dev/null and b/data/CTR-JM4/art.jpg differ diff --git a/data/CTR-JM4/data.yml b/data/CTR-JM4/data.yml new file mode 100644 index 0000000..4d1375c --- /dev/null +++ b/data/CTR-JM4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052700 + name: '@SIMPLE DLシリーズ Vol.1 THE 密室からの脱出' + updates: [] diff --git a/data/CTR-JM4/icon.jpg b/data/CTR-JM4/icon.jpg new file mode 100644 index 0000000..3b74076 Binary files /dev/null and b/data/CTR-JM4/icon.jpg differ diff --git a/data/CTR-JM6/art.jpg b/data/CTR-JM6/art.jpg new file mode 100644 index 0000000..4d1ca36 Binary files /dev/null and b/data/CTR-JM6/art.jpg differ diff --git a/data/CTR-JM6/data.yml b/data/CTR-JM6/data.yml new file mode 100644 index 0000000..1eec0d7 --- /dev/null +++ b/data/CTR-JM6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B6B00 + name: '@SIMPLE DLシリーズ Vol.6 THE密室からの脱出クマドナルボウル編' + updates: [] diff --git a/data/CTR-JM6/icon.jpg b/data/CTR-JM6/icon.jpg new file mode 100644 index 0000000..90ded6e Binary files /dev/null and b/data/CTR-JM6/icon.jpg differ diff --git a/data/CTR-JM7/art.jpg b/data/CTR-JM7/art.jpg new file mode 100644 index 0000000..d76ece5 Binary files /dev/null and b/data/CTR-JM7/art.jpg differ diff --git a/data/CTR-JM7/data.yml b/data/CTR-JM7/data.yml new file mode 100644 index 0000000..3f8dc0a --- /dev/null +++ b/data/CTR-JM7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8300 + name: '@SIMPLE DLシリーズ Vol.9 THE 密室からの脱出 テレビ局編' + updates: [] diff --git a/data/CTR-JM7/icon.jpg b/data/CTR-JM7/icon.jpg new file mode 100644 index 0000000..153084b Binary files /dev/null and b/data/CTR-JM7/icon.jpg differ diff --git a/data/CTR-JM8/art.jpg b/data/CTR-JM8/art.jpg new file mode 100644 index 0000000..275cc77 Binary files /dev/null and b/data/CTR-JM8/art.jpg differ diff --git a/data/CTR-JM8/data.yml b/data/CTR-JM8/data.yml new file mode 100644 index 0000000..9f9643b --- /dev/null +++ b/data/CTR-JM8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000CC100 + name: My Farm 3D + updates: [] +- regions: + - US + id: 00040000000E6200 + name: My Farm 3D + updates: [] diff --git a/data/CTR-JM8/icon.jpg b/data/CTR-JM8/icon.jpg new file mode 100644 index 0000000..871458d Binary files /dev/null and b/data/CTR-JM8/icon.jpg differ diff --git a/data/CTR-JM9/art.jpg b/data/CTR-JM9/art.jpg new file mode 100644 index 0000000..4a2708d Binary files /dev/null and b/data/CTR-JM9/art.jpg differ diff --git a/data/CTR-JM9/data.yml b/data/CTR-JM9/data.yml new file mode 100644 index 0000000..0cff31b --- /dev/null +++ b/data/CTR-JM9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000071C00 + name: ニコリのパズル ましゅ + updates: [] +- regions: + - KR + id: 000400000010AD00 + name: Masyu by Nikoli + updates: [] +- regions: + - US + id: 000400000008CF00 + name: Masyu by Nikoli + updates: [] diff --git a/data/CTR-JM9/icon.jpg b/data/CTR-JM9/icon.jpg new file mode 100644 index 0000000..e70033e Binary files /dev/null and b/data/CTR-JM9/icon.jpg differ diff --git a/data/CTR-JMA/art.jpg b/data/CTR-JMA/art.jpg new file mode 100644 index 0000000..20922d9 Binary files /dev/null and b/data/CTR-JMA/art.jpg differ diff --git a/data/CTR-JMA/data.yml b/data/CTR-JMA/data.yml new file mode 100644 index 0000000..434dd44 --- /dev/null +++ b/data/CTR-JMA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008A900 + name: Mad Dog McCree™ + updates: [] +- regions: + - US + id: 0004000000087300 + name: Mad Dog McCree™ + updates: [] diff --git a/data/CTR-JMA/icon.jpg b/data/CTR-JMA/icon.jpg new file mode 100644 index 0000000..f45d32f Binary files /dev/null and b/data/CTR-JMA/icon.jpg differ diff --git a/data/CTR-JMB/art.jpg b/data/CTR-JMB/art.jpg new file mode 100644 index 0000000..4cd4028 Binary files /dev/null and b/data/CTR-JMB/art.jpg differ diff --git a/data/CTR-JMB/data.yml b/data/CTR-JMB/data.yml new file mode 100644 index 0000000..5d06de3 --- /dev/null +++ b/data/CTR-JMB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BCA00 + name: "Crazy Chicken: Director's Cut 3D" + updates: [] +- regions: + - JP + id: 000400000011FE00 + name: クレイジーチキン ディレクターズカット3D + updates: [] +- regions: + - US + id: 0004000000087400 + name: "Crazy Chicken: Director's Cut 3D" + updates: [] diff --git a/data/CTR-JMB/icon.jpg b/data/CTR-JMB/icon.jpg new file mode 100644 index 0000000..6deeb29 Binary files /dev/null and b/data/CTR-JMB/icon.jpg differ diff --git a/data/CTR-JMD/art.jpg b/data/CTR-JMD/art.jpg new file mode 100644 index 0000000..b51f8fb Binary files /dev/null and b/data/CTR-JMD/art.jpg differ diff --git a/data/CTR-JMD/data.yml b/data/CTR-JMD/data.yml new file mode 100644 index 0000000..205932f --- /dev/null +++ b/data/CTR-JMD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A5400 + name: Mutant Mudds™ + updates: [] +- regions: + - JP + id: 000400000016FD00 + name: マッドアタック! マックスVS泥々星人 + updates: [] +- regions: + - US + id: 0004000000086600 + name: Mutant Mudds™ + updates: [] diff --git a/data/CTR-JMD/icon.jpg b/data/CTR-JMD/icon.jpg new file mode 100644 index 0000000..1c33c9f Binary files /dev/null and b/data/CTR-JMD/icon.jpg differ diff --git a/data/CTR-JMF/art.jpg b/data/CTR-JMF/art.jpg new file mode 100644 index 0000000..150cd4c Binary files /dev/null and b/data/CTR-JMF/art.jpg differ diff --git a/data/CTR-JMF/data.yml b/data/CTR-JMF/data.yml new file mode 100644 index 0000000..2638655 --- /dev/null +++ b/data/CTR-JMF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000072700 + name: Mighty Switch Force! + updates: [] +- regions: + - JP + id: 0004000000104300 + name: マイティー スイッチ フォース! + updates: [] +- regions: + - US + id: 0004000000066300 + name: Mighty Switch Force! + updates: [] diff --git a/data/CTR-JMF/icon.jpg b/data/CTR-JMF/icon.jpg new file mode 100644 index 0000000..9ab822c Binary files /dev/null and b/data/CTR-JMF/icon.jpg differ diff --git a/data/CTR-JMG/art.jpg b/data/CTR-JMG/art.jpg new file mode 100644 index 0000000..0fede68 Binary files /dev/null and b/data/CTR-JMG/art.jpg differ diff --git a/data/CTR-JMG/data.yml b/data/CTR-JMG/data.yml new file mode 100644 index 0000000..30e9c91 --- /dev/null +++ b/data/CTR-JMG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C6B00 + name: Mighty Switch Force! 2 + updates: [] +- regions: + - JP + id: 000400000019EE00 + name: マイティースイッチフォース! 2 + updates: [] +- regions: + - US + id: 00040000000C2800 + name: Mighty Switch Force! 2 + updates: [] diff --git a/data/CTR-JMG/icon.jpg b/data/CTR-JMG/icon.jpg new file mode 100644 index 0000000..4c9d9ac Binary files /dev/null and b/data/CTR-JMG/icon.jpg differ diff --git a/data/CTR-JMH/art.jpg b/data/CTR-JMH/art.jpg new file mode 100644 index 0000000..4e68ef8 Binary files /dev/null and b/data/CTR-JMH/art.jpg differ diff --git a/data/CTR-JMH/data.yml b/data/CTR-JMH/data.yml new file mode 100644 index 0000000..949904e --- /dev/null +++ b/data/CTR-JMH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8A00 + name: もののけ探偵 信太のあやかし事件帳 + updates: [] diff --git a/data/CTR-JMH/icon.jpg b/data/CTR-JMH/icon.jpg new file mode 100644 index 0000000..059638c Binary files /dev/null and b/data/CTR-JMH/icon.jpg differ diff --git a/data/CTR-JML/art.jpg b/data/CTR-JML/art.jpg new file mode 100644 index 0000000..6e536dd Binary files /dev/null and b/data/CTR-JML/art.jpg differ diff --git a/data/CTR-JML/data.yml b/data/CTR-JML/data.yml new file mode 100644 index 0000000..b03f770 --- /dev/null +++ b/data/CTR-JML/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E5300 + name: 'Mystery Murders: The Sleeping Palace' + updates: [] diff --git a/data/CTR-JML/icon.jpg b/data/CTR-JML/icon.jpg new file mode 100644 index 0000000..9fd0ade Binary files /dev/null and b/data/CTR-JML/icon.jpg differ diff --git a/data/CTR-JMN/art.jpg b/data/CTR-JMN/art.jpg new file mode 100644 index 0000000..a46aac6 Binary files /dev/null and b/data/CTR-JMN/art.jpg differ diff --git a/data/CTR-JMN/data.yml b/data/CTR-JMN/data.yml new file mode 100644 index 0000000..accb908 --- /dev/null +++ b/data/CTR-JMN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A9900 + name: Crazy Chicken Pirates 3D + updates: [] +- regions: + - JP + id: 00040000000D8900 + name: クレイジーチキン パイレーツ3D + updates: [] +- regions: + - US + id: 0004000000087500 + name: Crazy Chicken Pirates 3D + updates: [] diff --git a/data/CTR-JMN/icon.jpg b/data/CTR-JMN/icon.jpg new file mode 100644 index 0000000..9e589e9 Binary files /dev/null and b/data/CTR-JMN/icon.jpg differ diff --git a/data/CTR-JMP/art.jpg b/data/CTR-JMP/art.jpg new file mode 100644 index 0000000..ec12b3c Binary files /dev/null and b/data/CTR-JMP/art.jpg differ diff --git a/data/CTR-JMP/data.yml b/data/CTR-JMP/data.yml new file mode 100644 index 0000000..5fa0b64 --- /dev/null +++ b/data/CTR-JMP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000052800 + name: ミステリー P.I. ~消えたフィルム~ + updates: [] diff --git a/data/CTR-JMP/icon.jpg b/data/CTR-JMP/icon.jpg new file mode 100644 index 0000000..d4ab124 Binary files /dev/null and b/data/CTR-JMP/icon.jpg differ diff --git a/data/CTR-JMR/art.jpg b/data/CTR-JMR/art.jpg new file mode 100644 index 0000000..bc98acb Binary files /dev/null and b/data/CTR-JMR/art.jpg differ diff --git a/data/CTR-JMR/data.yml b/data/CTR-JMR/data.yml new file mode 100644 index 0000000..e342d94 --- /dev/null +++ b/data/CTR-JMR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000A7A00 + name: '@SIMPLE DLシリーズ Vol.4 THE 密室からの脱出 南国のリゾート編' + updates: [] diff --git a/data/CTR-JMR/icon.jpg b/data/CTR-JMR/icon.jpg new file mode 100644 index 0000000..84b19d9 Binary files /dev/null and b/data/CTR-JMR/icon.jpg differ diff --git a/data/CTR-JMS/art.jpg b/data/CTR-JMS/art.jpg new file mode 100644 index 0000000..8975b0c Binary files /dev/null and b/data/CTR-JMS/art.jpg differ diff --git a/data/CTR-JMS/data.yml b/data/CTR-JMS/data.yml new file mode 100644 index 0000000..a92a9f9 --- /dev/null +++ b/data/CTR-JMS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8000 + name: モンスターシューター + updates: [] diff --git a/data/CTR-JMS/icon.jpg b/data/CTR-JMS/icon.jpg new file mode 100644 index 0000000..cd6a502 Binary files /dev/null and b/data/CTR-JMS/icon.jpg differ diff --git a/data/CTR-JMT/art.jpg b/data/CTR-JMT/art.jpg new file mode 100644 index 0000000..0a6274e Binary files /dev/null and b/data/CTR-JMT/art.jpg differ diff --git a/data/CTR-JMT/data.yml b/data/CTR-JMT/data.yml new file mode 100644 index 0000000..644f00a --- /dev/null +++ b/data/CTR-JMT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C2F00 + name: Aqua Moto Racing 3D + updates: [] +- regions: + - JP + id: 000400000011E600 + name: アクアモーターレーシング3D + updates: [] +- regions: + - US + id: 0004000000095200 + name: Aqua Moto Racing 3D™ + updates: [] diff --git a/data/CTR-JMT/icon.jpg b/data/CTR-JMT/icon.jpg new file mode 100644 index 0000000..bec8000 Binary files /dev/null and b/data/CTR-JMT/icon.jpg differ diff --git a/data/CTR-JMU/art.jpg b/data/CTR-JMU/art.jpg new file mode 100644 index 0000000..93c7433 Binary files /dev/null and b/data/CTR-JMU/art.jpg differ diff --git a/data/CTR-JMU/data.yml b/data/CTR-JMU/data.yml new file mode 100644 index 0000000..808c236 --- /dev/null +++ b/data/CTR-JMU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C7100 + name: Monster Hunter™ 3 Ultimate Data Transfer Program + updates: [] +- regions: + - JP + id: 00040000000C3400 + name: モンスターハンター3(トライ)G データ移行プログラム + updates: [] +- regions: + - US + id: 00040000000C6F00 + name: MH3U Data Transfer Program + updates: [] diff --git a/data/CTR-JMU/icon.jpg b/data/CTR-JMU/icon.jpg new file mode 100644 index 0000000..9b00ff9 Binary files /dev/null and b/data/CTR-JMU/icon.jpg differ diff --git a/data/CTR-JMV/art.jpg b/data/CTR-JMV/art.jpg new file mode 100644 index 0000000..c81b749 Binary files /dev/null and b/data/CTR-JMV/art.jpg differ diff --git a/data/CTR-JMV/data.yml b/data/CTR-JMV/data.yml new file mode 100644 index 0000000..8323ce6 --- /dev/null +++ b/data/CTR-JMV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008C900 + name: Marvel Pinball 3D + updates: [] +- regions: + - US + id: 000400000008E300 + name: Marvel Pinball 3D + updates: [] diff --git a/data/CTR-JMV/icon.jpg b/data/CTR-JMV/icon.jpg new file mode 100644 index 0000000..0039499 Binary files /dev/null and b/data/CTR-JMV/icon.jpg differ diff --git a/data/CTR-JMW/art.jpg b/data/CTR-JMW/art.jpg new file mode 100644 index 0000000..9a4ed57 Binary files /dev/null and b/data/CTR-JMW/art.jpg differ diff --git a/data/CTR-JMW/data.yml b/data/CTR-JMW/data.yml new file mode 100644 index 0000000..5fbe8c2 --- /dev/null +++ b/data/CTR-JMW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000DB700 + name: '@SIMPLE DLシリーズ Vol.15 THE 麻雀' + updates: [] diff --git a/data/CTR-JMW/icon.jpg b/data/CTR-JMW/icon.jpg new file mode 100644 index 0000000..9c95096 Binary files /dev/null and b/data/CTR-JMW/icon.jpg differ diff --git a/data/CTR-JMX/art.jpg b/data/CTR-JMX/art.jpg new file mode 100644 index 0000000..9ff1e72 Binary files /dev/null and b/data/CTR-JMX/art.jpg differ diff --git a/data/CTR-JMX/data.yml b/data/CTR-JMX/data.yml new file mode 100644 index 0000000..9195061 --- /dev/null +++ b/data/CTR-JMX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000080400 + name: ケモノミクス+ + updates: [] diff --git a/data/CTR-JMX/icon.jpg b/data/CTR-JMX/icon.jpg new file mode 100644 index 0000000..0d3972c Binary files /dev/null and b/data/CTR-JMX/icon.jpg differ diff --git a/data/CTR-JMY/art.jpg b/data/CTR-JMY/art.jpg new file mode 100644 index 0000000..0b5f802 Binary files /dev/null and b/data/CTR-JMY/art.jpg differ diff --git a/data/CTR-JMY/data.yml b/data/CTR-JMY/data.yml new file mode 100644 index 0000000..9eab3b9 --- /dev/null +++ b/data/CTR-JMY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000ECB00 + name: Skater Cat + updates: [] +- regions: + - JP + id: 00040000000C9500 + name: peakvox ミュウミュウトレイン + updates: [] +- regions: + - US + id: 00040000000E6700 + name: Skater Cat + updates: [] diff --git a/data/CTR-JMY/icon.jpg b/data/CTR-JMY/icon.jpg new file mode 100644 index 0000000..5820008 Binary files /dev/null and b/data/CTR-JMY/icon.jpg differ diff --git a/data/CTR-JN2/art.jpg b/data/CTR-JN2/art.jpg new file mode 100644 index 0000000..8141fc9 Binary files /dev/null and b/data/CTR-JN2/art.jpg differ diff --git a/data/CTR-JN2/data.yml b/data/CTR-JN2/data.yml new file mode 100644 index 0000000..77661cf --- /dev/null +++ b/data/CTR-JN2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000197B00 + name: Smash Cat Heroes + updates: [] +- regions: + - JP + id: 000400000009EE00 + name: 一騎当千!スマッシュヒーローズ + updates: [] +- regions: + - US + id: 0004000000128500 + name: Smash Cat Heroes + updates: [] diff --git a/data/CTR-JN2/icon.jpg b/data/CTR-JN2/icon.jpg new file mode 100644 index 0000000..a304818 Binary files /dev/null and b/data/CTR-JN2/icon.jpg differ diff --git a/data/CTR-JN3/art.jpg b/data/CTR-JN3/art.jpg new file mode 100644 index 0000000..f02c8a2 Binary files /dev/null and b/data/CTR-JN3/art.jpg differ diff --git a/data/CTR-JN3/data.yml b/data/CTR-JN3/data.yml new file mode 100644 index 0000000..68a69ef --- /dev/null +++ b/data/CTR-JN3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000DB000 + name: マル合!3D ナナミと一緒に学ぼ! English上達のコツ 理論編 + updates: [] diff --git a/data/CTR-JN3/icon.jpg b/data/CTR-JN3/icon.jpg new file mode 100644 index 0000000..38500a2 Binary files /dev/null and b/data/CTR-JN3/icon.jpg differ diff --git a/data/CTR-JN4/art.jpg b/data/CTR-JN4/art.jpg new file mode 100644 index 0000000..a71f00c Binary files /dev/null and b/data/CTR-JN4/art.jpg differ diff --git a/data/CTR-JN4/data.yml b/data/CTR-JN4/data.yml new file mode 100644 index 0000000..124a6a8 --- /dev/null +++ b/data/CTR-JN4/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BE300 + name: 'River City: Knights of Justice' + updates: [] +- regions: + - JP + id: 000400000012B600 + name: 熱血魔法物語 + updates: [] +- regions: + - US + id: 00040000001C0D00 + name: 'River City: Knights of Justice' + updates: [] diff --git a/data/CTR-JN4/icon.jpg b/data/CTR-JN4/icon.jpg new file mode 100644 index 0000000..82d564a Binary files /dev/null and b/data/CTR-JN4/icon.jpg differ diff --git a/data/CTR-JN5/art.jpg b/data/CTR-JN5/art.jpg new file mode 100644 index 0000000..d20278d Binary files /dev/null and b/data/CTR-JN5/art.jpg differ diff --git a/data/CTR-JN5/data.yml b/data/CTR-JN5/data.yml new file mode 100644 index 0000000..46e3830 --- /dev/null +++ b/data/CTR-JN5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BB900 + name: ねこあつめ + updates: [] diff --git a/data/CTR-JN5/icon.jpg b/data/CTR-JN5/icon.jpg new file mode 100644 index 0000000..a5d98a9 Binary files /dev/null and b/data/CTR-JN5/icon.jpg differ diff --git a/data/CTR-JNA/art.jpg b/data/CTR-JNA/art.jpg new file mode 100644 index 0000000..8c4b510 Binary files /dev/null and b/data/CTR-JNA/art.jpg differ diff --git a/data/CTR-JNA/data.yml b/data/CTR-JNA/data.yml new file mode 100644 index 0000000..49c7a65 --- /dev/null +++ b/data/CTR-JNA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BA300 + name: Nano Assault EX + updates: [] +- regions: + - US + id: 00040000000B9E00 + name: Nano Assault EX + updates: [] diff --git a/data/CTR-JNA/icon.jpg b/data/CTR-JNA/icon.jpg new file mode 100644 index 0000000..16a33aa Binary files /dev/null and b/data/CTR-JNA/icon.jpg differ diff --git a/data/CTR-JNB/art.jpg b/data/CTR-JNB/art.jpg new file mode 100644 index 0000000..6ec0a3e Binary files /dev/null and b/data/CTR-JNB/art.jpg differ diff --git a/data/CTR-JNB/data.yml b/data/CTR-JNB/data.yml new file mode 100644 index 0000000..a95c0b6 --- /dev/null +++ b/data/CTR-JNB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000127F00 + name: プチノベル「婚儀の六月」 + updates: [] diff --git a/data/CTR-JNB/icon.jpg b/data/CTR-JNB/icon.jpg new file mode 100644 index 0000000..96a7811 Binary files /dev/null and b/data/CTR-JNB/icon.jpg differ diff --git a/data/CTR-JNC/art.jpg b/data/CTR-JNC/art.jpg new file mode 100644 index 0000000..8094e26 Binary files /dev/null and b/data/CTR-JNC/art.jpg differ diff --git a/data/CTR-JNC/data.yml b/data/CTR-JNC/data.yml new file mode 100644 index 0000000..b9d24a9 --- /dev/null +++ b/data/CTR-JNC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D0C00 + name: にかくでスッシー + updates: [] diff --git a/data/CTR-JNC/icon.jpg b/data/CTR-JNC/icon.jpg new file mode 100644 index 0000000..f351eda Binary files /dev/null and b/data/CTR-JNC/icon.jpg differ diff --git a/data/CTR-JNF/art.jpg b/data/CTR-JNF/art.jpg new file mode 100644 index 0000000..9c296b3 Binary files /dev/null and b/data/CTR-JNF/art.jpg differ diff --git a/data/CTR-JNF/data.yml b/data/CTR-JNF/data.yml new file mode 100644 index 0000000..653abc0 --- /dev/null +++ b/data/CTR-JNF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000127E00 + name: アクセルナイツ2 フルスロットル + updates: [] diff --git a/data/CTR-JNF/icon.jpg b/data/CTR-JNF/icon.jpg new file mode 100644 index 0000000..d89902c Binary files /dev/null and b/data/CTR-JNF/icon.jpg differ diff --git a/data/CTR-JNG/art.jpg b/data/CTR-JNG/art.jpg new file mode 100644 index 0000000..9b5a8d5 Binary files /dev/null and b/data/CTR-JNG/art.jpg differ diff --git a/data/CTR-JNG/data.yml b/data/CTR-JNG/data.yml new file mode 100644 index 0000000..05e7740 --- /dev/null +++ b/data/CTR-JNG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000095F00 + name: 'ARC STYLE: 女子サッカー!!3D' + updates: [] diff --git a/data/CTR-JNG/icon.jpg b/data/CTR-JNG/icon.jpg new file mode 100644 index 0000000..2fb1610 Binary files /dev/null and b/data/CTR-JNG/icon.jpg differ diff --git a/data/CTR-JNH/art.jpg b/data/CTR-JNH/art.jpg new file mode 100644 index 0000000..7f10238 Binary files /dev/null and b/data/CTR-JNH/art.jpg differ diff --git a/data/CTR-JNH/data.yml b/data/CTR-JNH/data.yml new file mode 100644 index 0000000..5d28a71 --- /dev/null +++ b/data/CTR-JNH/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000120000 + name: ナナミと一緒に学ぼ! English日常会話 + updates: + - id: 0004000E00120000 + name: 更新データ Ver. 1.1 ナナミと一緒に学ぼ!English日常会話 diff --git a/data/CTR-JNH/icon.jpg b/data/CTR-JNH/icon.jpg new file mode 100644 index 0000000..0dab496 Binary files /dev/null and b/data/CTR-JNH/icon.jpg differ diff --git a/data/CTR-JNJ/art.jpg b/data/CTR-JNJ/art.jpg new file mode 100644 index 0000000..ba32ae7 Binary files /dev/null and b/data/CTR-JNJ/art.jpg differ diff --git a/data/CTR-JNJ/data.yml b/data/CTR-JNJ/data.yml new file mode 100644 index 0000000..ff36511 --- /dev/null +++ b/data/CTR-JNJ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000187700 + name: ナゾのミニゲーム ちょいがえ + updates: + - id: 0004000E00187700 + name: 更新データ Ver. 1.1 ナゾのミニゲーム ちょいがえ diff --git a/data/CTR-JNJ/icon.jpg b/data/CTR-JNJ/icon.jpg new file mode 100644 index 0000000..a390b33 Binary files /dev/null and b/data/CTR-JNJ/icon.jpg differ diff --git a/data/CTR-JNK/art.jpg b/data/CTR-JNK/art.jpg new file mode 100644 index 0000000..cf07c8d Binary files /dev/null and b/data/CTR-JNK/art.jpg differ diff --git a/data/CTR-JNK/data.yml b/data/CTR-JNK/data.yml new file mode 100644 index 0000000..691f40a --- /dev/null +++ b/data/CTR-JNK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000006E300 + name: ニコリのパズル ぬりかべ + updates: [] +- regions: + - KR + id: 0004000000106900 + name: Nurikabe by Nikoli + updates: [] +- regions: + - US + id: 0004000000092A00 + name: Nurikabe by Nikoli + updates: [] diff --git a/data/CTR-JNK/icon.jpg b/data/CTR-JNK/icon.jpg new file mode 100644 index 0000000..9a2be97 Binary files /dev/null and b/data/CTR-JNK/icon.jpg differ diff --git a/data/CTR-JNL/art.jpg b/data/CTR-JNL/art.jpg new file mode 100644 index 0000000..6391521 Binary files /dev/null and b/data/CTR-JNL/art.jpg differ diff --git a/data/CTR-JNL/data.yml b/data/CTR-JNL/data.yml new file mode 100644 index 0000000..7dbed6d --- /dev/null +++ b/data/CTR-JNL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001ADF00 + name: にょきにょき たびだち編 + updates: [] diff --git a/data/CTR-JNL/icon.jpg b/data/CTR-JNL/icon.jpg new file mode 100644 index 0000000..c1b99b9 Binary files /dev/null and b/data/CTR-JNL/icon.jpg differ diff --git a/data/CTR-JNM/art.jpg b/data/CTR-JNM/art.jpg new file mode 100644 index 0000000..92c4ac6 Binary files /dev/null and b/data/CTR-JNM/art.jpg differ diff --git a/data/CTR-JNM/data.yml b/data/CTR-JNM/data.yml new file mode 100644 index 0000000..d032558 --- /dev/null +++ b/data/CTR-JNM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000DB100 + name: マル合!3D ナナミと一緒に学ぼ! TOEIC® TEST対策編 + updates: [] diff --git a/data/CTR-JNM/icon.jpg b/data/CTR-JNM/icon.jpg new file mode 100644 index 0000000..a1afd40 Binary files /dev/null and b/data/CTR-JNM/icon.jpg differ diff --git a/data/CTR-JNN/art.jpg b/data/CTR-JNN/art.jpg new file mode 100644 index 0000000..ac4b819 Binary files /dev/null and b/data/CTR-JNN/art.jpg differ diff --git a/data/CTR-JNN/data.yml b/data/CTR-JNN/data.yml new file mode 100644 index 0000000..207dd3c --- /dev/null +++ b/data/CTR-JNN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016EC00 + name: Ninja Battle Heroes + updates: [] +- regions: + - JP + id: 00040000000BAF00 + name: 忍スピリッツ 真田獣勇士伝 + updates: [] +- regions: + - US + id: 000400000013D200 + name: Ninja Battle Heroes + updates: [] diff --git a/data/CTR-JNN/icon.jpg b/data/CTR-JNN/icon.jpg new file mode 100644 index 0000000..700e3e1 Binary files /dev/null and b/data/CTR-JNN/icon.jpg differ diff --git a/data/CTR-JNP/art.jpg b/data/CTR-JNP/art.jpg new file mode 100644 index 0000000..7fdd125 Binary files /dev/null and b/data/CTR-JNP/art.jpg differ diff --git a/data/CTR-JNP/data.yml b/data/CTR-JNP/data.yml new file mode 100644 index 0000000..8d6f385 --- /dev/null +++ b/data/CTR-JNP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001D3B00 + name: トコトコネコパズル シュレディンガーの箱庭 + updates: [] diff --git a/data/CTR-JNP/icon.jpg b/data/CTR-JNP/icon.jpg new file mode 100644 index 0000000..cde46bd Binary files /dev/null and b/data/CTR-JNP/icon.jpg differ diff --git a/data/CTR-JNS/art.jpg b/data/CTR-JNS/art.jpg new file mode 100644 index 0000000..7c6dc3f Binary files /dev/null and b/data/CTR-JNS/art.jpg differ diff --git a/data/CTR-JNS/data.yml b/data/CTR-JNS/data.yml new file mode 100644 index 0000000..5ee2d48 --- /dev/null +++ b/data/CTR-JNS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000096200 + name: NightSky + updates: [] +- regions: + - US + id: 0004000000087700 + name: NightSky + updates: [] diff --git a/data/CTR-JNS/icon.jpg b/data/CTR-JNS/icon.jpg new file mode 100644 index 0000000..984c90a Binary files /dev/null and b/data/CTR-JNS/icon.jpg differ diff --git a/data/CTR-JNU/art.jpg b/data/CTR-JNU/art.jpg new file mode 100644 index 0000000..341dc9c Binary files /dev/null and b/data/CTR-JNU/art.jpg differ diff --git a/data/CTR-JNU/data.yml b/data/CTR-JNU/data.yml new file mode 100644 index 0000000..aae6ed3 --- /dev/null +++ b/data/CTR-JNU/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D7E00 + name: 'Steel Diver™: Sub Wars' + updates: + - id: 0004000E000D7E00 + name: 'Steel Diver™: Sub Wars: Update' +- regions: + - JP + id: 00040000000D7C00 + name: STEELDIVER SUBWARS + updates: + - id: 0004000E000D7C00 + name: 更新データ Ver. 4.1 STEELDIVER SUBWARS +- regions: + - US + id: 00040000000D7D00 + name: 'Steel Diver™: Sub Wars' + updates: + - id: 0004000E000D7D00 + name: 'Steel Diver™: Sub Wars Update Ver. 4.1' diff --git a/data/CTR-JNU/icon.jpg b/data/CTR-JNU/icon.jpg new file mode 100644 index 0000000..0d72976 Binary files /dev/null and b/data/CTR-JNU/icon.jpg differ diff --git a/data/CTR-JNV/art.jpg b/data/CTR-JNV/art.jpg new file mode 100644 index 0000000..b241d07 Binary files /dev/null and b/data/CTR-JNV/art.jpg differ diff --git a/data/CTR-JNV/data.yml b/data/CTR-JNV/data.yml new file mode 100644 index 0000000..c6e77a9 --- /dev/null +++ b/data/CTR-JNV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145800 + name: プチノベル「別離の十一月」 + updates: [] diff --git a/data/CTR-JNV/icon.jpg b/data/CTR-JNV/icon.jpg new file mode 100644 index 0000000..dde29e2 Binary files /dev/null and b/data/CTR-JNV/icon.jpg differ diff --git a/data/CTR-JNY/art.jpg b/data/CTR-JNY/art.jpg new file mode 100644 index 0000000..58240e5 Binary files /dev/null and b/data/CTR-JNY/art.jpg differ diff --git a/data/CTR-JNY/data.yml b/data/CTR-JNY/data.yml new file mode 100644 index 0000000..9b378d6 --- /dev/null +++ b/data/CTR-JNY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A4400 + name: Noah's Cradle + updates: [] +- regions: + - JP + id: 0004000000170200 + name: ノアの揺り籠 + updates: [] +- regions: + - US + id: 00040000001A4300 + name: Noah's Cradle + updates: [] diff --git a/data/CTR-JNY/icon.jpg b/data/CTR-JNY/icon.jpg new file mode 100644 index 0000000..7bd9de6 Binary files /dev/null and b/data/CTR-JNY/icon.jpg differ diff --git a/data/CTR-JNZ/art.jpg b/data/CTR-JNZ/art.jpg new file mode 100644 index 0000000..8c9a454 Binary files /dev/null and b/data/CTR-JNZ/art.jpg differ diff --git a/data/CTR-JNZ/data.yml b/data/CTR-JNZ/data.yml new file mode 100644 index 0000000..3e9c9bc --- /dev/null +++ b/data/CTR-JNZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000120300 + name: といてすすんで! なぞときキャッスル + updates: [] diff --git a/data/CTR-JNZ/icon.jpg b/data/CTR-JNZ/icon.jpg new file mode 100644 index 0000000..78ad7f8 Binary files /dev/null and b/data/CTR-JNZ/icon.jpg differ diff --git a/data/CTR-JP2/art.jpg b/data/CTR-JP2/art.jpg new file mode 100644 index 0000000..63e867e Binary files /dev/null and b/data/CTR-JP2/art.jpg differ diff --git a/data/CTR-JP2/data.yml b/data/CTR-JP2/data.yml new file mode 100644 index 0000000..5cf7fac --- /dev/null +++ b/data/CTR-JP2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000CBC00 + name: PICROSS e2 + updates: [] +- regions: + - JP + id: 0004000000084600 + name: ピクロスe2 + updates: [] +- regions: + - US + id: 00040000000CD400 + name: PICROSS e2 + updates: [] diff --git a/data/CTR-JP2/icon.jpg b/data/CTR-JP2/icon.jpg new file mode 100644 index 0000000..2bcb5a3 Binary files /dev/null and b/data/CTR-JP2/icon.jpg differ diff --git a/data/CTR-JP4/art.jpg b/data/CTR-JP4/art.jpg new file mode 100644 index 0000000..d906415 Binary files /dev/null and b/data/CTR-JP4/art.jpg differ diff --git a/data/CTR-JP4/data.yml b/data/CTR-JP4/data.yml new file mode 100644 index 0000000..04873e3 --- /dev/null +++ b/data/CTR-JP4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000BF900 + name: ぷよぷよ!!ミニバージョン + updates: [] diff --git a/data/CTR-JP4/icon.jpg b/data/CTR-JP4/icon.jpg new file mode 100644 index 0000000..6cce55f Binary files /dev/null and b/data/CTR-JP4/icon.jpg differ diff --git a/data/CTR-JP8/art.jpg b/data/CTR-JP8/art.jpg new file mode 100644 index 0000000..89a9325 Binary files /dev/null and b/data/CTR-JP8/art.jpg differ diff --git a/data/CTR-JP8/data.yml b/data/CTR-JP8/data.yml new file mode 100644 index 0000000..f399ab1 --- /dev/null +++ b/data/CTR-JP8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117700 + name: 101 Penguin Pets 3D + updates: [] +- regions: + - JP + id: 0004000000127700 + name: ペンギンペット3D + updates: [] +- regions: + - US + id: 00040000000EBE00 + name: 101 Penguin Pets 3D + updates: [] diff --git a/data/CTR-JP8/icon.jpg b/data/CTR-JP8/icon.jpg new file mode 100644 index 0000000..6e0e783 Binary files /dev/null and b/data/CTR-JP8/icon.jpg differ diff --git a/data/CTR-JPA/art.jpg b/data/CTR-JPA/art.jpg new file mode 100644 index 0000000..335922c Binary files /dev/null and b/data/CTR-JPA/art.jpg differ diff --git a/data/CTR-JPA/data.yml b/data/CTR-JPA/data.yml new file mode 100644 index 0000000..ff06302 --- /dev/null +++ b/data/CTR-JPA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000EDA00 + name: 'Pure Chess® ' + updates: [] +- regions: + - US + id: 00040000000F1700 + name: 'Pure Chess® ' + updates: [] diff --git a/data/CTR-JPA/icon.jpg b/data/CTR-JPA/icon.jpg new file mode 100644 index 0000000..3af6ad3 Binary files /dev/null and b/data/CTR-JPA/icon.jpg differ diff --git a/data/CTR-JPB/art.jpg b/data/CTR-JPB/art.jpg new file mode 100644 index 0000000..e554cc9 Binary files /dev/null and b/data/CTR-JPB/art.jpg differ diff --git a/data/CTR-JPB/data.yml b/data/CTR-JPB/data.yml new file mode 100644 index 0000000..8e37e2e --- /dev/null +++ b/data/CTR-JPB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000005A100 + name: 'ARC STYLE: 三国志Pinball' + updates: [] diff --git a/data/CTR-JPB/icon.jpg b/data/CTR-JPB/icon.jpg new file mode 100644 index 0000000..4e7cfa6 Binary files /dev/null and b/data/CTR-JPB/icon.jpg differ diff --git a/data/CTR-JPC/art.jpg b/data/CTR-JPC/art.jpg new file mode 100644 index 0000000..a3b0401 Binary files /dev/null and b/data/CTR-JPC/art.jpg differ diff --git a/data/CTR-JPC/data.yml b/data/CTR-JPC/data.yml new file mode 100644 index 0000000..f0dc40e --- /dev/null +++ b/data/CTR-JPC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000BFA00 + name: マンションパーカッション + updates: [] diff --git a/data/CTR-JPC/icon.jpg b/data/CTR-JPC/icon.jpg new file mode 100644 index 0000000..bf71454 Binary files /dev/null and b/data/CTR-JPC/icon.jpg differ diff --git a/data/CTR-JPD/art.jpg b/data/CTR-JPD/art.jpg new file mode 100644 index 0000000..e14b78d Binary files /dev/null and b/data/CTR-JPD/art.jpg differ diff --git a/data/CTR-JPD/data.yml b/data/CTR-JPD/data.yml new file mode 100644 index 0000000..f65477d --- /dev/null +++ b/data/CTR-JPD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000CBB00 + name: "Picdun 2: Witch's Curse" + updates: [] +- regions: + - JP + id: 00040000000ADD00 + name: ダンジョンRPG ピクダン2 + updates: [] +- regions: + - US + id: 00040000000C5100 + name: "Picdun 2: Witch's Curse" + updates: [] diff --git a/data/CTR-JPD/icon.jpg b/data/CTR-JPD/icon.jpg new file mode 100644 index 0000000..87f9b4d Binary files /dev/null and b/data/CTR-JPD/icon.jpg differ diff --git a/data/CTR-JPE/art.jpg b/data/CTR-JPE/art.jpg new file mode 100644 index 0000000..bdfc07e Binary files /dev/null and b/data/CTR-JPE/art.jpg differ diff --git a/data/CTR-JPE/data.yml b/data/CTR-JPE/data.yml new file mode 100644 index 0000000..1d9eaad --- /dev/null +++ b/data/CTR-JPE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FED00 + name: Best of Board Games - Mahjong + updates: [] +- regions: + - US + id: 0004000000101A00 + name: Best of Board Games - Mahjong + updates: [] diff --git a/data/CTR-JPE/icon.jpg b/data/CTR-JPE/icon.jpg new file mode 100644 index 0000000..885b0d4 Binary files /dev/null and b/data/CTR-JPE/icon.jpg differ diff --git a/data/CTR-JPG/art.jpg b/data/CTR-JPG/art.jpg new file mode 100644 index 0000000..ddacc06 Binary files /dev/null and b/data/CTR-JPG/art.jpg differ diff --git a/data/CTR-JPG/data.yml b/data/CTR-JPG/data.yml new file mode 100644 index 0000000..a3e5159 --- /dev/null +++ b/data/CTR-JPG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000104000 + name: '@SIMPLE DLシリーズ Vol.30 THE ナンバーパズル' + updates: [] diff --git a/data/CTR-JPG/icon.jpg b/data/CTR-JPG/icon.jpg new file mode 100644 index 0000000..a8b7ca9 Binary files /dev/null and b/data/CTR-JPG/icon.jpg differ diff --git a/data/CTR-JPH/art.jpg b/data/CTR-JPH/art.jpg new file mode 100644 index 0000000..0adbc19 Binary files /dev/null and b/data/CTR-JPH/art.jpg differ diff --git a/data/CTR-JPH/data.yml b/data/CTR-JPH/data.yml new file mode 100644 index 0000000..7c0dcd3 --- /dev/null +++ b/data/CTR-JPH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000011B900 + name: Talking Phrasebook - 7 Languages + updates: [] +- regions: + - US + id: 00040000000FE200 + name: Talking Phrasebook - 7 Languages + updates: [] diff --git a/data/CTR-JPH/icon.jpg b/data/CTR-JPH/icon.jpg new file mode 100644 index 0000000..4fa9347 Binary files /dev/null and b/data/CTR-JPH/icon.jpg differ diff --git a/data/CTR-JPK/art.jpg b/data/CTR-JPK/art.jpg new file mode 100644 index 0000000..ef7789e Binary files /dev/null and b/data/CTR-JPK/art.jpg differ diff --git a/data/CTR-JPK/data.yml b/data/CTR-JPK/data.yml new file mode 100644 index 0000000..9afc3e9 --- /dev/null +++ b/data/CTR-JPK/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A1C00 + name: SmileBASIC + updates: + - id: 0004000E001A1C00 + name: SmileBASIC 3.6 Update +- regions: + - JP + id: 0004000000117200 + name: プチコン3号 SmileBASIC + updates: + - id: 0004000E00117200 + name: 更新データ Ver. 3.6.3 プチコン3号 SmileBASIC +- regions: + - US + id: 000400000016DE00 + name: SmileBASIC + updates: + - id: 0004000E0016DE00 + name: SmileBASIC Update Ver. 3.6.0 diff --git a/data/CTR-JPK/icon.jpg b/data/CTR-JPK/icon.jpg new file mode 100644 index 0000000..e75bb86 Binary files /dev/null and b/data/CTR-JPK/icon.jpg differ diff --git a/data/CTR-JPM/art.jpg b/data/CTR-JPM/art.jpg new file mode 100644 index 0000000..92c6578 Binary files /dev/null and b/data/CTR-JPM/art.jpg differ diff --git a/data/CTR-JPM/data.yml b/data/CTR-JPM/data.yml new file mode 100644 index 0000000..75bc342 --- /dev/null +++ b/data/CTR-JPM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000F7600 + name: Chibi-Robo!™ Let’s Go, Photo! + updates: [] +- regions: + - JP + id: 00040000000C9E00 + name: 実写でちびロボ! + updates: [] +- regions: + - US + id: 0004000000107C00 + name: 'Chibi-Robo!™: Photo Finder' + updates: [] diff --git a/data/CTR-JPM/icon.jpg b/data/CTR-JPM/icon.jpg new file mode 100644 index 0000000..868516b Binary files /dev/null and b/data/CTR-JPM/icon.jpg differ diff --git a/data/CTR-JPN/art.jpg b/data/CTR-JPN/art.jpg new file mode 100644 index 0000000..143585c Binary files /dev/null and b/data/CTR-JPN/art.jpg differ diff --git a/data/CTR-JPN/data.yml b/data/CTR-JPN/data.yml new file mode 100644 index 0000000..0b735f2 --- /dev/null +++ b/data/CTR-JPN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011F000 + name: プチノベル「境域の一月」 + updates: [] diff --git a/data/CTR-JPN/icon.jpg b/data/CTR-JPN/icon.jpg new file mode 100644 index 0000000..ddd86fd Binary files /dev/null and b/data/CTR-JPN/icon.jpg differ diff --git a/data/CTR-JPP/art.jpg b/data/CTR-JPP/art.jpg new file mode 100644 index 0000000..fccf5cc Binary files /dev/null and b/data/CTR-JPP/art.jpg differ diff --git a/data/CTR-JPP/data.yml b/data/CTR-JPP/data.yml new file mode 100644 index 0000000..247eb68 --- /dev/null +++ b/data/CTR-JPP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000A7500 + name: おきらくピンポン3D + updates: [] +- regions: + - US + id: 00040000000E6E00 + name: Family Table Tennis 3D + updates: [] diff --git a/data/CTR-JPP/icon.jpg b/data/CTR-JPP/icon.jpg new file mode 100644 index 0000000..8286e02 Binary files /dev/null and b/data/CTR-JPP/icon.jpg differ diff --git a/data/CTR-JPR/art.jpg b/data/CTR-JPR/art.jpg new file mode 100644 index 0000000..cee3e2b Binary files /dev/null and b/data/CTR-JPR/art.jpg differ diff --git a/data/CTR-JPR/data.yml b/data/CTR-JPR/data.yml new file mode 100644 index 0000000..59da79e --- /dev/null +++ b/data/CTR-JPR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117500 + name: 'Vacation Adventures: Park Ranger' + updates: [] diff --git a/data/CTR-JPR/icon.jpg b/data/CTR-JPR/icon.jpg new file mode 100644 index 0000000..4753687 Binary files /dev/null and b/data/CTR-JPR/icon.jpg differ diff --git a/data/CTR-JPS/art.jpg b/data/CTR-JPS/art.jpg new file mode 100644 index 0000000..67256e6 Binary files /dev/null and b/data/CTR-JPS/art.jpg differ diff --git a/data/CTR-JPS/data.yml b/data/CTR-JPS/data.yml new file mode 100644 index 0000000..5a5c323 --- /dev/null +++ b/data/CTR-JPS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000114100 + name: プチノベル「収穫の十二月」 + updates: [] diff --git a/data/CTR-JPS/icon.jpg b/data/CTR-JPS/icon.jpg new file mode 100644 index 0000000..b9229e7 Binary files /dev/null and b/data/CTR-JPS/icon.jpg differ diff --git a/data/CTR-JPU/art.jpg b/data/CTR-JPU/art.jpg new file mode 100644 index 0000000..13fc30b Binary files /dev/null and b/data/CTR-JPU/art.jpg differ diff --git a/data/CTR-JPU/data.yml b/data/CTR-JPU/data.yml new file mode 100644 index 0000000..42e298b --- /dev/null +++ b/data/CTR-JPU/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016AF00 + name: Steel Empire + updates: [] +- regions: + - JP + id: 000400000012A500 + name: 鋼鉄帝国 STEEL EMPIRE + updates: [] +- regions: + - KR + id: 000400000017F700 + name: 강철제국 + updates: [] +- regions: + - US + id: 000400000013CD00 + name: Steel Empire + updates: [] diff --git a/data/CTR-JPU/icon.jpg b/data/CTR-JPU/icon.jpg new file mode 100644 index 0000000..e3c6cf1 Binary files /dev/null and b/data/CTR-JPU/icon.jpg differ diff --git a/data/CTR-JPX/art.jpg b/data/CTR-JPX/art.jpg new file mode 100644 index 0000000..2fa44c2 Binary files /dev/null and b/data/CTR-JPX/art.jpg differ diff --git a/data/CTR-JPX/data.yml b/data/CTR-JPX/data.yml new file mode 100644 index 0000000..e8ab9e8 --- /dev/null +++ b/data/CTR-JPX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B1A00 + name: PIX3D + updates: [] +- regions: + - JP + id: 00040000000D8100 + name: ピックス3D + updates: [] +- regions: + - US + id: 00040000000AFA00 + name: PIX3D + updates: [] diff --git a/data/CTR-JPX/icon.jpg b/data/CTR-JPX/icon.jpg new file mode 100644 index 0000000..a1cb496 Binary files /dev/null and b/data/CTR-JPX/icon.jpg differ diff --git a/data/CTR-JQ7/art.jpg b/data/CTR-JQ7/art.jpg new file mode 100644 index 0000000..2a622da Binary files /dev/null and b/data/CTR-JQ7/art.jpg differ diff --git a/data/CTR-JQ7/data.yml b/data/CTR-JQ7/data.yml new file mode 100644 index 0000000..e433993 --- /dev/null +++ b/data/CTR-JQ7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000124300 + name: Cubit The Hardcore Platformer Robot + updates: [] +- regions: + - JP + id: 0004000000144900 + name: CUBIT ワンボタン ランニング アクション + updates: [] +- regions: + - US + id: 0004000000112300 + name: Cubit The Hardcore Platformer Robot + updates: [] diff --git a/data/CTR-JQ7/icon.jpg b/data/CTR-JQ7/icon.jpg new file mode 100644 index 0000000..5ebc199 Binary files /dev/null and b/data/CTR-JQ7/icon.jpg differ diff --git a/data/CTR-JQ9/art.jpg b/data/CTR-JQ9/art.jpg new file mode 100644 index 0000000..72cff92 Binary files /dev/null and b/data/CTR-JQ9/art.jpg differ diff --git a/data/CTR-JQ9/data.yml b/data/CTR-JQ9/data.yml new file mode 100644 index 0000000..afc2d2e --- /dev/null +++ b/data/CTR-JQ9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000000FE400 + name: Boxzle + updates: [] diff --git a/data/CTR-JQ9/icon.jpg b/data/CTR-JQ9/icon.jpg new file mode 100644 index 0000000..6a9fde6 Binary files /dev/null and b/data/CTR-JQ9/icon.jpg differ diff --git a/data/CTR-JR3/art.jpg b/data/CTR-JR3/art.jpg new file mode 100644 index 0000000..7a9bdbe Binary files /dev/null and b/data/CTR-JR3/art.jpg differ diff --git a/data/CTR-JR3/data.yml b/data/CTR-JR3/data.yml new file mode 100644 index 0000000..295d27c --- /dev/null +++ b/data/CTR-JR3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FCC00 + name: Rabi Laby 3 + updates: [] +- regions: + - JP + id: 0004000000077F00 + name: ラビ×ラビ えぴそーど3 + updates: [] diff --git a/data/CTR-JR3/icon.jpg b/data/CTR-JR3/icon.jpg new file mode 100644 index 0000000..3ffd20e Binary files /dev/null and b/data/CTR-JR3/icon.jpg differ diff --git a/data/CTR-JR8/art.jpg b/data/CTR-JR8/art.jpg new file mode 100644 index 0000000..fa23edf Binary files /dev/null and b/data/CTR-JR8/art.jpg differ diff --git a/data/CTR-JR8/data.yml b/data/CTR-JR8/data.yml new file mode 100644 index 0000000..30b08b1 --- /dev/null +++ b/data/CTR-JR8/data.yml @@ -0,0 +1,13 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000126000 + name: 'Pokémon™ Link: Battle!' + updates: [] +- regions: + - JP + - US + id: 000400000011C600 + name: Pokémon™ Battle Trozei + updates: [] diff --git a/data/CTR-JR8/icon.jpg b/data/CTR-JR8/icon.jpg new file mode 100644 index 0000000..464e38b Binary files /dev/null and b/data/CTR-JR8/icon.jpg differ diff --git a/data/CTR-JRA/art.jpg b/data/CTR-JRA/art.jpg new file mode 100644 index 0000000..e34d77a Binary files /dev/null and b/data/CTR-JRA/art.jpg differ diff --git a/data/CTR-JRA/data.yml b/data/CTR-JRA/data.yml new file mode 100644 index 0000000..1bf78ba --- /dev/null +++ b/data/CTR-JRA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DE400 + name: 3D Streets of Rage + updates: [] +- regions: + - JP + id: 00040000000EE900 + name: 3D ベア・ナックル 怒りの鉄拳 + updates: [] +- regions: + - US + id: 00040000000DA100 + name: 3D Streets of Rage + updates: [] diff --git a/data/CTR-JRA/icon.jpg b/data/CTR-JRA/icon.jpg new file mode 100644 index 0000000..9a3b3e7 Binary files /dev/null and b/data/CTR-JRA/icon.jpg differ diff --git a/data/CTR-JRF/art.jpg b/data/CTR-JRF/art.jpg new file mode 100644 index 0000000..8ecc0f5 Binary files /dev/null and b/data/CTR-JRF/art.jpg differ diff --git a/data/CTR-JRF/data.yml b/data/CTR-JRF/data.yml new file mode 100644 index 0000000..ec98215 --- /dev/null +++ b/data/CTR-JRF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C5200 + name: Reel Fishing® 3D Paradise Mini + updates: [] +- regions: + - US + id: 00040000000C2000 + name: Reel Fishing® 3D Paradise Mini + updates: [] diff --git a/data/CTR-JRF/icon.jpg b/data/CTR-JRF/icon.jpg new file mode 100644 index 0000000..da22d78 Binary files /dev/null and b/data/CTR-JRF/icon.jpg differ diff --git a/data/CTR-JRG/art.jpg b/data/CTR-JRG/art.jpg new file mode 100644 index 0000000..3cd3ae0 Binary files /dev/null and b/data/CTR-JRG/art.jpg differ diff --git a/data/CTR-JRG/data.yml b/data/CTR-JRG/data.yml new file mode 100644 index 0000000..c73cc8f --- /dev/null +++ b/data/CTR-JRG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B7400 + name: Rage of the Gladiator + updates: [] +- regions: + - US + id: 00040000000AAC00 + name: Rage of the Gladiator + updates: [] diff --git a/data/CTR-JRG/icon.jpg b/data/CTR-JRG/icon.jpg new file mode 100644 index 0000000..70d49b4 Binary files /dev/null and b/data/CTR-JRG/icon.jpg differ diff --git a/data/CTR-JRJ/art.jpg b/data/CTR-JRJ/art.jpg new file mode 100644 index 0000000..be873b5 Binary files /dev/null and b/data/CTR-JRJ/art.jpg differ diff --git a/data/CTR-JRJ/data.yml b/data/CTR-JRJ/data.yml new file mode 100644 index 0000000..8e470e1 --- /dev/null +++ b/data/CTR-JRJ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145200 + name: オーノーオデッセイ ~地球からの脱出~ + updates: [] +- regions: + - US + id: 0004000000107500 + name: Ohno Odyssey + updates: [] diff --git a/data/CTR-JRJ/icon.jpg b/data/CTR-JRJ/icon.jpg new file mode 100644 index 0000000..105f0bc Binary files /dev/null and b/data/CTR-JRJ/icon.jpg differ diff --git a/data/CTR-JRK/art.jpg b/data/CTR-JRK/art.jpg new file mode 100644 index 0000000..ccb921b Binary files /dev/null and b/data/CTR-JRK/art.jpg differ diff --git a/data/CTR-JRK/data.yml b/data/CTR-JRK/data.yml new file mode 100644 index 0000000..0d295d7 --- /dev/null +++ b/data/CTR-JRK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000BFC00 + name: りき伝説 + updates: [] diff --git a/data/CTR-JRK/icon.jpg b/data/CTR-JRK/icon.jpg new file mode 100644 index 0000000..47a717b Binary files /dev/null and b/data/CTR-JRK/icon.jpg differ diff --git a/data/CTR-JRN/art.jpg b/data/CTR-JRN/art.jpg new file mode 100644 index 0000000..0effec9 Binary files /dev/null and b/data/CTR-JRN/art.jpg differ diff --git a/data/CTR-JRN/data.yml b/data/CTR-JRN/data.yml new file mode 100644 index 0000000..287d8cf --- /dev/null +++ b/data/CTR-JRN/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000108100 + name: アロー・オブ・ラピュタ 影なし先生とキロンの封鍵 + updates: + - id: 0004000E00108100 + name: 更新データ Ver. 1.1 アロー・オブ・ラピュタ diff --git a/data/CTR-JRN/icon.jpg b/data/CTR-JRN/icon.jpg new file mode 100644 index 0000000..3fe4e12 Binary files /dev/null and b/data/CTR-JRN/icon.jpg differ diff --git a/data/CTR-JRQ/art.jpg b/data/CTR-JRQ/art.jpg new file mode 100644 index 0000000..481c619 Binary files /dev/null and b/data/CTR-JRQ/art.jpg differ diff --git a/data/CTR-JRQ/data.yml b/data/CTR-JRQ/data.yml new file mode 100644 index 0000000..8c2d820 --- /dev/null +++ b/data/CTR-JRQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E5A00 + name: Robot Rescue 3D + updates: [] +- regions: + - JP + id: 00040000000D8D00 + name: ロボットレスキュー3D + updates: [] +- regions: + - US + id: 00040000000D0500 + name: Robot Rescue 3D + updates: [] diff --git a/data/CTR-JRQ/icon.jpg b/data/CTR-JRQ/icon.jpg new file mode 100644 index 0000000..aed5836 Binary files /dev/null and b/data/CTR-JRQ/icon.jpg differ diff --git a/data/CTR-JRR/art.jpg b/data/CTR-JRR/art.jpg new file mode 100644 index 0000000..1e74705 Binary files /dev/null and b/data/CTR-JRR/art.jpg differ diff --git a/data/CTR-JRR/data.yml b/data/CTR-JRR/data.yml new file mode 100644 index 0000000..d15854f --- /dev/null +++ b/data/CTR-JRR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E8200 + name: Groove Heaven + updates: [] +- regions: + - JP + id: 00040000000C9600 + name: peakvox リリリズム + updates: [] +- regions: + - US + id: 00040000000E6600 + name: Groove Heaven + updates: [] diff --git a/data/CTR-JRR/icon.jpg b/data/CTR-JRR/icon.jpg new file mode 100644 index 0000000..f9d4b9c Binary files /dev/null and b/data/CTR-JRR/icon.jpg differ diff --git a/data/CTR-JRS/art.jpg b/data/CTR-JRS/art.jpg new file mode 100644 index 0000000..634327f Binary files /dev/null and b/data/CTR-JRS/art.jpg differ diff --git a/data/CTR-JRS/data.yml b/data/CTR-JRS/data.yml new file mode 100644 index 0000000..79fffc4 --- /dev/null +++ b/data/CTR-JRS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000079600 + name: 'Jett Rocket II: The Wrath of Taikai' + updates: [] +- regions: + - JP + id: 000400000011EE00 + name: ジェットロケット プラネットアドベンチャー + updates: [] +- regions: + - US + id: 0004000000087100 + name: 'Jett Rocket II: The Wrath of Taikai' + updates: [] diff --git a/data/CTR-JRS/icon.jpg b/data/CTR-JRS/icon.jpg new file mode 100644 index 0000000..e3ecd5b Binary files /dev/null and b/data/CTR-JRS/icon.jpg differ diff --git a/data/CTR-JRU/art.jpg b/data/CTR-JRU/art.jpg new file mode 100644 index 0000000..c374e93 Binary files /dev/null and b/data/CTR-JRU/art.jpg differ diff --git a/data/CTR-JRU/data.yml b/data/CTR-JRU/data.yml new file mode 100644 index 0000000..71426ce --- /dev/null +++ b/data/CTR-JRU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FD100 + name: Ocean Runner + updates: [] +- regions: + - JP + id: 000400000015E000 + name: オーシャンランナー + updates: [] +- regions: + - US + id: 00040000000F6B00 + name: Ocean Runner + updates: [] diff --git a/data/CTR-JRU/icon.jpg b/data/CTR-JRU/icon.jpg new file mode 100644 index 0000000..b2d9039 Binary files /dev/null and b/data/CTR-JRU/icon.jpg differ diff --git a/data/CTR-JRW/art.jpg b/data/CTR-JRW/art.jpg new file mode 100644 index 0000000..c2a6e6b Binary files /dev/null and b/data/CTR-JRW/art.jpg differ diff --git a/data/CTR-JRW/data.yml b/data/CTR-JRW/data.yml new file mode 100644 index 0000000..ec7c59c --- /dev/null +++ b/data/CTR-JRW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000149900 + name: KORG DSN-12 + updates: [] +- regions: + - JP + id: 0004000000129F00 + name: KORG DSN-12 + updates: [] +- regions: + - US + id: 0004000000149E00 + name: KORG DSN-12 + updates: [] diff --git a/data/CTR-JRW/icon.jpg b/data/CTR-JRW/icon.jpg new file mode 100644 index 0000000..2a28413 Binary files /dev/null and b/data/CTR-JRW/icon.jpg differ diff --git a/data/CTR-JRX/art.jpg b/data/CTR-JRX/art.jpg new file mode 100644 index 0000000..1602281 Binary files /dev/null and b/data/CTR-JRX/art.jpg differ diff --git a/data/CTR-JRX/data.yml b/data/CTR-JRX/data.yml new file mode 100644 index 0000000..179218c --- /dev/null +++ b/data/CTR-JRX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000108D00 + name: 'Retro City Rampage: DX' + updates: [] +- regions: + - US + id: 000400000010D200 + name: 'Retro City Rampage™: DX' + updates: [] diff --git a/data/CTR-JRX/icon.jpg b/data/CTR-JRX/icon.jpg new file mode 100644 index 0000000..58bcae4 Binary files /dev/null and b/data/CTR-JRX/icon.jpg differ diff --git a/data/CTR-JRY/art.jpg b/data/CTR-JRY/art.jpg new file mode 100644 index 0000000..89d8347 Binary files /dev/null and b/data/CTR-JRY/art.jpg differ diff --git a/data/CTR-JRY/data.yml b/data/CTR-JRY/data.yml new file mode 100644 index 0000000..fc59d4c --- /dev/null +++ b/data/CTR-JRY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117900 + name: Quell Reflect + updates: [] +- regions: + - JP + id: 000400000013FD00 + name: Shizuku + updates: [] +- regions: + - US + id: 0004000000119700 + name: Quell Reflect + updates: [] diff --git a/data/CTR-JRY/icon.jpg b/data/CTR-JRY/icon.jpg new file mode 100644 index 0000000..e3c8410 Binary files /dev/null and b/data/CTR-JRY/icon.jpg differ diff --git a/data/CTR-JRZ/art.jpg b/data/CTR-JRZ/art.jpg new file mode 100644 index 0000000..720d71c Binary files /dev/null and b/data/CTR-JRZ/art.jpg differ diff --git a/data/CTR-JRZ/data.yml b/data/CTR-JRZ/data.yml new file mode 100644 index 0000000..3f90251 --- /dev/null +++ b/data/CTR-JRZ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B6D00 + name: 燐光のランツェ + updates: + - id: 0004000E000B6D00 + name: 更新データ Ver. 1.1 燐光のランツェ diff --git a/data/CTR-JRZ/icon.jpg b/data/CTR-JRZ/icon.jpg new file mode 100644 index 0000000..9c019d6 Binary files /dev/null and b/data/CTR-JRZ/icon.jpg differ diff --git a/data/CTR-JS2/art.jpg b/data/CTR-JS2/art.jpg new file mode 100644 index 0000000..9b275aa Binary files /dev/null and b/data/CTR-JS2/art.jpg differ diff --git a/data/CTR-JS2/data.yml b/data/CTR-JS2/data.yml new file mode 100644 index 0000000..ec00fcb --- /dev/null +++ b/data/CTR-JS2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000CEF00 + name: Swords & Soldiers 3D + updates: [] +- regions: + - JP + id: 00040000000E8F00 + name: SWORDS & SOLDIERS 3D + updates: [] +- regions: + - US + id: 00040000000D0600 + name: Swords & Soldiers 3D + updates: [] diff --git a/data/CTR-JS2/icon.jpg b/data/CTR-JS2/icon.jpg new file mode 100644 index 0000000..7b4aab9 Binary files /dev/null and b/data/CTR-JS2/icon.jpg differ diff --git a/data/CTR-JS3/art.jpg b/data/CTR-JS3/art.jpg new file mode 100644 index 0000000..dc90f99 Binary files /dev/null and b/data/CTR-JS3/art.jpg differ diff --git a/data/CTR-JS3/data.yml b/data/CTR-JS3/data.yml new file mode 100644 index 0000000..e6753fa --- /dev/null +++ b/data/CTR-JS3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B8C00 + name: The Phantom Thief Stina and 30 Jewels + updates: [] +- regions: + - JP + id: 000400000006DF00 + name: 怪盗スティナと30の宝石 + updates: [] diff --git a/data/CTR-JS3/icon.jpg b/data/CTR-JS3/icon.jpg new file mode 100644 index 0000000..6676e6c Binary files /dev/null and b/data/CTR-JS3/icon.jpg differ diff --git a/data/CTR-JS4/art.jpg b/data/CTR-JS4/art.jpg new file mode 100644 index 0000000..7dd99d9 Binary files /dev/null and b/data/CTR-JS4/art.jpg differ diff --git a/data/CTR-JS4/data.yml b/data/CTR-JS4/data.yml new file mode 100644 index 0000000..fb7c676 --- /dev/null +++ b/data/CTR-JS4/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DA200 + name: 'BUGS vs. TANKS!™ ' + updates: [] +- regions: + - JP + id: 00040000000D0F00 + name: 虫けら戦車 + updates: [] +- regions: + - US + id: 00040000000D9800 + name: 'BUGS vs. TANKS!™ ' + updates: [] diff --git a/data/CTR-JS4/icon.jpg b/data/CTR-JS4/icon.jpg new file mode 100644 index 0000000..8f95df5 Binary files /dev/null and b/data/CTR-JS4/icon.jpg differ diff --git a/data/CTR-JS5/art.jpg b/data/CTR-JS5/art.jpg new file mode 100644 index 0000000..a00903e Binary files /dev/null and b/data/CTR-JS5/art.jpg differ diff --git a/data/CTR-JS5/data.yml b/data/CTR-JS5/data.yml new file mode 100644 index 0000000..1e0b7fa --- /dev/null +++ b/data/CTR-JS5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000103F00 + name: '@SIMPLE DLシリーズ Vol.26 THE テニス' + updates: [] diff --git a/data/CTR-JS5/icon.jpg b/data/CTR-JS5/icon.jpg new file mode 100644 index 0000000..6fcaac6 Binary files /dev/null and b/data/CTR-JS5/icon.jpg differ diff --git a/data/CTR-JS7/art.jpg b/data/CTR-JS7/art.jpg new file mode 100644 index 0000000..3fc94c1 Binary files /dev/null and b/data/CTR-JS7/art.jpg differ diff --git a/data/CTR-JS7/data.yml b/data/CTR-JS7/data.yml new file mode 100644 index 0000000..de26951 --- /dev/null +++ b/data/CTR-JS7/data.yml @@ -0,0 +1,10 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - KR + - US + id: 00040000000C7300 + name: Save Data Transfer Tool + updates: [] diff --git a/data/CTR-JS7/icon.jpg b/data/CTR-JS7/icon.jpg new file mode 100644 index 0000000..df52a59 Binary files /dev/null and b/data/CTR-JS7/icon.jpg differ diff --git a/data/CTR-JS9/art.jpg b/data/CTR-JS9/art.jpg new file mode 100644 index 0000000..3c4a529 Binary files /dev/null and b/data/CTR-JS9/art.jpg differ diff --git a/data/CTR-JS9/data.yml b/data/CTR-JS9/data.yml new file mode 100644 index 0000000..aa1cbca --- /dev/null +++ b/data/CTR-JS9/data.yml @@ -0,0 +1,7 @@ +platform: 83 +releases: +- regions: + - JP + id: 00040000000A2700 + name: モンスターハンター3(トライ)G データ修正プログラム + updates: [] diff --git a/data/CTR-JS9/icon.jpg b/data/CTR-JS9/icon.jpg new file mode 100644 index 0000000..a26a2fc Binary files /dev/null and b/data/CTR-JS9/icon.jpg differ diff --git a/data/CTR-JSA/art.jpg b/data/CTR-JSA/art.jpg new file mode 100644 index 0000000..849eb71 Binary files /dev/null and b/data/CTR-JSA/art.jpg differ diff --git a/data/CTR-JSA/data.yml b/data/CTR-JSA/data.yml new file mode 100644 index 0000000..080fef0 --- /dev/null +++ b/data/CTR-JSA/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010AF00 + name: Shantae and the Pirate's Curse + updates: + - id: 0004000E0010AF00 + name: Shantae and the Pirate's Curse - Update +- regions: + - US + id: 00040000000C2900 + name: Shantae and the Pirate's Curse + updates: + - id: 0004000E000C2900 + name: Shantae and the Pirate's Curse Update Ver. 02.02 diff --git a/data/CTR-JSA/icon.jpg b/data/CTR-JSA/icon.jpg new file mode 100644 index 0000000..f3d0aea Binary files /dev/null and b/data/CTR-JSA/icon.jpg differ diff --git a/data/CTR-JSC/art.jpg b/data/CTR-JSC/art.jpg new file mode 100644 index 0000000..dee5762 Binary files /dev/null and b/data/CTR-JSC/art.jpg differ diff --git a/data/CTR-JSC/data.yml b/data/CTR-JSC/data.yml new file mode 100644 index 0000000..82286ac --- /dev/null +++ b/data/CTR-JSC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B6800 + name: クルりんスッシー + updates: [] diff --git a/data/CTR-JSC/icon.jpg b/data/CTR-JSC/icon.jpg new file mode 100644 index 0000000..1c9ef4f Binary files /dev/null and b/data/CTR-JSC/icon.jpg differ diff --git a/data/CTR-JSE/art.jpg b/data/CTR-JSE/art.jpg new file mode 100644 index 0000000..af4f35e Binary files /dev/null and b/data/CTR-JSE/art.jpg differ diff --git a/data/CTR-JSE/data.yml b/data/CTR-JSE/data.yml new file mode 100644 index 0000000..4474724 --- /dev/null +++ b/data/CTR-JSE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FEE00 + name: Best of Board Games - Solitaire + updates: [] +- regions: + - US + id: 0004000000101B00 + name: Best of Board Games - Solitaire + updates: [] diff --git a/data/CTR-JSE/icon.jpg b/data/CTR-JSE/icon.jpg new file mode 100644 index 0000000..da650cd Binary files /dev/null and b/data/CTR-JSE/icon.jpg differ diff --git a/data/CTR-JSG/art.jpg b/data/CTR-JSG/art.jpg new file mode 100644 index 0000000..907fbc2 Binary files /dev/null and b/data/CTR-JSG/art.jpg differ diff --git a/data/CTR-JSG/data.yml b/data/CTR-JSG/data.yml new file mode 100644 index 0000000..2a0c1bf --- /dev/null +++ b/data/CTR-JSG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000AF200 + name: Samurai G™ + updates: [] +- regions: + - US + id: 00040000000AF300 + name: Samurai G™ + updates: [] diff --git a/data/CTR-JSG/icon.jpg b/data/CTR-JSG/icon.jpg new file mode 100644 index 0000000..474fd0a Binary files /dev/null and b/data/CTR-JSG/icon.jpg differ diff --git a/data/CTR-JSH/art.jpg b/data/CTR-JSH/art.jpg new file mode 100644 index 0000000..548db63 Binary files /dev/null and b/data/CTR-JSH/art.jpg differ diff --git a/data/CTR-JSH/data.yml b/data/CTR-JSH/data.yml new file mode 100644 index 0000000..9d16cdb --- /dev/null +++ b/data/CTR-JSH/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C0700 + name: 3D Space Harrier + updates: [] +- regions: + - JP + id: 00040000000C9300 + name: 3D スペースハリアー + updates: [] +- regions: + - US + id: 00040000000C0C00 + name: 3D Space Harrier + updates: [] diff --git a/data/CTR-JSH/icon.jpg b/data/CTR-JSH/icon.jpg new file mode 100644 index 0000000..26018b8 Binary files /dev/null and b/data/CTR-JSH/icon.jpg differ diff --git a/data/CTR-JSJ/art.jpg b/data/CTR-JSJ/art.jpg new file mode 100644 index 0000000..f690b24 Binary files /dev/null and b/data/CTR-JSJ/art.jpg differ diff --git a/data/CTR-JSJ/data.yml b/data/CTR-JSJ/data.yml new file mode 100644 index 0000000..ddc6030 --- /dev/null +++ b/data/CTR-JSJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000091800 + name: Sweet Memories Blackjack + updates: [] +- regions: + - JP + id: 00040000000AB400 + name: 「いつでも一緒に。」BLACKJACK + updates: [] +- regions: + - US + id: 0004000000092700 + name: Sweet Memories - Blackjack + updates: [] diff --git a/data/CTR-JSJ/icon.jpg b/data/CTR-JSJ/icon.jpg new file mode 100644 index 0000000..7d43919 Binary files /dev/null and b/data/CTR-JSJ/icon.jpg differ diff --git a/data/CTR-JSK/art.jpg b/data/CTR-JSK/art.jpg new file mode 100644 index 0000000..4224d01 Binary files /dev/null and b/data/CTR-JSK/art.jpg differ diff --git a/data/CTR-JSK/data.yml b/data/CTR-JSK/data.yml new file mode 100644 index 0000000..d7a4c8c --- /dev/null +++ b/data/CTR-JSK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013D300 + name: 1001 Spikes + updates: [] +- regions: + - JP + id: 0004000000180C00 + name: 1001 Spikes + updates: [] +- regions: + - US + id: 000400000008FE00 + name: 1001 Spikes + updates: [] diff --git a/data/CTR-JSK/icon.jpg b/data/CTR-JSK/icon.jpg new file mode 100644 index 0000000..240bcb8 Binary files /dev/null and b/data/CTR-JSK/icon.jpg differ diff --git a/data/CTR-JSL/art.jpg b/data/CTR-JSL/art.jpg new file mode 100644 index 0000000..0407991 Binary files /dev/null and b/data/CTR-JSL/art.jpg differ diff --git a/data/CTR-JSL/data.yml b/data/CTR-JSL/data.yml new file mode 100644 index 0000000..b1bdab5 --- /dev/null +++ b/data/CTR-JSL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000008AA00 + name: 3D Solitaire + updates: [] +- regions: + - US + id: 000400000008C100 + name: 3D Solitaire + updates: [] diff --git a/data/CTR-JSL/icon.jpg b/data/CTR-JSL/icon.jpg new file mode 100644 index 0000000..397f6d5 Binary files /dev/null and b/data/CTR-JSL/icon.jpg differ diff --git a/data/CTR-JSM/art.jpg b/data/CTR-JSM/art.jpg new file mode 100644 index 0000000..030d831 Binary files /dev/null and b/data/CTR-JSM/art.jpg differ diff --git a/data/CTR-JSM/data.yml b/data/CTR-JSM/data.yml new file mode 100644 index 0000000..9d3b6f3 --- /dev/null +++ b/data/CTR-JSM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000078000 + name: 'ARC STYLE: シンプル麻雀3D' + updates: [] diff --git a/data/CTR-JSM/icon.jpg b/data/CTR-JSM/icon.jpg new file mode 100644 index 0000000..deecf6b Binary files /dev/null and b/data/CTR-JSM/icon.jpg differ diff --git a/data/CTR-JSN/art.jpg b/data/CTR-JSN/art.jpg new file mode 100644 index 0000000..7d1e6fd Binary files /dev/null and b/data/CTR-JSN/art.jpg differ diff --git a/data/CTR-JSN/data.yml b/data/CTR-JSN/data.yml new file mode 100644 index 0000000..1d0d73b --- /dev/null +++ b/data/CTR-JSN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000DE200 + name: 3D Shinobi III + updates: [] +- regions: + - JP + id: 00040000000EE800 + name: 3D ザ・スーパー忍Ⅱ + updates: [] +- regions: + - US + id: 00040000000D9F00 + name: '3D Shinobi III: Return of the Ninja Master' + updates: [] diff --git a/data/CTR-JSN/icon.jpg b/data/CTR-JSN/icon.jpg new file mode 100644 index 0000000..089f532 Binary files /dev/null and b/data/CTR-JSN/icon.jpg differ diff --git a/data/CTR-JSP/art.jpg b/data/CTR-JSP/art.jpg new file mode 100644 index 0000000..2d8b977 Binary files /dev/null and b/data/CTR-JSP/art.jpg differ diff --git a/data/CTR-JSP/data.yml b/data/CTR-JSP/data.yml new file mode 100644 index 0000000..ac4b710 --- /dev/null +++ b/data/CTR-JSP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015B500 + name: Ninja Usagimaru - The Gem of Blessings - + updates: [] +- regions: + - JP + id: 0004000000089000 + name: 疾風のうさぎ丸 -恵みの珠と封魔の印- + updates: [] +- regions: + - US + id: 000400000015CA00 + name: Ninja Usagimaru - The Gem of Blessings - + updates: [] diff --git a/data/CTR-JSP/icon.jpg b/data/CTR-JSP/icon.jpg new file mode 100644 index 0000000..c188c16 Binary files /dev/null and b/data/CTR-JSP/icon.jpg differ diff --git a/data/CTR-JSR/art.jpg b/data/CTR-JSR/art.jpg new file mode 100644 index 0000000..557d25c Binary files /dev/null and b/data/CTR-JSR/art.jpg differ diff --git a/data/CTR-JSR/data.yml b/data/CTR-JSR/data.yml new file mode 100644 index 0000000..26535e9 --- /dev/null +++ b/data/CTR-JSR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000116300 + name: 'Banana Bliss: Jungle Puzzles' + updates: [] +- regions: + - JP + id: 00040000000D4500 + name: スイートランデブー さるっぱ + updates: [] +- regions: + - US + id: 0004000000116B00 + name: 'Banana Bliss: Jungle Puzzles' + updates: [] diff --git a/data/CTR-JSR/icon.jpg b/data/CTR-JSR/icon.jpg new file mode 100644 index 0000000..f279e95 Binary files /dev/null and b/data/CTR-JSR/icon.jpg differ diff --git a/data/CTR-JSS/art.jpg b/data/CTR-JSS/art.jpg new file mode 100644 index 0000000..904c104 Binary files /dev/null and b/data/CTR-JSS/art.jpg differ diff --git a/data/CTR-JSS/data.yml b/data/CTR-JSS/data.yml new file mode 100644 index 0000000..0748e32 --- /dev/null +++ b/data/CTR-JSS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000093100 + name: Samurai Sword Destiny™ + updates: [] +- regions: + - US + id: 000400000007FB00 + name: Samurai Sword Destiny™ + updates: [] diff --git a/data/CTR-JSS/icon.jpg b/data/CTR-JSS/icon.jpg new file mode 100644 index 0000000..0e9bde8 Binary files /dev/null and b/data/CTR-JSS/icon.jpg differ diff --git a/data/CTR-JST/art.jpg b/data/CTR-JST/art.jpg new file mode 100644 index 0000000..6b77bea Binary files /dev/null and b/data/CTR-JST/art.jpg differ diff --git a/data/CTR-JST/data.yml b/data/CTR-JST/data.yml new file mode 100644 index 0000000..48118ba --- /dev/null +++ b/data/CTR-JST/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000ED400 + name: SteamWorld Dig + updates: [] +- regions: + - JP + id: 0004000000111D00 + name: スチームワールド ディグ + updates: [] +- regions: + - US + id: 00040000000B7C00 + name: SteamWorld Dig + updates: [] diff --git a/data/CTR-JST/icon.jpg b/data/CTR-JST/icon.jpg new file mode 100644 index 0000000..0bd564b Binary files /dev/null and b/data/CTR-JST/icon.jpg differ diff --git a/data/CTR-JSU/art.jpg b/data/CTR-JSU/art.jpg new file mode 100644 index 0000000..24bed72 Binary files /dev/null and b/data/CTR-JSU/art.jpg differ diff --git a/data/CTR-JSU/data.yml b/data/CTR-JSU/data.yml new file mode 100644 index 0000000..b76d0a7 --- /dev/null +++ b/data/CTR-JSU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000009CB00 + name: Football Up 3D + updates: [] +- regions: + - US + id: 0004000000087E00 + name: Soccer Up 3D + updates: [] diff --git a/data/CTR-JSU/icon.jpg b/data/CTR-JSU/icon.jpg new file mode 100644 index 0000000..a208408 Binary files /dev/null and b/data/CTR-JSU/icon.jpg differ diff --git a/data/CTR-JSW/art.jpg b/data/CTR-JSW/art.jpg new file mode 100644 index 0000000..aed913a Binary files /dev/null and b/data/CTR-JSW/art.jpg differ diff --git a/data/CTR-JSW/data.yml b/data/CTR-JSW/data.yml new file mode 100644 index 0000000..602054e --- /dev/null +++ b/data/CTR-JSW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D4A00 + name: Star Wars Pinball + updates: [] +- regions: + - US + id: 00040000000E6800 + name: Star Wars Pinball + updates: [] diff --git a/data/CTR-JSW/icon.jpg b/data/CTR-JSW/icon.jpg new file mode 100644 index 0000000..116f233 Binary files /dev/null and b/data/CTR-JSW/icon.jpg differ diff --git a/data/CTR-JSX/art.jpg b/data/CTR-JSX/art.jpg new file mode 100644 index 0000000..a93d69e Binary files /dev/null and b/data/CTR-JSX/art.jpg differ diff --git a/data/CTR-JSX/data.yml b/data/CTR-JSX/data.yml new file mode 100644 index 0000000..1099048 --- /dev/null +++ b/data/CTR-JSX/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000A7D00 + name: SpeedX 3D + updates: [] +- regions: + - JP + id: 00040000000C9F00 + name: スピードX3D + updates: [] +- regions: + - KR + id: 00040000000CD800 + name: SpeedX 3D + updates: [] +- regions: + - US + id: 0004000000087A00 + name: SpeedX 3D + updates: [] diff --git a/data/CTR-JSX/icon.jpg b/data/CTR-JSX/icon.jpg new file mode 100644 index 0000000..a53efc9 Binary files /dev/null and b/data/CTR-JSX/icon.jpg differ diff --git a/data/CTR-JSY/art.jpg b/data/CTR-JSY/art.jpg new file mode 100644 index 0000000..3380e95 Binary files /dev/null and b/data/CTR-JSY/art.jpg differ diff --git a/data/CTR-JSY/data.yml b/data/CTR-JSY/data.yml new file mode 100644 index 0000000..ba7c5a4 --- /dev/null +++ b/data/CTR-JSY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000EA800 + name: SpeedX 3D Hyper Edition + updates: [] +- regions: + - JP + id: 0004000000110800 + name: スピードX3D ハイパーエディション + updates: [] +- regions: + - US + id: 00040000000E6D00 + name: SpeedX 3D Hyper Edition + updates: [] diff --git a/data/CTR-JSY/icon.jpg b/data/CTR-JSY/icon.jpg new file mode 100644 index 0000000..70bf7e1 Binary files /dev/null and b/data/CTR-JSY/icon.jpg differ diff --git a/data/CTR-JSZ/art.jpg b/data/CTR-JSZ/art.jpg new file mode 100644 index 0000000..62da80c Binary files /dev/null and b/data/CTR-JSZ/art.jpg differ diff --git a/data/CTR-JSZ/data.yml b/data/CTR-JSZ/data.yml new file mode 100644 index 0000000..57cf6f2 --- /dev/null +++ b/data/CTR-JSZ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000FB800 + name: SWORDS & DARKNESS + updates: [] +- regions: + - US + id: 0004000000146200 + name: SWORDS & DARKNESS + updates: [] diff --git a/data/CTR-JSZ/icon.jpg b/data/CTR-JSZ/icon.jpg new file mode 100644 index 0000000..dc2504c Binary files /dev/null and b/data/CTR-JSZ/icon.jpg differ diff --git a/data/CTR-JT2/art.jpg b/data/CTR-JT2/art.jpg new file mode 100644 index 0000000..4ed97d6 Binary files /dev/null and b/data/CTR-JT2/art.jpg differ diff --git a/data/CTR-JT2/data.yml b/data/CTR-JT2/data.yml new file mode 100644 index 0000000..0ddc655 --- /dev/null +++ b/data/CTR-JT2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FCB00 + name: Touch Battle Tank 3D 2 + updates: [] +- regions: + - JP + id: 00040000000B6A00 + name: タッチバトル戦車3D-2 + updates: [] diff --git a/data/CTR-JT2/icon.jpg b/data/CTR-JT2/icon.jpg new file mode 100644 index 0000000..8fcc9a8 Binary files /dev/null and b/data/CTR-JT2/icon.jpg differ diff --git a/data/CTR-JT4/art.jpg b/data/CTR-JT4/art.jpg new file mode 100644 index 0000000..6ebbc38 Binary files /dev/null and b/data/CTR-JT4/art.jpg differ diff --git a/data/CTR-JT4/data.yml b/data/CTR-JT4/data.yml new file mode 100644 index 0000000..15c2631 --- /dev/null +++ b/data/CTR-JT4/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BCE00 + name: 2 Fast 4 Gnomz + updates: [] +- regions: + - JP + id: 00040000000F5200 + name: ゲキヤバランナー + updates: [] +- regions: + - KR + id: 0004000000113C00 + name: GEKIYABA RUNNER + updates: [] +- regions: + - TW + id: 0004000000105C00 + name: 爆走老精靈 + updates: [] +- regions: + - US + id: 0004000000097200 + name: 2 Fast 4 Gnomz + updates: [] diff --git a/data/CTR-JT4/icon.jpg b/data/CTR-JT4/icon.jpg new file mode 100644 index 0000000..ccc0a61 Binary files /dev/null and b/data/CTR-JT4/icon.jpg differ diff --git a/data/CTR-JT5/art.jpg b/data/CTR-JT5/art.jpg new file mode 100644 index 0000000..d42a1b7 Binary files /dev/null and b/data/CTR-JT5/art.jpg differ diff --git a/data/CTR-JT5/data.yml b/data/CTR-JT5/data.yml new file mode 100644 index 0000000..1ce8ec3 --- /dev/null +++ b/data/CTR-JT5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000012A000 + name: タッチバトル忍者 + updates: [] diff --git a/data/CTR-JT5/icon.jpg b/data/CTR-JT5/icon.jpg new file mode 100644 index 0000000..4cc9e8a Binary files /dev/null and b/data/CTR-JT5/icon.jpg differ diff --git a/data/CTR-JT6/art.jpg b/data/CTR-JT6/art.jpg new file mode 100644 index 0000000..7ef9000 Binary files /dev/null and b/data/CTR-JT6/art.jpg differ diff --git a/data/CTR-JT6/data.yml b/data/CTR-JT6/data.yml new file mode 100644 index 0000000..6cf60c1 --- /dev/null +++ b/data/CTR-JT6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000186000 + name: Parascientific Escape Cruise in the Distant Seas + updates: [] +- regions: + - JP + id: 000400000012A100 + name: 超科学脱出ストーリー ~絶海の豪華客船~ + updates: [] +- regions: + - US + id: 0004000000186500 + name: Parascientific Escape Cruise in the Distant Seas + updates: [] diff --git a/data/CTR-JT6/icon.jpg b/data/CTR-JT6/icon.jpg new file mode 100644 index 0000000..782e0c5 Binary files /dev/null and b/data/CTR-JT6/icon.jpg differ diff --git a/data/CTR-JT7/art.jpg b/data/CTR-JT7/art.jpg new file mode 100644 index 0000000..410d7e3 Binary files /dev/null and b/data/CTR-JT7/art.jpg differ diff --git a/data/CTR-JT7/data.yml b/data/CTR-JT7/data.yml new file mode 100644 index 0000000..547bf72 --- /dev/null +++ b/data/CTR-JT7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000158200 + name: 3D Thunder Blade + updates: [] +- regions: + - JP + id: 0004000000128A00 + name: 3D サンダーブレード + updates: [] +- regions: + - US + id: 0004000000158C00 + name: 3D Thunder Blade + updates: [] diff --git a/data/CTR-JT7/icon.jpg b/data/CTR-JT7/icon.jpg new file mode 100644 index 0000000..2483f69 Binary files /dev/null and b/data/CTR-JT7/icon.jpg differ diff --git a/data/CTR-JT8/art.jpg b/data/CTR-JT8/art.jpg new file mode 100644 index 0000000..1c1f45a Binary files /dev/null and b/data/CTR-JT8/art.jpg differ diff --git a/data/CTR-JT8/data.yml b/data/CTR-JT8/data.yml new file mode 100644 index 0000000..b8f4641 --- /dev/null +++ b/data/CTR-JT8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000ED300 + name: Tangram Style + updates: [] +- regions: + - JP + id: 0004000000145100 + name: タングラム×タングラム ~誰もがハマるシルエットパズル~ + updates: [] +- regions: + - US + id: 00040000000EBB00 + name: Tangram Style + updates: [] diff --git a/data/CTR-JT8/icon.jpg b/data/CTR-JT8/icon.jpg new file mode 100644 index 0000000..03d158e Binary files /dev/null and b/data/CTR-JT8/icon.jpg differ diff --git a/data/CTR-JT9/art.jpg b/data/CTR-JT9/art.jpg new file mode 100644 index 0000000..8a0b298 Binary files /dev/null and b/data/CTR-JT9/art.jpg differ diff --git a/data/CTR-JT9/data.yml b/data/CTR-JT9/data.yml new file mode 100644 index 0000000..1b702ef --- /dev/null +++ b/data/CTR-JT9/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000097000 + name: Bird Mania 3D + updates: [] +- regions: + - JP + id: 00040000000CA000 + name: バードマニア3D + updates: [] +- regions: + - KR + id: 00040000000CD700 + name: Bird Mania 3D + updates: [] +- regions: + - US + id: 000400000008C000 + name: Bird Mania 3D + updates: [] diff --git a/data/CTR-JT9/icon.jpg b/data/CTR-JT9/icon.jpg new file mode 100644 index 0000000..b797ef5 Binary files /dev/null and b/data/CTR-JT9/icon.jpg differ diff --git a/data/CTR-JTA/art.jpg b/data/CTR-JTA/art.jpg new file mode 100644 index 0000000..6b2b8d9 Binary files /dev/null and b/data/CTR-JTA/art.jpg differ diff --git a/data/CTR-JTA/data.yml b/data/CTR-JTA/data.yml new file mode 100644 index 0000000..dabfc5b --- /dev/null +++ b/data/CTR-JTA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000104E00 + name: '@SIMPLE DLシリーズ Vol.17 THE オセロ' + updates: [] diff --git a/data/CTR-JTA/icon.jpg b/data/CTR-JTA/icon.jpg new file mode 100644 index 0000000..00f6e91 Binary files /dev/null and b/data/CTR-JTA/icon.jpg differ diff --git a/data/CTR-JTB/art.jpg b/data/CTR-JTB/art.jpg new file mode 100644 index 0000000..0186ea6 Binary files /dev/null and b/data/CTR-JTB/art.jpg differ diff --git a/data/CTR-JTB/data.yml b/data/CTR-JTB/data.yml new file mode 100644 index 0000000..12e52a6 --- /dev/null +++ b/data/CTR-JTB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000B6600 + name: Touch Battle Tank 3D + updates: [] +- regions: + - JP + id: 0004000000071B00 + name: タッチバトル戦車3D + updates: [] diff --git a/data/CTR-JTB/icon.jpg b/data/CTR-JTB/icon.jpg new file mode 100644 index 0000000..a9cdef3 Binary files /dev/null and b/data/CTR-JTB/icon.jpg differ diff --git a/data/CTR-JTD/art.jpg b/data/CTR-JTD/art.jpg new file mode 100644 index 0000000..f71f149 Binary files /dev/null and b/data/CTR-JTD/art.jpg differ diff --git a/data/CTR-JTD/data.yml b/data/CTR-JTD/data.yml new file mode 100644 index 0000000..497e588 --- /dev/null +++ b/data/CTR-JTD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000186100 + name: Toy Defense + updates: [] +- regions: + - US + id: 00040000000FE600 + name: Toy Defense + updates: [] diff --git a/data/CTR-JTD/icon.jpg b/data/CTR-JTD/icon.jpg new file mode 100644 index 0000000..7f8b36d Binary files /dev/null and b/data/CTR-JTD/icon.jpg differ diff --git a/data/CTR-JTE/art.jpg b/data/CTR-JTE/art.jpg new file mode 100644 index 0000000..df8b1cf Binary files /dev/null and b/data/CTR-JTE/art.jpg differ diff --git a/data/CTR-JTE/data.yml b/data/CTR-JTE/data.yml new file mode 100644 index 0000000..c8579eb --- /dev/null +++ b/data/CTR-JTE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000FEF00 + name: Best of Arcade Games - Tetraminos + updates: [] +- regions: + - US + id: 0004000000101800 + name: Best of Arcade Games - Tetraminos + updates: [] diff --git a/data/CTR-JTE/icon.jpg b/data/CTR-JTE/icon.jpg new file mode 100644 index 0000000..ded2b84 Binary files /dev/null and b/data/CTR-JTE/icon.jpg differ diff --git a/data/CTR-JTJ/art.jpg b/data/CTR-JTJ/art.jpg new file mode 100644 index 0000000..b85dee4 Binary files /dev/null and b/data/CTR-JTJ/art.jpg differ diff --git a/data/CTR-JTJ/data.yml b/data/CTR-JTJ/data.yml new file mode 100644 index 0000000..b8af339 --- /dev/null +++ b/data/CTR-JTJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000012A200 + name: あしあとリバーシ くまモンバージョン + updates: [] diff --git a/data/CTR-JTJ/icon.jpg b/data/CTR-JTJ/icon.jpg new file mode 100644 index 0000000..c683e51 Binary files /dev/null and b/data/CTR-JTJ/icon.jpg differ diff --git a/data/CTR-JTK/art.jpg b/data/CTR-JTK/art.jpg new file mode 100644 index 0000000..62e4e7b Binary files /dev/null and b/data/CTR-JTK/art.jpg differ diff --git a/data/CTR-JTK/data.yml b/data/CTR-JTK/data.yml new file mode 100644 index 0000000..586073e --- /dev/null +++ b/data/CTR-JTK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000006E000 + name: タケヤリマン + updates: [] diff --git a/data/CTR-JTK/icon.jpg b/data/CTR-JTK/icon.jpg new file mode 100644 index 0000000..3c091bc Binary files /dev/null and b/data/CTR-JTK/icon.jpg differ diff --git a/data/CTR-JTL/art.jpg b/data/CTR-JTL/art.jpg new file mode 100644 index 0000000..f6328a6 Binary files /dev/null and b/data/CTR-JTL/art.jpg differ diff --git a/data/CTR-JTL/data.yml b/data/CTR-JTL/data.yml new file mode 100644 index 0000000..1c5e053 --- /dev/null +++ b/data/CTR-JTL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000146E00 + name: タートルテイル 亀島奪回 + updates: [] diff --git a/data/CTR-JTL/icon.jpg b/data/CTR-JTL/icon.jpg new file mode 100644 index 0000000..3b52b77 Binary files /dev/null and b/data/CTR-JTL/icon.jpg differ diff --git a/data/CTR-JTM/art.jpg b/data/CTR-JTM/art.jpg new file mode 100644 index 0000000..912d33f Binary files /dev/null and b/data/CTR-JTM/art.jpg differ diff --git a/data/CTR-JTM/data.yml b/data/CTR-JTM/data.yml new file mode 100644 index 0000000..76fba61 --- /dev/null +++ b/data/CTR-JTM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018B900 + name: Runny Egg + updates: [] +- regions: + - JP + id: 00040000000D8500 + name: たまご大冒険 + updates: [] +- regions: + - US + id: 0004000000166200 + name: Runny Egg + updates: [] diff --git a/data/CTR-JTM/icon.jpg b/data/CTR-JTM/icon.jpg new file mode 100644 index 0000000..5bd1fda Binary files /dev/null and b/data/CTR-JTM/icon.jpg differ diff --git a/data/CTR-JTP/art.jpg b/data/CTR-JTP/art.jpg new file mode 100644 index 0000000..56e4747 Binary files /dev/null and b/data/CTR-JTP/art.jpg differ diff --git a/data/CTR-JTP/data.yml b/data/CTR-JTP/data.yml new file mode 100644 index 0000000..4dbae23 --- /dev/null +++ b/data/CTR-JTP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117600 + name: Tappingo + updates: [] +- regions: + - JP + id: 000400000015DD00 + name: アイコンパズル タッピンゴ + updates: [] +- regions: + - US + id: 0004000000119800 + name: Tappingo + updates: [] diff --git a/data/CTR-JTP/icon.jpg b/data/CTR-JTP/icon.jpg new file mode 100644 index 0000000..dc18147 Binary files /dev/null and b/data/CTR-JTP/icon.jpg differ diff --git a/data/CTR-JTQ/art.jpg b/data/CTR-JTQ/art.jpg new file mode 100644 index 0000000..3398b66 Binary files /dev/null and b/data/CTR-JTQ/art.jpg differ diff --git a/data/CTR-JTQ/data.yml b/data/CTR-JTQ/data.yml new file mode 100644 index 0000000..1700db0 --- /dev/null +++ b/data/CTR-JTQ/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000171F00 + name: Gotcha Racing™ + updates: [] +- regions: + - JP + id: 0004000000120400 + name: ガチャレーシング + updates: [] +- regions: + - KR + id: 0004000000178900 + name: 가챠 레이싱 + updates: [] +- regions: + - US + id: 000400000016F000 + name: Gotcha Racing™ + updates: [] diff --git a/data/CTR-JTQ/icon.jpg b/data/CTR-JTQ/icon.jpg new file mode 100644 index 0000000..f6142c7 Binary files /dev/null and b/data/CTR-JTQ/icon.jpg differ diff --git a/data/CTR-JTT/art.jpg b/data/CTR-JTT/art.jpg new file mode 100644 index 0000000..d7dea37 Binary files /dev/null and b/data/CTR-JTT/art.jpg differ diff --git a/data/CTR-JTT/data.yml b/data/CTR-JTT/data.yml new file mode 100644 index 0000000..8736934 --- /dev/null +++ b/data/CTR-JTT/data.yml @@ -0,0 +1,11 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - KR + - TW + - US + id: 00040000000C9B00 + name: Pokémon™ Bank + updates: [] diff --git a/data/CTR-JTT/icon.jpg b/data/CTR-JTT/icon.jpg new file mode 100644 index 0000000..c987df0 Binary files /dev/null and b/data/CTR-JTT/icon.jpg differ diff --git a/data/CTR-JTU/art.jpg b/data/CTR-JTU/art.jpg new file mode 100644 index 0000000..8620797 Binary files /dev/null and b/data/CTR-JTU/art.jpg differ diff --git a/data/CTR-JTU/data.yml b/data/CTR-JTU/data.yml new file mode 100644 index 0000000..8aee579 --- /dev/null +++ b/data/CTR-JTU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000129C00 + name: 'ARC STYLE: さっかー!!2014' + updates: [] diff --git a/data/CTR-JTU/icon.jpg b/data/CTR-JTU/icon.jpg new file mode 100644 index 0000000..450c264 Binary files /dev/null and b/data/CTR-JTU/icon.jpg differ diff --git a/data/CTR-JTV/art.jpg b/data/CTR-JTV/art.jpg new file mode 100644 index 0000000..1071163 Binary files /dev/null and b/data/CTR-JTV/art.jpg differ diff --git a/data/CTR-JTV/data.yml b/data/CTR-JTV/data.yml new file mode 100644 index 0000000..33236d6 --- /dev/null +++ b/data/CTR-JTV/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012CC00 + name: Toy Stunt Bike + updates: [] +- regions: + - JP + id: 0004000000156D00 + name: トイスタントバイク + updates: [] +- regions: + - KR + id: 0004000000166600 + name: Toy Stunt Bike + updates: [] +- regions: + - TW + id: 0004000000166400 + name: Toy Stunt Bike(日文版) + updates: [] +- regions: + - US + id: 0004000000125400 + name: Toy Stunt Bike + updates: [] diff --git a/data/CTR-JTV/icon.jpg b/data/CTR-JTV/icon.jpg new file mode 100644 index 0000000..44b788f Binary files /dev/null and b/data/CTR-JTV/icon.jpg differ diff --git a/data/CTR-JTX/art.jpg b/data/CTR-JTX/art.jpg new file mode 100644 index 0000000..578739c Binary files /dev/null and b/data/CTR-JTX/art.jpg differ diff --git a/data/CTR-JTX/data.yml b/data/CTR-JTX/data.yml new file mode 100644 index 0000000..37dbd8b --- /dev/null +++ b/data/CTR-JTX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000C9400 + name: '@SIMPLE DLシリーズ Vol.13 THE タクシー 僕はカリスマ運転手' + updates: [] diff --git a/data/CTR-JTX/icon.jpg b/data/CTR-JTX/icon.jpg new file mode 100644 index 0000000..210ace4 Binary files /dev/null and b/data/CTR-JTX/icon.jpg differ diff --git a/data/CTR-JTY/art.jpg b/data/CTR-JTY/art.jpg new file mode 100644 index 0000000..ddf38d1 Binary files /dev/null and b/data/CTR-JTY/art.jpg differ diff --git a/data/CTR-JTY/data.yml b/data/CTR-JTY/data.yml new file mode 100644 index 0000000..0c5b2b5 --- /dev/null +++ b/data/CTR-JTY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000A1F00 + name: AZITO 3D Tokyo + updates: [] diff --git a/data/CTR-JTY/icon.jpg b/data/CTR-JTY/icon.jpg new file mode 100644 index 0000000..cf8fb8d Binary files /dev/null and b/data/CTR-JTY/icon.jpg differ diff --git a/data/CTR-JTZ/art.jpg b/data/CTR-JTZ/art.jpg new file mode 100644 index 0000000..632d4f5 Binary files /dev/null and b/data/CTR-JTZ/art.jpg differ diff --git a/data/CTR-JTZ/data.yml b/data/CTR-JTZ/data.yml new file mode 100644 index 0000000..af70fc5 --- /dev/null +++ b/data/CTR-JTZ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D0700 + name: 'Thorium Wars: Attack of the Skyfighter' + updates: [] +- regions: + - JP + id: 0004000000160500 + name: ザ・スカイファイターズ ~トリウム戦争~ + updates: [] +- regions: + - US + id: 0004000000123F00 + name: 'Thorium Wars: Attack of the Skyfighter' + updates: [] diff --git a/data/CTR-JTZ/icon.jpg b/data/CTR-JTZ/icon.jpg new file mode 100644 index 0000000..e124650 Binary files /dev/null and b/data/CTR-JTZ/icon.jpg differ diff --git a/data/CTR-JU2/art.jpg b/data/CTR-JU2/art.jpg new file mode 100644 index 0000000..849ee57 Binary files /dev/null and b/data/CTR-JU2/art.jpg differ diff --git a/data/CTR-JU2/data.yml b/data/CTR-JU2/data.yml new file mode 100644 index 0000000..12ce9ad --- /dev/null +++ b/data/CTR-JU2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000192F00 + name: Jump Trials Supreme + updates: [] +- regions: + - JP + id: 00040000000E9000 + name: 極めろ!瞬間ジャンプ検定 + updates: [] +- regions: + - US + id: 00040000000F1500 + name: Jump Trials Supreme + updates: [] diff --git a/data/CTR-JU2/icon.jpg b/data/CTR-JU2/icon.jpg new file mode 100644 index 0000000..4e55055 Binary files /dev/null and b/data/CTR-JU2/icon.jpg differ diff --git a/data/CTR-JU4/art.jpg b/data/CTR-JU4/art.jpg new file mode 100644 index 0000000..4ac2d66 Binary files /dev/null and b/data/CTR-JU4/art.jpg differ diff --git a/data/CTR-JU4/data.yml b/data/CTR-JU4/data.yml new file mode 100644 index 0000000..b16b2bf --- /dev/null +++ b/data/CTR-JU4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121500 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 4級 + updates: [] diff --git a/data/CTR-JU4/icon.jpg b/data/CTR-JU4/icon.jpg new file mode 100644 index 0000000..3878262 Binary files /dev/null and b/data/CTR-JU4/icon.jpg differ diff --git a/data/CTR-JU5/art.jpg b/data/CTR-JU5/art.jpg new file mode 100644 index 0000000..e498ba9 Binary files /dev/null and b/data/CTR-JU5/art.jpg differ diff --git a/data/CTR-JU5/data.yml b/data/CTR-JU5/data.yml new file mode 100644 index 0000000..11e5d0d --- /dev/null +++ b/data/CTR-JU5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121600 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 5級 + updates: [] diff --git a/data/CTR-JU5/icon.jpg b/data/CTR-JU5/icon.jpg new file mode 100644 index 0000000..52075b9 Binary files /dev/null and b/data/CTR-JU5/icon.jpg differ diff --git a/data/CTR-JU6/art.jpg b/data/CTR-JU6/art.jpg new file mode 100644 index 0000000..3e31c08 Binary files /dev/null and b/data/CTR-JU6/art.jpg differ diff --git a/data/CTR-JU6/data.yml b/data/CTR-JU6/data.yml new file mode 100644 index 0000000..b08a5b6 --- /dev/null +++ b/data/CTR-JU6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121700 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 6級 + updates: [] diff --git a/data/CTR-JU6/icon.jpg b/data/CTR-JU6/icon.jpg new file mode 100644 index 0000000..ce098f6 Binary files /dev/null and b/data/CTR-JU6/icon.jpg differ diff --git a/data/CTR-JU7/art.jpg b/data/CTR-JU7/art.jpg new file mode 100644 index 0000000..c7c75d5 Binary files /dev/null and b/data/CTR-JU7/art.jpg differ diff --git a/data/CTR-JU7/data.yml b/data/CTR-JU7/data.yml new file mode 100644 index 0000000..98fa09e --- /dev/null +++ b/data/CTR-JU7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121800 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 7級 + updates: [] diff --git a/data/CTR-JU7/icon.jpg b/data/CTR-JU7/icon.jpg new file mode 100644 index 0000000..8336b34 Binary files /dev/null and b/data/CTR-JU7/icon.jpg differ diff --git a/data/CTR-JU8/art.jpg b/data/CTR-JU8/art.jpg new file mode 100644 index 0000000..5873fe5 Binary files /dev/null and b/data/CTR-JU8/art.jpg differ diff --git a/data/CTR-JU8/data.yml b/data/CTR-JU8/data.yml new file mode 100644 index 0000000..c3ff906 --- /dev/null +++ b/data/CTR-JU8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121900 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 8級 + updates: [] diff --git a/data/CTR-JU8/icon.jpg b/data/CTR-JU8/icon.jpg new file mode 100644 index 0000000..816438a Binary files /dev/null and b/data/CTR-JU8/icon.jpg differ diff --git a/data/CTR-JU9/art.jpg b/data/CTR-JU9/art.jpg new file mode 100644 index 0000000..3a7142a Binary files /dev/null and b/data/CTR-JU9/art.jpg differ diff --git a/data/CTR-JU9/data.yml b/data/CTR-JU9/data.yml new file mode 100644 index 0000000..bf94e5b --- /dev/null +++ b/data/CTR-JU9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121A00 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 9級 10級 + updates: [] diff --git a/data/CTR-JU9/icon.jpg b/data/CTR-JU9/icon.jpg new file mode 100644 index 0000000..2e72625 Binary files /dev/null and b/data/CTR-JU9/icon.jpg differ diff --git a/data/CTR-JUB/art.jpg b/data/CTR-JUB/art.jpg new file mode 100644 index 0000000..520ef87 Binary files /dev/null and b/data/CTR-JUB/art.jpg differ diff --git a/data/CTR-JUB/data.yml b/data/CTR-JUB/data.yml new file mode 100644 index 0000000..5668a63 --- /dev/null +++ b/data/CTR-JUB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121300 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 準2級 + updates: [] diff --git a/data/CTR-JUB/icon.jpg b/data/CTR-JUB/icon.jpg new file mode 100644 index 0000000..65f1ed0 Binary files /dev/null and b/data/CTR-JUB/icon.jpg differ diff --git a/data/CTR-JUC/art.jpg b/data/CTR-JUC/art.jpg new file mode 100644 index 0000000..cb2e42d Binary files /dev/null and b/data/CTR-JUC/art.jpg differ diff --git a/data/CTR-JUC/data.yml b/data/CTR-JUC/data.yml new file mode 100644 index 0000000..7b32b47 --- /dev/null +++ b/data/CTR-JUC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000009EB00 + name: Unchained Blades + updates: [] diff --git a/data/CTR-JUC/icon.jpg b/data/CTR-JUC/icon.jpg new file mode 100644 index 0000000..1ec621f Binary files /dev/null and b/data/CTR-JUC/icon.jpg differ diff --git a/data/CTR-JUD/art.jpg b/data/CTR-JUD/art.jpg new file mode 100644 index 0000000..3e6cfb8 Binary files /dev/null and b/data/CTR-JUD/art.jpg differ diff --git a/data/CTR-JUD/data.yml b/data/CTR-JUD/data.yml new file mode 100644 index 0000000..b32f5a5 --- /dev/null +++ b/data/CTR-JUD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D7A00 + name: '@SIMPLE DLシリーズ Vol.8 THE 浮気彼氏 ~浮気の代償~' + updates: [] diff --git a/data/CTR-JUD/icon.jpg b/data/CTR-JUD/icon.jpg new file mode 100644 index 0000000..0e74c80 Binary files /dev/null and b/data/CTR-JUD/icon.jpg differ diff --git a/data/CTR-JUE/art.jpg b/data/CTR-JUE/art.jpg new file mode 100644 index 0000000..19eeaa4 Binary files /dev/null and b/data/CTR-JUE/art.jpg differ diff --git a/data/CTR-JUE/data.yml b/data/CTR-JUE/data.yml new file mode 100644 index 0000000..3c8ff8f --- /dev/null +++ b/data/CTR-JUE/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BCC00 + name: TOKYO CRASH MOBS™ + updates: [] +- regions: + - JP + id: 0004000000092C00 + name: 行列ナゲループ + updates: [] +- regions: + - KR + id: 00040000000C4E00 + name: Tokyo Crash Mobs + updates: [] +- regions: + - US + id: 00040000000BCB00 + name: Tokyo Crash Mobs™ + updates: [] diff --git a/data/CTR-JUE/icon.jpg b/data/CTR-JUE/icon.jpg new file mode 100644 index 0000000..f54809a Binary files /dev/null and b/data/CTR-JUE/icon.jpg differ diff --git a/data/CTR-JUK/art.jpg b/data/CTR-JUK/art.jpg new file mode 100644 index 0000000..a1693fd Binary files /dev/null and b/data/CTR-JUK/art.jpg differ diff --git a/data/CTR-JUK/data.yml b/data/CTR-JUK/data.yml new file mode 100644 index 0000000..26f027c --- /dev/null +++ b/data/CTR-JUK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8C00 + name: '@SIMPLE DLシリーズ Vol.10 THE浮気彼氏Xmas中止のお知らせ' + updates: [] diff --git a/data/CTR-JUK/icon.jpg b/data/CTR-JUK/icon.jpg new file mode 100644 index 0000000..82a1b3b Binary files /dev/null and b/data/CTR-JUK/icon.jpg differ diff --git a/data/CTR-JUL/art.jpg b/data/CTR-JUL/art.jpg new file mode 100644 index 0000000..a02b3c0 Binary files /dev/null and b/data/CTR-JUL/art.jpg differ diff --git a/data/CTR-JUL/data.yml b/data/CTR-JUL/data.yml new file mode 100644 index 0000000..df7c5f9 --- /dev/null +++ b/data/CTR-JUL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000132200 + name: Football Up Online + updates: [] +- regions: + - JP + id: 000400000013F000 + name: スター★シリーズ:3D サッカー + updates: [] +- regions: + - US + id: 0004000000126F00 + name: Soccer Up Online + updates: [] diff --git a/data/CTR-JUL/icon.jpg b/data/CTR-JUL/icon.jpg new file mode 100644 index 0000000..2accbd8 Binary files /dev/null and b/data/CTR-JUL/icon.jpg differ diff --git a/data/CTR-JUM/art.jpg b/data/CTR-JUM/art.jpg new file mode 100644 index 0000000..861094c Binary files /dev/null and b/data/CTR-JUM/art.jpg differ diff --git a/data/CTR-JUM/data.yml b/data/CTR-JUM/data.yml new file mode 100644 index 0000000..e16b29b --- /dev/null +++ b/data/CTR-JUM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000C3500 + name: '脱出アドベンチャー 魔女の住む館 ' + updates: [] diff --git a/data/CTR-JUM/icon.jpg b/data/CTR-JUM/icon.jpg new file mode 100644 index 0000000..bf752d8 Binary files /dev/null and b/data/CTR-JUM/icon.jpg differ diff --git a/data/CTR-JUN/art.jpg b/data/CTR-JUN/art.jpg new file mode 100644 index 0000000..ddbc774 Binary files /dev/null and b/data/CTR-JUN/art.jpg differ diff --git a/data/CTR-JUN/data.yml b/data/CTR-JUN/data.yml new file mode 100644 index 0000000..0bcdf77 --- /dev/null +++ b/data/CTR-JUN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000110A00 + name: 黒子スタイル + updates: [] diff --git a/data/CTR-JUN/icon.jpg b/data/CTR-JUN/icon.jpg new file mode 100644 index 0000000..5f0ab92 Binary files /dev/null and b/data/CTR-JUN/icon.jpg differ diff --git a/data/CTR-JUR/art.jpg b/data/CTR-JUR/art.jpg new file mode 100644 index 0000000..e6ba26e Binary files /dev/null and b/data/CTR-JUR/art.jpg differ diff --git a/data/CTR-JUR/data.yml b/data/CTR-JUR/data.yml new file mode 100644 index 0000000..b3d6525 --- /dev/null +++ b/data/CTR-JUR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000012E700 + name: Moon Chronicles™ + updates: [] diff --git a/data/CTR-JUR/icon.jpg b/data/CTR-JUR/icon.jpg new file mode 100644 index 0000000..5504325 Binary files /dev/null and b/data/CTR-JUR/icon.jpg differ diff --git a/data/CTR-JUS/art.jpg b/data/CTR-JUS/art.jpg new file mode 100644 index 0000000..bdc525a Binary files /dev/null and b/data/CTR-JUS/art.jpg differ diff --git a/data/CTR-JUS/data.yml b/data/CTR-JUS/data.yml new file mode 100644 index 0000000..98e357c --- /dev/null +++ b/data/CTR-JUS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000DAF00 + name: '@SIMPLE DLシリーズ Vol.11 THE 浮気彼氏 家政婦が見た浮気' + updates: [] diff --git a/data/CTR-JUS/icon.jpg b/data/CTR-JUS/icon.jpg new file mode 100644 index 0000000..9dd0902 Binary files /dev/null and b/data/CTR-JUS/icon.jpg differ diff --git a/data/CTR-JUT/art.jpg b/data/CTR-JUT/art.jpg new file mode 100644 index 0000000..ea53667 Binary files /dev/null and b/data/CTR-JUT/art.jpg differ diff --git a/data/CTR-JUT/data.yml b/data/CTR-JUT/data.yml new file mode 100644 index 0000000..2b2a482 --- /dev/null +++ b/data/CTR-JUT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000111F00 + name: 'アーバントライアル: フリースタイル' + updates: [] diff --git a/data/CTR-JUT/icon.jpg b/data/CTR-JUT/icon.jpg new file mode 100644 index 0000000..da4a38e Binary files /dev/null and b/data/CTR-JUT/icon.jpg differ diff --git a/data/CTR-JUU/art.jpg b/data/CTR-JUU/art.jpg new file mode 100644 index 0000000..5ccd229 Binary files /dev/null and b/data/CTR-JUU/art.jpg differ diff --git a/data/CTR-JUU/data.yml b/data/CTR-JUU/data.yml new file mode 100644 index 0000000..925d3c5 --- /dev/null +++ b/data/CTR-JUU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000019D500 + name: デジモンユニバース アプリ モンスターズ-サイバーアリーナ- + updates: + - id: 0004000E0019D500 + name: 更新データ Ver. 1.1 デジモンユニバース アプリモンスターズ-サイバーアリーナ- diff --git a/data/CTR-JUU/icon.jpg b/data/CTR-JUU/icon.jpg new file mode 100644 index 0000000..3f5bc54 Binary files /dev/null and b/data/CTR-JUU/icon.jpg differ diff --git a/data/CTR-JUV/art.jpg b/data/CTR-JUV/art.jpg new file mode 100644 index 0000000..5844dc0 Binary files /dev/null and b/data/CTR-JUV/art.jpg differ diff --git a/data/CTR-JUV/data.yml b/data/CTR-JUV/data.yml new file mode 100644 index 0000000..554510e --- /dev/null +++ b/data/CTR-JUV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121400 + name: 公益財団法人 日本漢字能力検定 協会 漢検トレーニング 3級 + updates: [] diff --git a/data/CTR-JUV/icon.jpg b/data/CTR-JUV/icon.jpg new file mode 100644 index 0000000..30e113d Binary files /dev/null and b/data/CTR-JUV/icon.jpg differ diff --git a/data/CTR-JUW/art.jpg b/data/CTR-JUW/art.jpg new file mode 100644 index 0000000..793cabe Binary files /dev/null and b/data/CTR-JUW/art.jpg differ diff --git a/data/CTR-JUW/data.yml b/data/CTR-JUW/data.yml new file mode 100644 index 0000000..b3ab4e2 --- /dev/null +++ b/data/CTR-JUW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000BFD00 + name: '@SIMPLE DLシリーズ Vol.7 THE 浮気彼氏 ~突撃!浮気現場~' + updates: [] diff --git a/data/CTR-JUW/icon.jpg b/data/CTR-JUW/icon.jpg new file mode 100644 index 0000000..3882a6d Binary files /dev/null and b/data/CTR-JUW/icon.jpg differ diff --git a/data/CTR-JUX/art.jpg b/data/CTR-JUX/art.jpg new file mode 100644 index 0000000..7df89cd Binary files /dev/null and b/data/CTR-JUX/art.jpg differ diff --git a/data/CTR-JUX/data.yml b/data/CTR-JUX/data.yml new file mode 100644 index 0000000..7507242 --- /dev/null +++ b/data/CTR-JUX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121200 + name: 公益財団法人日本漢字能力検定協会 漢検トレーニング 1級 準1級 2級 + updates: [] diff --git a/data/CTR-JUX/icon.jpg b/data/CTR-JUX/icon.jpg new file mode 100644 index 0000000..39cf877 Binary files /dev/null and b/data/CTR-JUX/icon.jpg differ diff --git a/data/CTR-JUY/art.jpg b/data/CTR-JUY/art.jpg new file mode 100644 index 0000000..6316603 Binary files /dev/null and b/data/CTR-JUY/art.jpg differ diff --git a/data/CTR-JUY/data.yml b/data/CTR-JUY/data.yml new file mode 100644 index 0000000..4a1a3e7 --- /dev/null +++ b/data/CTR-JUY/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000136E00 + name: Citizens of Earth + updates: [] +- regions: + - JP + id: 0004000000177300 + name: シチズンズ オブ アース + updates: [] +- regions: + - US + id: 000400000012C100 + name: Citizens of Earth + updates: [] diff --git a/data/CTR-JUY/icon.jpg b/data/CTR-JUY/icon.jpg new file mode 100644 index 0000000..7beb19f Binary files /dev/null and b/data/CTR-JUY/icon.jpg differ diff --git a/data/CTR-JUZ/art.jpg b/data/CTR-JUZ/art.jpg new file mode 100644 index 0000000..086c332 Binary files /dev/null and b/data/CTR-JUZ/art.jpg differ diff --git a/data/CTR-JUZ/data.yml b/data/CTR-JUZ/data.yml new file mode 100644 index 0000000..ec420a4 --- /dev/null +++ b/data/CTR-JUZ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015F300 + name: Zombie Incident + updates: [] +- regions: + - US + id: 000400000012E900 + name: Zombie Incident + updates: [] diff --git a/data/CTR-JUZ/icon.jpg b/data/CTR-JUZ/icon.jpg new file mode 100644 index 0000000..ae70082 Binary files /dev/null and b/data/CTR-JUZ/icon.jpg differ diff --git a/data/CTR-JV2/art.jpg b/data/CTR-JV2/art.jpg new file mode 100644 index 0000000..ca329d9 Binary files /dev/null and b/data/CTR-JV2/art.jpg differ diff --git a/data/CTR-JV2/data.yml b/data/CTR-JV2/data.yml new file mode 100644 index 0000000..d6a6ab4 --- /dev/null +++ b/data/CTR-JV2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000108400 + name: グレコからの挑戦状! 英単語の島とオバケたち STEP2 + updates: [] diff --git a/data/CTR-JV2/icon.jpg b/data/CTR-JV2/icon.jpg new file mode 100644 index 0000000..68f3d42 Binary files /dev/null and b/data/CTR-JV2/icon.jpg differ diff --git a/data/CTR-JV3/art.jpg b/data/CTR-JV3/art.jpg new file mode 100644 index 0000000..495d7e5 Binary files /dev/null and b/data/CTR-JV3/art.jpg differ diff --git a/data/CTR-JV3/data.yml b/data/CTR-JV3/data.yml new file mode 100644 index 0000000..de8de4e --- /dev/null +++ b/data/CTR-JV3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000108500 + name: グレコからの挑戦状! 英単語の島とオバケたち STEP3 + updates: [] diff --git a/data/CTR-JV3/icon.jpg b/data/CTR-JV3/icon.jpg new file mode 100644 index 0000000..dda410d Binary files /dev/null and b/data/CTR-JV3/icon.jpg differ diff --git a/data/CTR-JV4/art.jpg b/data/CTR-JV4/art.jpg new file mode 100644 index 0000000..b978b4f Binary files /dev/null and b/data/CTR-JV4/art.jpg differ diff --git a/data/CTR-JV4/data.yml b/data/CTR-JV4/data.yml new file mode 100644 index 0000000..4c33b54 --- /dev/null +++ b/data/CTR-JV4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000108600 + name: グレコからの挑戦状! 英単語の島とオバケたち STEP4 + updates: [] diff --git a/data/CTR-JV4/icon.jpg b/data/CTR-JV4/icon.jpg new file mode 100644 index 0000000..e9b2680 Binary files /dev/null and b/data/CTR-JV4/icon.jpg differ diff --git a/data/CTR-JV7/art.jpg b/data/CTR-JV7/art.jpg new file mode 100644 index 0000000..65c4cfc Binary files /dev/null and b/data/CTR-JV7/art.jpg differ diff --git a/data/CTR-JV7/data.yml b/data/CTR-JV7/data.yml new file mode 100644 index 0000000..cefa0fe --- /dev/null +++ b/data/CTR-JV7/data.yml @@ -0,0 +1,28 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000165600 + name: Azure Striker GUNVOLT + updates: [] +- regions: + - JP + id: 000400000012A700 + name: 蒼き雷霆 ガンヴォルト + updates: + - id: 0004000E0012A700 + name: 更新データ Ver. 1.2 蒼き雷霆 ガンヴォルト +- regions: + - KR + id: 000400000015BD00 + name: Azure Striker GUNVOLT + updates: + - id: 0004000E0015BD00 + name: 업데이트 데이터 Ver. 1.2 Azure Striker GUNVOLT +- regions: + - US + id: 000400000014C800 + name: Azure Striker GUNVOLT + updates: + - id: 0004000E0014C800 + name: Azure Striker GUNVOLT Update Ver. 1.4 diff --git a/data/CTR-JV7/icon.jpg b/data/CTR-JV7/icon.jpg new file mode 100644 index 0000000..be33d37 Binary files /dev/null and b/data/CTR-JV7/icon.jpg differ diff --git a/data/CTR-JV9/art.jpg b/data/CTR-JV9/art.jpg new file mode 100644 index 0000000..5544522 Binary files /dev/null and b/data/CTR-JV9/art.jpg differ diff --git a/data/CTR-JV9/data.yml b/data/CTR-JV9/data.yml new file mode 100644 index 0000000..4bc2c0e --- /dev/null +++ b/data/CTR-JV9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000122600 + name: マル合格! 応用情報技術者試験 平成26年度版 + updates: [] diff --git a/data/CTR-JV9/icon.jpg b/data/CTR-JV9/icon.jpg new file mode 100644 index 0000000..9b56b8c Binary files /dev/null and b/data/CTR-JV9/icon.jpg differ diff --git a/data/CTR-JVA/art.jpg b/data/CTR-JVA/art.jpg new file mode 100644 index 0000000..a840545 Binary files /dev/null and b/data/CTR-JVA/art.jpg differ diff --git a/data/CTR-JVA/data.yml b/data/CTR-JVA/data.yml new file mode 100644 index 0000000..502a555 --- /dev/null +++ b/data/CTR-JVA/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000194900 + name: Pocket Card Jockey™ + updates: [] +- regions: + - JP + id: 00040000000EB000 + name: ソリティ馬 + updates: [] +- regions: + - KR + id: 0004000000194A00 + name: Pocket Card Jockey + updates: [] +- regions: + - US + id: 0004000000194800 + name: Pocket Card Jockey™ + updates: [] diff --git a/data/CTR-JVA/icon.jpg b/data/CTR-JVA/icon.jpg new file mode 100644 index 0000000..451aa80 Binary files /dev/null and b/data/CTR-JVA/icon.jpg differ diff --git a/data/CTR-JVD/art.jpg b/data/CTR-JVD/art.jpg new file mode 100644 index 0000000..11b15ec Binary files /dev/null and b/data/CTR-JVD/art.jpg differ diff --git a/data/CTR-JVD/data.yml b/data/CTR-JVD/data.yml new file mode 100644 index 0000000..3e71634 --- /dev/null +++ b/data/CTR-JVD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011E500 + name: '@SIMPLE DLシリーズ Vol.28 THE 連撃英雄' + updates: [] diff --git a/data/CTR-JVD/icon.jpg b/data/CTR-JVD/icon.jpg new file mode 100644 index 0000000..6294133 Binary files /dev/null and b/data/CTR-JVD/icon.jpg differ diff --git a/data/CTR-JVG/art.jpg b/data/CTR-JVG/art.jpg new file mode 100644 index 0000000..b5ac733 Binary files /dev/null and b/data/CTR-JVG/art.jpg differ diff --git a/data/CTR-JVG/data.yml b/data/CTR-JVG/data.yml new file mode 100644 index 0000000..2771190 --- /dev/null +++ b/data/CTR-JVG/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000012B700 + name: ぐんまのやぼう for ニンテンドー3DS + updates: + - id: 0004000E0012B700 + name: 更新データ Ver. 1.0.3 ぐんまのやぼう for ニンテンドー3DS diff --git a/data/CTR-JVG/icon.jpg b/data/CTR-JVG/icon.jpg new file mode 100644 index 0000000..9d5ceb3 Binary files /dev/null and b/data/CTR-JVG/icon.jpg differ diff --git a/data/CTR-JVH/art.jpg b/data/CTR-JVH/art.jpg new file mode 100644 index 0000000..b05f072 Binary files /dev/null and b/data/CTR-JVH/art.jpg differ diff --git a/data/CTR-JVH/data.yml b/data/CTR-JVH/data.yml new file mode 100644 index 0000000..07b6116 --- /dev/null +++ b/data/CTR-JVH/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000132300 + name: VAN HELSING SNIPER ZX100 + updates: [] +- regions: + - JP + id: 0004000000170100 + name: ヴァンパイアスナイパー + updates: [] +- regions: + - US + id: 000400000010C500 + name: Van Helsing sniper Zx100 + updates: [] diff --git a/data/CTR-JVH/icon.jpg b/data/CTR-JVH/icon.jpg new file mode 100644 index 0000000..fce94cf Binary files /dev/null and b/data/CTR-JVH/icon.jpg differ diff --git a/data/CTR-JVJ/art.jpg b/data/CTR-JVJ/art.jpg new file mode 100644 index 0000000..e152b1f Binary files /dev/null and b/data/CTR-JVJ/art.jpg differ diff --git a/data/CTR-JVJ/data.yml b/data/CTR-JVJ/data.yml new file mode 100644 index 0000000..42b5816 --- /dev/null +++ b/data/CTR-JVJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000012B400 + name: がっき で あそぼ♪ たのしい どうよう① + updates: [] diff --git a/data/CTR-JVJ/icon.jpg b/data/CTR-JVJ/icon.jpg new file mode 100644 index 0000000..3af30b8 Binary files /dev/null and b/data/CTR-JVJ/icon.jpg differ diff --git a/data/CTR-JVL/art.jpg b/data/CTR-JVL/art.jpg new file mode 100644 index 0000000..ca66dc5 Binary files /dev/null and b/data/CTR-JVL/art.jpg differ diff --git a/data/CTR-JVL/data.yml b/data/CTR-JVL/data.yml new file mode 100644 index 0000000..fc543ce --- /dev/null +++ b/data/CTR-JVL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000084500 + name: たまごっちのプチプチ おみせっちでバイオリンレッスン + updates: [] diff --git a/data/CTR-JVL/icon.jpg b/data/CTR-JVL/icon.jpg new file mode 100644 index 0000000..96ea074 Binary files /dev/null and b/data/CTR-JVL/icon.jpg differ diff --git a/data/CTR-JVM/art.jpg b/data/CTR-JVM/art.jpg new file mode 100644 index 0000000..b6390da Binary files /dev/null and b/data/CTR-JVM/art.jpg differ diff --git a/data/CTR-JVM/data.yml b/data/CTR-JVM/data.yml new file mode 100644 index 0000000..16bdaa2 --- /dev/null +++ b/data/CTR-JVM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012C300 + name: Best of Mahjong + updates: [] +- regions: + - US + id: 0004000000123500 + name: Best of Mahjong + updates: [] diff --git a/data/CTR-JVM/icon.jpg b/data/CTR-JVM/icon.jpg new file mode 100644 index 0000000..2885be6 Binary files /dev/null and b/data/CTR-JVM/icon.jpg differ diff --git a/data/CTR-JVN/art.jpg b/data/CTR-JVN/art.jpg new file mode 100644 index 0000000..1344a44 Binary files /dev/null and b/data/CTR-JVN/art.jpg differ diff --git a/data/CTR-JVN/data.yml b/data/CTR-JVN/data.yml new file mode 100644 index 0000000..74d768b --- /dev/null +++ b/data/CTR-JVN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000157A00 + name: 3D After Burner II + updates: [] +- regions: + - JP + id: 0004000000114200 + name: 3D アフターバーナーⅡ + updates: [] +- regions: + - US + id: 0004000000158900 + name: 3D After Burner II + updates: [] diff --git a/data/CTR-JVN/icon.jpg b/data/CTR-JVN/icon.jpg new file mode 100644 index 0000000..70492f0 Binary files /dev/null and b/data/CTR-JVN/icon.jpg differ diff --git a/data/CTR-JVP/art.jpg b/data/CTR-JVP/art.jpg new file mode 100644 index 0000000..f7d5fd0 Binary files /dev/null and b/data/CTR-JVP/art.jpg differ diff --git a/data/CTR-JVP/data.yml b/data/CTR-JVP/data.yml new file mode 100644 index 0000000..2c68516 --- /dev/null +++ b/data/CTR-JVP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000089200 + name: 夜の魔人といくさの国 ~さまよえるヴァンピール~ + updates: [] diff --git a/data/CTR-JVP/icon.jpg b/data/CTR-JVP/icon.jpg new file mode 100644 index 0000000..01a803c Binary files /dev/null and b/data/CTR-JVP/icon.jpg differ diff --git a/data/CTR-JVQ/art.jpg b/data/CTR-JVQ/art.jpg new file mode 100644 index 0000000..96e5a92 Binary files /dev/null and b/data/CTR-JVQ/art.jpg differ diff --git a/data/CTR-JVQ/data.yml b/data/CTR-JVQ/data.yml new file mode 100644 index 0000000..88b6693 --- /dev/null +++ b/data/CTR-JVQ/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000147B00 + name: Dedede’s Drum Dash™ Deluxe + updates: [] +- regions: + - JP + id: 000400000012F000 + name: デデデ大王のデデデでデンZ + updates: [] +- regions: + - KR + id: 0004000000147C00 + name: 대왕 디디디로 쿵쿵 Z + updates: [] +- regions: + - TW + id: 0004000000147D00 + name: Dedede's Drum Dash Deluxe(英文版) + updates: [] +- regions: + - US + id: 0004000000147A00 + name: Dedede’s Drum Dash Deluxe + updates: [] diff --git a/data/CTR-JVQ/icon.jpg b/data/CTR-JVQ/icon.jpg new file mode 100644 index 0000000..b09744c Binary files /dev/null and b/data/CTR-JVQ/icon.jpg differ diff --git a/data/CTR-JVR/art.jpg b/data/CTR-JVR/art.jpg new file mode 100644 index 0000000..e1e90d5 Binary files /dev/null and b/data/CTR-JVR/art.jpg differ diff --git a/data/CTR-JVR/data.yml b/data/CTR-JVR/data.yml new file mode 100644 index 0000000..3fa22c3 --- /dev/null +++ b/data/CTR-JVR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000012B500 + name: '@SIMPLE DLシリーズ Vol.32 THEバトルロボ大共闘スクランブル' + updates: [] diff --git a/data/CTR-JVR/icon.jpg b/data/CTR-JVR/icon.jpg new file mode 100644 index 0000000..62fac03 Binary files /dev/null and b/data/CTR-JVR/icon.jpg differ diff --git a/data/CTR-JVS/art.jpg b/data/CTR-JVS/art.jpg new file mode 100644 index 0000000..3646665 Binary files /dev/null and b/data/CTR-JVS/art.jpg differ diff --git a/data/CTR-JVS/data.yml b/data/CTR-JVS/data.yml new file mode 100644 index 0000000..25deda1 --- /dev/null +++ b/data/CTR-JVS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000114400 + name: 脱出アドベンチャー シアワセの赤い石 + updates: [] diff --git a/data/CTR-JVS/icon.jpg b/data/CTR-JVS/icon.jpg new file mode 100644 index 0000000..65a2c30 Binary files /dev/null and b/data/CTR-JVS/icon.jpg differ diff --git a/data/CTR-JVT/art.jpg b/data/CTR-JVT/art.jpg new file mode 100644 index 0000000..915c20e Binary files /dev/null and b/data/CTR-JVT/art.jpg differ diff --git a/data/CTR-JVT/data.yml b/data/CTR-JVT/data.yml new file mode 100644 index 0000000..a72b715 --- /dev/null +++ b/data/CTR-JVT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012C400 + name: Best of Solitaire + updates: [] +- regions: + - US + id: 0004000000123600 + name: Best of Solitaire + updates: [] diff --git a/data/CTR-JVT/icon.jpg b/data/CTR-JVT/icon.jpg new file mode 100644 index 0000000..e3981ad Binary files /dev/null and b/data/CTR-JVT/icon.jpg differ diff --git a/data/CTR-JVV/art.jpg b/data/CTR-JVV/art.jpg new file mode 100644 index 0000000..51640ee Binary files /dev/null and b/data/CTR-JVV/art.jpg differ diff --git a/data/CTR-JVV/data.yml b/data/CTR-JVV/data.yml new file mode 100644 index 0000000..4f2ae2e --- /dev/null +++ b/data/CTR-JVV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000096100 + name: VVVVVV + updates: [] +- regions: + - JP + id: 0004000000181D00 + name: VVVVVV + updates: [] +- regions: + - US + id: 000400000007FD00 + name: VVVVVV + updates: [] diff --git a/data/CTR-JVV/icon.jpg b/data/CTR-JVV/icon.jpg new file mode 100644 index 0000000..0d16220 Binary files /dev/null and b/data/CTR-JVV/icon.jpg differ diff --git a/data/CTR-JVW/art.jpg b/data/CTR-JVW/art.jpg new file mode 100644 index 0000000..0ce58a6 Binary files /dev/null and b/data/CTR-JVW/art.jpg differ diff --git a/data/CTR-JVW/data.yml b/data/CTR-JVW/data.yml new file mode 100644 index 0000000..9a79c2f --- /dev/null +++ b/data/CTR-JVW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000130300 + name: 拡散性ミリオンアーサー + updates: + - id: 0004000E00130300 + name: 更新データ Ver. 2.4.0 拡散性ミリオンアーサー diff --git a/data/CTR-JVW/icon.jpg b/data/CTR-JVW/icon.jpg new file mode 100644 index 0000000..a4c7b1e Binary files /dev/null and b/data/CTR-JVW/icon.jpg differ diff --git a/data/CTR-JVX/art.jpg b/data/CTR-JVX/art.jpg new file mode 100644 index 0000000..0f39d9a Binary files /dev/null and b/data/CTR-JVX/art.jpg differ diff --git a/data/CTR-JVX/data.yml b/data/CTR-JVX/data.yml new file mode 100644 index 0000000..81a0369 --- /dev/null +++ b/data/CTR-JVX/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000147F00 + name: Kirby Fighters™ Deluxe + updates: [] +- regions: + - JP + id: 000400000012EF00 + name: カービィファイターズZ + updates: [] +- regions: + - KR + id: 0004000000148000 + name: 커비 파이터즈! Z + updates: [] +- regions: + - TW + id: 0004000000148100 + name: Kirby Fighters Deluxe™(英文版) + updates: [] +- regions: + - US + id: 0004000000147E00 + name: Kirby Fighters Deluxe™ + updates: [] diff --git a/data/CTR-JVX/icon.jpg b/data/CTR-JVX/icon.jpg new file mode 100644 index 0000000..c4e5d79 Binary files /dev/null and b/data/CTR-JVX/icon.jpg differ diff --git a/data/CTR-JVY/art.jpg b/data/CTR-JVY/art.jpg new file mode 100644 index 0000000..4c1a81c Binary files /dev/null and b/data/CTR-JVY/art.jpg differ diff --git a/data/CTR-JVY/data.yml b/data/CTR-JVY/data.yml new file mode 100644 index 0000000..2792204 --- /dev/null +++ b/data/CTR-JVY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000BB100 + name: Viking Invasion 2 - Tower Defense + updates: [] +- regions: + - US + id: 0004000000090200 + name: Viking Invasion 2 - Tower Defense + updates: [] diff --git a/data/CTR-JVY/icon.jpg b/data/CTR-JVY/icon.jpg new file mode 100644 index 0000000..d5929ba Binary files /dev/null and b/data/CTR-JVY/icon.jpg differ diff --git a/data/CTR-JVZ/art.jpg b/data/CTR-JVZ/art.jpg new file mode 100644 index 0000000..4b9aea4 Binary files /dev/null and b/data/CTR-JVZ/art.jpg differ diff --git a/data/CTR-JVZ/data.yml b/data/CTR-JVZ/data.yml new file mode 100644 index 0000000..d66470f --- /dev/null +++ b/data/CTR-JVZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000108300 + name: グレコからの挑戦状! 英単語の島とオバケたち STEP1 + updates: [] diff --git a/data/CTR-JVZ/icon.jpg b/data/CTR-JVZ/icon.jpg new file mode 100644 index 0000000..4b455cf Binary files /dev/null and b/data/CTR-JVZ/icon.jpg differ diff --git a/data/CTR-JWA/art.jpg b/data/CTR-JWA/art.jpg new file mode 100644 index 0000000..66f25ca Binary files /dev/null and b/data/CTR-JWA/art.jpg differ diff --git a/data/CTR-JWA/data.yml b/data/CTR-JWA/data.yml new file mode 100644 index 0000000..321ff45 --- /dev/null +++ b/data/CTR-JWA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000000C1500 + name: 'Wild Adventures: Ultimate Deer Hunt 3D' + updates: [] diff --git a/data/CTR-JWA/icon.jpg b/data/CTR-JWA/icon.jpg new file mode 100644 index 0000000..de8a1be Binary files /dev/null and b/data/CTR-JWA/icon.jpg differ diff --git a/data/CTR-JWC/art.jpg b/data/CTR-JWC/art.jpg new file mode 100644 index 0000000..b29d2fd Binary files /dev/null and b/data/CTR-JWC/art.jpg differ diff --git a/data/CTR-JWC/data.yml b/data/CTR-JWC/data.yml new file mode 100644 index 0000000..86a3540 --- /dev/null +++ b/data/CTR-JWC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010AE00 + name: World Conqueror 3D + updates: [] +- regions: + - JP + id: 0004000000114F00 + name: WORLD CONQUEROR 3D + updates: [] +- regions: + - US + id: 00040000000FE700 + name: World Conqueror 3D + updates: [] diff --git a/data/CTR-JWC/icon.jpg b/data/CTR-JWC/icon.jpg new file mode 100644 index 0000000..3172cee Binary files /dev/null and b/data/CTR-JWC/icon.jpg differ diff --git a/data/CTR-JWE/art.jpg b/data/CTR-JWE/art.jpg new file mode 100644 index 0000000..07bfc63 Binary files /dev/null and b/data/CTR-JWE/art.jpg differ diff --git a/data/CTR-JWE/data.yml b/data/CTR-JWE/data.yml new file mode 100644 index 0000000..8fe30db --- /dev/null +++ b/data/CTR-JWE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016F500 + name: Unholy Heights + updates: [] +- regions: + - JP + id: 000400000012A400 + name: メゾン・ド・魔王 + updates: [] diff --git a/data/CTR-JWE/icon.jpg b/data/CTR-JWE/icon.jpg new file mode 100644 index 0000000..cbb917a Binary files /dev/null and b/data/CTR-JWE/icon.jpg differ diff --git a/data/CTR-JWG/art.jpg b/data/CTR-JWG/art.jpg new file mode 100644 index 0000000..524976f Binary files /dev/null and b/data/CTR-JWG/art.jpg differ diff --git a/data/CTR-JWG/data.yml b/data/CTR-JWG/data.yml new file mode 100644 index 0000000..7fbe7f7 --- /dev/null +++ b/data/CTR-JWG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015CE00 + name: Gunman Clive 2 + updates: [] +- regions: + - JP + id: 0004000000164B00 + name: ガンマンストーリー2 + updates: [] +- regions: + - US + id: 000400000012D300 + name: Gunman Clive 2 + updates: [] diff --git a/data/CTR-JWG/icon.jpg b/data/CTR-JWG/icon.jpg new file mode 100644 index 0000000..2005802 Binary files /dev/null and b/data/CTR-JWG/icon.jpg differ diff --git a/data/CTR-JWH/art.jpg b/data/CTR-JWH/art.jpg new file mode 100644 index 0000000..8ce858a Binary files /dev/null and b/data/CTR-JWH/art.jpg differ diff --git a/data/CTR-JWH/data.yml b/data/CTR-JWH/data.yml new file mode 100644 index 0000000..191b659 --- /dev/null +++ b/data/CTR-JWH/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000D2400 + name: Witch & Hero + updates: [] +- regions: + - JP + id: 00040000000E8C00 + name: 魔女と勇者 + updates: [] +- regions: + - KR + id: 000400000011BD00 + name: Witch&Hero + updates: [] +- regions: + - TW + id: 00040000000FC900 + name: 魔女與勇者 + updates: [] +- regions: + - US + id: 00040000000D0700 + name: Witch & Hero + updates: [] diff --git a/data/CTR-JWH/icon.jpg b/data/CTR-JWH/icon.jpg new file mode 100644 index 0000000..43e57d0 Binary files /dev/null and b/data/CTR-JWH/icon.jpg differ diff --git a/data/CTR-JWJ/art.jpg b/data/CTR-JWJ/art.jpg new file mode 100644 index 0000000..74687d9 Binary files /dev/null and b/data/CTR-JWJ/art.jpg differ diff --git a/data/CTR-JWJ/data.yml b/data/CTR-JWJ/data.yml new file mode 100644 index 0000000..1245e8c --- /dev/null +++ b/data/CTR-JWJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013BF00 + name: Parking Star 3D + updates: [] +- regions: + - JP + id: 000400000014B200 + name: ワールドパーキングプロ + updates: [] +- regions: + - US + id: 0004000000131500 + name: Parking Star 3D + updates: [] diff --git a/data/CTR-JWJ/icon.jpg b/data/CTR-JWJ/icon.jpg new file mode 100644 index 0000000..21865f9 Binary files /dev/null and b/data/CTR-JWJ/icon.jpg differ diff --git a/data/CTR-JWK/art.jpg b/data/CTR-JWK/art.jpg new file mode 100644 index 0000000..bb9e3dd Binary files /dev/null and b/data/CTR-JWK/art.jpg differ diff --git a/data/CTR-JWK/data.yml b/data/CTR-JWK/data.yml new file mode 100644 index 0000000..9813f48 --- /dev/null +++ b/data/CTR-JWK/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000ED000 + name: WAKEDAS + updates: [] +- regions: + - JP + id: 0004000000108000 + name: ワケダス + updates: [] +- regions: + - KR + id: 000400000011BF00 + name: WAKEDAS + updates: [] +- regions: + - US + id: 00040000000E6900 + name: WAKEDAS + updates: [] diff --git a/data/CTR-JWK/icon.jpg b/data/CTR-JWK/icon.jpg new file mode 100644 index 0000000..3830de5 Binary files /dev/null and b/data/CTR-JWK/icon.jpg differ diff --git a/data/CTR-JWM/art.jpg b/data/CTR-JWM/art.jpg new file mode 100644 index 0000000..b49db62 Binary files /dev/null and b/data/CTR-JWM/art.jpg differ diff --git a/data/CTR-JWM/data.yml b/data/CTR-JWM/data.yml new file mode 100644 index 0000000..b52f2f6 --- /dev/null +++ b/data/CTR-JWM/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000148400 + name: Comic Workshop + updates: [] +- regions: + - JP + id: 0004000000114700 + name: コミック工房 + updates: + - id: 0004000E00114700 + name: 更新データ Ver. 1.2 コミック工房 diff --git a/data/CTR-JWM/icon.jpg b/data/CTR-JWM/icon.jpg new file mode 100644 index 0000000..a248ac1 Binary files /dev/null and b/data/CTR-JWM/icon.jpg differ diff --git a/data/CTR-JWP/art.jpg b/data/CTR-JWP/art.jpg new file mode 100644 index 0000000..d7c2340 Binary files /dev/null and b/data/CTR-JWP/art.jpg differ diff --git a/data/CTR-JWP/data.yml b/data/CTR-JWP/data.yml new file mode 100644 index 0000000..14fdebd --- /dev/null +++ b/data/CTR-JWP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012DA00 + name: The Keep + updates: [] +- regions: + - JP + id: 0004000000156600 + name: THE KEEP ~呪われしクリスタルの迷宮~ + updates: [] +- regions: + - US + id: 0004000000124000 + name: The Keep + updates: [] diff --git a/data/CTR-JWP/icon.jpg b/data/CTR-JWP/icon.jpg new file mode 100644 index 0000000..3c5625b Binary files /dev/null and b/data/CTR-JWP/icon.jpg differ diff --git a/data/CTR-JWR/art.jpg b/data/CTR-JWR/art.jpg new file mode 100644 index 0000000..4b21dc9 Binary files /dev/null and b/data/CTR-JWR/art.jpg differ diff --git a/data/CTR-JWR/data.yml b/data/CTR-JWR/data.yml new file mode 100644 index 0000000..42a4bf7 --- /dev/null +++ b/data/CTR-JWR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000009CA00 + name: ATV Wild Ride 3D + updates: [] diff --git a/data/CTR-JWR/icon.jpg b/data/CTR-JWR/icon.jpg new file mode 100644 index 0000000..54af943 Binary files /dev/null and b/data/CTR-JWR/icon.jpg differ diff --git a/data/CTR-JWT/art.jpg b/data/CTR-JWT/art.jpg new file mode 100644 index 0000000..b7f11ec Binary files /dev/null and b/data/CTR-JWT/art.jpg differ diff --git a/data/CTR-JWT/data.yml b/data/CTR-JWT/data.yml new file mode 100644 index 0000000..e4ef554 --- /dev/null +++ b/data/CTR-JWT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000126700 + name: Another World - 20th Anniversary Edition + updates: [] +- regions: + - JP + id: 000400000015DE00 + name: Outer World 20th Anniversary Edition + updates: [] +- regions: + - US + id: 0004000000127200 + name: Another World - 20th Anniversary Edition + updates: [] diff --git a/data/CTR-JWT/icon.jpg b/data/CTR-JWT/icon.jpg new file mode 100644 index 0000000..b2baed5 Binary files /dev/null and b/data/CTR-JWT/icon.jpg differ diff --git a/data/CTR-JWV/art.jpg b/data/CTR-JWV/art.jpg new file mode 100644 index 0000000..b5728e9 Binary files /dev/null and b/data/CTR-JWV/art.jpg differ diff --git a/data/CTR-JWV/data.yml b/data/CTR-JWV/data.yml new file mode 100644 index 0000000..7f8ae29 --- /dev/null +++ b/data/CTR-JWV/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000153600 + name: Nintendo Badge Arcade + updates: + - id: 0004000E00153600 + name: 'Nintendo Badge Arcade: Update' +- regions: + - JP + id: 0004000000134600 + name: バッジとれ~るセンター + updates: + - id: 0004000E00134600 + name: 更新データ Ver. 1.3.1 バッジとれ~るセンター +- regions: + - US + id: 0004000000153500 + name: Nintendo Badge Arcade + updates: + - id: 0004000E00153500 + name: Nintendo Badge Arcade Update Ver. 1.3.1 diff --git a/data/CTR-JWV/icon.jpg b/data/CTR-JWV/icon.jpg new file mode 100644 index 0000000..2de1a67 Binary files /dev/null and b/data/CTR-JWV/icon.jpg differ diff --git a/data/CTR-JWW/art.jpg b/data/CTR-JWW/art.jpg new file mode 100644 index 0000000..c7e9a1d Binary files /dev/null and b/data/CTR-JWW/art.jpg differ diff --git a/data/CTR-JWW/data.yml b/data/CTR-JWW/data.yml new file mode 100644 index 0000000..ae559ce --- /dev/null +++ b/data/CTR-JWW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000131600 + name: Wizdom + updates: [] +- regions: + - US + id: 000400000012E800 + name: Wizdom + updates: [] diff --git a/data/CTR-JWW/icon.jpg b/data/CTR-JWW/icon.jpg new file mode 100644 index 0000000..d45f4e1 Binary files /dev/null and b/data/CTR-JWW/icon.jpg differ diff --git a/data/CTR-JWX/art.jpg b/data/CTR-JWX/art.jpg new file mode 100644 index 0000000..84f5464 Binary files /dev/null and b/data/CTR-JWX/art.jpg differ diff --git a/data/CTR-JWX/data.yml b/data/CTR-JWX/data.yml new file mode 100644 index 0000000..365a219 --- /dev/null +++ b/data/CTR-JWX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016A500 + name: Samurai Defender + updates: [] +- regions: + - JP + id: 0004000000125E00 + name: サムライディフェンダー + updates: [] +- regions: + - US + id: 000400000016AC00 + name: Samurai Defender + updates: [] diff --git a/data/CTR-JWX/icon.jpg b/data/CTR-JWX/icon.jpg new file mode 100644 index 0000000..e47f383 Binary files /dev/null and b/data/CTR-JWX/icon.jpg differ diff --git a/data/CTR-JXF/art.jpg b/data/CTR-JXF/art.jpg new file mode 100644 index 0000000..73f0804 Binary files /dev/null and b/data/CTR-JXF/art.jpg differ diff --git a/data/CTR-JXF/data.yml b/data/CTR-JXF/data.yml new file mode 100644 index 0000000..7af6d0d --- /dev/null +++ b/data/CTR-JXF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3800 + name: グレコからの挑戦状! 漢字の館とオバケたち 小学1年生 + updates: [] diff --git a/data/CTR-JXF/icon.jpg b/data/CTR-JXF/icon.jpg new file mode 100644 index 0000000..96afc99 Binary files /dev/null and b/data/CTR-JXF/icon.jpg differ diff --git a/data/CTR-JXG/art.jpg b/data/CTR-JXG/art.jpg new file mode 100644 index 0000000..eda6f42 Binary files /dev/null and b/data/CTR-JXG/art.jpg differ diff --git a/data/CTR-JXG/data.yml b/data/CTR-JXG/data.yml new file mode 100644 index 0000000..13c0eee --- /dev/null +++ b/data/CTR-JXG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3900 + name: グレコからの挑戦状! 漢字の館とオバケたち 小学2年生 + updates: [] diff --git a/data/CTR-JXG/icon.jpg b/data/CTR-JXG/icon.jpg new file mode 100644 index 0000000..387d908 Binary files /dev/null and b/data/CTR-JXG/icon.jpg differ diff --git a/data/CTR-JXH/art.jpg b/data/CTR-JXH/art.jpg new file mode 100644 index 0000000..76015f6 Binary files /dev/null and b/data/CTR-JXH/art.jpg differ diff --git a/data/CTR-JXH/data.yml b/data/CTR-JXH/data.yml new file mode 100644 index 0000000..bdfaf51 --- /dev/null +++ b/data/CTR-JXH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3A00 + name: グレコからの挑戦状! 漢字の館とオバケたち 小学3年生 + updates: [] diff --git a/data/CTR-JXH/icon.jpg b/data/CTR-JXH/icon.jpg new file mode 100644 index 0000000..855a00d Binary files /dev/null and b/data/CTR-JXH/icon.jpg differ diff --git a/data/CTR-JXJ/art.jpg b/data/CTR-JXJ/art.jpg new file mode 100644 index 0000000..1e1278f Binary files /dev/null and b/data/CTR-JXJ/art.jpg differ diff --git a/data/CTR-JXJ/data.yml b/data/CTR-JXJ/data.yml new file mode 100644 index 0000000..68a26cb --- /dev/null +++ b/data/CTR-JXJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3B00 + name: グレコからの挑戦状! 漢字の館とオバケたち 小学4年生 + updates: [] diff --git a/data/CTR-JXJ/icon.jpg b/data/CTR-JXJ/icon.jpg new file mode 100644 index 0000000..7bc1912 Binary files /dev/null and b/data/CTR-JXJ/icon.jpg differ diff --git a/data/CTR-JXK/art.jpg b/data/CTR-JXK/art.jpg new file mode 100644 index 0000000..a28f21e Binary files /dev/null and b/data/CTR-JXK/art.jpg differ diff --git a/data/CTR-JXK/data.yml b/data/CTR-JXK/data.yml new file mode 100644 index 0000000..08bb565 --- /dev/null +++ b/data/CTR-JXK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3C00 + name: グレコからの挑戦状! 漢字の館とオバケたち 小学5年生 + updates: [] diff --git a/data/CTR-JXK/icon.jpg b/data/CTR-JXK/icon.jpg new file mode 100644 index 0000000..a1fd57c Binary files /dev/null and b/data/CTR-JXK/icon.jpg differ diff --git a/data/CTR-JXL/art.jpg b/data/CTR-JXL/art.jpg new file mode 100644 index 0000000..ec4358e Binary files /dev/null and b/data/CTR-JXL/art.jpg differ diff --git a/data/CTR-JXL/data.yml b/data/CTR-JXL/data.yml new file mode 100644 index 0000000..0564019 --- /dev/null +++ b/data/CTR-JXL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000F3D00 + name: グレコからの挑戦状! 漢字の館とオバケたち 小学6年生 + updates: [] diff --git a/data/CTR-JXL/icon.jpg b/data/CTR-JXL/icon.jpg new file mode 100644 index 0000000..d258201 Binary files /dev/null and b/data/CTR-JXL/icon.jpg differ diff --git a/data/CTR-JXM/art.jpg b/data/CTR-JXM/art.jpg new file mode 100644 index 0000000..548bcd8 Binary files /dev/null and b/data/CTR-JXM/art.jpg differ diff --git a/data/CTR-JXM/data.yml b/data/CTR-JXM/data.yml new file mode 100644 index 0000000..12ecb4d --- /dev/null +++ b/data/CTR-JXM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000E5600 + name: Christmas Wonderland 3 + updates: [] diff --git a/data/CTR-JXM/icon.jpg b/data/CTR-JXM/icon.jpg new file mode 100644 index 0000000..0283986 Binary files /dev/null and b/data/CTR-JXM/icon.jpg differ diff --git a/data/CTR-JXN/art.jpg b/data/CTR-JXN/art.jpg new file mode 100644 index 0000000..449a063 Binary files /dev/null and b/data/CTR-JXN/art.jpg differ diff --git a/data/CTR-JXN/data.yml b/data/CTR-JXN/data.yml new file mode 100644 index 0000000..01c2ab7 --- /dev/null +++ b/data/CTR-JXN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000123E00 + name: Strike Force Foxx + updates: [] diff --git a/data/CTR-JXN/icon.jpg b/data/CTR-JXN/icon.jpg new file mode 100644 index 0000000..99b3b96 Binary files /dev/null and b/data/CTR-JXN/icon.jpg differ diff --git a/data/CTR-JXQ/art.jpg b/data/CTR-JXQ/art.jpg new file mode 100644 index 0000000..617c104 Binary files /dev/null and b/data/CTR-JXQ/art.jpg differ diff --git a/data/CTR-JXQ/data.yml b/data/CTR-JXQ/data.yml new file mode 100644 index 0000000..d0477fb --- /dev/null +++ b/data/CTR-JXQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000187100 + name: Johnny Dynamite + updates: [] +- regions: + - JP + id: 0004000000169400 + name: ダイナマイト ジョニー + updates: [] +- regions: + - US + id: 000400000011BB00 + name: Johnny Dynamite + updates: [] diff --git a/data/CTR-JXQ/icon.jpg b/data/CTR-JXQ/icon.jpg new file mode 100644 index 0000000..655e3e0 Binary files /dev/null and b/data/CTR-JXQ/icon.jpg differ diff --git a/data/CTR-JXR/art.jpg b/data/CTR-JXR/art.jpg new file mode 100644 index 0000000..8707f97 Binary files /dev/null and b/data/CTR-JXR/art.jpg differ diff --git a/data/CTR-JXR/data.yml b/data/CTR-JXR/data.yml new file mode 100644 index 0000000..47d1970 --- /dev/null +++ b/data/CTR-JXR/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117800 + name: European Conqueror 3D + updates: [] +- regions: + - US + id: 0004000000119500 + name: European Conqueror 3D + updates: [] diff --git a/data/CTR-JXR/icon.jpg b/data/CTR-JXR/icon.jpg new file mode 100644 index 0000000..df78161 Binary files /dev/null and b/data/CTR-JXR/icon.jpg differ diff --git a/data/CTR-JXS/art.jpg b/data/CTR-JXS/art.jpg new file mode 100644 index 0000000..2321cc2 Binary files /dev/null and b/data/CTR-JXS/art.jpg differ diff --git a/data/CTR-JXS/data.yml b/data/CTR-JXS/data.yml new file mode 100644 index 0000000..b5cb95f --- /dev/null +++ b/data/CTR-JXS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000112500 + name: Bird Mania Christmas 3D + updates: [] +- regions: + - JP + id: 000400000011F100 + name: バードマニア ウィンター 3D + updates: [] +- regions: + - US + id: 0004000000113D00 + name: Bird Mania Christmas 3D + updates: [] diff --git a/data/CTR-JXS/icon.jpg b/data/CTR-JXS/icon.jpg new file mode 100644 index 0000000..3d9aa9d Binary files /dev/null and b/data/CTR-JXS/icon.jpg differ diff --git a/data/CTR-JXT/art.jpg b/data/CTR-JXT/art.jpg new file mode 100644 index 0000000..2fbefd2 Binary files /dev/null and b/data/CTR-JXT/art.jpg differ diff --git a/data/CTR-JXT/data.yml b/data/CTR-JXT/data.yml new file mode 100644 index 0000000..8f263f3 --- /dev/null +++ b/data/CTR-JXT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000114E00 + name: マル合格! 地方公務員上級 専門試験 2015年度版 + updates: [] diff --git a/data/CTR-JXT/icon.jpg b/data/CTR-JXT/icon.jpg new file mode 100644 index 0000000..2b2e255 Binary files /dev/null and b/data/CTR-JXT/icon.jpg differ diff --git a/data/CTR-JXU/art.jpg b/data/CTR-JXU/art.jpg new file mode 100644 index 0000000..6a18a41 Binary files /dev/null and b/data/CTR-JXU/art.jpg differ diff --git a/data/CTR-JXU/data.yml b/data/CTR-JXU/data.yml new file mode 100644 index 0000000..27264a7 --- /dev/null +++ b/data/CTR-JXU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011B200 + name: 大人 VS グレコ 漢字の塔と オバケたち 完全フルセット + updates: + - id: 0004000E0011B200 + name: 更新データ Ver. 1.2 大人 VS グレコ 漢字の塔とオバケたち 完全フルセット diff --git a/data/CTR-JXU/icon.jpg b/data/CTR-JXU/icon.jpg new file mode 100644 index 0000000..3abf596 Binary files /dev/null and b/data/CTR-JXU/icon.jpg differ diff --git a/data/CTR-JXV/art.jpg b/data/CTR-JXV/art.jpg new file mode 100644 index 0000000..4005614 Binary files /dev/null and b/data/CTR-JXV/art.jpg differ diff --git a/data/CTR-JXV/data.yml b/data/CTR-JXV/data.yml new file mode 100644 index 0000000..f242a7f --- /dev/null +++ b/data/CTR-JXV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011B300 + name: 大人 VS グレコ 漢字の塔とオバケたち 激ムズ編 + updates: + - id: 0004000E0011B300 + name: 更新データ Ver. 1.1 大人 VS グレコ 漢字の塔とオバケたち 激ムズ編 diff --git a/data/CTR-JXV/icon.jpg b/data/CTR-JXV/icon.jpg new file mode 100644 index 0000000..30d7efb Binary files /dev/null and b/data/CTR-JXV/icon.jpg differ diff --git a/data/CTR-JXW/art.jpg b/data/CTR-JXW/art.jpg new file mode 100644 index 0000000..40b5680 Binary files /dev/null and b/data/CTR-JXW/art.jpg differ diff --git a/data/CTR-JXW/data.yml b/data/CTR-JXW/data.yml new file mode 100644 index 0000000..33f7364 --- /dev/null +++ b/data/CTR-JXW/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011B400 + name: 大人 VS グレコ 漢字の塔と オバケたち ちょいムズ編 + updates: + - id: 0004000E0011B400 + name: 更新データ Ver. 1.1 大人 VS グレコ 漢字の塔とオバケたち ちょいムズ編 diff --git a/data/CTR-JXW/icon.jpg b/data/CTR-JXW/icon.jpg new file mode 100644 index 0000000..6ac5392 Binary files /dev/null and b/data/CTR-JXW/icon.jpg differ diff --git a/data/CTR-JXX/art.jpg b/data/CTR-JXX/art.jpg new file mode 100644 index 0000000..a7ad724 Binary files /dev/null and b/data/CTR-JXX/art.jpg differ diff --git a/data/CTR-JXX/data.yml b/data/CTR-JXX/data.yml new file mode 100644 index 0000000..0d686e5 --- /dev/null +++ b/data/CTR-JXX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000011B500 + name: 大人 VS グレコ 漢字の塔とオバケたち 常識編 + updates: [] diff --git a/data/CTR-JXX/icon.jpg b/data/CTR-JXX/icon.jpg new file mode 100644 index 0000000..51b570c Binary files /dev/null and b/data/CTR-JXX/icon.jpg differ diff --git a/data/CTR-JY5/art.jpg b/data/CTR-JY5/art.jpg new file mode 100644 index 0000000..376efc1 Binary files /dev/null and b/data/CTR-JY5/art.jpg differ diff --git a/data/CTR-JY5/data.yml b/data/CTR-JY5/data.yml new file mode 100644 index 0000000..877bc8c --- /dev/null +++ b/data/CTR-JY5/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000157C00 + name: SteamWorld Heist + updates: [] +- regions: + - US + id: 000400000012D900 + name: SteamWorld Heist + updates: [] diff --git a/data/CTR-JY5/icon.jpg b/data/CTR-JY5/icon.jpg new file mode 100644 index 0000000..a92e240 Binary files /dev/null and b/data/CTR-JY5/icon.jpg differ diff --git a/data/CTR-JYH/art.jpg b/data/CTR-JYH/art.jpg new file mode 100644 index 0000000..b5e3f16 Binary files /dev/null and b/data/CTR-JYH/art.jpg differ diff --git a/data/CTR-JYH/data.yml b/data/CTR-JYH/data.yml new file mode 100644 index 0000000..109ca5a --- /dev/null +++ b/data/CTR-JYH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000138D00 + name: Pyramids 2 + updates: [] +- regions: + - US + id: 0004000000126E00 + name: Pyramids 2 + updates: [] diff --git a/data/CTR-JYH/icon.jpg b/data/CTR-JYH/icon.jpg new file mode 100644 index 0000000..3fe01d5 Binary files /dev/null and b/data/CTR-JYH/icon.jpg differ diff --git a/data/CTR-JYJ/art.jpg b/data/CTR-JYJ/art.jpg new file mode 100644 index 0000000..cfa4149 Binary files /dev/null and b/data/CTR-JYJ/art.jpg differ diff --git a/data/CTR-JYJ/data.yml b/data/CTR-JYJ/data.yml new file mode 100644 index 0000000..fd05706 --- /dev/null +++ b/data/CTR-JYJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000000C3000 + name: Snow Moto Racing 3D + updates: [] +- regions: + - JP + id: 000400000011ED00 + name: スノーモーターレーシング3D + updates: [] +- regions: + - US + id: 0004000000097400 + name: Snow Moto Racing 3D™ + updates: [] diff --git a/data/CTR-JYJ/icon.jpg b/data/CTR-JYJ/icon.jpg new file mode 100644 index 0000000..31389d9 Binary files /dev/null and b/data/CTR-JYJ/icon.jpg differ diff --git a/data/CTR-JYL/art.jpg b/data/CTR-JYL/art.jpg new file mode 100644 index 0000000..ac4e10c Binary files /dev/null and b/data/CTR-JYL/art.jpg differ diff --git a/data/CTR-JYL/data.yml b/data/CTR-JYL/data.yml new file mode 100644 index 0000000..06058a6 --- /dev/null +++ b/data/CTR-JYL/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012CA00 + name: Mario vs. Donkey Kong™ Tipping Stars + updates: + - id: 0004000E0012CA00 + name: 'Mario vs. Donkey Kong™ Tipping Stars: Update' +- regions: + - JP + id: 000400000012C900 + name: マリオvs.ドンキーコング みんなでミニランド + updates: + - id: 0004000E0012C900 + name: 更新データ Ver. 1.0.1 マリオvs.ドンキーコング みんなでミニランド +- regions: + - US + id: 000400000012C800 + name: 'Mario vs. Donkey Kong™: Tipping Stars' + updates: + - id: 0004000E0012C800 + name: 'Mario vs. Donkey Kong™: Tipping Stars Update Ver. 1.0.1' diff --git a/data/CTR-JYL/icon.jpg b/data/CTR-JYL/icon.jpg new file mode 100644 index 0000000..39e1d1e Binary files /dev/null and b/data/CTR-JYL/icon.jpg differ diff --git a/data/CTR-JYN/art.jpg b/data/CTR-JYN/art.jpg new file mode 100644 index 0000000..287330d Binary files /dev/null and b/data/CTR-JYN/art.jpg differ diff --git a/data/CTR-JYN/data.yml b/data/CTR-JYN/data.yml new file mode 100644 index 0000000..b528c51 --- /dev/null +++ b/data/CTR-JYN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000129B00 + name: プチノベル「青嵐の四月」 + updates: [] diff --git a/data/CTR-JYN/icon.jpg b/data/CTR-JYN/icon.jpg new file mode 100644 index 0000000..5e22db0 Binary files /dev/null and b/data/CTR-JYN/icon.jpg differ diff --git a/data/CTR-JYP/art.jpg b/data/CTR-JYP/art.jpg new file mode 100644 index 0000000..ce2a36f Binary files /dev/null and b/data/CTR-JYP/art.jpg differ diff --git a/data/CTR-JYP/data.yml b/data/CTR-JYP/data.yml new file mode 100644 index 0000000..24feafa --- /dev/null +++ b/data/CTR-JYP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000B6900 + name: 女家庭教師 伊都香先生と密室にいたら○○しちゃうかもしれない。 + updates: [] diff --git a/data/CTR-JYP/icon.jpg b/data/CTR-JYP/icon.jpg new file mode 100644 index 0000000..1caa1d3 Binary files /dev/null and b/data/CTR-JYP/icon.jpg differ diff --git a/data/CTR-JYR/art.jpg b/data/CTR-JYR/art.jpg new file mode 100644 index 0000000..64bcdee Binary files /dev/null and b/data/CTR-JYR/art.jpg differ diff --git a/data/CTR-JYR/data.yml b/data/CTR-JYR/data.yml new file mode 100644 index 0000000..d90b40a --- /dev/null +++ b/data/CTR-JYR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000157F00 + name: 3D Out Run™ + updates: [] +- regions: + - JP + id: 0004000000128900 + name: 3D アウトラン + updates: [] +- regions: + - US + id: 0004000000158A00 + name: 3D Out Run + updates: [] diff --git a/data/CTR-JYR/icon.jpg b/data/CTR-JYR/icon.jpg new file mode 100644 index 0000000..02d8bb2 Binary files /dev/null and b/data/CTR-JYR/icon.jpg differ diff --git a/data/CTR-JYS/art.jpg b/data/CTR-JYS/art.jpg new file mode 100644 index 0000000..b2e7284 Binary files /dev/null and b/data/CTR-JYS/art.jpg differ diff --git a/data/CTR-JYS/data.yml b/data/CTR-JYS/data.yml new file mode 100644 index 0000000..71ce3fc --- /dev/null +++ b/data/CTR-JYS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000129600 + name: AiRace Xeno + updates: [] +- regions: + - JP + id: 000400000014B300 + name: Aiレース:X + updates: [] +- regions: + - US + id: 000400000012BF00 + name: AiRace Xeno + updates: [] diff --git a/data/CTR-JYS/icon.jpg b/data/CTR-JYS/icon.jpg new file mode 100644 index 0000000..16bc77b Binary files /dev/null and b/data/CTR-JYS/icon.jpg differ diff --git a/data/CTR-JYT/art.jpg b/data/CTR-JYT/art.jpg new file mode 100644 index 0000000..52f0683 Binary files /dev/null and b/data/CTR-JYT/art.jpg differ diff --git a/data/CTR-JYT/data.yml b/data/CTR-JYT/data.yml new file mode 100644 index 0000000..87a3eb8 --- /dev/null +++ b/data/CTR-JYT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D3000 + name: YouTube + updates: [] diff --git a/data/CTR-JYT/icon.jpg b/data/CTR-JYT/icon.jpg new file mode 100644 index 0000000..0bbd0c4 Binary files /dev/null and b/data/CTR-JYT/icon.jpg differ diff --git a/data/CTR-JZ2/art.jpg b/data/CTR-JZ2/art.jpg new file mode 100644 index 0000000..7a34e65 Binary files /dev/null and b/data/CTR-JZ2/art.jpg differ diff --git a/data/CTR-JZ2/data.yml b/data/CTR-JZ2/data.yml new file mode 100644 index 0000000..ed449e8 --- /dev/null +++ b/data/CTR-JZ2/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000010A300 + name: 'My Style Studio: Hair Salon' + updates: [] +- regions: + - US + id: 0004000000109A00 + name: 'My Style Studio: Hair Salon' + updates: [] diff --git a/data/CTR-JZ2/icon.jpg b/data/CTR-JZ2/icon.jpg new file mode 100644 index 0000000..60ed700 Binary files /dev/null and b/data/CTR-JZ2/icon.jpg differ diff --git a/data/CTR-JZA/art.jpg b/data/CTR-JZA/art.jpg new file mode 100644 index 0000000..9a820c1 Binary files /dev/null and b/data/CTR-JZA/art.jpg differ diff --git a/data/CTR-JZA/data.yml b/data/CTR-JZA/data.yml new file mode 100644 index 0000000..8f9f2df --- /dev/null +++ b/data/CTR-JZA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000ADC00 + name: AZITO 3D Osaka + updates: [] diff --git a/data/CTR-JZA/icon.jpg b/data/CTR-JZA/icon.jpg new file mode 100644 index 0000000..d60bd5f Binary files /dev/null and b/data/CTR-JZA/icon.jpg differ diff --git a/data/CTR-JZB/art.jpg b/data/CTR-JZB/art.jpg new file mode 100644 index 0000000..f35bff7 Binary files /dev/null and b/data/CTR-JZB/art.jpg differ diff --git a/data/CTR-JZB/data.yml b/data/CTR-JZB/data.yml new file mode 100644 index 0000000..0d2cb4e --- /dev/null +++ b/data/CTR-JZB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000183300 + name: Escape From Zombie City + updates: [] +- regions: + - JP + id: 00040000000AB600 + name: 脱出!ゾンビシティ + updates: [] +- regions: + - US + id: 0004000000107B00 + name: Escape From Zombie City + updates: [] diff --git a/data/CTR-JZB/icon.jpg b/data/CTR-JZB/icon.jpg new file mode 100644 index 0000000..d0ab777 Binary files /dev/null and b/data/CTR-JZB/icon.jpg differ diff --git a/data/CTR-JZC/art.jpg b/data/CTR-JZC/art.jpg new file mode 100644 index 0000000..3d60e3f Binary files /dev/null and b/data/CTR-JZC/art.jpg differ diff --git a/data/CTR-JZC/data.yml b/data/CTR-JZC/data.yml new file mode 100644 index 0000000..8f6b420 --- /dev/null +++ b/data/CTR-JZC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D8800 + name: ゾンビズクール2 + updates: [] diff --git a/data/CTR-JZC/icon.jpg b/data/CTR-JZC/icon.jpg new file mode 100644 index 0000000..12021bb Binary files /dev/null and b/data/CTR-JZC/icon.jpg differ diff --git a/data/CTR-JZD/art.jpg b/data/CTR-JZD/art.jpg new file mode 100644 index 0000000..e62e3f5 Binary files /dev/null and b/data/CTR-JZD/art.jpg differ diff --git a/data/CTR-JZD/data.yml b/data/CTR-JZD/data.yml new file mode 100644 index 0000000..595690c --- /dev/null +++ b/data/CTR-JZD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117A00 + name: Quell Memento + updates: [] +- regions: + - JP + id: 0004000000167D00 + name: Shizuku Memory + updates: [] +- regions: + - US + id: 0004000000119600 + name: Quell Memento + updates: [] diff --git a/data/CTR-JZD/icon.jpg b/data/CTR-JZD/icon.jpg new file mode 100644 index 0000000..201be74 Binary files /dev/null and b/data/CTR-JZD/icon.jpg differ diff --git a/data/CTR-JZF/art.jpg b/data/CTR-JZF/art.jpg new file mode 100644 index 0000000..794e3fd Binary files /dev/null and b/data/CTR-JZF/art.jpg differ diff --git a/data/CTR-JZF/data.yml b/data/CTR-JZF/data.yml new file mode 100644 index 0000000..3418e5c --- /dev/null +++ b/data/CTR-JZF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000127800 + name: プチノベル「贈与の二月」 + updates: [] diff --git a/data/CTR-JZF/icon.jpg b/data/CTR-JZF/icon.jpg new file mode 100644 index 0000000..47a93fa Binary files /dev/null and b/data/CTR-JZF/icon.jpg differ diff --git a/data/CTR-JZG/art.jpg b/data/CTR-JZG/art.jpg new file mode 100644 index 0000000..ecd64ff Binary files /dev/null and b/data/CTR-JZG/art.jpg differ diff --git a/data/CTR-JZG/data.yml b/data/CTR-JZG/data.yml new file mode 100644 index 0000000..14ea28d --- /dev/null +++ b/data/CTR-JZG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000147400 + name: Undead Bowling + updates: [] +- regions: + - JP + id: 00040000000BFB00 + name: ゾンゲリボウリング + updates: [] +- regions: + - US + id: 00040000000EBA00 + name: Undead Bowling + updates: [] diff --git a/data/CTR-JZG/icon.jpg b/data/CTR-JZG/icon.jpg new file mode 100644 index 0000000..00e5278 Binary files /dev/null and b/data/CTR-JZG/icon.jpg differ diff --git a/data/CTR-JZJ/art.jpg b/data/CTR-JZJ/art.jpg new file mode 100644 index 0000000..961d7d4 Binary files /dev/null and b/data/CTR-JZJ/art.jpg differ diff --git a/data/CTR-JZJ/data.yml b/data/CTR-JZJ/data.yml new file mode 100644 index 0000000..014e739 --- /dev/null +++ b/data/CTR-JZJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000121C00 + name: マル合格! 基本情報技術者試験 平成26年度版 + updates: [] diff --git a/data/CTR-JZJ/icon.jpg b/data/CTR-JZJ/icon.jpg new file mode 100644 index 0000000..1c3649f Binary files /dev/null and b/data/CTR-JZJ/icon.jpg differ diff --git a/data/CTR-JZK/art.jpg b/data/CTR-JZK/art.jpg new file mode 100644 index 0000000..582f580 Binary files /dev/null and b/data/CTR-JZK/art.jpg differ diff --git a/data/CTR-JZK/data.yml b/data/CTR-JZK/data.yml new file mode 100644 index 0000000..74a60c0 --- /dev/null +++ b/data/CTR-JZK/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000127000 + name: Color Zen Kids + updates: [] +- regions: + - US + id: 0004000000124E00 + name: Color Zen Kids + updates: [] diff --git a/data/CTR-JZK/icon.jpg b/data/CTR-JZK/icon.jpg new file mode 100644 index 0000000..3b9add3 Binary files /dev/null and b/data/CTR-JZK/icon.jpg differ diff --git a/data/CTR-JZL/art.jpg b/data/CTR-JZL/art.jpg new file mode 100644 index 0000000..a2f0560 Binary files /dev/null and b/data/CTR-JZL/art.jpg differ diff --git a/data/CTR-JZL/data.yml b/data/CTR-JZL/data.yml new file mode 100644 index 0000000..6df069b --- /dev/null +++ b/data/CTR-JZL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000120200 + name: ラジルギでごじゃる! + updates: [] diff --git a/data/CTR-JZL/icon.jpg b/data/CTR-JZL/icon.jpg new file mode 100644 index 0000000..b30593f Binary files /dev/null and b/data/CTR-JZL/icon.jpg differ diff --git a/data/CTR-JZM/art.jpg b/data/CTR-JZM/art.jpg new file mode 100644 index 0000000..3a2586c Binary files /dev/null and b/data/CTR-JZM/art.jpg differ diff --git a/data/CTR-JZM/data.yml b/data/CTR-JZM/data.yml new file mode 100644 index 0000000..4c07770 --- /dev/null +++ b/data/CTR-JZM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000DB900 + name: 奪還指令魔女ダンジョン ~主の為ならやらねばなるまい~ + updates: [] diff --git a/data/CTR-JZM/icon.jpg b/data/CTR-JZM/icon.jpg new file mode 100644 index 0000000..30d33cd Binary files /dev/null and b/data/CTR-JZM/icon.jpg differ diff --git a/data/CTR-JZN/art.jpg b/data/CTR-JZN/art.jpg new file mode 100644 index 0000000..7f305f1 Binary files /dev/null and b/data/CTR-JZN/art.jpg differ diff --git a/data/CTR-JZN/data.yml b/data/CTR-JZN/data.yml new file mode 100644 index 0000000..5049f88 --- /dev/null +++ b/data/CTR-JZN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000117C00 + name: Color Zen + updates: [] +- regions: + - JP + id: 000400000015EB00 + name: カラフリラックス 色彩合わせ + updates: [] +- regions: + - US + id: 0004000000116D00 + name: Color Zen + updates: [] diff --git a/data/CTR-JZN/icon.jpg b/data/CTR-JZN/icon.jpg new file mode 100644 index 0000000..33b101d Binary files /dev/null and b/data/CTR-JZN/icon.jpg differ diff --git a/data/CTR-JZP/art.jpg b/data/CTR-JZP/art.jpg new file mode 100644 index 0000000..ed1d438 Binary files /dev/null and b/data/CTR-JZP/art.jpg differ diff --git a/data/CTR-JZP/data.yml b/data/CTR-JZP/data.yml new file mode 100644 index 0000000..778536a --- /dev/null +++ b/data/CTR-JZP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000012E000 + name: Zombie Panic in Wonderland DX + updates: [] +- regions: + - JP + id: 0004000000167A00 + name: ゾンビ パニック イン ワンダーランド DX + updates: [] +- regions: + - US + id: 00040000000F5600 + name: Zombie Panic in Wonderland DX + updates: [] diff --git a/data/CTR-JZP/icon.jpg b/data/CTR-JZP/icon.jpg new file mode 100644 index 0000000..007bb56 Binary files /dev/null and b/data/CTR-JZP/icon.jpg differ diff --git a/data/CTR-JZQ/art.jpg b/data/CTR-JZQ/art.jpg new file mode 100644 index 0000000..e45a46e Binary files /dev/null and b/data/CTR-JZQ/art.jpg differ diff --git a/data/CTR-JZQ/data.yml b/data/CTR-JZQ/data.yml new file mode 100644 index 0000000..5236c2a --- /dev/null +++ b/data/CTR-JZQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000155900 + name: Undead Storm Nightmare + updates: [] +- regions: + - JP + id: 0004000000121E00 + name: ゾンゲリパニック ナイトメア + updates: [] +- regions: + - US + id: 0004000000124800 + name: Undead Storm Nightmare + updates: [] diff --git a/data/CTR-JZQ/icon.jpg b/data/CTR-JZQ/icon.jpg new file mode 100644 index 0000000..4a227e5 Binary files /dev/null and b/data/CTR-JZQ/icon.jpg differ diff --git a/data/CTR-JZS/art.jpg b/data/CTR-JZS/art.jpg new file mode 100644 index 0000000..82d03cb Binary files /dev/null and b/data/CTR-JZS/art.jpg differ diff --git a/data/CTR-JZS/data.yml b/data/CTR-JZS/data.yml new file mode 100644 index 0000000..034947b --- /dev/null +++ b/data/CTR-JZS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000093200 + name: Zombie Slayer Diox™ + updates: [] +- regions: + - US + id: 000400000007FF00 + name: Zombie Slayer Diox™ + updates: [] diff --git a/data/CTR-JZS/icon.jpg b/data/CTR-JZS/icon.jpg new file mode 100644 index 0000000..5852e4d Binary files /dev/null and b/data/CTR-JZS/icon.jpg differ diff --git a/data/CTR-K22/art.jpg b/data/CTR-K22/art.jpg new file mode 100644 index 0000000..c77d893 Binary files /dev/null and b/data/CTR-K22/art.jpg differ diff --git a/data/CTR-K22/data.yml b/data/CTR-K22/data.yml new file mode 100644 index 0000000..7454f89 --- /dev/null +++ b/data/CTR-K22/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DCB00 + name: Bricks Defender + updates: [] diff --git a/data/CTR-K22/icon.jpg b/data/CTR-K22/icon.jpg new file mode 100644 index 0000000..2970ed7 Binary files /dev/null and b/data/CTR-K22/icon.jpg differ diff --git a/data/CTR-K44/art.jpg b/data/CTR-K44/art.jpg new file mode 100644 index 0000000..2f02e61 Binary files /dev/null and b/data/CTR-K44/art.jpg differ diff --git a/data/CTR-K44/data.yml b/data/CTR-K44/data.yml new file mode 100644 index 0000000..38cb95a --- /dev/null +++ b/data/CTR-K44/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DD000 + name: Bricks Defender 2 + updates: [] diff --git a/data/CTR-K44/icon.jpg b/data/CTR-K44/icon.jpg new file mode 100644 index 0000000..dc8cb43 Binary files /dev/null and b/data/CTR-K44/icon.jpg differ diff --git a/data/CTR-K62/art.jpg b/data/CTR-K62/art.jpg new file mode 100644 index 0000000..6ac38fb Binary files /dev/null and b/data/CTR-K62/art.jpg differ diff --git a/data/CTR-K62/data.yml b/data/CTR-K62/data.yml new file mode 100644 index 0000000..a3d7f81 --- /dev/null +++ b/data/CTR-K62/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DCD00 + name: Pinball Breaker VI + updates: [] +- regions: + - US + id: 00040000001DC600 + name: Pinball Breaker VI + updates: [] diff --git a/data/CTR-K62/icon.jpg b/data/CTR-K62/icon.jpg new file mode 100644 index 0000000..0ca679b Binary files /dev/null and b/data/CTR-K62/icon.jpg differ diff --git a/data/CTR-K7M/art.jpg b/data/CTR-K7M/art.jpg new file mode 100644 index 0000000..769d5e7 Binary files /dev/null and b/data/CTR-K7M/art.jpg differ diff --git a/data/CTR-K7M/data.yml b/data/CTR-K7M/data.yml new file mode 100644 index 0000000..b7b9ea1 --- /dev/null +++ b/data/CTR-K7M/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DCE00 + name: Maze Breaker 2 + updates: [] diff --git a/data/CTR-K7M/icon.jpg b/data/CTR-K7M/icon.jpg new file mode 100644 index 0000000..965c803 Binary files /dev/null and b/data/CTR-K7M/icon.jpg differ diff --git a/data/CTR-K9K/art.jpg b/data/CTR-K9K/art.jpg new file mode 100644 index 0000000..cbbf71b Binary files /dev/null and b/data/CTR-K9K/art.jpg differ diff --git a/data/CTR-K9K/data.yml b/data/CTR-K9K/data.yml new file mode 100644 index 0000000..d9f0cc1 --- /dev/null +++ b/data/CTR-K9K/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B3D00 + name: デジコロ ケシカスくん Vol.009 寒さを消す、あったカイロ! + updates: [] diff --git a/data/CTR-K9K/icon.jpg b/data/CTR-K9K/icon.jpg new file mode 100644 index 0000000..96fe1b1 Binary files /dev/null and b/data/CTR-K9K/icon.jpg differ diff --git a/data/CTR-K9P/art.jpg b/data/CTR-K9P/art.jpg new file mode 100644 index 0000000..4e903bb Binary files /dev/null and b/data/CTR-K9P/art.jpg differ diff --git a/data/CTR-K9P/data.yml b/data/CTR-K9P/data.yml new file mode 100644 index 0000000..892c0ea --- /dev/null +++ b/data/CTR-K9P/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B7400 + name: Pic-a-Pix Colour + updates: [] +- regions: + - JP + id: 00040000001C9900 + name: お絵かきパズル Pic-a-Pix + updates: [] +- regions: + - US + id: 00040000001B7800 + name: Pic-a-Pix Color + updates: [] diff --git a/data/CTR-K9P/icon.jpg b/data/CTR-K9P/icon.jpg new file mode 100644 index 0000000..f56b2f6 Binary files /dev/null and b/data/CTR-K9P/icon.jpg differ diff --git a/data/CTR-K9S/art.jpg b/data/CTR-K9S/art.jpg new file mode 100644 index 0000000..6cd7789 Binary files /dev/null and b/data/CTR-K9S/art.jpg differ diff --git a/data/CTR-K9S/data.yml b/data/CTR-K9S/data.yml new file mode 100644 index 0000000..e491384 --- /dev/null +++ b/data/CTR-K9S/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B3E00 + name: デジコロ じーさん邪 Vol.009 石ころをけるのじゃっっ!! + updates: [] diff --git a/data/CTR-K9S/icon.jpg b/data/CTR-K9S/icon.jpg new file mode 100644 index 0000000..458eb25 Binary files /dev/null and b/data/CTR-K9S/icon.jpg differ diff --git a/data/CTR-KA2/art.jpg b/data/CTR-KA2/art.jpg new file mode 100644 index 0000000..e62c52b Binary files /dev/null and b/data/CTR-KA2/art.jpg differ diff --git a/data/CTR-KA2/data.yml b/data/CTR-KA2/data.yml new file mode 100644 index 0000000..f662227 --- /dev/null +++ b/data/CTR-KA2/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000197F00 + name: アイカツスターズ! ファーストアピール + updates: + - id: 0004000E00197F00 + name: 更新データ Ver. 1.2.0 アイカツスターズ! ファーストアピール diff --git a/data/CTR-KA2/icon.jpg b/data/CTR-KA2/icon.jpg new file mode 100644 index 0000000..345a0c2 Binary files /dev/null and b/data/CTR-KA2/icon.jpg differ diff --git a/data/CTR-KA3/art.jpg b/data/CTR-KA3/art.jpg new file mode 100644 index 0000000..9fbee53 Binary files /dev/null and b/data/CTR-KA3/art.jpg differ diff --git a/data/CTR-KA3/data.yml b/data/CTR-KA3/data.yml new file mode 100644 index 0000000..aab22ce --- /dev/null +++ b/data/CTR-KA3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BF500 + name: キュ~トなゴマちゃん いっぱいパズル + updates: [] diff --git a/data/CTR-KA3/icon.jpg b/data/CTR-KA3/icon.jpg new file mode 100644 index 0000000..2e44136 Binary files /dev/null and b/data/CTR-KA3/icon.jpg differ diff --git a/data/CTR-KA7/art.jpg b/data/CTR-KA7/art.jpg new file mode 100644 index 0000000..9a63d9c Binary files /dev/null and b/data/CTR-KA7/art.jpg differ diff --git a/data/CTR-KA7/data.yml b/data/CTR-KA7/data.yml new file mode 100644 index 0000000..36a5094 --- /dev/null +++ b/data/CTR-KA7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7600 + name: 脱出アドベンチャー 第七の予言 + updates: [] diff --git a/data/CTR-KA7/icon.jpg b/data/CTR-KA7/icon.jpg new file mode 100644 index 0000000..022bc20 Binary files /dev/null and b/data/CTR-KA7/icon.jpg differ diff --git a/data/CTR-KA8/art.jpg b/data/CTR-KA8/art.jpg new file mode 100644 index 0000000..5d026f3 Binary files /dev/null and b/data/CTR-KA8/art.jpg differ diff --git a/data/CTR-KA8/data.yml b/data/CTR-KA8/data.yml new file mode 100644 index 0000000..96530cb --- /dev/null +++ b/data/CTR-KA8/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DA500 + name: Turkey, Please! + updates: [] +- regions: + - US + id: 00040000001DA400 + name: Turkey, Please! + updates: [] diff --git a/data/CTR-KA8/icon.jpg b/data/CTR-KA8/icon.jpg new file mode 100644 index 0000000..4591e34 Binary files /dev/null and b/data/CTR-KA8/icon.jpg differ diff --git a/data/CTR-KAA/art.jpg b/data/CTR-KAA/art.jpg new file mode 100644 index 0000000..8285690 Binary files /dev/null and b/data/CTR-KAA/art.jpg differ diff --git a/data/CTR-KAA/data.yml b/data/CTR-KAA/data.yml new file mode 100644 index 0000000..9871a4d --- /dev/null +++ b/data/CTR-KAA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000163200 + name: Fullblox™ + updates: [] +- regions: + - JP + id: 0004000000157B00 + name: 引ク出ス ヒッパランド + updates: [] +- regions: + - US + id: 0004000000163100 + name: Stretchmo™ + updates: [] diff --git a/data/CTR-KAA/icon.jpg b/data/CTR-KAA/icon.jpg new file mode 100644 index 0000000..75b80e0 Binary files /dev/null and b/data/CTR-KAA/icon.jpg differ diff --git a/data/CTR-KAB/art.jpg b/data/CTR-KAB/art.jpg new file mode 100644 index 0000000..ab840af Binary files /dev/null and b/data/CTR-KAB/art.jpg differ diff --git a/data/CTR-KAB/data.yml b/data/CTR-KAB/data.yml new file mode 100644 index 0000000..75e5357 --- /dev/null +++ b/data/CTR-KAB/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019A500 + name: Stickman Super Athletics + updates: + - id: 0004000E0019A500 + name: 'Stickman Super Athletics: Update' +- regions: + - JP + id: 00040000001A6300 + name: スーパーアスリート棒人間 + updates: [] +- regions: + - US + id: 000400000019A400 + name: Stickman Super Athletics + updates: + - id: 0004000E0019A400 + name: Stickman Super Athletics Update Ver. 1.1 diff --git a/data/CTR-KAB/icon.jpg b/data/CTR-KAB/icon.jpg new file mode 100644 index 0000000..25dc60b Binary files /dev/null and b/data/CTR-KAB/icon.jpg differ diff --git a/data/CTR-KAD/art.jpg b/data/CTR-KAD/art.jpg new file mode 100644 index 0000000..e6c9412 Binary files /dev/null and b/data/CTR-KAD/art.jpg differ diff --git a/data/CTR-KAD/data.yml b/data/CTR-KAD/data.yml new file mode 100644 index 0000000..c2acc22 --- /dev/null +++ b/data/CTR-KAD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000189A00 + name: きせかえ人形 アトリエ デコ ラ ドール コレクション + updates: [] diff --git a/data/CTR-KAD/icon.jpg b/data/CTR-KAD/icon.jpg new file mode 100644 index 0000000..9d9979f Binary files /dev/null and b/data/CTR-KAD/icon.jpg differ diff --git a/data/CTR-KAE/art.jpg b/data/CTR-KAE/art.jpg new file mode 100644 index 0000000..c45c885 Binary files /dev/null and b/data/CTR-KAE/art.jpg differ diff --git a/data/CTR-KAE/data.yml b/data/CTR-KAE/data.yml new file mode 100644 index 0000000..d2d5f2e --- /dev/null +++ b/data/CTR-KAE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019BC00 + name: Splat The Difference + updates: [] +- regions: + - JP + id: 00040000001B0100 + name: レッツ!スプラト!間違い探し + updates: [] +- regions: + - US + id: 000400000019BF00 + name: Splat The Difference + updates: [] diff --git a/data/CTR-KAE/icon.jpg b/data/CTR-KAE/icon.jpg new file mode 100644 index 0000000..56a71d4 Binary files /dev/null and b/data/CTR-KAE/icon.jpg differ diff --git a/data/CTR-KAF/art.jpg b/data/CTR-KAF/art.jpg new file mode 100644 index 0000000..748d06f Binary files /dev/null and b/data/CTR-KAF/art.jpg differ diff --git a/data/CTR-KAF/data.yml b/data/CTR-KAF/data.yml new file mode 100644 index 0000000..fa4b6d2 --- /dev/null +++ b/data/CTR-KAF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018B700 + name: Alphadia + updates: [] +- regions: + - JP + id: 0004000000177D00 + name: アルファディア + updates: [] +- regions: + - US + id: 0004000000188100 + name: Alphadia + updates: [] diff --git a/data/CTR-KAF/icon.jpg b/data/CTR-KAF/icon.jpg new file mode 100644 index 0000000..4da72c9 Binary files /dev/null and b/data/CTR-KAF/icon.jpg differ diff --git a/data/CTR-KAH/art.jpg b/data/CTR-KAH/art.jpg new file mode 100644 index 0000000..f5cbaac Binary files /dev/null and b/data/CTR-KAH/art.jpg differ diff --git a/data/CTR-KAH/data.yml b/data/CTR-KAH/data.yml new file mode 100644 index 0000000..d9cd1f7 --- /dev/null +++ b/data/CTR-KAH/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AFF00 + name: 桃太郎電鉄2017 たちあがれ日本!! 持っている人と対戦版 + updates: + - id: 0004000E001AFF00 + name: 更新データ Ver. 1.1 桃太郎電鉄2017 たちあがれ日本!! 持っている人と対戦版 diff --git a/data/CTR-KAH/icon.jpg b/data/CTR-KAH/icon.jpg new file mode 100644 index 0000000..f9136aa Binary files /dev/null and b/data/CTR-KAH/icon.jpg differ diff --git a/data/CTR-KAK/art.jpg b/data/CTR-KAK/art.jpg new file mode 100644 index 0000000..ed8aa18 Binary files /dev/null and b/data/CTR-KAK/art.jpg differ diff --git a/data/CTR-KAK/data.yml b/data/CTR-KAK/data.yml new file mode 100644 index 0000000..0866fdc --- /dev/null +++ b/data/CTR-KAK/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000182A00 + name: JOHNNY'S PAYDAY PANIC + updates: [] +- regions: + - JP + id: 000400000016FC00 + name: 激働!アルバイターKOJI + updates: [] +- regions: + - KR + id: 0004000000184600 + name: JOHNNY'S PAYDAY PANIC + updates: [] +- regions: + - TW + id: 000400000017A900 + name: Johnny's Payday Panic(英日版) + updates: [] +- regions: + - US + id: 0004000000183000 + name: JOHNNY'S PAYDAY PANIC + updates: [] diff --git a/data/CTR-KAK/icon.jpg b/data/CTR-KAK/icon.jpg new file mode 100644 index 0000000..4a55021 Binary files /dev/null and b/data/CTR-KAK/icon.jpg differ diff --git a/data/CTR-KAL/art.jpg b/data/CTR-KAL/art.jpg new file mode 100644 index 0000000..c7402ce Binary files /dev/null and b/data/CTR-KAL/art.jpg differ diff --git a/data/CTR-KAL/data.yml b/data/CTR-KAL/data.yml new file mode 100644 index 0000000..4cbc584 --- /dev/null +++ b/data/CTR-KAL/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000182300 + name: 'The Legend of Zelda™: Tri Force Heroes Demo' + updates: [] +- regions: + - JP + id: 0004000000182100 + name: ゼルダの伝説 トライフォース3銃士 (試勇版) + updates: [] +- regions: + - US + id: 0004000000182200 + name: 'The Legend of Zelda™: Tri Force Heroes Demo' + updates: [] diff --git a/data/CTR-KAL/icon.jpg b/data/CTR-KAL/icon.jpg new file mode 100644 index 0000000..8868f46 Binary files /dev/null and b/data/CTR-KAL/icon.jpg differ diff --git a/data/CTR-KAM/art.jpg b/data/CTR-KAM/art.jpg new file mode 100644 index 0000000..b849c3e Binary files /dev/null and b/data/CTR-KAM/art.jpg differ diff --git a/data/CTR-KAM/data.yml b/data/CTR-KAM/data.yml new file mode 100644 index 0000000..063e66e --- /dev/null +++ b/data/CTR-KAM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000140400 + name: ぐるたん 大人の英単語 + updates: [] diff --git a/data/CTR-KAM/icon.jpg b/data/CTR-KAM/icon.jpg new file mode 100644 index 0000000..df88a1c Binary files /dev/null and b/data/CTR-KAM/icon.jpg differ diff --git a/data/CTR-KAQ/art.jpg b/data/CTR-KAQ/art.jpg new file mode 100644 index 0000000..0065aa1 Binary files /dev/null and b/data/CTR-KAQ/art.jpg differ diff --git a/data/CTR-KAQ/data.yml b/data/CTR-KAQ/data.yml new file mode 100644 index 0000000..9364634 --- /dev/null +++ b/data/CTR-KAQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000018DB00 + name: エイリアンパニック! + updates: [] diff --git a/data/CTR-KAQ/icon.jpg b/data/CTR-KAQ/icon.jpg new file mode 100644 index 0000000..22b5cbb Binary files /dev/null and b/data/CTR-KAQ/icon.jpg differ diff --git a/data/CTR-KAR/art.jpg b/data/CTR-KAR/art.jpg new file mode 100644 index 0000000..5614bde Binary files /dev/null and b/data/CTR-KAR/art.jpg differ diff --git a/data/CTR-KAR/data.yml b/data/CTR-KAR/data.yml new file mode 100644 index 0000000..85f27eb --- /dev/null +++ b/data/CTR-KAR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C0F00 + name: アライアンス・アライブ 体験版 + updates: [] diff --git a/data/CTR-KAR/icon.jpg b/data/CTR-KAR/icon.jpg new file mode 100644 index 0000000..577dc9c Binary files /dev/null and b/data/CTR-KAR/icon.jpg differ diff --git a/data/CTR-KAS/art.jpg b/data/CTR-KAS/art.jpg new file mode 100644 index 0000000..b4cbb46 Binary files /dev/null and b/data/CTR-KAS/art.jpg differ diff --git a/data/CTR-KAS/data.yml b/data/CTR-KAS/data.yml new file mode 100644 index 0000000..76d541a --- /dev/null +++ b/data/CTR-KAS/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016EB00 + name: Ash + updates: [] +- regions: + - US + id: 000400000016EE00 + name: ASH + updates: + - id: 0004000E0016EE00 + name: ASH Update Ver. 1.1 diff --git a/data/CTR-KAS/icon.jpg b/data/CTR-KAS/icon.jpg new file mode 100644 index 0000000..dd6ebab Binary files /dev/null and b/data/CTR-KAS/icon.jpg differ diff --git a/data/CTR-KAW/art.jpg b/data/CTR-KAW/art.jpg new file mode 100644 index 0000000..f908af4 Binary files /dev/null and b/data/CTR-KAW/art.jpg differ diff --git a/data/CTR-KAW/data.yml b/data/CTR-KAW/data.yml new file mode 100644 index 0000000..18cd5aa --- /dev/null +++ b/data/CTR-KAW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C6400 + name: Alchemic Dungeons + updates: [] +- regions: + - JP + id: 00040000001C3200 + name: アルケミックダンジョンズ + updates: [] +- regions: + - US + id: 00040000001C6B00 + name: Alchemic Dungeons + updates: [] diff --git a/data/CTR-KAW/icon.jpg b/data/CTR-KAW/icon.jpg new file mode 100644 index 0000000..32c8369 Binary files /dev/null and b/data/CTR-KAW/icon.jpg differ diff --git a/data/CTR-KB8/art.jpg b/data/CTR-KB8/art.jpg new file mode 100644 index 0000000..777d5bb Binary files /dev/null and b/data/CTR-KB8/art.jpg differ diff --git a/data/CTR-KB8/data.yml b/data/CTR-KB8/data.yml new file mode 100644 index 0000000..1334b45 --- /dev/null +++ b/data/CTR-KB8/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000198400 + name: ベイブレードバースト ベイロガープラス&パズル + updates: + - id: 0004000E00198400 + name: 更新データ Ver. 1.1 ベイブレードバースト ベイロガープラス&パズル diff --git a/data/CTR-KB8/icon.jpg b/data/CTR-KB8/icon.jpg new file mode 100644 index 0000000..cd26792 Binary files /dev/null and b/data/CTR-KB8/icon.jpg differ diff --git a/data/CTR-KB9/art.jpg b/data/CTR-KB9/art.jpg new file mode 100644 index 0000000..73222a0 Binary files /dev/null and b/data/CTR-KB9/art.jpg differ diff --git a/data/CTR-KB9/data.yml b/data/CTR-KB9/data.yml new file mode 100644 index 0000000..39ea7ba --- /dev/null +++ b/data/CTR-KB9/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001CA100 + name: 超人ベースボールスタジアム 熱血ストーリー版 + updates: + - id: 0004000E001CA100 + name: 更新データ Ver.1.1 超人ベースボールスタジアム 熱血ストーリー版 diff --git a/data/CTR-KB9/icon.jpg b/data/CTR-KB9/icon.jpg new file mode 100644 index 0000000..a704174 Binary files /dev/null and b/data/CTR-KB9/icon.jpg differ diff --git a/data/CTR-KBA/art.jpg b/data/CTR-KBA/art.jpg new file mode 100644 index 0000000..d3c7444 Binary files /dev/null and b/data/CTR-KBA/art.jpg differ diff --git a/data/CTR-KBA/data.yml b/data/CTR-KBA/data.yml new file mode 100644 index 0000000..31c0757 --- /dev/null +++ b/data/CTR-KBA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000190500 + name: 超人ベースボールスタジアム + updates: [] diff --git a/data/CTR-KBA/icon.jpg b/data/CTR-KBA/icon.jpg new file mode 100644 index 0000000..f1ed84d Binary files /dev/null and b/data/CTR-KBA/icon.jpg differ diff --git a/data/CTR-KBB/art.jpg b/data/CTR-KBB/art.jpg new file mode 100644 index 0000000..ed20031 Binary files /dev/null and b/data/CTR-KBB/art.jpg differ diff --git a/data/CTR-KBB/data.yml b/data/CTR-KBB/data.yml new file mode 100644 index 0000000..67e9a89 --- /dev/null +++ b/data/CTR-KBB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000166C00 + name: バトル オブ エレメンタル REBOOST + updates: [] diff --git a/data/CTR-KBB/icon.jpg b/data/CTR-KBB/icon.jpg new file mode 100644 index 0000000..99bf242 Binary files /dev/null and b/data/CTR-KBB/icon.jpg differ diff --git a/data/CTR-KBD/art.jpg b/data/CTR-KBD/art.jpg new file mode 100644 index 0000000..8c563df Binary files /dev/null and b/data/CTR-KBD/art.jpg differ diff --git a/data/CTR-KBD/data.yml b/data/CTR-KBD/data.yml new file mode 100644 index 0000000..29382a0 --- /dev/null +++ b/data/CTR-KBD/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000198700 + name: 棒人間チャレンジ! + updates: + - id: 0004000E00198700 + name: 更新データ Ver. 3.0.0 棒人間チャレンジ! diff --git a/data/CTR-KBD/icon.jpg b/data/CTR-KBD/icon.jpg new file mode 100644 index 0000000..55f3fc2 Binary files /dev/null and b/data/CTR-KBD/icon.jpg differ diff --git a/data/CTR-KBH/art.jpg b/data/CTR-KBH/art.jpg new file mode 100644 index 0000000..af24675 Binary files /dev/null and b/data/CTR-KBH/art.jpg differ diff --git a/data/CTR-KBH/data.yml b/data/CTR-KBH/data.yml new file mode 100644 index 0000000..80723d9 --- /dev/null +++ b/data/CTR-KBH/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000190600 + name: ビンゴde脳とれ ビンとれ + updates: [] +- regions: + - US + id: 00040000001BD100 + name: Bingo Collection + updates: [] diff --git a/data/CTR-KBH/icon.jpg b/data/CTR-KBH/icon.jpg new file mode 100644 index 0000000..b140ff2 Binary files /dev/null and b/data/CTR-KBH/icon.jpg differ diff --git a/data/CTR-KBJ/art.jpg b/data/CTR-KBJ/art.jpg new file mode 100644 index 0000000..fc6574c Binary files /dev/null and b/data/CTR-KBJ/art.jpg differ diff --git a/data/CTR-KBJ/data.yml b/data/CTR-KBJ/data.yml new file mode 100644 index 0000000..09d4278 --- /dev/null +++ b/data/CTR-KBJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019E500 + name: 'Blasting Agent: Ultimate Edition' + updates: [] +- regions: + - JP + id: 00040000001BDF00 + name: BLASTING AGENT ULTIMATE EDITION + updates: [] +- regions: + - US + id: 000400000019F200 + name: 'Blasting Agent: Ultimate Edition' + updates: [] diff --git a/data/CTR-KBJ/icon.jpg b/data/CTR-KBJ/icon.jpg new file mode 100644 index 0000000..a1959a9 Binary files /dev/null and b/data/CTR-KBJ/icon.jpg differ diff --git a/data/CTR-KBK/art.jpg b/data/CTR-KBK/art.jpg new file mode 100644 index 0000000..76c33b8 Binary files /dev/null and b/data/CTR-KBK/art.jpg differ diff --git a/data/CTR-KBK/data.yml b/data/CTR-KBK/data.yml new file mode 100644 index 0000000..6e1105e --- /dev/null +++ b/data/CTR-KBK/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000169100 + name: Bloo Kid 2 + updates: [] +- regions: + - JP + id: 000400000016B500 + name: ブルーキッド 2 + updates: [] diff --git a/data/CTR-KBK/icon.jpg b/data/CTR-KBK/icon.jpg new file mode 100644 index 0000000..720babc Binary files /dev/null and b/data/CTR-KBK/icon.jpg differ diff --git a/data/CTR-KBL/art.jpg b/data/CTR-KBL/art.jpg new file mode 100644 index 0000000..3ed6f91 Binary files /dev/null and b/data/CTR-KBL/art.jpg differ diff --git a/data/CTR-KBL/data.yml b/data/CTR-KBL/data.yml new file mode 100644 index 0000000..99adbef --- /dev/null +++ b/data/CTR-KBL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156000 + name: 超人ウルトラベースボール アクションカードバトル ライト + updates: [] diff --git a/data/CTR-KBL/icon.jpg b/data/CTR-KBL/icon.jpg new file mode 100644 index 0000000..a87009a Binary files /dev/null and b/data/CTR-KBL/icon.jpg differ diff --git a/data/CTR-KBM/art.jpg b/data/CTR-KBM/art.jpg new file mode 100644 index 0000000..971d785 Binary files /dev/null and b/data/CTR-KBM/art.jpg differ diff --git a/data/CTR-KBM/data.yml b/data/CTR-KBM/data.yml new file mode 100644 index 0000000..ebcc4bd --- /dev/null +++ b/data/CTR-KBM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014DA00 + name: Battleminer + updates: [] +- regions: + - JP + id: 0004000000189100 + name: BATTLEMINER + updates: [] +- regions: + - US + id: 000400000014C900 + name: Battleminer + updates: [] diff --git a/data/CTR-KBM/icon.jpg b/data/CTR-KBM/icon.jpg new file mode 100644 index 0000000..6ead922 Binary files /dev/null and b/data/CTR-KBM/icon.jpg differ diff --git a/data/CTR-KBN/art.jpg b/data/CTR-KBN/art.jpg new file mode 100644 index 0000000..cda1f27 Binary files /dev/null and b/data/CTR-KBN/art.jpg differ diff --git a/data/CTR-KBN/data.yml b/data/CTR-KBN/data.yml new file mode 100644 index 0000000..fc9c2f0 --- /dev/null +++ b/data/CTR-KBN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000018CA00 + name: 名探偵ピカチュウ ~新コンビ誕生~ + updates: [] diff --git a/data/CTR-KBN/icon.jpg b/data/CTR-KBN/icon.jpg new file mode 100644 index 0000000..cb76d41 Binary files /dev/null and b/data/CTR-KBN/icon.jpg differ diff --git a/data/CTR-KBU/art.jpg b/data/CTR-KBU/art.jpg new file mode 100644 index 0000000..678de79 Binary files /dev/null and b/data/CTR-KBU/art.jpg differ diff --git a/data/CTR-KBU/data.yml b/data/CTR-KBU/data.yml new file mode 100644 index 0000000..f9b7849 --- /dev/null +++ b/data/CTR-KBU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000150900 + name: Brutus & Futée © + updates: [] diff --git a/data/CTR-KBU/icon.jpg b/data/CTR-KBU/icon.jpg new file mode 100644 index 0000000..fb9b12e Binary files /dev/null and b/data/CTR-KBU/icon.jpg differ diff --git a/data/CTR-KBW/art.jpg b/data/CTR-KBW/art.jpg new file mode 100644 index 0000000..e1fc58a Binary files /dev/null and b/data/CTR-KBW/art.jpg differ diff --git a/data/CTR-KBW/data.yml b/data/CTR-KBW/data.yml new file mode 100644 index 0000000..a97e918 --- /dev/null +++ b/data/CTR-KBW/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B9B00 + name: Brave Dungeon + updates: [] +- regions: + - JP + id: 00040000001ACD00 + name: ブレイブダンジョン + updates: + - id: 0004000E001ACD00 + name: 更新データ Ver. 1.1 ブレイブダンジョン +- regions: + - US + id: 00040000001C0100 + name: Brave Dungeon + updates: [] diff --git a/data/CTR-KBW/icon.jpg b/data/CTR-KBW/icon.jpg new file mode 100644 index 0000000..2b9ee9e Binary files /dev/null and b/data/CTR-KBW/icon.jpg differ diff --git a/data/CTR-KBX/art.jpg b/data/CTR-KBX/art.jpg new file mode 100644 index 0000000..404742a Binary files /dev/null and b/data/CTR-KBX/art.jpg differ diff --git a/data/CTR-KBX/data.yml b/data/CTR-KBX/data.yml new file mode 100644 index 0000000..4a19a26 --- /dev/null +++ b/data/CTR-KBX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C9D00 + name: Battleminerz + updates: [] +- regions: + - JP + id: 00040000001D0900 + name: Battleminerz + updates: [] +- regions: + - US + id: 00040000001B4200 + name: Battleminerz + updates: [] diff --git a/data/CTR-KBX/icon.jpg b/data/CTR-KBX/icon.jpg new file mode 100644 index 0000000..8937091 Binary files /dev/null and b/data/CTR-KBX/icon.jpg differ diff --git a/data/CTR-KBY/art.jpg b/data/CTR-KBY/art.jpg new file mode 100644 index 0000000..6fce6e8 Binary files /dev/null and b/data/CTR-KBY/art.jpg differ diff --git a/data/CTR-KBY/data.yml b/data/CTR-KBY/data.yml new file mode 100644 index 0000000..d7e498b --- /dev/null +++ b/data/CTR-KBY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C3600 + name: Bit Dungeon+ + updates: [] +- regions: + - US + id: 00040000001B9200 + name: Bit Dungeon Plus + updates: [] diff --git a/data/CTR-KBY/icon.jpg b/data/CTR-KBY/icon.jpg new file mode 100644 index 0000000..2a221e0 Binary files /dev/null and b/data/CTR-KBY/icon.jpg differ diff --git a/data/CTR-KC2/art.jpg b/data/CTR-KC2/art.jpg new file mode 100644 index 0000000..ddc5a72 Binary files /dev/null and b/data/CTR-KC2/art.jpg differ diff --git a/data/CTR-KC2/data.yml b/data/CTR-KC2/data.yml new file mode 100644 index 0000000..a90ed30 --- /dev/null +++ b/data/CTR-KC2/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000148500 + name: The Legend of Dark Witch - Chronicle 2D ACT + updates: [] +- regions: + - JP + id: 0004000000145300 + name: 魔神少女 -Chronicle 2D ACT- + updates: + - id: 0004000E00145300 + name: 更新データ Ver. 1.1 魔神少女 -Chronicle 2D ACT- +- regions: + - TW + id: 000400000015A600 + name: 魔神少女 -Chronicle 2D ACT-(繁體中文版) + updates: [] +- regions: + - US + id: 000400000014EE00 + name: The Legend of Dark Witch + updates: [] diff --git a/data/CTR-KC2/icon.jpg b/data/CTR-KC2/icon.jpg new file mode 100644 index 0000000..b3598f7 Binary files /dev/null and b/data/CTR-KC2/icon.jpg differ diff --git a/data/CTR-KC7/art.jpg b/data/CTR-KC7/art.jpg new file mode 100644 index 0000000..ddbd2a9 Binary files /dev/null and b/data/CTR-KC7/art.jpg differ diff --git a/data/CTR-KC7/data.yml b/data/CTR-KC7/data.yml new file mode 100644 index 0000000..2088e06 --- /dev/null +++ b/data/CTR-KC7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016FF00 + name: マル合格! ケアマネジャー試験 平成27年度版 + updates: [] diff --git a/data/CTR-KC7/icon.jpg b/data/CTR-KC7/icon.jpg new file mode 100644 index 0000000..29527dc Binary files /dev/null and b/data/CTR-KC7/icon.jpg differ diff --git a/data/CTR-KCA/art.jpg b/data/CTR-KCA/art.jpg new file mode 100644 index 0000000..54b20d3 Binary files /dev/null and b/data/CTR-KCA/art.jpg differ diff --git a/data/CTR-KCA/data.yml b/data/CTR-KCA/data.yml new file mode 100644 index 0000000..2f4bbe7 --- /dev/null +++ b/data/CTR-KCA/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018E800 + name: BOXBOXBOY!™ + updates: [] +- regions: + - JP + id: 000400000017F800 + name: ハコボーイ! もうひとハコ + updates: [] +- regions: + - KR + id: 00040000001A5200 + name: 'BOXBOXBOY! ' + updates: [] +- regions: + - US + id: 000400000018EE00 + name: BOXBOXBOY!™ + updates: [] diff --git a/data/CTR-KCA/icon.jpg b/data/CTR-KCA/icon.jpg new file mode 100644 index 0000000..ed79295 Binary files /dev/null and b/data/CTR-KCA/icon.jpg differ diff --git a/data/CTR-KCC/art.jpg b/data/CTR-KCC/art.jpg new file mode 100644 index 0000000..cc67cad Binary files /dev/null and b/data/CTR-KCC/art.jpg differ diff --git a/data/CTR-KCC/data.yml b/data/CTR-KCC/data.yml new file mode 100644 index 0000000..ef488c5 --- /dev/null +++ b/data/CTR-KCC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000175900 + name: Cube Creator 3D + updates: [] +- regions: + - JP + id: 0004000000173D00 + name: キューブクリエイター3D + updates: [] +- regions: + - US + id: 0004000000151100 + name: Cube Creator 3D + updates: [] diff --git a/data/CTR-KCC/icon.jpg b/data/CTR-KCC/icon.jpg new file mode 100644 index 0000000..d2dfeb3 Binary files /dev/null and b/data/CTR-KCC/icon.jpg differ diff --git a/data/CTR-KCD/art.jpg b/data/CTR-KCD/art.jpg new file mode 100644 index 0000000..b81fee3 Binary files /dev/null and b/data/CTR-KCD/art.jpg differ diff --git a/data/CTR-KCD/data.yml b/data/CTR-KCD/data.yml new file mode 100644 index 0000000..1884f1a --- /dev/null +++ b/data/CTR-KCD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A9900 + name: Punch Club + updates: [] +- regions: + - US + id: 00040000001A8200 + name: Punch Club + updates: [] diff --git a/data/CTR-KCD/icon.jpg b/data/CTR-KCD/icon.jpg new file mode 100644 index 0000000..e864be7 Binary files /dev/null and b/data/CTR-KCD/icon.jpg differ diff --git a/data/CTR-KCE/art.jpg b/data/CTR-KCE/art.jpg new file mode 100644 index 0000000..76be996 Binary files /dev/null and b/data/CTR-KCE/art.jpg differ diff --git a/data/CTR-KCE/data.yml b/data/CTR-KCE/data.yml new file mode 100644 index 0000000..014d982 --- /dev/null +++ b/data/CTR-KCE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000153300 + name: FINAL FANTASY EXPLORERS Light + updates: [] diff --git a/data/CTR-KCE/icon.jpg b/data/CTR-KCE/icon.jpg new file mode 100644 index 0000000..61e5c1d Binary files /dev/null and b/data/CTR-KCE/icon.jpg differ diff --git a/data/CTR-KCF/art.jpg b/data/CTR-KCF/art.jpg new file mode 100644 index 0000000..4c6975b Binary files /dev/null and b/data/CTR-KCF/art.jpg differ diff --git a/data/CTR-KCF/data.yml b/data/CTR-KCF/data.yml new file mode 100644 index 0000000..e0359cd --- /dev/null +++ b/data/CTR-KCF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - US + id: 0004000000164600 + name: Pokémon™ Rumble World + updates: [] diff --git a/data/CTR-KCF/icon.jpg b/data/CTR-KCF/icon.jpg new file mode 100644 index 0000000..0bd46e8 Binary files /dev/null and b/data/CTR-KCF/icon.jpg differ diff --git a/data/CTR-KCG/art.jpg b/data/CTR-KCG/art.jpg new file mode 100644 index 0000000..435e4e6 Binary files /dev/null and b/data/CTR-KCG/art.jpg differ diff --git a/data/CTR-KCG/data.yml b/data/CTR-KCG/data.yml new file mode 100644 index 0000000..e7257ab --- /dev/null +++ b/data/CTR-KCG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB700 + name: Crollors Game Pack + updates: [] +- regions: + - US + id: 00040000001C4A00 + name: Crollors Game Pack + updates: [] diff --git a/data/CTR-KCG/icon.jpg b/data/CTR-KCG/icon.jpg new file mode 100644 index 0000000..95de253 Binary files /dev/null and b/data/CTR-KCG/icon.jpg differ diff --git a/data/CTR-KCH/art.jpg b/data/CTR-KCH/art.jpg new file mode 100644 index 0000000..f5a30de Binary files /dev/null and b/data/CTR-KCH/art.jpg differ diff --git a/data/CTR-KCH/data.yml b/data/CTR-KCH/data.yml new file mode 100644 index 0000000..c11435d --- /dev/null +++ b/data/CTR-KCH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001ACC00 + name: こねこのいえ 桐島家と三匹の子ネコ + updates: [] diff --git a/data/CTR-KCH/icon.jpg b/data/CTR-KCH/icon.jpg new file mode 100644 index 0000000..d07a0be Binary files /dev/null and b/data/CTR-KCH/icon.jpg differ diff --git a/data/CTR-KCK/art.jpg b/data/CTR-KCK/art.jpg new file mode 100644 index 0000000..094fcfa Binary files /dev/null and b/data/CTR-KCK/art.jpg differ diff --git a/data/CTR-KCK/data.yml b/data/CTR-KCK/data.yml new file mode 100644 index 0000000..691027a --- /dev/null +++ b/data/CTR-KCK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B5400 + name: BYE-BYE BOXBOY!™ + updates: [] +- regions: + - JP + id: 00040000001AD300 + name: さよなら! ハコボーイ! + updates: [] +- regions: + - US + id: 00040000001B5300 + name: BYE-BYE BOXBOY!™ + updates: [] diff --git a/data/CTR-KCK/icon.jpg b/data/CTR-KCK/icon.jpg new file mode 100644 index 0000000..c249b2e Binary files /dev/null and b/data/CTR-KCK/icon.jpg differ diff --git a/data/CTR-KCM/art.jpg b/data/CTR-KCM/art.jpg new file mode 100644 index 0000000..7e90704 Binary files /dev/null and b/data/CTR-KCM/art.jpg differ diff --git a/data/CTR-KCM/data.yml b/data/CTR-KCM/data.yml new file mode 100644 index 0000000..363f947 --- /dev/null +++ b/data/CTR-KCM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013E800 + name: City Mysteries + updates: [] diff --git a/data/CTR-KCM/icon.jpg b/data/CTR-KCM/icon.jpg new file mode 100644 index 0000000..866ce65 Binary files /dev/null and b/data/CTR-KCM/icon.jpg differ diff --git a/data/CTR-KCN/art.jpg b/data/CTR-KCN/art.jpg new file mode 100644 index 0000000..bc08e71 Binary files /dev/null and b/data/CTR-KCN/art.jpg differ diff --git a/data/CTR-KCN/data.yml b/data/CTR-KCN/data.yml new file mode 100644 index 0000000..e7b055e --- /dev/null +++ b/data/CTR-KCN/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AD700 + name: Chicken Wiggle + updates: [] +- regions: + - US + id: 00040000001A7F00 + name: Chicken Wiggle + updates: [] diff --git a/data/CTR-KCN/icon.jpg b/data/CTR-KCN/icon.jpg new file mode 100644 index 0000000..cc53b5e Binary files /dev/null and b/data/CTR-KCN/icon.jpg differ diff --git a/data/CTR-KCP/art.jpg b/data/CTR-KCP/art.jpg new file mode 100644 index 0000000..431640e Binary files /dev/null and b/data/CTR-KCP/art.jpg differ diff --git a/data/CTR-KCP/data.yml b/data/CTR-KCP/data.yml new file mode 100644 index 0000000..91c3b54 --- /dev/null +++ b/data/CTR-KCP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000146500 + name: Mes Comptines + updates: [] +- regions: + - US + id: 0004000000143500 + name: Mes Comptines + updates: [] diff --git a/data/CTR-KCP/icon.jpg b/data/CTR-KCP/icon.jpg new file mode 100644 index 0000000..8f7511d Binary files /dev/null and b/data/CTR-KCP/icon.jpg differ diff --git a/data/CTR-KCS/art.jpg b/data/CTR-KCS/art.jpg new file mode 100644 index 0000000..a3c31a4 Binary files /dev/null and b/data/CTR-KCS/art.jpg differ diff --git a/data/CTR-KCS/data.yml b/data/CTR-KCS/data.yml new file mode 100644 index 0000000..4267f3a --- /dev/null +++ b/data/CTR-KCS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000180A00 + name: 超チャリ走 あつめて! 超獣ハンター + updates: + - id: 0004000E00180A00 + name: 更新データ Ver. 1.2 超チャリ走 あつめて! 超獣ハンター diff --git a/data/CTR-KCS/icon.jpg b/data/CTR-KCS/icon.jpg new file mode 100644 index 0000000..250ecbc Binary files /dev/null and b/data/CTR-KCS/icon.jpg differ diff --git a/data/CTR-KCT/art.jpg b/data/CTR-KCT/art.jpg new file mode 100644 index 0000000..e64cbda Binary files /dev/null and b/data/CTR-KCT/art.jpg differ diff --git a/data/CTR-KCT/data.yml b/data/CTR-KCT/data.yml new file mode 100644 index 0000000..7f6df71 --- /dev/null +++ b/data/CTR-KCT/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B1900 + name: Chou2トーク + updates: + - id: 0004000E001B1900 + name: 更新データ Ver. 1.1 Chou2トーク diff --git a/data/CTR-KCT/icon.jpg b/data/CTR-KCT/icon.jpg new file mode 100644 index 0000000..42d8717 Binary files /dev/null and b/data/CTR-KCT/icon.jpg differ diff --git a/data/CTR-KCU/art.jpg b/data/CTR-KCU/art.jpg new file mode 100644 index 0000000..c47be83 Binary files /dev/null and b/data/CTR-KCU/art.jpg differ diff --git a/data/CTR-KCU/data.yml b/data/CTR-KCU/data.yml new file mode 100644 index 0000000..b603f8e --- /dev/null +++ b/data/CTR-KCU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B7300 + name: Candy, Please! + updates: [] +- regions: + - US + id: 00040000001B5E00 + name: Candy, Please! + updates: [] diff --git a/data/CTR-KCU/icon.jpg b/data/CTR-KCU/icon.jpg new file mode 100644 index 0000000..97eacc6 Binary files /dev/null and b/data/CTR-KCU/icon.jpg differ diff --git a/data/CTR-KCV/art.jpg b/data/CTR-KCV/art.jpg new file mode 100644 index 0000000..fcf19f2 Binary files /dev/null and b/data/CTR-KCV/art.jpg differ diff --git a/data/CTR-KCV/data.yml b/data/CTR-KCV/data.yml new file mode 100644 index 0000000..798f1a4 --- /dev/null +++ b/data/CTR-KCV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B3B00 + name: 仮面ライダーあつめ + updates: [] diff --git a/data/CTR-KCV/icon.jpg b/data/CTR-KCV/icon.jpg new file mode 100644 index 0000000..388e847 Binary files /dev/null and b/data/CTR-KCV/icon.jpg differ diff --git a/data/CTR-KCW/art.jpg b/data/CTR-KCW/art.jpg new file mode 100644 index 0000000..570da8f Binary files /dev/null and b/data/CTR-KCW/art.jpg differ diff --git a/data/CTR-KCW/data.yml b/data/CTR-KCW/data.yml new file mode 100644 index 0000000..e06e833 --- /dev/null +++ b/data/CTR-KCW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000143900 + name: Christmas Wonderland 4 + updates: [] diff --git a/data/CTR-KCW/icon.jpg b/data/CTR-KCW/icon.jpg new file mode 100644 index 0000000..376c13d Binary files /dev/null and b/data/CTR-KCW/icon.jpg differ diff --git a/data/CTR-KCX/art.jpg b/data/CTR-KCX/art.jpg new file mode 100644 index 0000000..161f582 Binary files /dev/null and b/data/CTR-KCX/art.jpg differ diff --git a/data/CTR-KCX/data.yml b/data/CTR-KCX/data.yml new file mode 100644 index 0000000..9758972 --- /dev/null +++ b/data/CTR-KCX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000155500 + name: Castle Conqueror EX + updates: [] +- regions: + - US + id: 0004000000146A00 + name: Castle Conqueror EX + updates: [] diff --git a/data/CTR-KCX/icon.jpg b/data/CTR-KCX/icon.jpg new file mode 100644 index 0000000..cb2123a Binary files /dev/null and b/data/CTR-KCX/icon.jpg differ diff --git a/data/CTR-KCY/art.jpg b/data/CTR-KCY/art.jpg new file mode 100644 index 0000000..eaa48f8 Binary files /dev/null and b/data/CTR-KCY/art.jpg differ diff --git a/data/CTR-KCY/data.yml b/data/CTR-KCY/data.yml new file mode 100644 index 0000000..d2f7a9d --- /dev/null +++ b/data/CTR-KCY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B3700 + name: こねこのいえ2 ヒミツの箱から飛び出た夢 + updates: [] diff --git a/data/CTR-KCY/icon.jpg b/data/CTR-KCY/icon.jpg new file mode 100644 index 0000000..2acf531 Binary files /dev/null and b/data/CTR-KCY/icon.jpg differ diff --git a/data/CTR-KD2/art.jpg b/data/CTR-KD2/art.jpg new file mode 100644 index 0000000..57f51b6 Binary files /dev/null and b/data/CTR-KD2/art.jpg differ diff --git a/data/CTR-KD2/data.yml b/data/CTR-KD2/data.yml new file mode 100644 index 0000000..7ab1fc5 --- /dev/null +++ b/data/CTR-KD2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000143000 + name: がっき で あそぼ♪ たのしい どうよう② + updates: [] diff --git a/data/CTR-KD2/icon.jpg b/data/CTR-KD2/icon.jpg new file mode 100644 index 0000000..13e0c28 Binary files /dev/null and b/data/CTR-KD2/icon.jpg differ diff --git a/data/CTR-KD3/art.jpg b/data/CTR-KD3/art.jpg new file mode 100644 index 0000000..e58c640 Binary files /dev/null and b/data/CTR-KD3/art.jpg differ diff --git a/data/CTR-KD3/data.yml b/data/CTR-KD3/data.yml new file mode 100644 index 0000000..6aa0449 --- /dev/null +++ b/data/CTR-KD3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000144C00 + name: がっき で あそぼ♪ たのしい どうよう③ + updates: [] diff --git a/data/CTR-KD3/icon.jpg b/data/CTR-KD3/icon.jpg new file mode 100644 index 0000000..4232945 Binary files /dev/null and b/data/CTR-KD3/icon.jpg differ diff --git a/data/CTR-KD7/art.jpg b/data/CTR-KD7/art.jpg new file mode 100644 index 0000000..ba621c4 Binary files /dev/null and b/data/CTR-KD7/art.jpg differ diff --git a/data/CTR-KD7/data.yml b/data/CTR-KD7/data.yml new file mode 100644 index 0000000..182e8db --- /dev/null +++ b/data/CTR-KD7/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AF900 + name: Drancia Saga + updates: [] +- regions: + - JP + id: 0004000000189B00 + name: ドランシア・サーガ + updates: + - id: 0004000E00189B00 + name: 更新データ Ver. 1.1 ドランシア・サーガ +- regions: + - US + id: 00040000001AFC00 + name: Drancia Saga + updates: [] diff --git a/data/CTR-KD7/icon.jpg b/data/CTR-KD7/icon.jpg new file mode 100644 index 0000000..0dcfa6a Binary files /dev/null and b/data/CTR-KD7/icon.jpg differ diff --git a/data/CTR-KD8/art.jpg b/data/CTR-KD8/art.jpg new file mode 100644 index 0000000..00a4e51 Binary files /dev/null and b/data/CTR-KD8/art.jpg differ diff --git a/data/CTR-KD8/data.yml b/data/CTR-KD8/data.yml new file mode 100644 index 0000000..06b2d5f --- /dev/null +++ b/data/CTR-KD8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018FF00 + name: 80'S OVERDRIVE + updates: [] +- regions: + - JP + id: 00040000001D2B00 + name: 80's OVERDRIVE + updates: [] +- regions: + - US + id: 000400000018F600 + name: 80'S OVERDRIVE + updates: [] diff --git a/data/CTR-KD8/icon.jpg b/data/CTR-KD8/icon.jpg new file mode 100644 index 0000000..b27b7b3 Binary files /dev/null and b/data/CTR-KD8/icon.jpg differ diff --git a/data/CTR-KD9/art.jpg b/data/CTR-KD9/art.jpg new file mode 100644 index 0000000..efd61d0 Binary files /dev/null and b/data/CTR-KD9/art.jpg differ diff --git a/data/CTR-KD9/data.yml b/data/CTR-KD9/data.yml new file mode 100644 index 0000000..9977901 --- /dev/null +++ b/data/CTR-KD9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B7B00 + name: Dragon Sinker + updates: [] +- regions: + - JP + id: 0004000000193B00 + name: ドラゴンシンカー + updates: [] +- regions: + - US + id: 00040000001B8800 + name: Dragon Sinker + updates: [] diff --git a/data/CTR-KD9/icon.jpg b/data/CTR-KD9/icon.jpg new file mode 100644 index 0000000..2d1d3e1 Binary files /dev/null and b/data/CTR-KD9/icon.jpg differ diff --git a/data/CTR-KDA/art.jpg b/data/CTR-KDA/art.jpg new file mode 100644 index 0000000..ed41377 Binary files /dev/null and b/data/CTR-KDA/art.jpg differ diff --git a/data/CTR-KDA/data.yml b/data/CTR-KDA/data.yml new file mode 100644 index 0000000..c0210b3 --- /dev/null +++ b/data/CTR-KDA/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000174000 + name: Power Disc Slam + updates: [] +- regions: + - JP + id: 00040000001B5600 + name: パワーディスクスラム + updates: [] +- regions: + - US + id: 0004000000158E00 + name: Power Disc Slam + updates: + - id: 0004000E00158E00 + name: Power Disc Slam Update Ver. 1.10 diff --git a/data/CTR-KDA/icon.jpg b/data/CTR-KDA/icon.jpg new file mode 100644 index 0000000..c5881c6 Binary files /dev/null and b/data/CTR-KDA/icon.jpg differ diff --git a/data/CTR-KDC/art.jpg b/data/CTR-KDC/art.jpg new file mode 100644 index 0000000..3313750 Binary files /dev/null and b/data/CTR-KDC/art.jpg differ diff --git a/data/CTR-KDC/data.yml b/data/CTR-KDC/data.yml new file mode 100644 index 0000000..4abd82b --- /dev/null +++ b/data/CTR-KDC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145900 + name: プチノベル「収斂の十二月」 + updates: [] diff --git a/data/CTR-KDC/icon.jpg b/data/CTR-KDC/icon.jpg new file mode 100644 index 0000000..0c88161 Binary files /dev/null and b/data/CTR-KDC/icon.jpg differ diff --git a/data/CTR-KDD/art.jpg b/data/CTR-KDD/art.jpg new file mode 100644 index 0000000..0506735 Binary files /dev/null and b/data/CTR-KDD/art.jpg differ diff --git a/data/CTR-KDD/data.yml b/data/CTR-KDD/data.yml new file mode 100644 index 0000000..f39de6c --- /dev/null +++ b/data/CTR-KDD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018AB00 + name: Dementium Remastered + updates: [] +- regions: + - US + id: 0004000000161B00 + name: Dementium Remastered + updates: [] diff --git a/data/CTR-KDD/icon.jpg b/data/CTR-KDD/icon.jpg new file mode 100644 index 0000000..ebae437 Binary files /dev/null and b/data/CTR-KDD/icon.jpg differ diff --git a/data/CTR-KDE/art.jpg b/data/CTR-KDE/art.jpg new file mode 100644 index 0000000..4d5fa25 Binary files /dev/null and b/data/CTR-KDE/art.jpg differ diff --git a/data/CTR-KDE/data.yml b/data/CTR-KDE/data.yml new file mode 100644 index 0000000..c6c3bcc --- /dev/null +++ b/data/CTR-KDE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AEC00 + name: Collide-a-Ball + updates: [] +- regions: + - JP + id: 000400000017AE00 + name: 出会い玉 + updates: [] +- regions: + - US + id: 00040000001A1800 + name: Collide-a-Ball + updates: [] diff --git a/data/CTR-KDE/icon.jpg b/data/CTR-KDE/icon.jpg new file mode 100644 index 0000000..d595395 Binary files /dev/null and b/data/CTR-KDE/icon.jpg differ diff --git a/data/CTR-KDF/art.jpg b/data/CTR-KDF/art.jpg new file mode 100644 index 0000000..c2499a2 Binary files /dev/null and b/data/CTR-KDF/art.jpg differ diff --git a/data/CTR-KDF/data.yml b/data/CTR-KDF/data.yml new file mode 100644 index 0000000..cc551bc --- /dev/null +++ b/data/CTR-KDF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000163E00 + name: 'Dragon Fantasy: The Black Tome of Ice' + updates: [] diff --git a/data/CTR-KDF/icon.jpg b/data/CTR-KDF/icon.jpg new file mode 100644 index 0000000..7424000 Binary files /dev/null and b/data/CTR-KDF/icon.jpg differ diff --git a/data/CTR-KDG/art.jpg b/data/CTR-KDG/art.jpg new file mode 100644 index 0000000..64cc733 Binary files /dev/null and b/data/CTR-KDG/art.jpg differ diff --git a/data/CTR-KDG/data.yml b/data/CTR-KDG/data.yml new file mode 100644 index 0000000..3180355 --- /dev/null +++ b/data/CTR-KDG/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019DD00 + name: Kingdom's Item Shop + updates: [] +- regions: + - JP + id: 000400000013FE00 + name: 王国の道具屋さん + updates: + - id: 0004000E0013FE00 + name: 更新データ Ver. 1.0.2 王国の道具屋さん +- regions: + - US + id: 000400000019E300 + name: Kingdom's Item Shop + updates: [] diff --git a/data/CTR-KDG/icon.jpg b/data/CTR-KDG/icon.jpg new file mode 100644 index 0000000..1ee1ac6 Binary files /dev/null and b/data/CTR-KDG/icon.jpg differ diff --git a/data/CTR-KDH/art.jpg b/data/CTR-KDH/art.jpg new file mode 100644 index 0000000..8e238b7 Binary files /dev/null and b/data/CTR-KDH/art.jpg differ diff --git a/data/CTR-KDH/data.yml b/data/CTR-KDH/data.yml new file mode 100644 index 0000000..07a918e --- /dev/null +++ b/data/CTR-KDH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000184500 + name: 脱出アドベンチャー 神降しの占い盤 + updates: [] diff --git a/data/CTR-KDH/icon.jpg b/data/CTR-KDH/icon.jpg new file mode 100644 index 0000000..2455c91 Binary files /dev/null and b/data/CTR-KDH/icon.jpg differ diff --git a/data/CTR-KDJ/art.jpg b/data/CTR-KDJ/art.jpg new file mode 100644 index 0000000..62ea683 Binary files /dev/null and b/data/CTR-KDJ/art.jpg differ diff --git a/data/CTR-KDJ/data.yml b/data/CTR-KDJ/data.yml new file mode 100644 index 0000000..925e0cc --- /dev/null +++ b/data/CTR-KDJ/data.yml @@ -0,0 +1,24 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B7C00 + name: Frontier Days Founding Pioneers + updates: [] +- regions: + - JP + id: 000400000017DD00 + name: 大開拓時代 ~街をつくろう~ + updates: + - id: 0004000E0017DD00 + name: 更新データ Ver. 1.2.0 大開拓時代 ~街をつくろう~ +- regions: + - KR + id: 00040000001B8200 + name: 대개척시대 도시를 만들자 + updates: [] +- regions: + - US + id: 00040000001B7200 + name: Frontier Days Founding Pioneers + updates: [] diff --git a/data/CTR-KDJ/icon.jpg b/data/CTR-KDJ/icon.jpg new file mode 100644 index 0000000..6aee31f Binary files /dev/null and b/data/CTR-KDJ/icon.jpg differ diff --git a/data/CTR-KDK/art.jpg b/data/CTR-KDK/art.jpg new file mode 100644 index 0000000..a5cf654 Binary files /dev/null and b/data/CTR-KDK/art.jpg differ diff --git a/data/CTR-KDK/data.yml b/data/CTR-KDK/data.yml new file mode 100644 index 0000000..3c05439 --- /dev/null +++ b/data/CTR-KDK/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014F700 + name: Demon King Box + updates: [] +- regions: + - US + id: 0004000000134900 + name: Demon King Box + updates: [] diff --git a/data/CTR-KDK/icon.jpg b/data/CTR-KDK/icon.jpg new file mode 100644 index 0000000..12206aa Binary files /dev/null and b/data/CTR-KDK/icon.jpg differ diff --git a/data/CTR-KDM/art.jpg b/data/CTR-KDM/art.jpg new file mode 100644 index 0000000..c92261a Binary files /dev/null and b/data/CTR-KDM/art.jpg differ diff --git a/data/CTR-KDM/data.yml b/data/CTR-KDM/data.yml new file mode 100644 index 0000000..e3c81a2 --- /dev/null +++ b/data/CTR-KDM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000015A800 + name: 6×1≠UNLIMITED? + updates: + - id: 0004000E0015A800 + name: 更新データ Ver. 2.0 6×1≠UNLIMITED? diff --git a/data/CTR-KDM/icon.jpg b/data/CTR-KDM/icon.jpg new file mode 100644 index 0000000..2ce8496 Binary files /dev/null and b/data/CTR-KDM/icon.jpg differ diff --git a/data/CTR-KDR/art.jpg b/data/CTR-KDR/art.jpg new file mode 100644 index 0000000..5909ffd Binary files /dev/null and b/data/CTR-KDR/art.jpg differ diff --git a/data/CTR-KDR/data.yml b/data/CTR-KDR/data.yml new file mode 100644 index 0000000..dd8f735 --- /dev/null +++ b/data/CTR-KDR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000014B700 + name: DOOORS + updates: [] diff --git a/data/CTR-KDR/icon.jpg b/data/CTR-KDR/icon.jpg new file mode 100644 index 0000000..9d438f6 Binary files /dev/null and b/data/CTR-KDR/icon.jpg differ diff --git a/data/CTR-KDS/art.jpg b/data/CTR-KDS/art.jpg new file mode 100644 index 0000000..7db1a4a Binary files /dev/null and b/data/CTR-KDS/art.jpg differ diff --git a/data/CTR-KDS/data.yml b/data/CTR-KDS/data.yml new file mode 100644 index 0000000..e142765 --- /dev/null +++ b/data/CTR-KDS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000140500 + name: 脱出アドベンチャー 終焉の黒い霧 + updates: [] diff --git a/data/CTR-KDS/icon.jpg b/data/CTR-KDS/icon.jpg new file mode 100644 index 0000000..aac1191 Binary files /dev/null and b/data/CTR-KDS/icon.jpg differ diff --git a/data/CTR-KDT/art.jpg b/data/CTR-KDT/art.jpg new file mode 100644 index 0000000..3935635 Binary files /dev/null and b/data/CTR-KDT/art.jpg differ diff --git a/data/CTR-KDT/data.yml b/data/CTR-KDT/data.yml new file mode 100644 index 0000000..94b8ffe --- /dev/null +++ b/data/CTR-KDT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000014FE00 + name: '@SIMPLE DLシリーズ Vol.34 THE 密室からの脱出 博物館編' + updates: [] diff --git a/data/CTR-KDT/icon.jpg b/data/CTR-KDT/icon.jpg new file mode 100644 index 0000000..10da711 Binary files /dev/null and b/data/CTR-KDT/icon.jpg differ diff --git a/data/CTR-KDU/art.jpg b/data/CTR-KDU/art.jpg new file mode 100644 index 0000000..e285a0e Binary files /dev/null and b/data/CTR-KDU/art.jpg differ diff --git a/data/CTR-KDU/data.yml b/data/CTR-KDU/data.yml new file mode 100644 index 0000000..6535075 --- /dev/null +++ b/data/CTR-KDU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000196800 + name: Infinite Dunamis + updates: [] +- regions: + - JP + id: 0004000000177C00 + name: 無限のデュナミス + updates: [] +- regions: + - US + id: 0004000000194600 + name: Infinite Dunamis + updates: [] diff --git a/data/CTR-KDU/icon.jpg b/data/CTR-KDU/icon.jpg new file mode 100644 index 0000000..9fcd396 Binary files /dev/null and b/data/CTR-KDU/icon.jpg differ diff --git a/data/CTR-KDV/art.jpg b/data/CTR-KDV/art.jpg new file mode 100644 index 0000000..53b9bf5 Binary files /dev/null and b/data/CTR-KDV/art.jpg differ diff --git a/data/CTR-KDV/data.yml b/data/CTR-KDV/data.yml new file mode 100644 index 0000000..4b99c2e --- /dev/null +++ b/data/CTR-KDV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000163F00 + name: 'Dragon Fantasy: The Volumes of Westeria' + updates: [] diff --git a/data/CTR-KDV/icon.jpg b/data/CTR-KDV/icon.jpg new file mode 100644 index 0000000..b4fb942 Binary files /dev/null and b/data/CTR-KDV/icon.jpg differ diff --git a/data/CTR-KDX/art.jpg b/data/CTR-KDX/art.jpg new file mode 100644 index 0000000..d103667 Binary files /dev/null and b/data/CTR-KDX/art.jpg differ diff --git a/data/CTR-KDX/data.yml b/data/CTR-KDX/data.yml new file mode 100644 index 0000000..dcdf101 --- /dev/null +++ b/data/CTR-KDX/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000198900 + name: Shift DX + updates: [] +- regions: + - JP + id: 0004000000187B00 + name: Shift DX + updates: [] +- regions: + - KR + id: 000400000019B900 + name: Shift DX + updates: [] +- regions: + - TW + id: 0004000000199E00 + name: Shift DX (日文版) + updates: [] +- regions: + - US + id: 0004000000190000 + name: Shift DX + updates: [] diff --git a/data/CTR-KDX/icon.jpg b/data/CTR-KDX/icon.jpg new file mode 100644 index 0000000..e29babf Binary files /dev/null and b/data/CTR-KDX/icon.jpg differ diff --git a/data/CTR-KDY/art.jpg b/data/CTR-KDY/art.jpg new file mode 100644 index 0000000..c970188 Binary files /dev/null and b/data/CTR-KDY/art.jpg differ diff --git a/data/CTR-KDY/data.yml b/data/CTR-KDY/data.yml new file mode 100644 index 0000000..1f4482a --- /dev/null +++ b/data/CTR-KDY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000162A00 + name: 脱出アドベンチャー 呪いの数列 + updates: [] diff --git a/data/CTR-KDY/icon.jpg b/data/CTR-KDY/icon.jpg new file mode 100644 index 0000000..5d1dac7 Binary files /dev/null and b/data/CTR-KDY/icon.jpg differ diff --git a/data/CTR-KDZ/art.jpg b/data/CTR-KDZ/art.jpg new file mode 100644 index 0000000..027e3b1 Binary files /dev/null and b/data/CTR-KDZ/art.jpg differ diff --git a/data/CTR-KDZ/data.yml b/data/CTR-KDZ/data.yml new file mode 100644 index 0000000..2e4ce84 --- /dev/null +++ b/data/CTR-KDZ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016B400 + name: ドロップゾーン アンダーファイヤ + updates: [] +- regions: + - US + id: 000400000015F100 + name: Drop Zone - Under Fire + updates: [] diff --git a/data/CTR-KDZ/icon.jpg b/data/CTR-KDZ/icon.jpg new file mode 100644 index 0000000..8824baa Binary files /dev/null and b/data/CTR-KDZ/icon.jpg differ diff --git a/data/CTR-KEA/art.jpg b/data/CTR-KEA/art.jpg new file mode 100644 index 0000000..3998fa2 Binary files /dev/null and b/data/CTR-KEA/art.jpg differ diff --git a/data/CTR-KEA/data.yml b/data/CTR-KEA/data.yml new file mode 100644 index 0000000..4a2f493 --- /dev/null +++ b/data/CTR-KEA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000017AC00 + name: エルミナージュ異聞 アメノミハシラ・怪 + updates: [] diff --git a/data/CTR-KEA/icon.jpg b/data/CTR-KEA/icon.jpg new file mode 100644 index 0000000..6f84564 Binary files /dev/null and b/data/CTR-KEA/icon.jpg differ diff --git a/data/CTR-KEB/art.jpg b/data/CTR-KEB/art.jpg new file mode 100644 index 0000000..52d1e39 Binary files /dev/null and b/data/CTR-KEB/art.jpg differ diff --git a/data/CTR-KEB/data.yml b/data/CTR-KEB/data.yml new file mode 100644 index 0000000..cf13413 --- /dev/null +++ b/data/CTR-KEB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000136400 + name: イルベロデリンジャ + updates: [] diff --git a/data/CTR-KEB/icon.jpg b/data/CTR-KEB/icon.jpg new file mode 100644 index 0000000..a7eca84 Binary files /dev/null and b/data/CTR-KEB/icon.jpg differ diff --git a/data/CTR-KEC/art.jpg b/data/CTR-KEC/art.jpg new file mode 100644 index 0000000..e238b2c Binary files /dev/null and b/data/CTR-KEC/art.jpg differ diff --git a/data/CTR-KEC/data.yml b/data/CTR-KEC/data.yml new file mode 100644 index 0000000..5aefe9c --- /dev/null +++ b/data/CTR-KEC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B7A00 + name: Symphony of Eternity + updates: [] +- regions: + - JP + id: 00040000001B3900 + name: シンフォニーオブエタニティ + updates: [] +- regions: + - US + id: 00040000001B8900 + name: Symphony of Eternity + updates: [] diff --git a/data/CTR-KEC/icon.jpg b/data/CTR-KEC/icon.jpg new file mode 100644 index 0000000..bbc69d0 Binary files /dev/null and b/data/CTR-KEC/icon.jpg differ diff --git a/data/CTR-KEJ/art.jpg b/data/CTR-KEJ/art.jpg new file mode 100644 index 0000000..5fe0d9a Binary files /dev/null and b/data/CTR-KEJ/art.jpg differ diff --git a/data/CTR-KEJ/data.yml b/data/CTR-KEJ/data.yml new file mode 100644 index 0000000..82f0bb7 --- /dev/null +++ b/data/CTR-KEJ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BE000 + name: エルミナージュⅡ ~双生の女神と運命の大地~ + updates: + - id: 0004000E001BE000 + name: 更新データ Ver. 1.1 エルミナージュⅡ ~双生の女神と運命の大地~ diff --git a/data/CTR-KEJ/icon.jpg b/data/CTR-KEJ/icon.jpg new file mode 100644 index 0000000..dc6ffdb Binary files /dev/null and b/data/CTR-KEJ/icon.jpg differ diff --git a/data/CTR-KEL/art.jpg b/data/CTR-KEL/art.jpg new file mode 100644 index 0000000..4fd0f9a Binary files /dev/null and b/data/CTR-KEL/art.jpg differ diff --git a/data/CTR-KEL/data.yml b/data/CTR-KEL/data.yml new file mode 100644 index 0000000..db6df61 --- /dev/null +++ b/data/CTR-KEL/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B3C00 + name: エルミナージュ Original ~闇の巫女と神々の指輪~ + updates: + - id: 0004000E001B3C00 + name: 更新データ Ver. 1.1 エルミナージュ Original +- regions: + - US + id: 00040000001BFF00 + name: Elminage Original + updates: [] diff --git a/data/CTR-KEL/icon.jpg b/data/CTR-KEL/icon.jpg new file mode 100644 index 0000000..1ffa84d Binary files /dev/null and b/data/CTR-KEL/icon.jpg differ diff --git a/data/CTR-KEP/art.jpg b/data/CTR-KEP/art.jpg new file mode 100644 index 0000000..86e139c Binary files /dev/null and b/data/CTR-KEP/art.jpg differ diff --git a/data/CTR-KEP/data.yml b/data/CTR-KEP/data.yml new file mode 100644 index 0000000..c2216b2 --- /dev/null +++ b/data/CTR-KEP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CD500 + name: The Legend of Dark Witch 3 + updates: [] +- regions: + - JP + id: 00040000001B3A00 + name: 魔神少女 エピソード3 -勇者と愚者- + updates: [] +- regions: + - US + id: 00040000001CD600 + name: The Legend of Dark Witch 3 Wisdom and Lunacy + updates: [] diff --git a/data/CTR-KEP/icon.jpg b/data/CTR-KEP/icon.jpg new file mode 100644 index 0000000..b401256 Binary files /dev/null and b/data/CTR-KEP/icon.jpg differ diff --git a/data/CTR-KEQ/art.jpg b/data/CTR-KEQ/art.jpg new file mode 100644 index 0000000..2ec78b5 Binary files /dev/null and b/data/CTR-KEQ/art.jpg differ diff --git a/data/CTR-KEQ/data.yml b/data/CTR-KEQ/data.yml new file mode 100644 index 0000000..dea87b9 --- /dev/null +++ b/data/CTR-KEQ/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AD900 + name: Elliot Quest + updates: + - id: 0004000E001AD900 + name: 'Elliot Quest: Update' +- regions: + - US + id: 00040000001AD800 + name: Elliot Quest + updates: + - id: 0004000E001AD800 + name: Elliot Quest Update Ver. 1.4 diff --git a/data/CTR-KEQ/icon.jpg b/data/CTR-KEQ/icon.jpg new file mode 100644 index 0000000..ed9e195 Binary files /dev/null and b/data/CTR-KEQ/icon.jpg differ diff --git a/data/CTR-KER/art.jpg b/data/CTR-KER/art.jpg new file mode 100644 index 0000000..d68291b Binary files /dev/null and b/data/CTR-KER/art.jpg differ diff --git a/data/CTR-KER/data.yml b/data/CTR-KER/data.yml new file mode 100644 index 0000000..33e1d28 --- /dev/null +++ b/data/CTR-KER/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000136500 + name: EYERESH for ニンテンドー3DS 眼のストレッチ&トレーニング + updates: + - id: 0004000E00136500 + name: 更新データ Ver. 1.1 EYERESH for ニンテンドー3DS 眼のストレッチ&トレーニング diff --git a/data/CTR-KER/icon.jpg b/data/CTR-KER/icon.jpg new file mode 100644 index 0000000..9bc0c65 Binary files /dev/null and b/data/CTR-KER/icon.jpg differ diff --git a/data/CTR-KEU/art.jpg b/data/CTR-KEU/art.jpg new file mode 100644 index 0000000..50cbdd7 Binary files /dev/null and b/data/CTR-KEU/art.jpg differ diff --git a/data/CTR-KEU/data.yml b/data/CTR-KEU/data.yml new file mode 100644 index 0000000..03e4d68 --- /dev/null +++ b/data/CTR-KEU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000017AB00 + name: エルミナージュゴシック3D REMIX ~ウルム・ザキールと闇の儀式~ + updates: [] diff --git a/data/CTR-KEU/icon.jpg b/data/CTR-KEU/icon.jpg new file mode 100644 index 0000000..bb44c65 Binary files /dev/null and b/data/CTR-KEU/icon.jpg differ diff --git a/data/CTR-KEW/art.jpg b/data/CTR-KEW/art.jpg new file mode 100644 index 0000000..fc85d46 Binary files /dev/null and b/data/CTR-KEW/art.jpg differ diff --git a/data/CTR-KEW/data.yml b/data/CTR-KEW/data.yml new file mode 100644 index 0000000..95faa51 --- /dev/null +++ b/data/CTR-KEW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016A400 + name: Epic Word Search Collection + updates: [] +- regions: + - US + id: 000400000016AA00 + name: Epic Word Search Collection + updates: [] diff --git a/data/CTR-KEW/icon.jpg b/data/CTR-KEW/icon.jpg new file mode 100644 index 0000000..b2f4d40 Binary files /dev/null and b/data/CTR-KEW/icon.jpg differ diff --git a/data/CTR-KEX/art.jpg b/data/CTR-KEX/art.jpg new file mode 100644 index 0000000..8afa4c8 Binary files /dev/null and b/data/CTR-KEX/art.jpg differ diff --git a/data/CTR-KEX/data.yml b/data/CTR-KEX/data.yml new file mode 100644 index 0000000..dd2899c --- /dev/null +++ b/data/CTR-KEX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019A600 + name: Epic Word Search Collection 2 + updates: [] +- regions: + - US + id: 000400000019B500 + name: Epic Word Search Collection 2 + updates: [] diff --git a/data/CTR-KEX/icon.jpg b/data/CTR-KEX/icon.jpg new file mode 100644 index 0000000..4afb9a8 Binary files /dev/null and b/data/CTR-KEX/icon.jpg differ diff --git a/data/CTR-KEY/art.jpg b/data/CTR-KEY/art.jpg new file mode 100644 index 0000000..f731ffa Binary files /dev/null and b/data/CTR-KEY/art.jpg differ diff --git a/data/CTR-KEY/data.yml b/data/CTR-KEY/data.yml new file mode 100644 index 0000000..48b2f58 --- /dev/null +++ b/data/CTR-KEY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001ABC00 + name: Epic Word Search Holiday Special + updates: [] +- regions: + - US + id: 00040000001AD100 + name: Epic Word Search Holiday Special + updates: [] diff --git a/data/CTR-KEY/icon.jpg b/data/CTR-KEY/icon.jpg new file mode 100644 index 0000000..5a65348 Binary files /dev/null and b/data/CTR-KEY/icon.jpg differ diff --git a/data/CTR-KFA/art.jpg b/data/CTR-KFA/art.jpg new file mode 100644 index 0000000..ccfcd54 Binary files /dev/null and b/data/CTR-KFA/art.jpg differ diff --git a/data/CTR-KFA/data.yml b/data/CTR-KFA/data.yml new file mode 100644 index 0000000..9b473ad --- /dev/null +++ b/data/CTR-KFA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000013C500 + name: プチノベル「祝祭の八月」 + updates: [] diff --git a/data/CTR-KFA/icon.jpg b/data/CTR-KFA/icon.jpg new file mode 100644 index 0000000..4755b4d Binary files /dev/null and b/data/CTR-KFA/icon.jpg differ diff --git a/data/CTR-KFB/art.jpg b/data/CTR-KFB/art.jpg new file mode 100644 index 0000000..12e4036 Binary files /dev/null and b/data/CTR-KFB/art.jpg differ diff --git a/data/CTR-KFB/data.yml b/data/CTR-KFB/data.yml new file mode 100644 index 0000000..39dea36 --- /dev/null +++ b/data/CTR-KFB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000197C00 + name: マル合格!介護福祉士試験 平成28年度版 + updates: [] diff --git a/data/CTR-KFB/icon.jpg b/data/CTR-KFB/icon.jpg new file mode 100644 index 0000000..527ec4d Binary files /dev/null and b/data/CTR-KFB/icon.jpg differ diff --git a/data/CTR-KFG/art.jpg b/data/CTR-KFG/art.jpg new file mode 100644 index 0000000..81dc5a4 Binary files /dev/null and b/data/CTR-KFG/art.jpg differ diff --git a/data/CTR-KFG/data.yml b/data/CTR-KFG/data.yml new file mode 100644 index 0000000..c1394ad --- /dev/null +++ b/data/CTR-KFG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015FB00 + name: Monster Hunter™ 4 Ultimate Special Demo + updates: [] +- regions: + - US + id: 000400000015FA00 + name: Monster Hunter™ 4 Ultimate Special Demo + updates: [] diff --git a/data/CTR-KFG/icon.jpg b/data/CTR-KFG/icon.jpg new file mode 100644 index 0000000..f3d4c8b Binary files /dev/null and b/data/CTR-KFG/icon.jpg differ diff --git a/data/CTR-KFJ/art.jpg b/data/CTR-KFJ/art.jpg new file mode 100644 index 0000000..58dfbb5 Binary files /dev/null and b/data/CTR-KFJ/art.jpg differ diff --git a/data/CTR-KFJ/data.yml b/data/CTR-KFJ/data.yml new file mode 100644 index 0000000..15e3d36 --- /dev/null +++ b/data/CTR-KFJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C3D00 + name: 'Mysterious Stars 3D: Road To Idol' + updates: [] +- regions: + - JP + id: 00040000001A0F00 + name: 不思議な点つなぎ3D アイドル編 + updates: [] +- regions: + - US + id: 00040000001C0900 + name: 'Mysterious Stars 3D: Road To Idol' + updates: [] diff --git a/data/CTR-KFJ/icon.jpg b/data/CTR-KFJ/icon.jpg new file mode 100644 index 0000000..a9d2036 Binary files /dev/null and b/data/CTR-KFJ/icon.jpg differ diff --git a/data/CTR-KFK/art.jpg b/data/CTR-KFK/art.jpg new file mode 100644 index 0000000..2c3ac57 Binary files /dev/null and b/data/CTR-KFK/art.jpg differ diff --git a/data/CTR-KFK/data.yml b/data/CTR-KFK/data.yml new file mode 100644 index 0000000..f2b0b41 --- /dev/null +++ b/data/CTR-KFK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000147800 + name: ブレイブリーデフォルト たっぷり無料で遊べる版 + updates: + - id: 0004000E00147800 + name: 更新データ Ver. 1.1.0 ブレイブリー デフォルト たっぷり無料で遊べる版 diff --git a/data/CTR-KFK/icon.jpg b/data/CTR-KFK/icon.jpg new file mode 100644 index 0000000..23a3eae Binary files /dev/null and b/data/CTR-KFK/icon.jpg differ diff --git a/data/CTR-KFL/art.jpg b/data/CTR-KFL/art.jpg new file mode 100644 index 0000000..eb858a0 Binary files /dev/null and b/data/CTR-KFL/art.jpg differ diff --git a/data/CTR-KFL/data.yml b/data/CTR-KFL/data.yml new file mode 100644 index 0000000..019b76f --- /dev/null +++ b/data/CTR-KFL/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015B100 + name: 'IronFall: Invasion' + updates: [] +- regions: + - JP + id: 000400000017D000 + name: IRONFALL -Invasion- + updates: [] +- regions: + - TW + id: 000400000017BF00 + name: IRONFALL -Invasion- (日文版) + updates: [] +- regions: + - US + id: 000400000015D800 + name: IRONFALL Invasion + updates: [] diff --git a/data/CTR-KFL/icon.jpg b/data/CTR-KFL/icon.jpg new file mode 100644 index 0000000..6293446 Binary files /dev/null and b/data/CTR-KFL/icon.jpg differ diff --git a/data/CTR-KFN/art.jpg b/data/CTR-KFN/art.jpg new file mode 100644 index 0000000..afaa319 Binary files /dev/null and b/data/CTR-KFN/art.jpg differ diff --git a/data/CTR-KFN/data.yml b/data/CTR-KFN/data.yml new file mode 100644 index 0000000..b25a634 --- /dev/null +++ b/data/CTR-KFN/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000194100 + name: Adventure Labyrinth Story + updates: [] +- regions: + - JP + id: 0004000000185200 + name: 不思議の国のラビリンス + updates: + - id: 0004000E00185200 + name: 更新データ Ver. 1.2 不思議の国のラビリンス +- regions: + - US + id: 0004000000194300 + name: Adventure Labyrinth Story + updates: [] diff --git a/data/CTR-KFN/icon.jpg b/data/CTR-KFN/icon.jpg new file mode 100644 index 0000000..9e7d790 Binary files /dev/null and b/data/CTR-KFN/icon.jpg differ diff --git a/data/CTR-KFP/art.jpg b/data/CTR-KFP/art.jpg new file mode 100644 index 0000000..2f9fd8f Binary files /dev/null and b/data/CTR-KFP/art.jpg differ diff --git a/data/CTR-KFP/data.yml b/data/CTR-KFP/data.yml new file mode 100644 index 0000000..66b96ea --- /dev/null +++ b/data/CTR-KFP/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000167400 + name: Fantasy Pirates + updates: [] +- regions: + - JP + id: 0004000000193C00 + name: ファンタジーパイレーツ + updates: [] +- regions: + - KR + id: 000400000019B700 + name: Fantasy Pirates + updates: [] +- regions: + - TW + id: 000400000019A000 + name: Fantasy Pirate (日文版) + updates: [] +- regions: + - US + id: 0004000000165D00 + name: Fantasy Pirates + updates: [] diff --git a/data/CTR-KFP/icon.jpg b/data/CTR-KFP/icon.jpg new file mode 100644 index 0000000..6ca6afb Binary files /dev/null and b/data/CTR-KFP/icon.jpg differ diff --git a/data/CTR-KFQ/art.jpg b/data/CTR-KFQ/art.jpg new file mode 100644 index 0000000..00a60da Binary files /dev/null and b/data/CTR-KFQ/art.jpg differ diff --git a/data/CTR-KFQ/data.yml b/data/CTR-KFQ/data.yml new file mode 100644 index 0000000..12ee930 --- /dev/null +++ b/data/CTR-KFQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AA800 + name: シェフィ―Shephy― + updates: [] diff --git a/data/CTR-KFQ/icon.jpg b/data/CTR-KFQ/icon.jpg new file mode 100644 index 0000000..61baa6e Binary files /dev/null and b/data/CTR-KFQ/icon.jpg differ diff --git a/data/CTR-KFR/art.jpg b/data/CTR-KFR/art.jpg new file mode 100644 index 0000000..d46c260 Binary files /dev/null and b/data/CTR-KFR/art.jpg differ diff --git a/data/CTR-KFR/data.yml b/data/CTR-KFR/data.yml new file mode 100644 index 0000000..d2bdbf8 --- /dev/null +++ b/data/CTR-KFR/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000148B00 + name: Fairune + updates: [] +- regions: + - JP + id: 000400000013FC00 + name: フェアルーン + updates: [] +- regions: + - TW + id: 000400000015D100 + name: Fairune(繁體中文版) + updates: [] +- regions: + - US + id: 0004000000158700 + name: Fairune + updates: [] diff --git a/data/CTR-KFR/icon.jpg b/data/CTR-KFR/icon.jpg new file mode 100644 index 0000000..4b1b0eb Binary files /dev/null and b/data/CTR-KFR/icon.jpg differ diff --git a/data/CTR-KFU/art.jpg b/data/CTR-KFU/art.jpg new file mode 100644 index 0000000..818d283 Binary files /dev/null and b/data/CTR-KFU/art.jpg differ diff --git a/data/CTR-KFU/data.yml b/data/CTR-KFU/data.yml new file mode 100644 index 0000000..a19a6eb --- /dev/null +++ b/data/CTR-KFU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016CF00 + name: Fairune2 + updates: [] +- regions: + - JP + id: 000400000015E100 + name: フェアルーン2 + updates: [] +- regions: + - US + id: 000400000016D500 + name: Fairune2 + updates: [] diff --git a/data/CTR-KFU/icon.jpg b/data/CTR-KFU/icon.jpg new file mode 100644 index 0000000..6cb27ca Binary files /dev/null and b/data/CTR-KFU/icon.jpg differ diff --git a/data/CTR-KFV/art.jpg b/data/CTR-KFV/art.jpg new file mode 100644 index 0000000..2be69b0 Binary files /dev/null and b/data/CTR-KFV/art.jpg differ diff --git a/data/CTR-KFV/data.yml b/data/CTR-KFV/data.yml new file mode 100644 index 0000000..7a75cff --- /dev/null +++ b/data/CTR-KFV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013EB00 + name: 'Hideaways: Foggy Valley' + updates: [] diff --git a/data/CTR-KFV/icon.jpg b/data/CTR-KFV/icon.jpg new file mode 100644 index 0000000..31d50d6 Binary files /dev/null and b/data/CTR-KFV/icon.jpg differ diff --git a/data/CTR-KFX/art.jpg b/data/CTR-KFX/art.jpg new file mode 100644 index 0000000..aab21b5 Binary files /dev/null and b/data/CTR-KFX/art.jpg differ diff --git a/data/CTR-KFX/data.yml b/data/CTR-KFX/data.yml new file mode 100644 index 0000000..7b6f598 --- /dev/null +++ b/data/CTR-KFX/data.yml @@ -0,0 +1,21 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C3E00 + name: 'Mysterious Stars 3D: A Fairy Tale' + updates: + - id: 0004000E001C3E00 + name: 'Mysterious Stars 3D: A Fairy Tale: Update' +- regions: + - JP + id: 000400000018D600 + name: 不思議な点つなぎ3D メルヘン編 + updates: [] +- regions: + - US + id: 00040000001C0800 + name: 'Mysterious Stars 3D: A Fairy Tale' + updates: + - id: 0004000E001C0800 + name: 'Mysterious Stars 3D: A Fairy Tale Update Version 1.1.0' diff --git a/data/CTR-KFX/icon.jpg b/data/CTR-KFX/icon.jpg new file mode 100644 index 0000000..b39428f Binary files /dev/null and b/data/CTR-KFX/icon.jpg differ diff --git a/data/CTR-KFY/art.jpg b/data/CTR-KFY/art.jpg new file mode 100644 index 0000000..fe9d578 Binary files /dev/null and b/data/CTR-KFY/art.jpg differ diff --git a/data/CTR-KFY/data.yml b/data/CTR-KFY/data.yml new file mode 100644 index 0000000..54149dc --- /dev/null +++ b/data/CTR-KFY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018FB00 + name: 'Dan McFox: Head Hunter' + updates: [] +- regions: + - US + id: 000400000018FC00 + name: 'Dan McFox: Head Hunter' + updates: [] diff --git a/data/CTR-KFY/icon.jpg b/data/CTR-KFY/icon.jpg new file mode 100644 index 0000000..c1f6fe3 Binary files /dev/null and b/data/CTR-KFY/icon.jpg differ diff --git a/data/CTR-KFZ/art.jpg b/data/CTR-KFZ/art.jpg new file mode 100644 index 0000000..7037fd6 Binary files /dev/null and b/data/CTR-KFZ/art.jpg differ diff --git a/data/CTR-KFZ/data.yml b/data/CTR-KFZ/data.yml new file mode 100644 index 0000000..4fd311c --- /dev/null +++ b/data/CTR-KFZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000199800 + name: ファタモルガーナの館 + updates: [] diff --git a/data/CTR-KFZ/icon.jpg b/data/CTR-KFZ/icon.jpg new file mode 100644 index 0000000..67688d8 Binary files /dev/null and b/data/CTR-KFZ/icon.jpg differ diff --git a/data/CTR-KG2/art.jpg b/data/CTR-KG2/art.jpg new file mode 100644 index 0000000..4528a6c Binary files /dev/null and b/data/CTR-KG2/art.jpg differ diff --git a/data/CTR-KG2/data.yml b/data/CTR-KG2/data.yml new file mode 100644 index 0000000..a2fac7e --- /dev/null +++ b/data/CTR-KG2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000174200 + name: マル合格! 応用情報技術者試験 平成28年度版 + updates: [] diff --git a/data/CTR-KG2/icon.jpg b/data/CTR-KG2/icon.jpg new file mode 100644 index 0000000..401f090 Binary files /dev/null and b/data/CTR-KG2/icon.jpg differ diff --git a/data/CTR-KG3/art.jpg b/data/CTR-KG3/art.jpg new file mode 100644 index 0000000..a5443ce Binary files /dev/null and b/data/CTR-KG3/art.jpg differ diff --git a/data/CTR-KG3/data.yml b/data/CTR-KG3/data.yml new file mode 100644 index 0000000..98aa603 --- /dev/null +++ b/data/CTR-KG3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000174300 + name: マル合格! 基本情報技術者試験 平成28年度版 + updates: [] diff --git a/data/CTR-KG3/icon.jpg b/data/CTR-KG3/icon.jpg new file mode 100644 index 0000000..976e43d Binary files /dev/null and b/data/CTR-KG3/icon.jpg differ diff --git a/data/CTR-KG4/art.jpg b/data/CTR-KG4/art.jpg new file mode 100644 index 0000000..7de14cf Binary files /dev/null and b/data/CTR-KG4/art.jpg differ diff --git a/data/CTR-KG4/data.yml b/data/CTR-KG4/data.yml new file mode 100644 index 0000000..7467f2b --- /dev/null +++ b/data/CTR-KG4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000174700 + name: マル合格! 介護福祉士試験 平成27年度版 + updates: [] diff --git a/data/CTR-KG4/icon.jpg b/data/CTR-KG4/icon.jpg new file mode 100644 index 0000000..2fbfbd1 Binary files /dev/null and b/data/CTR-KG4/icon.jpg differ diff --git a/data/CTR-KG5/art.jpg b/data/CTR-KG5/art.jpg new file mode 100644 index 0000000..a7ebdc2 Binary files /dev/null and b/data/CTR-KG5/art.jpg differ diff --git a/data/CTR-KG5/data.yml b/data/CTR-KG5/data.yml new file mode 100644 index 0000000..030b199 --- /dev/null +++ b/data/CTR-KG5/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A3800 + name: Geki Yaba Runner Deluxe + updates: [] +- regions: + - JP + id: 00040000001C1000 + name: ゲキヤバランナーハバネロ + updates: [] +- regions: + - US + id: 00040000001A3100 + name: Geki Yaba Runner Deluxe + updates: [] diff --git a/data/CTR-KG5/icon.jpg b/data/CTR-KG5/icon.jpg new file mode 100644 index 0000000..4573963 Binary files /dev/null and b/data/CTR-KG5/icon.jpg differ diff --git a/data/CTR-KG6/art.jpg b/data/CTR-KG6/art.jpg new file mode 100644 index 0000000..4cd67f5 Binary files /dev/null and b/data/CTR-KG6/art.jpg differ diff --git a/data/CTR-KG6/data.yml b/data/CTR-KG6/data.yml new file mode 100644 index 0000000..879a204 --- /dev/null +++ b/data/CTR-KG6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000176C00 + name: Oh!ガッチマン 究極のω珍宝とモミゲー26 + updates: [] diff --git a/data/CTR-KG6/icon.jpg b/data/CTR-KG6/icon.jpg new file mode 100644 index 0000000..2fdd5a9 Binary files /dev/null and b/data/CTR-KG6/icon.jpg differ diff --git a/data/CTR-KG7/art.jpg b/data/CTR-KG7/art.jpg new file mode 100644 index 0000000..d1f9b3c Binary files /dev/null and b/data/CTR-KG7/art.jpg differ diff --git a/data/CTR-KG7/data.yml b/data/CTR-KG7/data.yml new file mode 100644 index 0000000..a43fe13 --- /dev/null +++ b/data/CTR-KG7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000013C400 + name: プチノベル「神学の七月」 + updates: [] diff --git a/data/CTR-KG7/icon.jpg b/data/CTR-KG7/icon.jpg new file mode 100644 index 0000000..c635d22 Binary files /dev/null and b/data/CTR-KG7/icon.jpg differ diff --git a/data/CTR-KG8/art.jpg b/data/CTR-KG8/art.jpg new file mode 100644 index 0000000..5e7d5a4 Binary files /dev/null and b/data/CTR-KG8/art.jpg differ diff --git a/data/CTR-KG8/data.yml b/data/CTR-KG8/data.yml new file mode 100644 index 0000000..7c04369 --- /dev/null +++ b/data/CTR-KG8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AA500 + name: デジコロ じーさん邪 Vol.008 忘れ物に気をつけるのじゃっっ!! + updates: [] diff --git a/data/CTR-KG8/icon.jpg b/data/CTR-KG8/icon.jpg new file mode 100644 index 0000000..e7acc78 Binary files /dev/null and b/data/CTR-KG8/icon.jpg differ diff --git a/data/CTR-KG9/art.jpg b/data/CTR-KG9/art.jpg new file mode 100644 index 0000000..265ba85 Binary files /dev/null and b/data/CTR-KG9/art.jpg differ diff --git a/data/CTR-KG9/data.yml b/data/CTR-KG9/data.yml new file mode 100644 index 0000000..0faac05 --- /dev/null +++ b/data/CTR-KG9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C7E00 + name: Parascientific Escape Crossing at the Farthest Horizon + updates: [] +- regions: + - JP + id: 00040000001AEF00 + name: 超科学脱出 最果てのクロスアイズ + updates: [] +- regions: + - US + id: 00040000001C7D00 + name: Parascientific Escape - Crossing at the Farthest Horizon + updates: [] diff --git a/data/CTR-KG9/icon.jpg b/data/CTR-KG9/icon.jpg new file mode 100644 index 0000000..156cea9 Binary files /dev/null and b/data/CTR-KG9/icon.jpg differ diff --git a/data/CTR-KGB/art.jpg b/data/CTR-KGB/art.jpg new file mode 100644 index 0000000..c1726cf Binary files /dev/null and b/data/CTR-KGB/art.jpg differ diff --git a/data/CTR-KGB/data.yml b/data/CTR-KGB/data.yml new file mode 100644 index 0000000..0370115 --- /dev/null +++ b/data/CTR-KGB/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A6E00 + name: Azure Striker GUNVOLT 2 + updates: + - id: 0004000E001A6E00 + name: 'Azure Striker GUNVOLT 2: Update 1.2' +- regions: + - JP + id: 000400000019B200 + name: 蒼き雷霆 ガンヴォルト 爪 + updates: + - id: 0004000E0019B200 + name: 更新データ Ver. 1.2 蒼き雷霆 ガンヴォルト 爪 +- regions: + - US + id: 0004000000196A00 + name: Azure Striker GUNVOLT 2 + updates: + - id: 0004000E00196A00 + name: Azure Striker GUNVOLT 2 Update Ver. 1.2 diff --git a/data/CTR-KGB/icon.jpg b/data/CTR-KGB/icon.jpg new file mode 100644 index 0000000..7aa3b15 Binary files /dev/null and b/data/CTR-KGB/icon.jpg differ diff --git a/data/CTR-KGC/art.jpg b/data/CTR-KGC/art.jpg new file mode 100644 index 0000000..117743f Binary files /dev/null and b/data/CTR-KGC/art.jpg differ diff --git a/data/CTR-KGC/data.yml b/data/CTR-KGC/data.yml new file mode 100644 index 0000000..00157f1 --- /dev/null +++ b/data/CTR-KGC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000160A00 + name: みんなのデコレーションカード + updates: [] diff --git a/data/CTR-KGC/icon.jpg b/data/CTR-KGC/icon.jpg new file mode 100644 index 0000000..c955714 Binary files /dev/null and b/data/CTR-KGC/icon.jpg differ diff --git a/data/CTR-KGD/art.jpg b/data/CTR-KGD/art.jpg new file mode 100644 index 0000000..871d30a Binary files /dev/null and b/data/CTR-KGD/art.jpg differ diff --git a/data/CTR-KGD/data.yml b/data/CTR-KGD/data.yml new file mode 100644 index 0000000..62fa7d4 --- /dev/null +++ b/data/CTR-KGD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000192C00 + name: Gourmet Dream + updates: [] +- regions: + - JP + id: 0004000000164D00 + name: グルメドリーム + updates: [] +- regions: + - US + id: 0004000000194500 + name: Gourmet Dream + updates: [] diff --git a/data/CTR-KGD/icon.jpg b/data/CTR-KGD/icon.jpg new file mode 100644 index 0000000..b9ab704 Binary files /dev/null and b/data/CTR-KGD/icon.jpg differ diff --git a/data/CTR-KGE/art.jpg b/data/CTR-KGE/art.jpg new file mode 100644 index 0000000..41d6da8 Binary files /dev/null and b/data/CTR-KGE/art.jpg differ diff --git a/data/CTR-KGE/data.yml b/data/CTR-KGE/data.yml new file mode 100644 index 0000000..7ba0b02 --- /dev/null +++ b/data/CTR-KGE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B2B00 + name: Parascientific Escape - Gear Detective + updates: [] +- regions: + - JP + id: 000400000017D200 + name: 超科学脱出 ギア・ディテクティブ + updates: [] +- regions: + - US + id: 00040000001AE700 + name: Parascientific Escape - Gear Detective + updates: [] diff --git a/data/CTR-KGE/icon.jpg b/data/CTR-KGE/icon.jpg new file mode 100644 index 0000000..d18b6ea Binary files /dev/null and b/data/CTR-KGE/icon.jpg differ diff --git a/data/CTR-KGG/art.jpg b/data/CTR-KGG/art.jpg new file mode 100644 index 0000000..235dc4c Binary files /dev/null and b/data/CTR-KGG/art.jpg differ diff --git a/data/CTR-KGG/data.yml b/data/CTR-KGG/data.yml new file mode 100644 index 0000000..d6276c4 --- /dev/null +++ b/data/CTR-KGG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013F600 + name: GLORY OF GENERALS + updates: [] +- regions: + - US + id: 000400000013F900 + name: Glory of Generals + updates: [] diff --git a/data/CTR-KGG/icon.jpg b/data/CTR-KGG/icon.jpg new file mode 100644 index 0000000..0bdf089 Binary files /dev/null and b/data/CTR-KGG/icon.jpg differ diff --git a/data/CTR-KGH/art.jpg b/data/CTR-KGH/art.jpg new file mode 100644 index 0000000..7134b2f Binary files /dev/null and b/data/CTR-KGH/art.jpg differ diff --git a/data/CTR-KGH/data.yml b/data/CTR-KGH/data.yml new file mode 100644 index 0000000..90e37d2 --- /dev/null +++ b/data/CTR-KGH/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015B900 + name: 3D Gunstar Heroes + updates: [] +- regions: + - JP + id: 0004000000162600 + name: 3D ガンスターヒーローズ + updates: [] +- regions: + - US + id: 0004000000158400 + name: 3D Gunstar Heroes + updates: [] diff --git a/data/CTR-KGH/icon.jpg b/data/CTR-KGH/icon.jpg new file mode 100644 index 0000000..ebd87e6 Binary files /dev/null and b/data/CTR-KGH/icon.jpg differ diff --git a/data/CTR-KGJ/art.jpg b/data/CTR-KGJ/art.jpg new file mode 100644 index 0000000..4f93902 Binary files /dev/null and b/data/CTR-KGJ/art.jpg differ diff --git a/data/CTR-KGJ/data.yml b/data/CTR-KGJ/data.yml new file mode 100644 index 0000000..d30ab06 --- /dev/null +++ b/data/CTR-KGJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000017CF00 + name: マル合格! 社会福祉士試験 平成28年度版 + updates: [] diff --git a/data/CTR-KGJ/icon.jpg b/data/CTR-KGJ/icon.jpg new file mode 100644 index 0000000..3ae843f Binary files /dev/null and b/data/CTR-KGJ/icon.jpg differ diff --git a/data/CTR-KGK/art.jpg b/data/CTR-KGK/art.jpg new file mode 100644 index 0000000..8de4de8 Binary files /dev/null and b/data/CTR-KGK/art.jpg differ diff --git a/data/CTR-KGK/data.yml b/data/CTR-KGK/data.yml new file mode 100644 index 0000000..867858e --- /dev/null +++ b/data/CTR-KGK/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000015F800 + name: ぼくらの学校戦争 ~痛快アドベンチャー~ + updates: + - id: 0004000E0015F800 + name: 更新データ Ver. 1.1 ぼくらの学校戦争 ~痛快アドベンチャー~ diff --git a/data/CTR-KGK/icon.jpg b/data/CTR-KGK/icon.jpg new file mode 100644 index 0000000..55adbc7 Binary files /dev/null and b/data/CTR-KGK/icon.jpg differ diff --git a/data/CTR-KGL/art.jpg b/data/CTR-KGL/art.jpg new file mode 100644 index 0000000..bc916a0 Binary files /dev/null and b/data/CTR-KGL/art.jpg differ diff --git a/data/CTR-KGL/data.yml b/data/CTR-KGL/data.yml new file mode 100644 index 0000000..e769b22 --- /dev/null +++ b/data/CTR-KGL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000184300 + name: ミニゴルフリゾート + updates: [] +- regions: + - US + id: 000400000017FA00 + name: Mini Golf Resort + updates: [] diff --git a/data/CTR-KGL/icon.jpg b/data/CTR-KGL/icon.jpg new file mode 100644 index 0000000..0fbb20c Binary files /dev/null and b/data/CTR-KGL/icon.jpg differ diff --git a/data/CTR-KGM/art.jpg b/data/CTR-KGM/art.jpg new file mode 100644 index 0000000..9b3d501 Binary files /dev/null and b/data/CTR-KGM/art.jpg differ diff --git a/data/CTR-KGM/data.yml b/data/CTR-KGM/data.yml new file mode 100644 index 0000000..deb6ba5 --- /dev/null +++ b/data/CTR-KGM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013E900 + name: Gothic Masquerade + updates: [] diff --git a/data/CTR-KGM/icon.jpg b/data/CTR-KGM/icon.jpg new file mode 100644 index 0000000..1988149 Binary files /dev/null and b/data/CTR-KGM/icon.jpg differ diff --git a/data/CTR-KGN/art.jpg b/data/CTR-KGN/art.jpg new file mode 100644 index 0000000..3fef501 Binary files /dev/null and b/data/CTR-KGN/art.jpg differ diff --git a/data/CTR-KGN/data.yml b/data/CTR-KGN/data.yml new file mode 100644 index 0000000..bce1354 --- /dev/null +++ b/data/CTR-KGN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000139F00 + name: ぐ~にゃん + updates: [] +- regions: + - KR + id: 0004000000166800 + name: Goonyan + updates: [] +- regions: + - TW + id: 0004000000179100 + name: Goonyan(日文版) + updates: [] diff --git a/data/CTR-KGN/icon.jpg b/data/CTR-KGN/icon.jpg new file mode 100644 index 0000000..0d7587e Binary files /dev/null and b/data/CTR-KGN/icon.jpg differ diff --git a/data/CTR-KGP/art.jpg b/data/CTR-KGP/art.jpg new file mode 100644 index 0000000..ad3cd36 Binary files /dev/null and b/data/CTR-KGP/art.jpg differ diff --git a/data/CTR-KGP/data.yml b/data/CTR-KGP/data.yml new file mode 100644 index 0000000..785ec5e --- /dev/null +++ b/data/CTR-KGP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000013F700 + name: Glory of Generals The Pacific + updates: [] +- regions: + - US + id: 000400000013FA00 + name: 'GLORY OF GENERALS: THE PACIFIC' + updates: [] diff --git a/data/CTR-KGP/icon.jpg b/data/CTR-KGP/icon.jpg new file mode 100644 index 0000000..394d32d Binary files /dev/null and b/data/CTR-KGP/icon.jpg differ diff --git a/data/CTR-KGQ/art.jpg b/data/CTR-KGQ/art.jpg new file mode 100644 index 0000000..c77fe84 Binary files /dev/null and b/data/CTR-KGQ/art.jpg differ diff --git a/data/CTR-KGQ/data.yml b/data/CTR-KGQ/data.yml new file mode 100644 index 0000000..030d1ae --- /dev/null +++ b/data/CTR-KGQ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000189000 + name: 学友運命共同体 + updates: + - id: 0004000E00189000 + name: '更新データ Ver. 1.1 学友運命共同体 ' diff --git a/data/CTR-KGQ/icon.jpg b/data/CTR-KGQ/icon.jpg new file mode 100644 index 0000000..7e1c6f1 Binary files /dev/null and b/data/CTR-KGQ/icon.jpg differ diff --git a/data/CTR-KGS/art.jpg b/data/CTR-KGS/art.jpg new file mode 100644 index 0000000..91766bc Binary files /dev/null and b/data/CTR-KGS/art.jpg differ diff --git a/data/CTR-KGS/data.yml b/data/CTR-KGS/data.yml new file mode 100644 index 0000000..0daa037 --- /dev/null +++ b/data/CTR-KGS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000139D00 + name: マル合格! 行政書士試験 平成26年度版 + updates: [] diff --git a/data/CTR-KGS/icon.jpg b/data/CTR-KGS/icon.jpg new file mode 100644 index 0000000..c2a033b Binary files /dev/null and b/data/CTR-KGS/icon.jpg differ diff --git a/data/CTR-KGT/art.jpg b/data/CTR-KGT/art.jpg new file mode 100644 index 0000000..238ac7e Binary files /dev/null and b/data/CTR-KGT/art.jpg differ diff --git a/data/CTR-KGT/data.yml b/data/CTR-KGT/data.yml new file mode 100644 index 0000000..cee89dc --- /dev/null +++ b/data/CTR-KGT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017FF00 + name: Mini Golf Resort + updates: [] diff --git a/data/CTR-KGT/icon.jpg b/data/CTR-KGT/icon.jpg new file mode 100644 index 0000000..afee63b Binary files /dev/null and b/data/CTR-KGT/icon.jpg differ diff --git a/data/CTR-KGV/art.jpg b/data/CTR-KGV/art.jpg new file mode 100644 index 0000000..e4d0442 Binary files /dev/null and b/data/CTR-KGV/art.jpg differ diff --git a/data/CTR-KGV/data.yml b/data/CTR-KGV/data.yml new file mode 100644 index 0000000..60bc63b --- /dev/null +++ b/data/CTR-KGV/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000180000 + name: Gunslugs 2 + updates: [] +- regions: + - US + id: 0004000000180200 + name: Gunslugs 2 + updates: [] diff --git a/data/CTR-KGV/icon.jpg b/data/CTR-KGV/icon.jpg new file mode 100644 index 0000000..c6dc74f Binary files /dev/null and b/data/CTR-KGV/icon.jpg differ diff --git a/data/CTR-KGW/art.jpg b/data/CTR-KGW/art.jpg new file mode 100644 index 0000000..e4148d8 Binary files /dev/null and b/data/CTR-KGW/art.jpg differ diff --git a/data/CTR-KGW/data.yml b/data/CTR-KGW/data.yml new file mode 100644 index 0000000..d2f3572 --- /dev/null +++ b/data/CTR-KGW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019A800 + name: Gunslugs + updates: [] +- regions: + - US + id: 000400000019B400 + name: Gunslugs + updates: [] diff --git a/data/CTR-KGW/icon.jpg b/data/CTR-KGW/icon.jpg new file mode 100644 index 0000000..90b4d2b Binary files /dev/null and b/data/CTR-KGW/icon.jpg differ diff --git a/data/CTR-KGX/art.jpg b/data/CTR-KGX/art.jpg new file mode 100644 index 0000000..c61694b Binary files /dev/null and b/data/CTR-KGX/art.jpg differ diff --git a/data/CTR-KGX/data.yml b/data/CTR-KGX/data.yml new file mode 100644 index 0000000..76ffbfc --- /dev/null +++ b/data/CTR-KGX/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000198800 + name: Digger Dan DX + updates: [] +- regions: + - US + id: 000400000018F300 + name: Digger Dan DX + updates: [] diff --git a/data/CTR-KGX/icon.jpg b/data/CTR-KGX/icon.jpg new file mode 100644 index 0000000..e2495f0 Binary files /dev/null and b/data/CTR-KGX/icon.jpg differ diff --git a/data/CTR-KGY/art.jpg b/data/CTR-KGY/art.jpg new file mode 100644 index 0000000..28da563 Binary files /dev/null and b/data/CTR-KGY/art.jpg differ diff --git a/data/CTR-KGY/data.yml b/data/CTR-KGY/data.yml new file mode 100644 index 0000000..f4e5e01 --- /dev/null +++ b/data/CTR-KGY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000180700 + name: マル合格! 行政書士試験 平成28年度版 + updates: [] diff --git a/data/CTR-KGY/icon.jpg b/data/CTR-KGY/icon.jpg new file mode 100644 index 0000000..ab2a48e Binary files /dev/null and b/data/CTR-KGY/icon.jpg differ diff --git a/data/CTR-KGZ/art.jpg b/data/CTR-KGZ/art.jpg new file mode 100644 index 0000000..9c95ad2 Binary files /dev/null and b/data/CTR-KGZ/art.jpg differ diff --git a/data/CTR-KGZ/data.yml b/data/CTR-KGZ/data.yml new file mode 100644 index 0000000..6070aa7 --- /dev/null +++ b/data/CTR-KGZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000019EB00 + name: dreeps: アラームプレイングゲーム + updates: [] diff --git a/data/CTR-KGZ/icon.jpg b/data/CTR-KGZ/icon.jpg new file mode 100644 index 0000000..f001731 Binary files /dev/null and b/data/CTR-KGZ/icon.jpg differ diff --git a/data/CTR-KH6/art.jpg b/data/CTR-KH6/art.jpg new file mode 100644 index 0000000..90578ac Binary files /dev/null and b/data/CTR-KH6/art.jpg differ diff --git a/data/CTR-KH6/data.yml b/data/CTR-KH6/data.yml new file mode 100644 index 0000000..7d5239b --- /dev/null +++ b/data/CTR-KH6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B8600 + name: 干物妹!うまるちゃん だらっとパズル + updates: [] diff --git a/data/CTR-KH6/icon.jpg b/data/CTR-KH6/icon.jpg new file mode 100644 index 0000000..c86acfd Binary files /dev/null and b/data/CTR-KH6/icon.jpg differ diff --git a/data/CTR-KH7/art.jpg b/data/CTR-KH7/art.jpg new file mode 100644 index 0000000..9a2efd7 Binary files /dev/null and b/data/CTR-KH7/art.jpg differ diff --git a/data/CTR-KH7/data.yml b/data/CTR-KH7/data.yml new file mode 100644 index 0000000..0b6a8b2 --- /dev/null +++ b/data/CTR-KH7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000197300 + name: 彼岸花の咲く夜に + updates: [] diff --git a/data/CTR-KH7/icon.jpg b/data/CTR-KH7/icon.jpg new file mode 100644 index 0000000..6ac6fad Binary files /dev/null and b/data/CTR-KH7/icon.jpg differ diff --git a/data/CTR-KHA/art.jpg b/data/CTR-KHA/art.jpg new file mode 100644 index 0000000..145bc9f Binary files /dev/null and b/data/CTR-KHA/art.jpg differ diff --git a/data/CTR-KHA/data.yml b/data/CTR-KHA/data.yml new file mode 100644 index 0000000..2880eca --- /dev/null +++ b/data/CTR-KHA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000180D00 + name: 脱出ファンタジー アリス・イン・エスケープランド + updates: [] diff --git a/data/CTR-KHA/icon.jpg b/data/CTR-KHA/icon.jpg new file mode 100644 index 0000000..6683311 Binary files /dev/null and b/data/CTR-KHA/icon.jpg differ diff --git a/data/CTR-KHB/art.jpg b/data/CTR-KHB/art.jpg new file mode 100644 index 0000000..9591576 Binary files /dev/null and b/data/CTR-KHB/art.jpg differ diff --git a/data/CTR-KHB/data.yml b/data/CTR-KHB/data.yml new file mode 100644 index 0000000..d09aa9c --- /dev/null +++ b/data/CTR-KHB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000161500 + name: Heart Beaten + updates: [] +- regions: + - US + id: 0004000000161C00 + name: Heart Beaten + updates: [] diff --git a/data/CTR-KHB/icon.jpg b/data/CTR-KHB/icon.jpg new file mode 100644 index 0000000..d47b6de Binary files /dev/null and b/data/CTR-KHB/icon.jpg differ diff --git a/data/CTR-KHC/art.jpg b/data/CTR-KHC/art.jpg new file mode 100644 index 0000000..40df299 Binary files /dev/null and b/data/CTR-KHC/art.jpg differ diff --git a/data/CTR-KHC/data.yml b/data/CTR-KHC/data.yml new file mode 100644 index 0000000..4efc3d9 --- /dev/null +++ b/data/CTR-KHC/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7300 + name: ヘボット! ヘボヘボ! ヘボットーナメント! + updates: + - id: 0004000E001A7300 + name: 更新データ Ver. 1.1.0 ヘボット! ヘボヘボ! ヘボットーナメント! diff --git a/data/CTR-KHC/icon.jpg b/data/CTR-KHC/icon.jpg new file mode 100644 index 0000000..f9eaa99 Binary files /dev/null and b/data/CTR-KHC/icon.jpg differ diff --git a/data/CTR-KHD/art.jpg b/data/CTR-KHD/art.jpg new file mode 100644 index 0000000..e1f7a7c Binary files /dev/null and b/data/CTR-KHD/art.jpg differ diff --git a/data/CTR-KHD/data.yml b/data/CTR-KHD/data.yml new file mode 100644 index 0000000..8addb30 --- /dev/null +++ b/data/CTR-KHD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145700 + name: プチノベル「破談の十月」 + updates: [] diff --git a/data/CTR-KHD/icon.jpg b/data/CTR-KHD/icon.jpg new file mode 100644 index 0000000..126e713 Binary files /dev/null and b/data/CTR-KHD/icon.jpg differ diff --git a/data/CTR-KHG/art.jpg b/data/CTR-KHG/art.jpg new file mode 100644 index 0000000..872298a Binary files /dev/null and b/data/CTR-KHG/art.jpg differ diff --git a/data/CTR-KHG/data.yml b/data/CTR-KHG/data.yml new file mode 100644 index 0000000..0064641 --- /dev/null +++ b/data/CTR-KHG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C6100 + name: ラジアントヒストリア パーフェクトC 特別体験版 + updates: [] diff --git a/data/CTR-KHG/icon.jpg b/data/CTR-KHG/icon.jpg new file mode 100644 index 0000000..30bf007 Binary files /dev/null and b/data/CTR-KHG/icon.jpg differ diff --git a/data/CTR-KHK/art.jpg b/data/CTR-KHK/art.jpg new file mode 100644 index 0000000..b72a35d Binary files /dev/null and b/data/CTR-KHK/art.jpg differ diff --git a/data/CTR-KHK/data.yml b/data/CTR-KHK/data.yml new file mode 100644 index 0000000..1f11c3f --- /dev/null +++ b/data/CTR-KHK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000014B600 + name: '@SIMPLE DLシリーズ Vol.35 THE 呪いの廃校舎' + updates: [] diff --git a/data/CTR-KHK/icon.jpg b/data/CTR-KHK/icon.jpg new file mode 100644 index 0000000..008f14a Binary files /dev/null and b/data/CTR-KHK/icon.jpg differ diff --git a/data/CTR-KHL/art.jpg b/data/CTR-KHL/art.jpg new file mode 100644 index 0000000..ac85b27 Binary files /dev/null and b/data/CTR-KHL/art.jpg differ diff --git a/data/CTR-KHL/data.yml b/data/CTR-KHL/data.yml new file mode 100644 index 0000000..8bae358 --- /dev/null +++ b/data/CTR-KHL/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AF000 + name: 新みんなの塗り絵 Hello Kitty + updates: + - id: 0004000E001AF000 + name: 更新データ Ver. 1.1 新みんなの塗り絵 Hello Kitty diff --git a/data/CTR-KHL/icon.jpg b/data/CTR-KHL/icon.jpg new file mode 100644 index 0000000..955715d Binary files /dev/null and b/data/CTR-KHL/icon.jpg differ diff --git a/data/CTR-KHM/art.jpg b/data/CTR-KHM/art.jpg new file mode 100644 index 0000000..c5b1c90 Binary files /dev/null and b/data/CTR-KHM/art.jpg differ diff --git a/data/CTR-KHM/data.yml b/data/CTR-KHM/data.yml new file mode 100644 index 0000000..02fc268 --- /dev/null +++ b/data/CTR-KHM/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000176300 + name: The Magic Hammer + updates: [] +- regions: + - JP + id: 0004000000194C00 + name: マジックハンマー + updates: [] +- regions: + - KR + id: 000400000019B800 + name: Magic Hammer + updates: [] +- regions: + - TW + id: 000400000019A100 + name: Magic Hammer (日文版) + updates: [] +- regions: + - US + id: 000400000016F300 + name: The Magic Hammer + updates: [] diff --git a/data/CTR-KHM/icon.jpg b/data/CTR-KHM/icon.jpg new file mode 100644 index 0000000..3d46d52 Binary files /dev/null and b/data/CTR-KHM/icon.jpg differ diff --git a/data/CTR-KHN/art.jpg b/data/CTR-KHN/art.jpg new file mode 100644 index 0000000..2c3a91b Binary files /dev/null and b/data/CTR-KHN/art.jpg differ diff --git a/data/CTR-KHN/data.yml b/data/CTR-KHN/data.yml new file mode 100644 index 0000000..a4150dc --- /dev/null +++ b/data/CTR-KHN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000162800 + name: ひっぱり~ニャ! + updates: [] diff --git a/data/CTR-KHN/icon.jpg b/data/CTR-KHN/icon.jpg new file mode 100644 index 0000000..e57e696 Binary files /dev/null and b/data/CTR-KHN/icon.jpg differ diff --git a/data/CTR-KHR/art.jpg b/data/CTR-KHR/art.jpg new file mode 100644 index 0000000..35193a6 Binary files /dev/null and b/data/CTR-KHR/art.jpg differ diff --git a/data/CTR-KHR/data.yml b/data/CTR-KHR/data.yml new file mode 100644 index 0000000..6bf6e57 --- /dev/null +++ b/data/CTR-KHR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000019D600 + name: Henri-アンリ- + updates: [] diff --git a/data/CTR-KHR/icon.jpg b/data/CTR-KHR/icon.jpg new file mode 100644 index 0000000..523621f Binary files /dev/null and b/data/CTR-KHR/icon.jpg differ diff --git a/data/CTR-KHS/art.jpg b/data/CTR-KHS/art.jpg new file mode 100644 index 0000000..8b6f83f Binary files /dev/null and b/data/CTR-KHS/art.jpg differ diff --git a/data/CTR-KHS/data.yml b/data/CTR-KHS/data.yml new file mode 100644 index 0000000..fa103e9 --- /dev/null +++ b/data/CTR-KHS/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000183800 + name: 'Bravely Second™: End Layer Demo' + updates: [] +- regions: + - JP + id: 000400000014B000 + name: ブレイブリーセカンド 無料で遊べる三銃士編 + updates: [] +- regions: + - KR + id: 0004000000183900 + name: BRAVELY SECOND 무료로 즐기는 삼총사편 + updates: [] +- regions: + - US + id: 0004000000183700 + name: 'BRAVELY SECOND™: END LAYER DEMO' + updates: [] diff --git a/data/CTR-KHS/icon.jpg b/data/CTR-KHS/icon.jpg new file mode 100644 index 0000000..749501d Binary files /dev/null and b/data/CTR-KHS/icon.jpg differ diff --git a/data/CTR-KHT/art.jpg b/data/CTR-KHT/art.jpg new file mode 100644 index 0000000..b25d786 Binary files /dev/null and b/data/CTR-KHT/art.jpg differ diff --git a/data/CTR-KHT/data.yml b/data/CTR-KHT/data.yml new file mode 100644 index 0000000..6e8975a --- /dev/null +++ b/data/CTR-KHT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000182400 + name: Petit Novel series - Harvest December + updates: [] +- regions: + - US + id: 0004000000182800 + name: Petit Novel series - Harvest December + updates: [] diff --git a/data/CTR-KHT/icon.jpg b/data/CTR-KHT/icon.jpg new file mode 100644 index 0000000..44ff5c4 Binary files /dev/null and b/data/CTR-KHT/icon.jpg differ diff --git a/data/CTR-KHY/art.jpg b/data/CTR-KHY/art.jpg new file mode 100644 index 0000000..0fe84d2 Binary files /dev/null and b/data/CTR-KHY/art.jpg differ diff --git a/data/CTR-KHY/data.yml b/data/CTR-KHY/data.yml new file mode 100644 index 0000000..ae9ea8d --- /dev/null +++ b/data/CTR-KHY/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000169B00 + name: 新ひゅ~ストン + updates: [] diff --git a/data/CTR-KHY/icon.jpg b/data/CTR-KHY/icon.jpg new file mode 100644 index 0000000..ea8893d Binary files /dev/null and b/data/CTR-KHY/icon.jpg differ diff --git a/data/CTR-KHZ/art.jpg b/data/CTR-KHZ/art.jpg new file mode 100644 index 0000000..31dbb68 Binary files /dev/null and b/data/CTR-KHZ/art.jpg differ diff --git a/data/CTR-KHZ/data.yml b/data/CTR-KHZ/data.yml new file mode 100644 index 0000000..6db996e --- /dev/null +++ b/data/CTR-KHZ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014E200 + name: Hazumi + updates: [] +- regions: + - JP + id: 0004000000156700 + name: ハネカエリーノ + updates: [] +- regions: + - US + id: 000400000013C100 + name: Hazumi + updates: [] diff --git a/data/CTR-KHZ/icon.jpg b/data/CTR-KHZ/icon.jpg new file mode 100644 index 0000000..cb07392 Binary files /dev/null and b/data/CTR-KHZ/icon.jpg differ diff --git a/data/CTR-KJ3/art.jpg b/data/CTR-KJ3/art.jpg new file mode 100644 index 0000000..ede035c Binary files /dev/null and b/data/CTR-KJ3/art.jpg differ diff --git a/data/CTR-KJ3/data.yml b/data/CTR-KJ3/data.yml new file mode 100644 index 0000000..a52617d --- /dev/null +++ b/data/CTR-KJ3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000193E00 + name: 'Japanese Rail Sim 3D Journey in suburbs #1 Vol. 3' + updates: [] diff --git a/data/CTR-KJ3/icon.jpg b/data/CTR-KJ3/icon.jpg new file mode 100644 index 0000000..2e8ab9e Binary files /dev/null and b/data/CTR-KJ3/icon.jpg differ diff --git a/data/CTR-KJ4/art.jpg b/data/CTR-KJ4/art.jpg new file mode 100644 index 0000000..6a1c804 Binary files /dev/null and b/data/CTR-KJ4/art.jpg differ diff --git a/data/CTR-KJ4/data.yml b/data/CTR-KJ4/data.yml new file mode 100644 index 0000000..f68b48f --- /dev/null +++ b/data/CTR-KJ4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000193F00 + name: 'Japanese Rail Sim 3D Journey in suburbs #1 Vol. 4' + updates: [] diff --git a/data/CTR-KJ4/icon.jpg b/data/CTR-KJ4/icon.jpg new file mode 100644 index 0000000..f45b5de Binary files /dev/null and b/data/CTR-KJ4/icon.jpg differ diff --git a/data/CTR-KJC/art.jpg b/data/CTR-KJC/art.jpg new file mode 100644 index 0000000..af7df64 Binary files /dev/null and b/data/CTR-KJC/art.jpg differ diff --git a/data/CTR-KJC/data.yml b/data/CTR-KJC/data.yml new file mode 100644 index 0000000..0fad731 --- /dev/null +++ b/data/CTR-KJC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019DB00 + name: Journey to Kreisia + updates: [] +- regions: + - JP + id: 0004000000198A00 + name: 巡界のクレイシア + updates: [] +- regions: + - US + id: 000400000019E100 + name: Journey to Kreisia + updates: [] diff --git a/data/CTR-KJC/icon.jpg b/data/CTR-KJC/icon.jpg new file mode 100644 index 0000000..52b84c4 Binary files /dev/null and b/data/CTR-KJC/icon.jpg differ diff --git a/data/CTR-KJD/art.jpg b/data/CTR-KJD/art.jpg new file mode 100644 index 0000000..d5e5052 Binary files /dev/null and b/data/CTR-KJD/art.jpg differ diff --git a/data/CTR-KJD/data.yml b/data/CTR-KJD/data.yml new file mode 100644 index 0000000..4db2dda --- /dev/null +++ b/data/CTR-KJD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A4B00 + name: 動物戦隊ジュウオウジャー バトルキューブパズル + updates: [] diff --git a/data/CTR-KJD/icon.jpg b/data/CTR-KJD/icon.jpg new file mode 100644 index 0000000..8ff3d73 Binary files /dev/null and b/data/CTR-KJD/icon.jpg differ diff --git a/data/CTR-KJE/art.jpg b/data/CTR-KJE/art.jpg new file mode 100644 index 0000000..2265a55 Binary files /dev/null and b/data/CTR-KJE/art.jpg differ diff --git a/data/CTR-KJE/data.yml b/data/CTR-KJE/data.yml new file mode 100644 index 0000000..ad13321 --- /dev/null +++ b/data/CTR-KJE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CB300 + name: Creeping Terror + updates: [] +- regions: + - JP + id: 0004000000187500 + name: CREEPING TERROR + updates: [] +- regions: + - US + id: 00040000001CB600 + name: Creeping Terror + updates: [] diff --git a/data/CTR-KJE/icon.jpg b/data/CTR-KJE/icon.jpg new file mode 100644 index 0000000..5e1be29 Binary files /dev/null and b/data/CTR-KJE/icon.jpg differ diff --git a/data/CTR-KJG/art.jpg b/data/CTR-KJG/art.jpg new file mode 100644 index 0000000..09a1db7 Binary files /dev/null and b/data/CTR-KJG/art.jpg differ diff --git a/data/CTR-KJG/data.yml b/data/CTR-KJG/data.yml new file mode 100644 index 0000000..5068e34 --- /dev/null +++ b/data/CTR-KJG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B0000 + name: 超獣ギガ大戦 + updates: [] diff --git a/data/CTR-KJG/icon.jpg b/data/CTR-KJG/icon.jpg new file mode 100644 index 0000000..65e1637 Binary files /dev/null and b/data/CTR-KJG/icon.jpg differ diff --git a/data/CTR-KJH/art.jpg b/data/CTR-KJH/art.jpg new file mode 100644 index 0000000..0171a2e Binary files /dev/null and b/data/CTR-KJH/art.jpg differ diff --git a/data/CTR-KJH/data.yml b/data/CTR-KJH/data.yml new file mode 100644 index 0000000..ba9d1d7 --- /dev/null +++ b/data/CTR-KJH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BE900 + name: ドウクツジマ + updates: [] diff --git a/data/CTR-KJH/icon.jpg b/data/CTR-KJH/icon.jpg new file mode 100644 index 0000000..c6ea4f5 Binary files /dev/null and b/data/CTR-KJH/icon.jpg differ diff --git a/data/CTR-KJK/art.jpg b/data/CTR-KJK/art.jpg new file mode 100644 index 0000000..18b9ec8 Binary files /dev/null and b/data/CTR-KJK/art.jpg differ diff --git a/data/CTR-KJK/data.yml b/data/CTR-KJK/data.yml new file mode 100644 index 0000000..93f09e7 --- /dev/null +++ b/data/CTR-KJK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156800 + name: '@SIMPLE DLシリーズ Vol.38 THE アイテム探し' + updates: [] diff --git a/data/CTR-KJK/icon.jpg b/data/CTR-KJK/icon.jpg new file mode 100644 index 0000000..6286ad6 Binary files /dev/null and b/data/CTR-KJK/icon.jpg differ diff --git a/data/CTR-KJN/art.jpg b/data/CTR-KJN/art.jpg new file mode 100644 index 0000000..6e03341 Binary files /dev/null and b/data/CTR-KJN/art.jpg differ diff --git a/data/CTR-KJN/data.yml b/data/CTR-KJN/data.yml new file mode 100644 index 0000000..dddbb83 --- /dev/null +++ b/data/CTR-KJN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000162200 + name: イジン爆闘!!ウデジマン + updates: [] diff --git a/data/CTR-KJN/icon.jpg b/data/CTR-KJN/icon.jpg new file mode 100644 index 0000000..eaae05d Binary files /dev/null and b/data/CTR-KJN/icon.jpg differ diff --git a/data/CTR-KJP/art.jpg b/data/CTR-KJP/art.jpg new file mode 100644 index 0000000..e0699e3 Binary files /dev/null and b/data/CTR-KJP/art.jpg differ diff --git a/data/CTR-KJP/data.yml b/data/CTR-KJP/data.yml new file mode 100644 index 0000000..6b3547c --- /dev/null +++ b/data/CTR-KJP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000193D00 + name: 'Japanese Rail Sim 3D Journey in suburbs #1 Vol. 2' + updates: [] diff --git a/data/CTR-KJP/icon.jpg b/data/CTR-KJP/icon.jpg new file mode 100644 index 0000000..bf82fc6 Binary files /dev/null and b/data/CTR-KJP/icon.jpg differ diff --git a/data/CTR-KJR/art.jpg b/data/CTR-KJR/art.jpg new file mode 100644 index 0000000..50cc584 Binary files /dev/null and b/data/CTR-KJR/art.jpg differ diff --git a/data/CTR-KJR/data.yml b/data/CTR-KJR/data.yml new file mode 100644 index 0000000..0064904 --- /dev/null +++ b/data/CTR-KJR/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000194F00 + name: 電車運転指令! 東海道編 + updates: + - id: 0004000E00194F00 + name: 更新データ Ver. 1.0.2 電車運転指令! 東海道編 diff --git a/data/CTR-KJR/icon.jpg b/data/CTR-KJR/icon.jpg new file mode 100644 index 0000000..4cf0f38 Binary files /dev/null and b/data/CTR-KJR/icon.jpg differ diff --git a/data/CTR-KJS/art.jpg b/data/CTR-KJS/art.jpg new file mode 100644 index 0000000..4706983 Binary files /dev/null and b/data/CTR-KJS/art.jpg differ diff --git a/data/CTR-KJS/data.yml b/data/CTR-KJS/data.yml new file mode 100644 index 0000000..a717b5b --- /dev/null +++ b/data/CTR-KJS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156900 + name: '@SIMPLE DLシリーズ Vol.37 THE 巨人走' + updates: [] diff --git a/data/CTR-KJS/icon.jpg b/data/CTR-KJS/icon.jpg new file mode 100644 index 0000000..74ce198 Binary files /dev/null and b/data/CTR-KJS/icon.jpg differ diff --git a/data/CTR-KJW/art.jpg b/data/CTR-KJW/art.jpg new file mode 100644 index 0000000..25a933f Binary files /dev/null and b/data/CTR-KJW/art.jpg differ diff --git a/data/CTR-KJW/data.yml b/data/CTR-KJW/data.yml new file mode 100644 index 0000000..69ee027 --- /dev/null +++ b/data/CTR-KJW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AF500 + name: 高円寺女子サッカー3 ~恋する イレブン いつかはヘブン~ + updates: [] diff --git a/data/CTR-KJW/icon.jpg b/data/CTR-KJW/icon.jpg new file mode 100644 index 0000000..fc7c8d2 Binary files /dev/null and b/data/CTR-KJW/icon.jpg differ diff --git a/data/CTR-KJX/art.jpg b/data/CTR-KJX/art.jpg new file mode 100644 index 0000000..eafd7ef Binary files /dev/null and b/data/CTR-KJX/art.jpg differ diff --git a/data/CTR-KJX/data.yml b/data/CTR-KJX/data.yml new file mode 100644 index 0000000..4a18e24 --- /dev/null +++ b/data/CTR-KJX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B6400 + name: デジコロ じーさん邪 Vol.010 カルタであそぶのじゃっっ!! + updates: [] diff --git a/data/CTR-KJX/icon.jpg b/data/CTR-KJX/icon.jpg new file mode 100644 index 0000000..7208fc2 Binary files /dev/null and b/data/CTR-KJX/icon.jpg differ diff --git a/data/CTR-KK7/art.jpg b/data/CTR-KK7/art.jpg new file mode 100644 index 0000000..ed172ac Binary files /dev/null and b/data/CTR-KK7/art.jpg differ diff --git a/data/CTR-KK7/data.yml b/data/CTR-KK7/data.yml new file mode 100644 index 0000000..b406c93 --- /dev/null +++ b/data/CTR-KK7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7800 + name: デジコロ ケシカスくん Vol.007 教室に刺客来襲! + updates: [] diff --git a/data/CTR-KK7/icon.jpg b/data/CTR-KK7/icon.jpg new file mode 100644 index 0000000..966ab11 Binary files /dev/null and b/data/CTR-KK7/icon.jpg differ diff --git a/data/CTR-KK8/art.jpg b/data/CTR-KK8/art.jpg new file mode 100644 index 0000000..5e989cc Binary files /dev/null and b/data/CTR-KK8/art.jpg differ diff --git a/data/CTR-KK8/data.yml b/data/CTR-KK8/data.yml new file mode 100644 index 0000000..ef45289 --- /dev/null +++ b/data/CTR-KK8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7900 + name: デジコロ ケシカスくん Vol.008 ショッピングモールでやりたい放題 + updates: [] diff --git a/data/CTR-KK8/icon.jpg b/data/CTR-KK8/icon.jpg new file mode 100644 index 0000000..cd1fa12 Binary files /dev/null and b/data/CTR-KK8/icon.jpg differ diff --git a/data/CTR-KKA/art.jpg b/data/CTR-KKA/art.jpg new file mode 100644 index 0000000..4531067 Binary files /dev/null and b/data/CTR-KKA/art.jpg differ diff --git a/data/CTR-KKA/data.yml b/data/CTR-KKA/data.yml new file mode 100644 index 0000000..454f476 --- /dev/null +++ b/data/CTR-KKA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DB600 + name: Maze Breaker + updates: [] +- regions: + - US + id: 00040000001DB800 + name: Maze Breaker + updates: [] diff --git a/data/CTR-KKA/icon.jpg b/data/CTR-KKA/icon.jpg new file mode 100644 index 0000000..a3206a5 Binary files /dev/null and b/data/CTR-KKA/icon.jpg differ diff --git a/data/CTR-KKC/art.jpg b/data/CTR-KKC/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKC/art.jpg differ diff --git a/data/CTR-KKC/data.yml b/data/CTR-KKC/data.yml new file mode 100644 index 0000000..2978e8d --- /dev/null +++ b/data/CTR-KKC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AAD00 + name: Kutar Concert Staff + updates: [] +- regions: + - JP + id: 00040000001A2600 + name: クターのコンサートスタッフ + updates: [] +- regions: + - US + id: 00040000001ABF00 + name: Kutar Concert Staff + updates: [] diff --git a/data/CTR-KKC/icon.jpg b/data/CTR-KKC/icon.jpg new file mode 100644 index 0000000..d034596 Binary files /dev/null and b/data/CTR-KKC/icon.jpg differ diff --git a/data/CTR-KKE/art.jpg b/data/CTR-KKE/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKE/art.jpg differ diff --git a/data/CTR-KKE/data.yml b/data/CTR-KKE/data.yml new file mode 100644 index 0000000..83788e5 --- /dev/null +++ b/data/CTR-KKE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AAE00 + name: Kutar End Credits + updates: [] +- regions: + - JP + id: 00040000001A2500 + name: クターのエンドロール + updates: [] +- regions: + - US + id: 00040000001AC000 + name: Kutar End Credits + updates: [] diff --git a/data/CTR-KKE/icon.jpg b/data/CTR-KKE/icon.jpg new file mode 100644 index 0000000..7b1f4d7 Binary files /dev/null and b/data/CTR-KKE/icon.jpg differ diff --git a/data/CTR-KKF/art.jpg b/data/CTR-KKF/art.jpg new file mode 100644 index 0000000..c3d80c4 Binary files /dev/null and b/data/CTR-KKF/art.jpg differ diff --git a/data/CTR-KKF/data.yml b/data/CTR-KKF/data.yml new file mode 100644 index 0000000..491a9a0 --- /dev/null +++ b/data/CTR-KKF/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BE200 + name: Kung Fu FIGHT! + updates: [] +- regions: + - US + id: 00040000001BDC00 + name: Kung Fu FIGHT! + updates: [] diff --git a/data/CTR-KKF/icon.jpg b/data/CTR-KKF/icon.jpg new file mode 100644 index 0000000..63a259e Binary files /dev/null and b/data/CTR-KKF/icon.jpg differ diff --git a/data/CTR-KKK/art.jpg b/data/CTR-KKK/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKK/art.jpg differ diff --git a/data/CTR-KKK/data.yml b/data/CTR-KKK/data.yml new file mode 100644 index 0000000..a820bc7 --- /dev/null +++ b/data/CTR-KKK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AAF00 + name: Kutar Powder Factory + updates: [] +- regions: + - JP + id: 00040000001A2200 + name: クターの粉 + updates: [] +- regions: + - US + id: 00040000001AC300 + name: Kutar Powder Factory + updates: [] diff --git a/data/CTR-KKK/icon.jpg b/data/CTR-KKK/icon.jpg new file mode 100644 index 0000000..d2e20ba Binary files /dev/null and b/data/CTR-KKK/icon.jpg differ diff --git a/data/CTR-KKN/art.jpg b/data/CTR-KKN/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKN/art.jpg differ diff --git a/data/CTR-KKN/data.yml b/data/CTR-KKN/data.yml new file mode 100644 index 0000000..4ba747c --- /dev/null +++ b/data/CTR-KKN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB000 + name: Kutar Jump Rope + updates: [] +- regions: + - JP + id: 00040000001A1F00 + name: クターのナワトビ + updates: [] +- regions: + - US + id: 00040000001AC100 + name: Kutar Jump Rope + updates: [] diff --git a/data/CTR-KKN/icon.jpg b/data/CTR-KKN/icon.jpg new file mode 100644 index 0000000..026098b Binary files /dev/null and b/data/CTR-KKN/icon.jpg differ diff --git a/data/CTR-KKQ/art.jpg b/data/CTR-KKQ/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKQ/art.jpg differ diff --git a/data/CTR-KKQ/data.yml b/data/CTR-KKQ/data.yml new file mode 100644 index 0000000..5c252c6 --- /dev/null +++ b/data/CTR-KKQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB100 + name: Kutar Quiz + updates: [] +- regions: + - JP + id: 00040000001A2000 + name: クターのQ + updates: [] +- regions: + - US + id: 00040000001AC400 + name: Kutar Quiz + updates: [] diff --git a/data/CTR-KKQ/icon.jpg b/data/CTR-KKQ/icon.jpg new file mode 100644 index 0000000..8c333eb Binary files /dev/null and b/data/CTR-KKQ/icon.jpg differ diff --git a/data/CTR-KKR/art.jpg b/data/CTR-KKR/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKR/art.jpg differ diff --git a/data/CTR-KKR/data.yml b/data/CTR-KKR/data.yml new file mode 100644 index 0000000..a82304c --- /dev/null +++ b/data/CTR-KKR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB200 + name: Kutar Ski Lift + updates: [] +- regions: + - JP + id: 00040000001A2400 + name: クターのリフト + updates: [] +- regions: + - US + id: 00040000001AC500 + name: Kutar Ski Lift + updates: [] diff --git a/data/CTR-KKR/icon.jpg b/data/CTR-KKR/icon.jpg new file mode 100644 index 0000000..ec41f34 Binary files /dev/null and b/data/CTR-KKR/icon.jpg differ diff --git a/data/CTR-KKS/art.jpg b/data/CTR-KKS/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKS/art.jpg differ diff --git a/data/CTR-KKS/data.yml b/data/CTR-KKS/data.yml new file mode 100644 index 0000000..2857a14 --- /dev/null +++ b/data/CTR-KKS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB300 + name: Kutar Burger Factory + updates: [] +- regions: + - JP + id: 00040000001A2100 + name: クターの地下バーガー工場 + updates: [] +- regions: + - US + id: 00040000001ABE00 + name: Kutar Burger Factory + updates: [] diff --git a/data/CTR-KKS/icon.jpg b/data/CTR-KKS/icon.jpg new file mode 100644 index 0000000..0740d2f Binary files /dev/null and b/data/CTR-KKS/icon.jpg differ diff --git a/data/CTR-KKT/art.jpg b/data/CTR-KKT/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKT/art.jpg differ diff --git a/data/CTR-KKT/data.yml b/data/CTR-KKT/data.yml new file mode 100644 index 0000000..3b1d232 --- /dev/null +++ b/data/CTR-KKT/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB400 + name: Kutar Apple + updates: [] +- regions: + - JP + id: 00040000001A1E00 + name: クターの取り放題 + updates: [] +- regions: + - US + id: 00040000001ABD00 + name: Kutar Apple + updates: [] diff --git a/data/CTR-KKT/icon.jpg b/data/CTR-KKT/icon.jpg new file mode 100644 index 0000000..572d916 Binary files /dev/null and b/data/CTR-KKT/icon.jpg differ diff --git a/data/CTR-KKU/art.jpg b/data/CTR-KKU/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKU/art.jpg differ diff --git a/data/CTR-KKU/data.yml b/data/CTR-KKU/data.yml new file mode 100644 index 0000000..da7b354 --- /dev/null +++ b/data/CTR-KKU/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB500 + name: Kutar Tube Rider + updates: [] +- regions: + - JP + id: 00040000001A2700 + name: クターのチューブライダー + updates: [] +- regions: + - US + id: 00040000001AC600 + name: Kutar Tube Rider + updates: [] diff --git a/data/CTR-KKU/icon.jpg b/data/CTR-KKU/icon.jpg new file mode 100644 index 0000000..8a06e54 Binary files /dev/null and b/data/CTR-KKU/icon.jpg differ diff --git a/data/CTR-KKV/art.jpg b/data/CTR-KKV/art.jpg new file mode 100644 index 0000000..cd1e331 Binary files /dev/null and b/data/CTR-KKV/art.jpg differ diff --git a/data/CTR-KKV/data.yml b/data/CTR-KKV/data.yml new file mode 100644 index 0000000..fc80315 --- /dev/null +++ b/data/CTR-KKV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AB600 + name: Kutar Magic Ball + updates: [] +- regions: + - JP + id: 00040000001A2300 + name: クターの魔球 + updates: [] +- regions: + - US + id: 00040000001AC200 + name: Kutar Magic Ball + updates: [] diff --git a/data/CTR-KKV/icon.jpg b/data/CTR-KKV/icon.jpg new file mode 100644 index 0000000..d6eb183 Binary files /dev/null and b/data/CTR-KKV/icon.jpg differ diff --git a/data/CTR-KL5/art.jpg b/data/CTR-KL5/art.jpg new file mode 100644 index 0000000..a99acd2 Binary files /dev/null and b/data/CTR-KL5/art.jpg differ diff --git a/data/CTR-KL5/data.yml b/data/CTR-KL5/data.yml new file mode 100644 index 0000000..0f869d6 --- /dev/null +++ b/data/CTR-KL5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001ABB00 + name: デジコロ じーさん邪 Vol.005 でんぢゃらすニュースのお時間じゃ + updates: [] diff --git a/data/CTR-KL5/icon.jpg b/data/CTR-KL5/icon.jpg new file mode 100644 index 0000000..c5e3749 Binary files /dev/null and b/data/CTR-KL5/icon.jpg differ diff --git a/data/CTR-KL6/art.jpg b/data/CTR-KL6/art.jpg new file mode 100644 index 0000000..a2bf196 Binary files /dev/null and b/data/CTR-KL6/art.jpg differ diff --git a/data/CTR-KL6/data.yml b/data/CTR-KL6/data.yml new file mode 100644 index 0000000..bd49068 --- /dev/null +++ b/data/CTR-KL6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AA700 + name: デジコロ じーさん邪 Vol.006 ムキムキ決定戦じゃっっ!! + updates: [] diff --git a/data/CTR-KL6/icon.jpg b/data/CTR-KL6/icon.jpg new file mode 100644 index 0000000..2fd69a1 Binary files /dev/null and b/data/CTR-KL6/icon.jpg differ diff --git a/data/CTR-KL7/art.jpg b/data/CTR-KL7/art.jpg new file mode 100644 index 0000000..bd6e545 Binary files /dev/null and b/data/CTR-KL7/art.jpg differ diff --git a/data/CTR-KL7/data.yml b/data/CTR-KL7/data.yml new file mode 100644 index 0000000..860ba38 --- /dev/null +++ b/data/CTR-KL7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AA600 + name: デジコロ じーさん邪 Vol.007 ゲベといっしょなのじゃっっ!! + updates: [] diff --git a/data/CTR-KL7/icon.jpg b/data/CTR-KL7/icon.jpg new file mode 100644 index 0000000..7e511ec Binary files /dev/null and b/data/CTR-KL7/icon.jpg differ diff --git a/data/CTR-KL8/art.jpg b/data/CTR-KL8/art.jpg new file mode 100644 index 0000000..7eeb183 Binary files /dev/null and b/data/CTR-KL8/art.jpg differ diff --git a/data/CTR-KL8/data.yml b/data/CTR-KL8/data.yml new file mode 100644 index 0000000..6b3383d --- /dev/null +++ b/data/CTR-KL8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A8700 + name: Plantera + updates: [] +- regions: + - JP + id: 00040000001B6100 + name: プランテラ ガーデンライフ + updates: [] +- regions: + - US + id: 00040000001A8F00 + name: Plantera + updates: [] diff --git a/data/CTR-KL8/icon.jpg b/data/CTR-KL8/icon.jpg new file mode 100644 index 0000000..2fbc9e5 Binary files /dev/null and b/data/CTR-KL8/icon.jpg differ diff --git a/data/CTR-KLH/art.jpg b/data/CTR-KLH/art.jpg new file mode 100644 index 0000000..b56a7bc Binary files /dev/null and b/data/CTR-KLH/art.jpg differ diff --git a/data/CTR-KLH/data.yml b/data/CTR-KLH/data.yml new file mode 100644 index 0000000..70fc917 --- /dev/null +++ b/data/CTR-KLH/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AF200 + name: 新みんなの塗り絵 シナモロール + updates: + - id: 0004000E001AF200 + name: 更新データ Ver. 1.1 新みんなの塗り絵 シナモロール diff --git a/data/CTR-KLH/icon.jpg b/data/CTR-KLH/icon.jpg new file mode 100644 index 0000000..9cb683c Binary files /dev/null and b/data/CTR-KLH/icon.jpg differ diff --git a/data/CTR-KLK/art.jpg b/data/CTR-KLK/art.jpg new file mode 100644 index 0000000..81dcce3 Binary files /dev/null and b/data/CTR-KLK/art.jpg differ diff --git a/data/CTR-KLK/data.yml b/data/CTR-KLK/data.yml new file mode 100644 index 0000000..c7f0130 --- /dev/null +++ b/data/CTR-KLK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000015DF00 + name: キルカ・ドライブ + updates: [] diff --git a/data/CTR-KLK/icon.jpg b/data/CTR-KLK/icon.jpg new file mode 100644 index 0000000..53f91f8 Binary files /dev/null and b/data/CTR-KLK/icon.jpg differ diff --git a/data/CTR-KLL/art.jpg b/data/CTR-KLL/art.jpg new file mode 100644 index 0000000..86c4290 Binary files /dev/null and b/data/CTR-KLL/art.jpg differ diff --git a/data/CTR-KLL/data.yml b/data/CTR-KLL/data.yml new file mode 100644 index 0000000..b05e11c --- /dev/null +++ b/data/CTR-KLL/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015A200 + name: OlliOlli + updates: + - id: 0004000E0015A200 + name: OlliOlli - Update +- regions: + - US + id: 000400000015A400 + name: OlliOlli + updates: + - id: 0004000E0015A400 + name: OlliOlli Update Ver. 1.1.0 diff --git a/data/CTR-KLL/icon.jpg b/data/CTR-KLL/icon.jpg new file mode 100644 index 0000000..264dff1 Binary files /dev/null and b/data/CTR-KLL/icon.jpg differ diff --git a/data/CTR-KLN/art.jpg b/data/CTR-KLN/art.jpg new file mode 100644 index 0000000..593e4b6 Binary files /dev/null and b/data/CTR-KLN/art.jpg differ diff --git a/data/CTR-KLN/data.yml b/data/CTR-KLN/data.yml new file mode 100644 index 0000000..1514f90 --- /dev/null +++ b/data/CTR-KLN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000193600 + name: Justice Chronicles + updates: [] +- regions: + - JP + id: 0004000000180B00 + name: 聖戦クロニクル + updates: [] +- regions: + - US + id: 0004000000188200 + name: Justice Chronicles + updates: [] diff --git a/data/CTR-KLN/icon.jpg b/data/CTR-KLN/icon.jpg new file mode 100644 index 0000000..c7367df Binary files /dev/null and b/data/CTR-KLN/icon.jpg differ diff --git a/data/CTR-KLP/art.jpg b/data/CTR-KLP/art.jpg new file mode 100644 index 0000000..0971b5a Binary files /dev/null and b/data/CTR-KLP/art.jpg differ diff --git a/data/CTR-KLP/data.yml b/data/CTR-KLP/data.yml new file mode 100644 index 0000000..4209da5 --- /dev/null +++ b/data/CTR-KLP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000157300 + name: マル合格! 簿記3級 仕訳ドリル + updates: [] diff --git a/data/CTR-KLP/icon.jpg b/data/CTR-KLP/icon.jpg new file mode 100644 index 0000000..f38f3cf Binary files /dev/null and b/data/CTR-KLP/icon.jpg differ diff --git a/data/CTR-KLQ/art.jpg b/data/CTR-KLQ/art.jpg new file mode 100644 index 0000000..ec1f735 Binary files /dev/null and b/data/CTR-KLQ/art.jpg differ diff --git a/data/CTR-KLQ/data.yml b/data/CTR-KLQ/data.yml new file mode 100644 index 0000000..04ebd07 --- /dev/null +++ b/data/CTR-KLQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000157400 + name: マル合格! 簿記2級 仕訳ドリル 商業簿記・工業簿記 + updates: [] diff --git a/data/CTR-KLQ/icon.jpg b/data/CTR-KLQ/icon.jpg new file mode 100644 index 0000000..5a5879a Binary files /dev/null and b/data/CTR-KLQ/icon.jpg differ diff --git a/data/CTR-KLR/art.jpg b/data/CTR-KLR/art.jpg new file mode 100644 index 0000000..3911f4c Binary files /dev/null and b/data/CTR-KLR/art.jpg differ diff --git a/data/CTR-KLR/data.yml b/data/CTR-KLR/data.yml new file mode 100644 index 0000000..224a263 --- /dev/null +++ b/data/CTR-KLR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000157500 + name: マル合格! 社労士試験 平成27年度版 + updates: [] diff --git a/data/CTR-KLR/icon.jpg b/data/CTR-KLR/icon.jpg new file mode 100644 index 0000000..e98ebef Binary files /dev/null and b/data/CTR-KLR/icon.jpg differ diff --git a/data/CTR-KLS/art.jpg b/data/CTR-KLS/art.jpg new file mode 100644 index 0000000..672648b Binary files /dev/null and b/data/CTR-KLS/art.jpg differ diff --git a/data/CTR-KLS/data.yml b/data/CTR-KLS/data.yml new file mode 100644 index 0000000..0a371a6 --- /dev/null +++ b/data/CTR-KLS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000157600 + name: マル合格! 医療事務 診療報酬 請求事務能力認定試験(医科) + updates: [] diff --git a/data/CTR-KLS/icon.jpg b/data/CTR-KLS/icon.jpg new file mode 100644 index 0000000..9e42b2e Binary files /dev/null and b/data/CTR-KLS/icon.jpg differ diff --git a/data/CTR-KLU/art.jpg b/data/CTR-KLU/art.jpg new file mode 100644 index 0000000..1d86b84 Binary files /dev/null and b/data/CTR-KLU/art.jpg differ diff --git a/data/CTR-KLU/data.yml b/data/CTR-KLU/data.yml new file mode 100644 index 0000000..1599ede --- /dev/null +++ b/data/CTR-KLU/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000157700 + name: マル合格! FP3級 平成26-27年度版 + updates: + - id: 0004000E00157700 + name: 更新データ Ver. 1.1 マル合格! FP3級 平成26-27年度版 diff --git a/data/CTR-KLU/icon.jpg b/data/CTR-KLU/icon.jpg new file mode 100644 index 0000000..f832a50 Binary files /dev/null and b/data/CTR-KLU/icon.jpg differ diff --git a/data/CTR-KLV/art.jpg b/data/CTR-KLV/art.jpg new file mode 100644 index 0000000..e8a7fea Binary files /dev/null and b/data/CTR-KLV/art.jpg differ diff --git a/data/CTR-KLV/data.yml b/data/CTR-KLV/data.yml new file mode 100644 index 0000000..c82ad89 --- /dev/null +++ b/data/CTR-KLV/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000157800 + name: マル合格! FP2級 平成26-27年度版 + updates: [] diff --git a/data/CTR-KLV/icon.jpg b/data/CTR-KLV/icon.jpg new file mode 100644 index 0000000..11212fe Binary files /dev/null and b/data/CTR-KLV/icon.jpg differ diff --git a/data/CTR-KMC/art.jpg b/data/CTR-KMC/art.jpg new file mode 100644 index 0000000..e110ebd Binary files /dev/null and b/data/CTR-KMC/art.jpg differ diff --git a/data/CTR-KMC/data.yml b/data/CTR-KMC/data.yml new file mode 100644 index 0000000..2d388c9 --- /dev/null +++ b/data/CTR-KMC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016B300 + name: ジャンプ勇者 + updates: [] diff --git a/data/CTR-KMC/icon.jpg b/data/CTR-KMC/icon.jpg new file mode 100644 index 0000000..80e022b Binary files /dev/null and b/data/CTR-KMC/icon.jpg differ diff --git a/data/CTR-KMD/art.jpg b/data/CTR-KMD/art.jpg new file mode 100644 index 0000000..dd63208 Binary files /dev/null and b/data/CTR-KMD/art.jpg differ diff --git a/data/CTR-KMD/data.yml b/data/CTR-KMD/data.yml new file mode 100644 index 0000000..984a020 --- /dev/null +++ b/data/CTR-KMD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000141E00 + name: Mindfeud + updates: [] diff --git a/data/CTR-KMD/icon.jpg b/data/CTR-KMD/icon.jpg new file mode 100644 index 0000000..c28d52d Binary files /dev/null and b/data/CTR-KMD/icon.jpg differ diff --git a/data/CTR-KME/art.jpg b/data/CTR-KME/art.jpg new file mode 100644 index 0000000..eb9035e Binary files /dev/null and b/data/CTR-KME/art.jpg differ diff --git a/data/CTR-KME/data.yml b/data/CTR-KME/data.yml new file mode 100644 index 0000000..a688b74 --- /dev/null +++ b/data/CTR-KME/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000165300 + name: 'Music On: Electric Guitar' + updates: [] +- regions: + - US + id: 0004000000164500 + name: 'Music On: Electric Guitar' + updates: [] diff --git a/data/CTR-KME/icon.jpg b/data/CTR-KME/icon.jpg new file mode 100644 index 0000000..963271d Binary files /dev/null and b/data/CTR-KME/icon.jpg differ diff --git a/data/CTR-KMG/art.jpg b/data/CTR-KMG/art.jpg new file mode 100644 index 0000000..96efe04 Binary files /dev/null and b/data/CTR-KMG/art.jpg differ diff --git a/data/CTR-KMG/data.yml b/data/CTR-KMG/data.yml new file mode 100644 index 0000000..4ed947c --- /dev/null +++ b/data/CTR-KMG/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000165700 + name: MIGHTY GUNVOLT + updates: [] +- regions: + - JP + id: 0004000000146F00 + name: マイティガンヴォルト + updates: [] +- regions: + - KR + id: 000400000015BE00 + name: MIGHTY GUNVOLT + updates: [] +- regions: + - US + id: 000400000014CD00 + name: MIGHTY GUNVOLT + updates: [] diff --git a/data/CTR-KMG/icon.jpg b/data/CTR-KMG/icon.jpg new file mode 100644 index 0000000..5d37d4a Binary files /dev/null and b/data/CTR-KMG/icon.jpg differ diff --git a/data/CTR-KMJ/art.jpg b/data/CTR-KMJ/art.jpg new file mode 100644 index 0000000..d995c1c Binary files /dev/null and b/data/CTR-KMJ/art.jpg differ diff --git a/data/CTR-KMJ/data.yml b/data/CTR-KMJ/data.yml new file mode 100644 index 0000000..aacacd5 --- /dev/null +++ b/data/CTR-KMJ/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000186300 + name: The Legend of Dark Witch 2 + updates: + - id: 0004000E00186300 + name: 'The Legend of Dark Witch 2: Update' +- regions: + - JP + id: 000400000016FA00 + name: 魔神少女 エピソード2 -願いへの代価- + updates: + - id: 0004000E0016FA00 + name: 更新データ Ver. 1.1 魔神少女 エピソード2 -願いへの代価- +- regions: + - US + id: 0004000000186600 + name: The Legend of Dark Witch 2 + updates: + - id: 0004000E00186600 + name: The Legend of Dark Witch 2 Update Ver. 1.2 diff --git a/data/CTR-KMJ/icon.jpg b/data/CTR-KMJ/icon.jpg new file mode 100644 index 0000000..fa58583 Binary files /dev/null and b/data/CTR-KMJ/icon.jpg differ diff --git a/data/CTR-KMK/art.jpg b/data/CTR-KMK/art.jpg new file mode 100644 index 0000000..61b5ac7 Binary files /dev/null and b/data/CTR-KMK/art.jpg differ diff --git a/data/CTR-KMK/data.yml b/data/CTR-KMK/data.yml new file mode 100644 index 0000000..40f5c2f --- /dev/null +++ b/data/CTR-KMK/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016A700 + name: 'Musicverse: Electronic Keyboard' + updates: [] +- regions: + - JP + id: 000400000018CB00 + name: Musicverse バーチャル キーボード + updates: [] +- regions: + - US + id: 000400000016A800 + name: 'Musicverse: Electronic Keyboard' + updates: [] diff --git a/data/CTR-KMK/icon.jpg b/data/CTR-KMK/icon.jpg new file mode 100644 index 0000000..b8ea2c1 Binary files /dev/null and b/data/CTR-KMK/icon.jpg differ diff --git a/data/CTR-KMM/art.jpg b/data/CTR-KMM/art.jpg new file mode 100644 index 0000000..99bf256 Binary files /dev/null and b/data/CTR-KMM/art.jpg differ diff --git a/data/CTR-KMM/data.yml b/data/CTR-KMM/data.yml new file mode 100644 index 0000000..bea3a2a --- /dev/null +++ b/data/CTR-KMM/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018AC00 + name: Mutant Mudds Super Challenge + updates: [] +- regions: + - US + id: 0004000000165A00 + name: Mutant Mudds Super Challenge + updates: [] diff --git a/data/CTR-KMM/icon.jpg b/data/CTR-KMM/icon.jpg new file mode 100644 index 0000000..cb2d5a9 Binary files /dev/null and b/data/CTR-KMM/icon.jpg differ diff --git a/data/CTR-KMQ/art.jpg b/data/CTR-KMQ/art.jpg new file mode 100644 index 0000000..bc7f1cc Binary files /dev/null and b/data/CTR-KMQ/art.jpg differ diff --git a/data/CTR-KMQ/data.yml b/data/CTR-KMQ/data.yml new file mode 100644 index 0000000..e5fbe17 --- /dev/null +++ b/data/CTR-KMQ/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000177E00 + name: モノカゲクエスト + updates: + - id: 0004000E00177E00 + name: 更新データ Ver. 1.1 モノカゲクエスト diff --git a/data/CTR-KMQ/icon.jpg b/data/CTR-KMQ/icon.jpg new file mode 100644 index 0000000..c96c7e1 Binary files /dev/null and b/data/CTR-KMQ/icon.jpg differ diff --git a/data/CTR-KMR/art.jpg b/data/CTR-KMR/art.jpg new file mode 100644 index 0000000..c4443b2 Binary files /dev/null and b/data/CTR-KMR/art.jpg differ diff --git a/data/CTR-KMR/data.yml b/data/CTR-KMR/data.yml new file mode 100644 index 0000000..a1e08dc --- /dev/null +++ b/data/CTR-KMR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018BD00 + name: 'Gurumin 3D: A Monstrous Adventure' + updates: [] +- regions: + - JP + id: 00040000001B3800 + name: ぐるみん3D + updates: [] +- regions: + - US + id: 000400000018C200 + name: 'Gurumin 3D: A Monstrous Adventure' + updates: [] diff --git a/data/CTR-KMR/icon.jpg b/data/CTR-KMR/icon.jpg new file mode 100644 index 0000000..02a85f6 Binary files /dev/null and b/data/CTR-KMR/icon.jpg differ diff --git a/data/CTR-KMS/art.jpg b/data/CTR-KMS/art.jpg new file mode 100644 index 0000000..42a0d1e Binary files /dev/null and b/data/CTR-KMS/art.jpg differ diff --git a/data/CTR-KMS/data.yml b/data/CTR-KMS/data.yml new file mode 100644 index 0000000..7457cd2 --- /dev/null +++ b/data/CTR-KMS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000146400 + name: My First Songs + updates: [] +- regions: + - US + id: 0004000000142000 + name: My First Songs + updates: [] diff --git a/data/CTR-KMS/icon.jpg b/data/CTR-KMS/icon.jpg new file mode 100644 index 0000000..28f41cb Binary files /dev/null and b/data/CTR-KMS/icon.jpg differ diff --git a/data/CTR-KMT/art.jpg b/data/CTR-KMT/art.jpg new file mode 100644 index 0000000..274048e Binary files /dev/null and b/data/CTR-KMT/art.jpg differ diff --git a/data/CTR-KMT/data.yml b/data/CTR-KMT/data.yml new file mode 100644 index 0000000..c29008d --- /dev/null +++ b/data/CTR-KMT/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016B100 + name: Mercenaries Saga 2 + updates: [] +- regions: + - JP + id: 0004000000156100 + name: マーセナリーズサーガ2 + updates: + - id: 0004000E00156100 + name: 更新データ Ver. 1.2 マーセナリーズサーガ2 +- regions: + - US + id: 000400000016CC00 + name: Mercenaries Saga 2 + updates: [] diff --git a/data/CTR-KMT/icon.jpg b/data/CTR-KMT/icon.jpg new file mode 100644 index 0000000..20bd2c7 Binary files /dev/null and b/data/CTR-KMT/icon.jpg differ diff --git a/data/CTR-KMU/art.jpg b/data/CTR-KMU/art.jpg new file mode 100644 index 0000000..d34dc38 Binary files /dev/null and b/data/CTR-KMU/art.jpg differ diff --git a/data/CTR-KMU/data.yml b/data/CTR-KMU/data.yml new file mode 100644 index 0000000..f1d7a02 --- /dev/null +++ b/data/CTR-KMU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156C00 + name: 昆虫モンスター ライト スーパーバトル + updates: [] diff --git a/data/CTR-KMU/icon.jpg b/data/CTR-KMU/icon.jpg new file mode 100644 index 0000000..8fbd048 Binary files /dev/null and b/data/CTR-KMU/icon.jpg differ diff --git a/data/CTR-KMV/art.jpg b/data/CTR-KMV/art.jpg new file mode 100644 index 0000000..0053139 Binary files /dev/null and b/data/CTR-KMV/art.jpg differ diff --git a/data/CTR-KMV/data.yml b/data/CTR-KMV/data.yml new file mode 100644 index 0000000..a637e3d --- /dev/null +++ b/data/CTR-KMV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A6F00 + name: Chase-Cold Case Investigations ~Distant Memories~ + updates: [] +- regions: + - JP + id: 0004000000187600 + name: -CHASE- 未解決事件捜査課 ~遠い記憶~ + updates: [] +- regions: + - US + id: 00040000001A6600 + name: Chase Cold Case Investigations ~Distant Memories~ + updates: [] diff --git a/data/CTR-KMV/icon.jpg b/data/CTR-KMV/icon.jpg new file mode 100644 index 0000000..9297688 Binary files /dev/null and b/data/CTR-KMV/icon.jpg differ diff --git a/data/CTR-KMW/art.jpg b/data/CTR-KMW/art.jpg new file mode 100644 index 0000000..5315d31 Binary files /dev/null and b/data/CTR-KMW/art.jpg differ diff --git a/data/CTR-KMW/data.yml b/data/CTR-KMW/data.yml new file mode 100644 index 0000000..0f82988 --- /dev/null +++ b/data/CTR-KMW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000197E00 + name: マル合格! ケアマネジャー試験 平成28年度版 + updates: [] diff --git a/data/CTR-KMW/icon.jpg b/data/CTR-KMW/icon.jpg new file mode 100644 index 0000000..7945a97 Binary files /dev/null and b/data/CTR-KMW/icon.jpg differ diff --git a/data/CTR-KMX/art.jpg b/data/CTR-KMX/art.jpg new file mode 100644 index 0000000..085c7c6 Binary files /dev/null and b/data/CTR-KMX/art.jpg differ diff --git a/data/CTR-KMX/data.yml b/data/CTR-KMX/data.yml new file mode 100644 index 0000000..b85e714 --- /dev/null +++ b/data/CTR-KMX/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AF600 + name: 新みんなの塗り絵 マイメロディ + updates: + - id: 0004000E001AF600 + name: 更新データ Ver. 1.1 新みんなの塗り絵 マイメロディ diff --git a/data/CTR-KMX/icon.jpg b/data/CTR-KMX/icon.jpg new file mode 100644 index 0000000..53a1d06 Binary files /dev/null and b/data/CTR-KMX/icon.jpg differ diff --git a/data/CTR-KMZ/art.jpg b/data/CTR-KMZ/art.jpg new file mode 100644 index 0000000..e5178b4 Binary files /dev/null and b/data/CTR-KMZ/art.jpg differ diff --git a/data/CTR-KMZ/data.yml b/data/CTR-KMZ/data.yml new file mode 100644 index 0000000..411826a --- /dev/null +++ b/data/CTR-KMZ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015F400 + name: KAMI + updates: [] +- regions: + - JP + id: 0004000000164C00 + name: KAMI + updates: [] +- regions: + - US + id: 0004000000160300 + name: KAMI + updates: [] diff --git a/data/CTR-KMZ/icon.jpg b/data/CTR-KMZ/icon.jpg new file mode 100644 index 0000000..b8ac431 Binary files /dev/null and b/data/CTR-KMZ/icon.jpg differ diff --git a/data/CTR-KNA/art.jpg b/data/CTR-KNA/art.jpg new file mode 100644 index 0000000..017f17b Binary files /dev/null and b/data/CTR-KNA/art.jpg differ diff --git a/data/CTR-KNA/data.yml b/data/CTR-KNA/data.yml new file mode 100644 index 0000000..cb1a5fc --- /dev/null +++ b/data/CTR-KNA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017FE00 + name: Angry Video Game Nerd Adventures + updates: [] +- regions: + - US + id: 0004000000161000 + name: Angry Video Game Nerd Adventures + updates: [] diff --git a/data/CTR-KNA/icon.jpg b/data/CTR-KNA/icon.jpg new file mode 100644 index 0000000..4db1129 Binary files /dev/null and b/data/CTR-KNA/icon.jpg differ diff --git a/data/CTR-KNB/art.jpg b/data/CTR-KNB/art.jpg new file mode 100644 index 0000000..2e02b53 Binary files /dev/null and b/data/CTR-KNB/art.jpg differ diff --git a/data/CTR-KNB/data.yml b/data/CTR-KNB/data.yml new file mode 100644 index 0000000..b6db168 --- /dev/null +++ b/data/CTR-KNB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A8C00 + name: ニャニャントモリ + updates: [] diff --git a/data/CTR-KNB/icon.jpg b/data/CTR-KNB/icon.jpg new file mode 100644 index 0000000..8dd4174 Binary files /dev/null and b/data/CTR-KNB/icon.jpg differ diff --git a/data/CTR-KNC/art.jpg b/data/CTR-KNC/art.jpg new file mode 100644 index 0000000..22227dc Binary files /dev/null and b/data/CTR-KNC/art.jpg differ diff --git a/data/CTR-KNC/data.yml b/data/CTR-KNC/data.yml new file mode 100644 index 0000000..d3e9f55 --- /dev/null +++ b/data/CTR-KNC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AEE00 + name: NOeSIS 嘘を吐いた記憶の物語 + updates: [] diff --git a/data/CTR-KNC/icon.jpg b/data/CTR-KNC/icon.jpg new file mode 100644 index 0000000..9f2707e Binary files /dev/null and b/data/CTR-KNC/icon.jpg differ diff --git a/data/CTR-KND/art.jpg b/data/CTR-KND/art.jpg new file mode 100644 index 0000000..abc428d Binary files /dev/null and b/data/CTR-KND/art.jpg differ diff --git a/data/CTR-KND/data.yml b/data/CTR-KND/data.yml new file mode 100644 index 0000000..64fd28a --- /dev/null +++ b/data/CTR-KND/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C6500 + name: Crystareino + updates: [] +- regions: + - JP + id: 00040000001BE700 + name: クリスタレイノ + updates: [] +- regions: + - US + id: 00040000001C6C00 + name: Crystareino + updates: [] diff --git a/data/CTR-KND/icon.jpg b/data/CTR-KND/icon.jpg new file mode 100644 index 0000000..79f716f Binary files /dev/null and b/data/CTR-KND/icon.jpg differ diff --git a/data/CTR-KNG/art.jpg b/data/CTR-KNG/art.jpg new file mode 100644 index 0000000..985010f Binary files /dev/null and b/data/CTR-KNG/art.jpg differ diff --git a/data/CTR-KNG/data.yml b/data/CTR-KNG/data.yml new file mode 100644 index 0000000..b15b1f6 --- /dev/null +++ b/data/CTR-KNG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145B00 + name: 激投戦士 ナゲルンダー + updates: [] diff --git a/data/CTR-KNG/icon.jpg b/data/CTR-KNG/icon.jpg new file mode 100644 index 0000000..a72b71b Binary files /dev/null and b/data/CTR-KNG/icon.jpg differ diff --git a/data/CTR-KNJ/art.jpg b/data/CTR-KNJ/art.jpg new file mode 100644 index 0000000..e29fd68 Binary files /dev/null and b/data/CTR-KNJ/art.jpg differ diff --git a/data/CTR-KNJ/data.yml b/data/CTR-KNJ/data.yml new file mode 100644 index 0000000..473dbe5 --- /dev/null +++ b/data/CTR-KNJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000018CD00 + name: Ninja Smasher! + updates: [] diff --git a/data/CTR-KNJ/icon.jpg b/data/CTR-KNJ/icon.jpg new file mode 100644 index 0000000..a4b378a Binary files /dev/null and b/data/CTR-KNJ/icon.jpg differ diff --git a/data/CTR-KNK/art.jpg b/data/CTR-KNK/art.jpg new file mode 100644 index 0000000..404b7d6 Binary files /dev/null and b/data/CTR-KNK/art.jpg differ diff --git a/data/CTR-KNK/data.yml b/data/CTR-KNK/data.yml new file mode 100644 index 0000000..7ec697b --- /dev/null +++ b/data/CTR-KNK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156B00 + name: ぬいぐるみのケーキ屋さん ミニ 魔法のパティシエール + updates: [] diff --git a/data/CTR-KNK/icon.jpg b/data/CTR-KNK/icon.jpg new file mode 100644 index 0000000..463703e Binary files /dev/null and b/data/CTR-KNK/icon.jpg differ diff --git a/data/CTR-KNL/art.jpg b/data/CTR-KNL/art.jpg new file mode 100644 index 0000000..ed64590 Binary files /dev/null and b/data/CTR-KNL/art.jpg differ diff --git a/data/CTR-KNL/data.yml b/data/CTR-KNL/data.yml new file mode 100644 index 0000000..093e740 --- /dev/null +++ b/data/CTR-KNL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000193000 + name: 'Noitu Love: Devolution' + updates: [] +- regions: + - US + id: 000400000018F700 + name: 'Noitu Love: Devolution' + updates: [] diff --git a/data/CTR-KNL/icon.jpg b/data/CTR-KNL/icon.jpg new file mode 100644 index 0000000..2e058f4 Binary files /dev/null and b/data/CTR-KNL/icon.jpg differ diff --git a/data/CTR-KNP/art.jpg b/data/CTR-KNP/art.jpg new file mode 100644 index 0000000..03fd614 Binary files /dev/null and b/data/CTR-KNP/art.jpg differ diff --git a/data/CTR-KNP/data.yml b/data/CTR-KNP/data.yml new file mode 100644 index 0000000..b8c0ca7 --- /dev/null +++ b/data/CTR-KNP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BE800 + name: ねこねこ日本史 歴史発見パズル! + updates: [] diff --git a/data/CTR-KNP/icon.jpg b/data/CTR-KNP/icon.jpg new file mode 100644 index 0000000..cb669dd Binary files /dev/null and b/data/CTR-KNP/icon.jpg differ diff --git a/data/CTR-KNS/art.jpg b/data/CTR-KNS/art.jpg new file mode 100644 index 0000000..950b8ba Binary files /dev/null and b/data/CTR-KNS/art.jpg differ diff --git a/data/CTR-KNS/data.yml b/data/CTR-KNS/data.yml new file mode 100644 index 0000000..062cafb --- /dev/null +++ b/data/CTR-KNS/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018F500 + name: The Battle Cats POP! + updates: [] +- regions: + - JP + id: 000400000015DA00 + name: とびだす!にゃんこ大戦争 + updates: [] +- regions: + - KR + id: 000400000018B500 + name: 냥코대전쟁 POP! + updates: [] +- regions: + - US + id: 000400000018BC00 + name: The Battle Cats POP! + updates: [] diff --git a/data/CTR-KNS/icon.jpg b/data/CTR-KNS/icon.jpg new file mode 100644 index 0000000..eac3695 Binary files /dev/null and b/data/CTR-KNS/icon.jpg differ diff --git a/data/CTR-KNT/art.jpg b/data/CTR-KNT/art.jpg new file mode 100644 index 0000000..958e342 Binary files /dev/null and b/data/CTR-KNT/art.jpg differ diff --git a/data/CTR-KNT/data.yml b/data/CTR-KNT/data.yml new file mode 100644 index 0000000..cddc410 --- /dev/null +++ b/data/CTR-KNT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000018FD00 + name: ~なりきりキッズ~ おしごとテーマパーク2ライト + updates: [] diff --git a/data/CTR-KNT/icon.jpg b/data/CTR-KNT/icon.jpg new file mode 100644 index 0000000..beb2a1d Binary files /dev/null and b/data/CTR-KNT/icon.jpg differ diff --git a/data/CTR-KP3/art.jpg b/data/CTR-KP3/art.jpg new file mode 100644 index 0000000..6761751 Binary files /dev/null and b/data/CTR-KP3/art.jpg differ diff --git a/data/CTR-KP3/data.yml b/data/CTR-KP3/data.yml new file mode 100644 index 0000000..0c19b76 --- /dev/null +++ b/data/CTR-KP3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A5B00 + name: ようこそ!ペットホテル + updates: [] +- regions: + - US + id: 0004000000186A00 + name: PET INN 3D + updates: [] diff --git a/data/CTR-KP3/icon.jpg b/data/CTR-KP3/icon.jpg new file mode 100644 index 0000000..a5d7c10 Binary files /dev/null and b/data/CTR-KP3/icon.jpg differ diff --git a/data/CTR-KP6/art.jpg b/data/CTR-KP6/art.jpg new file mode 100644 index 0000000..eee167a Binary files /dev/null and b/data/CTR-KP6/art.jpg differ diff --git a/data/CTR-KP6/data.yml b/data/CTR-KP6/data.yml new file mode 100644 index 0000000..17a50b6 --- /dev/null +++ b/data/CTR-KP6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016E800 + name: PICROSS e6 + updates: [] +- regions: + - JP + id: 000400000015E200 + name: ピクロスe6 + updates: [] +- regions: + - US + id: 000400000016EF00 + name: PICROSS e6 + updates: [] diff --git a/data/CTR-KP6/icon.jpg b/data/CTR-KP6/icon.jpg new file mode 100644 index 0000000..1f5d891 Binary files /dev/null and b/data/CTR-KP6/icon.jpg differ diff --git a/data/CTR-KP7/art.jpg b/data/CTR-KP7/art.jpg new file mode 100644 index 0000000..8f4832b Binary files /dev/null and b/data/CTR-KP7/art.jpg differ diff --git a/data/CTR-KP7/data.yml b/data/CTR-KP7/data.yml new file mode 100644 index 0000000..9b1cc02 --- /dev/null +++ b/data/CTR-KP7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016FE00 + name: マル合格! ITパスポート試験 平成27年度版 + updates: [] diff --git a/data/CTR-KP7/icon.jpg b/data/CTR-KP7/icon.jpg new file mode 100644 index 0000000..93174b3 Binary files /dev/null and b/data/CTR-KP7/icon.jpg differ diff --git a/data/CTR-KP9/art.jpg b/data/CTR-KP9/art.jpg new file mode 100644 index 0000000..72a04e4 Binary files /dev/null and b/data/CTR-KP9/art.jpg differ diff --git a/data/CTR-KP9/data.yml b/data/CTR-KP9/data.yml new file mode 100644 index 0000000..c67431d --- /dev/null +++ b/data/CTR-KP9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AEB00 + name: Ping Pong Trick Shot + updates: [] +- regions: + - JP + id: 0004000000152F00 + name: ピンポントリックショット + updates: [] +- regions: + - US + id: 0004000000167500 + name: Ping Pong Trick Shot + updates: [] diff --git a/data/CTR-KP9/icon.jpg b/data/CTR-KP9/icon.jpg new file mode 100644 index 0000000..25fb3b0 Binary files /dev/null and b/data/CTR-KP9/icon.jpg differ diff --git a/data/CTR-KPA/art.jpg b/data/CTR-KPA/art.jpg new file mode 100644 index 0000000..423fb18 Binary files /dev/null and b/data/CTR-KPA/art.jpg differ diff --git a/data/CTR-KPA/data.yml b/data/CTR-KPA/data.yml new file mode 100644 index 0000000..8ed0b11 --- /dev/null +++ b/data/CTR-KPA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AD600 + name: PICROSS e7 + updates: [] +- regions: + - JP + id: 0004000000197D00 + name: ピクロスe7 + updates: [] +- regions: + - US + id: 00040000001ADB00 + name: PICROSS e7 + updates: [] diff --git a/data/CTR-KPA/icon.jpg b/data/CTR-KPA/icon.jpg new file mode 100644 index 0000000..9e8ac86 Binary files /dev/null and b/data/CTR-KPA/icon.jpg differ diff --git a/data/CTR-KPB/art.jpg b/data/CTR-KPB/art.jpg new file mode 100644 index 0000000..5062645 Binary files /dev/null and b/data/CTR-KPB/art.jpg differ diff --git a/data/CTR-KPB/data.yml b/data/CTR-KPB/data.yml new file mode 100644 index 0000000..cdc1d9d --- /dev/null +++ b/data/CTR-KPB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000159300 + name: PUZZLEBOX setup + updates: [] +- regions: + - JP + id: 0004000000167B00 + name: パズルボトル + updates: [] +- regions: + - US + id: 000400000015AA00 + name: PUZZLEBOX setup + updates: [] diff --git a/data/CTR-KPB/icon.jpg b/data/CTR-KPB/icon.jpg new file mode 100644 index 0000000..4546d9b Binary files /dev/null and b/data/CTR-KPB/icon.jpg differ diff --git a/data/CTR-KPC/art.jpg b/data/CTR-KPC/art.jpg new file mode 100644 index 0000000..a81040f Binary files /dev/null and b/data/CTR-KPC/art.jpg differ diff --git a/data/CTR-KPC/data.yml b/data/CTR-KPC/data.yml new file mode 100644 index 0000000..201a5d5 --- /dev/null +++ b/data/CTR-KPC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016C300 + name: 'Mini Mario & Friends: amiibo Challenge' + updates: [] +- regions: + - JP + id: 000400000016C100 + name: ミニマリオ & フレンズ amiiboチャレンジ + updates: [] +- regions: + - US + id: 000400000016C200 + name: Mini Mario & Friends amiibo Challenge + updates: [] diff --git a/data/CTR-KPC/icon.jpg b/data/CTR-KPC/icon.jpg new file mode 100644 index 0000000..ca0fcab Binary files /dev/null and b/data/CTR-KPC/icon.jpg differ diff --git a/data/CTR-KPD/art.jpg b/data/CTR-KPD/art.jpg new file mode 100644 index 0000000..9317295 Binary files /dev/null and b/data/CTR-KPD/art.jpg differ diff --git a/data/CTR-KPD/data.yml b/data/CTR-KPD/data.yml new file mode 100644 index 0000000..05d0c98 --- /dev/null +++ b/data/CTR-KPD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000150700 + name: The Hand of Panda + updates: [] diff --git a/data/CTR-KPD/icon.jpg b/data/CTR-KPD/icon.jpg new file mode 100644 index 0000000..afef22c Binary files /dev/null and b/data/CTR-KPD/icon.jpg differ diff --git a/data/CTR-KPF/art.jpg b/data/CTR-KPF/art.jpg new file mode 100644 index 0000000..0825435 Binary files /dev/null and b/data/CTR-KPF/art.jpg differ diff --git a/data/CTR-KPF/data.yml b/data/CTR-KPF/data.yml new file mode 100644 index 0000000..189e2ea --- /dev/null +++ b/data/CTR-KPF/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000014BA00 + name: ピンチ50連発!! + updates: + - id: 0004000E0014BA00 + name: 更新データ Ver. 1.1.1 ピンチ50連発!! diff --git a/data/CTR-KPF/icon.jpg b/data/CTR-KPF/icon.jpg new file mode 100644 index 0000000..1ace378 Binary files /dev/null and b/data/CTR-KPF/icon.jpg differ diff --git a/data/CTR-KPG/art.jpg b/data/CTR-KPG/art.jpg new file mode 100644 index 0000000..998857c Binary files /dev/null and b/data/CTR-KPG/art.jpg differ diff --git a/data/CTR-KPG/data.yml b/data/CTR-KPG/data.yml new file mode 100644 index 0000000..a2770a9 --- /dev/null +++ b/data/CTR-KPG/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000191E00 + name: Psycho Pigs + updates: [] +- regions: + - JP + id: 000400000013C300 + name: たたかえ ぶたさん + updates: [] +- regions: + - US + id: 0004000000191F00 + name: Psycho Pigs + updates: [] diff --git a/data/CTR-KPG/icon.jpg b/data/CTR-KPG/icon.jpg new file mode 100644 index 0000000..dc130d0 Binary files /dev/null and b/data/CTR-KPG/icon.jpg differ diff --git a/data/CTR-KPJ/art.jpg b/data/CTR-KPJ/art.jpg new file mode 100644 index 0000000..70223be Binary files /dev/null and b/data/CTR-KPJ/art.jpg differ diff --git a/data/CTR-KPJ/data.yml b/data/CTR-KPJ/data.yml new file mode 100644 index 0000000..f88eb7c --- /dev/null +++ b/data/CTR-KPJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019DE00 + name: Pixel Paint + updates: [] +- regions: + - JP + id: 000400000019D400 + name: ドットペイント + updates: [] +- regions: + - US + id: 000400000019E400 + name: Pixel Paint + updates: [] diff --git a/data/CTR-KPJ/icon.jpg b/data/CTR-KPJ/icon.jpg new file mode 100644 index 0000000..483b9ff Binary files /dev/null and b/data/CTR-KPJ/icon.jpg differ diff --git a/data/CTR-KPK/art.jpg b/data/CTR-KPK/art.jpg new file mode 100644 index 0000000..444b35e Binary files /dev/null and b/data/CTR-KPK/art.jpg differ diff --git a/data/CTR-KPK/data.yml b/data/CTR-KPK/data.yml new file mode 100644 index 0000000..cd453a8 --- /dev/null +++ b/data/CTR-KPK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000189300 + name: みつけて! おじぽっくる+(プラス) + updates: [] diff --git a/data/CTR-KPK/icon.jpg b/data/CTR-KPK/icon.jpg new file mode 100644 index 0000000..663c7d4 Binary files /dev/null and b/data/CTR-KPK/icon.jpg differ diff --git a/data/CTR-KPL/art.jpg b/data/CTR-KPL/art.jpg new file mode 100644 index 0000000..4cf95ae Binary files /dev/null and b/data/CTR-KPL/art.jpg differ diff --git a/data/CTR-KPL/data.yml b/data/CTR-KPL/data.yml new file mode 100644 index 0000000..87c72f3 --- /dev/null +++ b/data/CTR-KPL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016FB00 + name: ポラーラ -Polara- + updates: [] diff --git a/data/CTR-KPL/icon.jpg b/data/CTR-KPL/icon.jpg new file mode 100644 index 0000000..124e328 Binary files /dev/null and b/data/CTR-KPL/icon.jpg differ diff --git a/data/CTR-KPM/art.jpg b/data/CTR-KPM/art.jpg new file mode 100644 index 0000000..e72817b Binary files /dev/null and b/data/CTR-KPM/art.jpg differ diff --git a/data/CTR-KPM/data.yml b/data/CTR-KPM/data.yml new file mode 100644 index 0000000..f0c61f8 --- /dev/null +++ b/data/CTR-KPM/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016C000 + name: 'Puzzle & Dragons SMB Edition: Special Demo' + updates: [] +- regions: + - KR + id: 000400000016BF00 + name: 퍼즐앤드래곤 Z + 퍼즐앤드래곤 슈퍼 마리오브라더스 에디션 체험판 + updates: [] +- regions: + - TW + id: 000400000016D200 + name: Puzzle & Dragons Z + Super Mario Bros. Edition 特別試玩版 + updates: [] +- regions: + - US + id: 000400000016C500 + name: Puzzle & Dragons Z + Super Mario Bros. Edition Demo + updates: [] diff --git a/data/CTR-KPM/icon.jpg b/data/CTR-KPM/icon.jpg new file mode 100644 index 0000000..172f7aa Binary files /dev/null and b/data/CTR-KPM/icon.jpg differ diff --git a/data/CTR-KPN/art.jpg b/data/CTR-KPN/art.jpg new file mode 100644 index 0000000..b9c7015 Binary files /dev/null and b/data/CTR-KPN/art.jpg differ diff --git a/data/CTR-KPN/data.yml b/data/CTR-KPN/data.yml new file mode 100644 index 0000000..f3aaead --- /dev/null +++ b/data/CTR-KPN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016F700 + name: プチコンマガジン 創刊号 + updates: [] diff --git a/data/CTR-KPN/icon.jpg b/data/CTR-KPN/icon.jpg new file mode 100644 index 0000000..0a871b4 Binary files /dev/null and b/data/CTR-KPN/icon.jpg differ diff --git a/data/CTR-KPQ/art.jpg b/data/CTR-KPQ/art.jpg new file mode 100644 index 0000000..c3e55b5 Binary files /dev/null and b/data/CTR-KPQ/art.jpg differ diff --git a/data/CTR-KPQ/data.yml b/data/CTR-KPQ/data.yml new file mode 100644 index 0000000..8d3b1fd --- /dev/null +++ b/data/CTR-KPQ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014D200 + name: PICROSS e5 + updates: [] +- regions: + - JP + id: 0004000000139E00 + name: ピクロスe5 + updates: [] +- regions: + - US + id: 0004000000149800 + name: PICROSS e5 + updates: [] diff --git a/data/CTR-KPQ/icon.jpg b/data/CTR-KPQ/icon.jpg new file mode 100644 index 0000000..039e686 Binary files /dev/null and b/data/CTR-KPQ/icon.jpg differ diff --git a/data/CTR-KPR/art.jpg b/data/CTR-KPR/art.jpg new file mode 100644 index 0000000..1b95eef Binary files /dev/null and b/data/CTR-KPR/art.jpg differ diff --git a/data/CTR-KPR/data.yml b/data/CTR-KPR/data.yml new file mode 100644 index 0000000..b855e9a --- /dev/null +++ b/data/CTR-KPR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000138900 + name: Proun+ + updates: [] +- regions: + - JP + id: 000400000016A200 + name: ループラインレーシング + updates: [] +- regions: + - US + id: 0004000000148F00 + name: Proun+ + updates: [] diff --git a/data/CTR-KPR/icon.jpg b/data/CTR-KPR/icon.jpg new file mode 100644 index 0000000..b04eb14 Binary files /dev/null and b/data/CTR-KPR/icon.jpg differ diff --git a/data/CTR-KPS/art.jpg b/data/CTR-KPS/art.jpg new file mode 100644 index 0000000..e456d89 Binary files /dev/null and b/data/CTR-KPS/art.jpg differ diff --git a/data/CTR-KPS/data.yml b/data/CTR-KPS/data.yml new file mode 100644 index 0000000..e4f1877 --- /dev/null +++ b/data/CTR-KPS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000143C00 + name: Painting Workshop + updates: [] diff --git a/data/CTR-KPS/icon.jpg b/data/CTR-KPS/icon.jpg new file mode 100644 index 0000000..4ccbc67 Binary files /dev/null and b/data/CTR-KPS/icon.jpg differ diff --git a/data/CTR-KPU/art.jpg b/data/CTR-KPU/art.jpg new file mode 100644 index 0000000..102ab2b Binary files /dev/null and b/data/CTR-KPU/art.jpg differ diff --git a/data/CTR-KPU/data.yml b/data/CTR-KPU/data.yml new file mode 100644 index 0000000..d741f49 --- /dev/null +++ b/data/CTR-KPU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000019EA00 + name: 燃えろ!!プロ野球2016 + updates: [] diff --git a/data/CTR-KPU/icon.jpg b/data/CTR-KPU/icon.jpg new file mode 100644 index 0000000..5164df5 Binary files /dev/null and b/data/CTR-KPU/icon.jpg differ diff --git a/data/CTR-KPW/art.jpg b/data/CTR-KPW/art.jpg new file mode 100644 index 0000000..fbdf49a Binary files /dev/null and b/data/CTR-KPW/art.jpg differ diff --git a/data/CTR-KPW/data.yml b/data/CTR-KPW/data.yml new file mode 100644 index 0000000..e849e3e --- /dev/null +++ b/data/CTR-KPW/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000177200 + name: ピンポントリックショット2 + updates: [] +- regions: + - US + id: 00040000001BFE00 + name: Ping Pong Trick Shot 2 + updates: [] diff --git a/data/CTR-KPW/icon.jpg b/data/CTR-KPW/icon.jpg new file mode 100644 index 0000000..869c3ca Binary files /dev/null and b/data/CTR-KPW/icon.jpg differ diff --git a/data/CTR-KPZ/art.jpg b/data/CTR-KPZ/art.jpg new file mode 100644 index 0000000..5944ae0 Binary files /dev/null and b/data/CTR-KPZ/art.jpg differ diff --git a/data/CTR-KPZ/data.yml b/data/CTR-KPZ/data.yml new file mode 100644 index 0000000..f046838 --- /dev/null +++ b/data/CTR-KPZ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000139900 + name: 忍びのPAZURU + updates: [] +- regions: + - KR + id: 0004000000166700 + name: PAZURU + updates: [] +- regions: + - TW + id: 0004000000169000 + name: PAZURU(日文版) + updates: [] diff --git a/data/CTR-KPZ/icon.jpg b/data/CTR-KPZ/icon.jpg new file mode 100644 index 0000000..8afee75 Binary files /dev/null and b/data/CTR-KPZ/icon.jpg differ diff --git a/data/CTR-KQ3/art.jpg b/data/CTR-KQ3/art.jpg new file mode 100644 index 0000000..1e8f063 Binary files /dev/null and b/data/CTR-KQ3/art.jpg differ diff --git a/data/CTR-KQ3/data.yml b/data/CTR-KQ3/data.yml new file mode 100644 index 0000000..353c1a2 --- /dev/null +++ b/data/CTR-KQ3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000197400 + name: ドラゴンクエストモンスターズ ジョーカー3 特別体験版 + updates: [] diff --git a/data/CTR-KQ3/icon.jpg b/data/CTR-KQ3/icon.jpg new file mode 100644 index 0000000..45d6ad0 Binary files /dev/null and b/data/CTR-KQ3/icon.jpg differ diff --git a/data/CTR-KQ6/art.jpg b/data/CTR-KQ6/art.jpg new file mode 100644 index 0000000..42a22f2 Binary files /dev/null and b/data/CTR-KQ6/art.jpg differ diff --git a/data/CTR-KQ6/data.yml b/data/CTR-KQ6/data.yml new file mode 100644 index 0000000..acc282c --- /dev/null +++ b/data/CTR-KQ6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000015C100 + name: My Horse 3D - Best Friends + updates: [] diff --git a/data/CTR-KQ6/icon.jpg b/data/CTR-KQ6/icon.jpg new file mode 100644 index 0000000..49b4e91 Binary files /dev/null and b/data/CTR-KQ6/icon.jpg differ diff --git a/data/CTR-KQD/art.jpg b/data/CTR-KQD/art.jpg new file mode 100644 index 0000000..bd812d0 Binary files /dev/null and b/data/CTR-KQD/art.jpg differ diff --git a/data/CTR-KQD/data.yml b/data/CTR-KQD/data.yml new file mode 100644 index 0000000..2311274 --- /dev/null +++ b/data/CTR-KQD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000186E00 + name: Quest of Dungeons + updates: [] +- regions: + - JP + id: 00040000001A7700 + name: クエストオブダンジョンズ + updates: [] +- regions: + - US + id: 0004000000186D00 + name: Quest of Dungeons + updates: [] diff --git a/data/CTR-KQD/icon.jpg b/data/CTR-KQD/icon.jpg new file mode 100644 index 0000000..4309020 Binary files /dev/null and b/data/CTR-KQD/icon.jpg differ diff --git a/data/CTR-KQF/art.jpg b/data/CTR-KQF/art.jpg new file mode 100644 index 0000000..cf7d563 Binary files /dev/null and b/data/CTR-KQF/art.jpg differ diff --git a/data/CTR-KQF/data.yml b/data/CTR-KQF/data.yml new file mode 100644 index 0000000..524af39 --- /dev/null +++ b/data/CTR-KQF/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C3700 + name: ドラゴンクエスト + updates: [] diff --git a/data/CTR-KQF/icon.jpg b/data/CTR-KQF/icon.jpg new file mode 100644 index 0000000..4b9b603 Binary files /dev/null and b/data/CTR-KQF/icon.jpg differ diff --git a/data/CTR-KQG/art.jpg b/data/CTR-KQG/art.jpg new file mode 100644 index 0000000..0394789 Binary files /dev/null and b/data/CTR-KQG/art.jpg differ diff --git a/data/CTR-KQG/data.yml b/data/CTR-KQG/data.yml new file mode 100644 index 0000000..6883ff3 --- /dev/null +++ b/data/CTR-KQG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C3800 + name: ドラゴンクエストⅡ 悪霊の神々 + updates: [] diff --git a/data/CTR-KQG/icon.jpg b/data/CTR-KQG/icon.jpg new file mode 100644 index 0000000..6b7c04a Binary files /dev/null and b/data/CTR-KQG/icon.jpg differ diff --git a/data/CTR-KQH/art.jpg b/data/CTR-KQH/art.jpg new file mode 100644 index 0000000..a0250fa Binary files /dev/null and b/data/CTR-KQH/art.jpg differ diff --git a/data/CTR-KQH/data.yml b/data/CTR-KQH/data.yml new file mode 100644 index 0000000..7ef6ad4 --- /dev/null +++ b/data/CTR-KQH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C3900 + name: ドラゴンクエストⅢ そして伝説へ… + updates: [] diff --git a/data/CTR-KQH/icon.jpg b/data/CTR-KQH/icon.jpg new file mode 100644 index 0000000..a800183 Binary files /dev/null and b/data/CTR-KQH/icon.jpg differ diff --git a/data/CTR-KQM/art.jpg b/data/CTR-KQM/art.jpg new file mode 100644 index 0000000..e32298a Binary files /dev/null and b/data/CTR-KQM/art.jpg differ diff --git a/data/CTR-KQM/data.yml b/data/CTR-KQM/data.yml new file mode 100644 index 0000000..4daa9c2 --- /dev/null +++ b/data/CTR-KQM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000191300 + name: Puzzle Labyrinth + updates: [] +- regions: + - JP + id: 0004000000180600 + name: 謎解きメイズからの脱出 + updates: [] +- regions: + - US + id: 0004000000190F00 + name: Puzzle Labyrinth + updates: [] diff --git a/data/CTR-KQM/icon.jpg b/data/CTR-KQM/icon.jpg new file mode 100644 index 0000000..4ffec4e Binary files /dev/null and b/data/CTR-KQM/icon.jpg differ diff --git a/data/CTR-KQP/art.jpg b/data/CTR-KQP/art.jpg new file mode 100644 index 0000000..dead63d Binary files /dev/null and b/data/CTR-KQP/art.jpg differ diff --git a/data/CTR-KQP/data.yml b/data/CTR-KQP/data.yml new file mode 100644 index 0000000..dd5a622 --- /dev/null +++ b/data/CTR-KQP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B3400 + name: Quiet, Please! + updates: [] +- regions: + - US + id: 00040000001B3500 + name: Quiet, Please! + updates: [] diff --git a/data/CTR-KQP/icon.jpg b/data/CTR-KQP/icon.jpg new file mode 100644 index 0000000..73dc2a2 Binary files /dev/null and b/data/CTR-KQP/icon.jpg differ diff --git a/data/CTR-KQR/art.jpg b/data/CTR-KQR/art.jpg new file mode 100644 index 0000000..0afec41 Binary files /dev/null and b/data/CTR-KQR/art.jpg differ diff --git a/data/CTR-KQR/data.yml b/data/CTR-KQR/data.yml new file mode 100644 index 0000000..d2390c9 --- /dev/null +++ b/data/CTR-KQR/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000017D300 + name: Q + updates: + - id: 0004000E0017D300 + name: 更新データ Ver. 1.1 Q diff --git a/data/CTR-KQR/icon.jpg b/data/CTR-KQR/icon.jpg new file mode 100644 index 0000000..34d929a Binary files /dev/null and b/data/CTR-KQR/icon.jpg differ diff --git a/data/CTR-KQS/art.jpg b/data/CTR-KQS/art.jpg new file mode 100644 index 0000000..6ff31fb Binary files /dev/null and b/data/CTR-KQS/art.jpg differ diff --git a/data/CTR-KQS/data.yml b/data/CTR-KQS/data.yml new file mode 100644 index 0000000..7cdcda8 --- /dev/null +++ b/data/CTR-KQS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A1B00 + name: Ambition of the Slimes + updates: [] +- regions: + - JP + id: 000400000018D900 + name: スライムの野望 + updates: [] +- regions: + - US + id: 00040000001A1700 + name: Ambition of the Slimes + updates: [] diff --git a/data/CTR-KQS/icon.jpg b/data/CTR-KQS/icon.jpg new file mode 100644 index 0000000..af52d74 Binary files /dev/null and b/data/CTR-KQS/icon.jpg differ diff --git a/data/CTR-KR8/art.jpg b/data/CTR-KR8/art.jpg new file mode 100644 index 0000000..8c65529 Binary files /dev/null and b/data/CTR-KR8/art.jpg differ diff --git a/data/CTR-KR8/data.yml b/data/CTR-KR8/data.yml new file mode 100644 index 0000000..66460fc --- /dev/null +++ b/data/CTR-KR8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A8800 + name: Legna Tactica + updates: [] +- regions: + - JP + id: 00040000001A5A00 + name: レグナタクティカ + updates: [] +- regions: + - US + id: 00040000001A9500 + name: Legna Tactica + updates: [] diff --git a/data/CTR-KR8/icon.jpg b/data/CTR-KR8/icon.jpg new file mode 100644 index 0000000..5fc22cc Binary files /dev/null and b/data/CTR-KR8/icon.jpg differ diff --git a/data/CTR-KR9/art.jpg b/data/CTR-KR9/art.jpg new file mode 100644 index 0000000..ee82236 Binary files /dev/null and b/data/CTR-KR9/art.jpg differ diff --git a/data/CTR-KR9/data.yml b/data/CTR-KR9/data.yml new file mode 100644 index 0000000..af1eace --- /dev/null +++ b/data/CTR-KR9/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BCB00 + name: Drone Fight + updates: [] +- regions: + - JP + id: 00040000001A7500 + name: ドローンファイト + updates: [] +- regions: + - US + id: 00040000001C0000 + name: Drone Fight + updates: [] diff --git a/data/CTR-KR9/icon.jpg b/data/CTR-KR9/icon.jpg new file mode 100644 index 0000000..08480d6 Binary files /dev/null and b/data/CTR-KR9/icon.jpg differ diff --git a/data/CTR-KRB/art.jpg b/data/CTR-KRB/art.jpg new file mode 100644 index 0000000..97738b9 Binary files /dev/null and b/data/CTR-KRB/art.jpg differ diff --git a/data/CTR-KRB/data.yml b/data/CTR-KRB/data.yml new file mode 100644 index 0000000..304d804 --- /dev/null +++ b/data/CTR-KRB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A1A00 + name: Ninja Usagimaru - The Mysterious Karakuri Castle + updates: [] +- regions: + - JP + id: 0004000000176D00 + name: 疾風のうさぎ丸 -謎のからくり城- + updates: [] +- regions: + - US + id: 00040000001A0800 + name: Ninja Usagimaru - The Mysterious Karakuri Castle + updates: [] diff --git a/data/CTR-KRB/icon.jpg b/data/CTR-KRB/icon.jpg new file mode 100644 index 0000000..ca0c9f3 Binary files /dev/null and b/data/CTR-KRB/icon.jpg differ diff --git a/data/CTR-KRD/art.jpg b/data/CTR-KRD/art.jpg new file mode 100644 index 0000000..48a85c2 Binary files /dev/null and b/data/CTR-KRD/art.jpg differ diff --git a/data/CTR-KRD/data.yml b/data/CTR-KRD/data.yml new file mode 100644 index 0000000..44552a0 --- /dev/null +++ b/data/CTR-KRD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000013BA00 + name: '@SIMPLE DLシリーズ Vol.31 THE 密室からの脱出 カラオケ編' + updates: [] diff --git a/data/CTR-KRD/icon.jpg b/data/CTR-KRD/icon.jpg new file mode 100644 index 0000000..4a377c2 Binary files /dev/null and b/data/CTR-KRD/icon.jpg differ diff --git a/data/CTR-KRG/art.jpg b/data/CTR-KRG/art.jpg new file mode 100644 index 0000000..dc6cd3d Binary files /dev/null and b/data/CTR-KRG/art.jpg differ diff --git a/data/CTR-KRG/data.yml b/data/CTR-KRG/data.yml new file mode 100644 index 0000000..7234e0f --- /dev/null +++ b/data/CTR-KRG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000177A00 + name: 仮面ライダーゴースト ゲームでカイガン!! + updates: [] diff --git a/data/CTR-KRG/icon.jpg b/data/CTR-KRG/icon.jpg new file mode 100644 index 0000000..4f9e014 Binary files /dev/null and b/data/CTR-KRG/icon.jpg differ diff --git a/data/CTR-KRH/art.jpg b/data/CTR-KRH/art.jpg new file mode 100644 index 0000000..789785c Binary files /dev/null and b/data/CTR-KRH/art.jpg differ diff --git a/data/CTR-KRH/data.yml b/data/CTR-KRH/data.yml new file mode 100644 index 0000000..d523e5a --- /dev/null +++ b/data/CTR-KRH/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017F500 + name: Radiohammer + updates: [] +- regions: + - JP + id: 0004000000163D00 + name: ラジオハンマー + updates: [] +- regions: + - KR + id: 0004000000183200 + name: 라디오해머 + updates: [] +- regions: + - US + id: 000400000017A100 + name: Radiohammer + updates: [] diff --git a/data/CTR-KRH/icon.jpg b/data/CTR-KRH/icon.jpg new file mode 100644 index 0000000..d92f664 Binary files /dev/null and b/data/CTR-KRH/icon.jpg differ diff --git a/data/CTR-KRJ/art.jpg b/data/CTR-KRJ/art.jpg new file mode 100644 index 0000000..b9f55be Binary files /dev/null and b/data/CTR-KRJ/art.jpg differ diff --git a/data/CTR-KRJ/data.yml b/data/CTR-KRJ/data.yml new file mode 100644 index 0000000..aaf8c99 --- /dev/null +++ b/data/CTR-KRJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A2E00 + name: Swapdoodle™ + updates: [] +- regions: + - JP + id: 00040000001A2C00 + name: イラスト交換日記 + updates: [] +- regions: + - US + id: 00040000001A2D00 + name: Swapdoodle™ + updates: [] diff --git a/data/CTR-KRJ/icon.jpg b/data/CTR-KRJ/icon.jpg new file mode 100644 index 0000000..a53af81 Binary files /dev/null and b/data/CTR-KRJ/icon.jpg differ diff --git a/data/CTR-KRK/art.jpg b/data/CTR-KRK/art.jpg new file mode 100644 index 0000000..50271aa Binary files /dev/null and b/data/CTR-KRK/art.jpg differ diff --git a/data/CTR-KRK/data.yml b/data/CTR-KRK/data.yml new file mode 100644 index 0000000..474734c --- /dev/null +++ b/data/CTR-KRK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000165400 + name: カラオケJOYSOUND + updates: [] diff --git a/data/CTR-KRK/icon.jpg b/data/CTR-KRK/icon.jpg new file mode 100644 index 0000000..21e9041 Binary files /dev/null and b/data/CTR-KRK/icon.jpg differ diff --git a/data/CTR-KRL/art.jpg b/data/CTR-KRL/art.jpg new file mode 100644 index 0000000..b08b4f4 Binary files /dev/null and b/data/CTR-KRL/art.jpg differ diff --git a/data/CTR-KRL/data.yml b/data/CTR-KRL/data.yml new file mode 100644 index 0000000..d3f9446 --- /dev/null +++ b/data/CTR-KRL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000019E900 + name: デンジャーロード + updates: [] +- regions: + - US + id: 00040000001AFE00 + name: Dangerous Road + updates: [] diff --git a/data/CTR-KRL/icon.jpg b/data/CTR-KRL/icon.jpg new file mode 100644 index 0000000..1726158 Binary files /dev/null and b/data/CTR-KRL/icon.jpg differ diff --git a/data/CTR-KRM/art.jpg b/data/CTR-KRM/art.jpg new file mode 100644 index 0000000..af964a5 Binary files /dev/null and b/data/CTR-KRM/art.jpg differ diff --git a/data/CTR-KRM/data.yml b/data/CTR-KRM/data.yml new file mode 100644 index 0000000..d7d769d --- /dev/null +++ b/data/CTR-KRM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000144E00 + name: '@SIMPLE DLシリーズ Vol.33 THE 熱血!炎のラーメン屋' + updates: [] diff --git a/data/CTR-KRM/icon.jpg b/data/CTR-KRM/icon.jpg new file mode 100644 index 0000000..12eb73f Binary files /dev/null and b/data/CTR-KRM/icon.jpg differ diff --git a/data/CTR-KRN/art.jpg b/data/CTR-KRN/art.jpg new file mode 100644 index 0000000..935e228 Binary files /dev/null and b/data/CTR-KRN/art.jpg differ diff --git a/data/CTR-KRN/data.yml b/data/CTR-KRN/data.yml new file mode 100644 index 0000000..057b342 --- /dev/null +++ b/data/CTR-KRN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000148600 + name: "I've Got to Run: Complete Edition!" + updates: [] diff --git a/data/CTR-KRN/icon.jpg b/data/CTR-KRN/icon.jpg new file mode 100644 index 0000000..9757125 Binary files /dev/null and b/data/CTR-KRN/icon.jpg differ diff --git a/data/CTR-KRP/art.jpg b/data/CTR-KRP/art.jpg new file mode 100644 index 0000000..ea18fa5 Binary files /dev/null and b/data/CTR-KRP/art.jpg differ diff --git a/data/CTR-KRP/data.yml b/data/CTR-KRP/data.yml new file mode 100644 index 0000000..55b8563 --- /dev/null +++ b/data/CTR-KRP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000139C00 + name: みんなで まもって騎士 姫のトキメキらぷそでぃ + updates: [] +- regions: + - US + id: 0004000000196E00 + name: Gotta Protectors + updates: [] diff --git a/data/CTR-KRP/icon.jpg b/data/CTR-KRP/icon.jpg new file mode 100644 index 0000000..5422662 Binary files /dev/null and b/data/CTR-KRP/icon.jpg differ diff --git a/data/CTR-KRR/art.jpg b/data/CTR-KRR/art.jpg new file mode 100644 index 0000000..6335d0c Binary files /dev/null and b/data/CTR-KRR/art.jpg differ diff --git a/data/CTR-KRR/data.yml b/data/CTR-KRR/data.yml new file mode 100644 index 0000000..bd8f7f1 --- /dev/null +++ b/data/CTR-KRR/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C0300 + name: Mononoke Forest + updates: [] +- regions: + - JP + id: 0004000000139A00 + name: コロロケの森 ぽいっと + updates: + - id: 0004000E00139A00 + name: 更新データ Ver. 1.1.0 コロロケの森 ぽいっと +- regions: + - US + id: 00040000001BD300 + name: Mononoke Forest + updates: [] diff --git a/data/CTR-KRR/icon.jpg b/data/CTR-KRR/icon.jpg new file mode 100644 index 0000000..33b348a Binary files /dev/null and b/data/CTR-KRR/icon.jpg differ diff --git a/data/CTR-KRT/art.jpg b/data/CTR-KRT/art.jpg new file mode 100644 index 0000000..3ce01c3 Binary files /dev/null and b/data/CTR-KRT/art.jpg differ diff --git a/data/CTR-KRT/data.yml b/data/CTR-KRT/data.yml new file mode 100644 index 0000000..f9f627d --- /dev/null +++ b/data/CTR-KRT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000170A00 + name: キャラペットライト つくって! そだてて!キャラクター小学校 + updates: [] diff --git a/data/CTR-KRT/icon.jpg b/data/CTR-KRT/icon.jpg new file mode 100644 index 0000000..fc762cd Binary files /dev/null and b/data/CTR-KRT/icon.jpg differ diff --git a/data/CTR-KRU/art.jpg b/data/CTR-KRU/art.jpg new file mode 100644 index 0000000..60b0afe Binary files /dev/null and b/data/CTR-KRU/art.jpg differ diff --git a/data/CTR-KRU/data.yml b/data/CTR-KRU/data.yml new file mode 100644 index 0000000..0f3bd93 --- /dev/null +++ b/data/CTR-KRU/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014F500 + name: Rytmik Ultimate + updates: [] +- regions: + - US + id: 000400000014DB00 + name: Rytmik Ultimate + updates: [] diff --git a/data/CTR-KRU/icon.jpg b/data/CTR-KRU/icon.jpg new file mode 100644 index 0000000..c2b0900 Binary files /dev/null and b/data/CTR-KRU/icon.jpg differ diff --git a/data/CTR-KRW/art.jpg b/data/CTR-KRW/art.jpg new file mode 100644 index 0000000..93ee2f7 Binary files /dev/null and b/data/CTR-KRW/art.jpg differ diff --git a/data/CTR-KRW/data.yml b/data/CTR-KRW/data.yml new file mode 100644 index 0000000..8997575 --- /dev/null +++ b/data/CTR-KRW/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BAE00 + name: RPG Maker Player + updates: [] +- regions: + - JP + id: 000400000019ED00 + name: RPGツクール フェス プレイヤー + updates: + - id: 0004000E0019ED00 + name: 更新データ Ver. 1.1.4 RPGツクール フェス プレイヤー +- regions: + - US + id: 00040000001BD400 + name: RPG Maker Player + updates: [] diff --git a/data/CTR-KRW/icon.jpg b/data/CTR-KRW/icon.jpg new file mode 100644 index 0000000..5064657 Binary files /dev/null and b/data/CTR-KRW/icon.jpg differ diff --git a/data/CTR-KRX/art.jpg b/data/CTR-KRX/art.jpg new file mode 100644 index 0000000..1399b4c Binary files /dev/null and b/data/CTR-KRX/art.jpg differ diff --git a/data/CTR-KRX/data.yml b/data/CTR-KRX/data.yml new file mode 100644 index 0000000..b41aac6 --- /dev/null +++ b/data/CTR-KRX/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - JP + - US + id: 0004000000141000 + name: Pokémon™ Shuffle + updates: [] diff --git a/data/CTR-KRX/icon.jpg b/data/CTR-KRX/icon.jpg new file mode 100644 index 0000000..72f1d05 Binary files /dev/null and b/data/CTR-KRX/icon.jpg differ diff --git a/data/CTR-KS3/art.jpg b/data/CTR-KS3/art.jpg new file mode 100644 index 0000000..9a01ace Binary files /dev/null and b/data/CTR-KS3/art.jpg differ diff --git a/data/CTR-KS3/data.yml b/data/CTR-KS3/data.yml new file mode 100644 index 0000000..99c3865 --- /dev/null +++ b/data/CTR-KS3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000163600 + name: '@SIMPLE DLシリーズ Vol.36 THE 密室からの脱出 鉄道編' + updates: [] diff --git a/data/CTR-KS3/icon.jpg b/data/CTR-KS3/icon.jpg new file mode 100644 index 0000000..7888e4d Binary files /dev/null and b/data/CTR-KS3/icon.jpg differ diff --git a/data/CTR-KS4/art.jpg b/data/CTR-KS4/art.jpg new file mode 100644 index 0000000..701302b Binary files /dev/null and b/data/CTR-KS4/art.jpg differ diff --git a/data/CTR-KS4/data.yml b/data/CTR-KS4/data.yml new file mode 100644 index 0000000..f952cd7 --- /dev/null +++ b/data/CTR-KS4/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000188700 + name: Sssnakes + updates: [] +- regions: + - JP + id: 00040000001ACF00 + name: SSSNAKES + updates: [] +- regions: + - US + id: 0004000000183500 + name: Sssnakes + updates: [] diff --git a/data/CTR-KS4/icon.jpg b/data/CTR-KS4/icon.jpg new file mode 100644 index 0000000..9635fed Binary files /dev/null and b/data/CTR-KS4/icon.jpg differ diff --git a/data/CTR-KS7/art.jpg b/data/CTR-KS7/art.jpg new file mode 100644 index 0000000..ededac0 Binary files /dev/null and b/data/CTR-KS7/art.jpg differ diff --git a/data/CTR-KS7/data.yml b/data/CTR-KS7/data.yml new file mode 100644 index 0000000..bf0447d --- /dev/null +++ b/data/CTR-KS7/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B1A00 + name: Mercenaries Saga 3 + updates: [] +- regions: + - JP + id: 00040000001A8E00 + name: マーセナリーズサーガ3 + updates: [] +- regions: + - US + id: 00040000001B1C00 + name: Mercenaries Saga 3 + updates: [] diff --git a/data/CTR-KS7/icon.jpg b/data/CTR-KS7/icon.jpg new file mode 100644 index 0000000..514267a Binary files /dev/null and b/data/CTR-KS7/icon.jpg differ diff --git a/data/CTR-KS8/art.jpg b/data/CTR-KS8/art.jpg new file mode 100644 index 0000000..e211d13 Binary files /dev/null and b/data/CTR-KS8/art.jpg differ diff --git a/data/CTR-KS8/data.yml b/data/CTR-KS8/data.yml new file mode 100644 index 0000000..26fc139 --- /dev/null +++ b/data/CTR-KS8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000014FD00 + name: マル合格! 社会福祉士試験 平成26年度版 + updates: [] diff --git a/data/CTR-KS8/icon.jpg b/data/CTR-KS8/icon.jpg new file mode 100644 index 0000000..3c0b668 Binary files /dev/null and b/data/CTR-KS8/icon.jpg differ diff --git a/data/CTR-KS9/art.jpg b/data/CTR-KS9/art.jpg new file mode 100644 index 0000000..14e9d52 Binary files /dev/null and b/data/CTR-KS9/art.jpg differ diff --git a/data/CTR-KS9/data.yml b/data/CTR-KS9/data.yml new file mode 100644 index 0000000..ae8273c --- /dev/null +++ b/data/CTR-KS9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000017AA00 + name: '@SIMPLE DLシリーズ Vol.39 THE密室からの脱出スポーツジム編' + updates: [] diff --git a/data/CTR-KS9/icon.jpg b/data/CTR-KS9/icon.jpg new file mode 100644 index 0000000..457c076 Binary files /dev/null and b/data/CTR-KS9/icon.jpg differ diff --git a/data/CTR-KSA/art.jpg b/data/CTR-KSA/art.jpg new file mode 100644 index 0000000..3c68d99 Binary files /dev/null and b/data/CTR-KSA/art.jpg differ diff --git a/data/CTR-KSA/data.yml b/data/CTR-KSA/data.yml new file mode 100644 index 0000000..3349d00 --- /dev/null +++ b/data/CTR-KSA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000177B00 + name: 手裏剣戦隊ニンニンジャー ゲームでワッショイ!! + updates: [] diff --git a/data/CTR-KSA/icon.jpg b/data/CTR-KSA/icon.jpg new file mode 100644 index 0000000..25f7241 Binary files /dev/null and b/data/CTR-KSA/icon.jpg differ diff --git a/data/CTR-KSB/art.jpg b/data/CTR-KSB/art.jpg new file mode 100644 index 0000000..790164e Binary files /dev/null and b/data/CTR-KSB/art.jpg differ diff --git a/data/CTR-KSB/data.yml b/data/CTR-KSB/data.yml new file mode 100644 index 0000000..9ff4bd5 --- /dev/null +++ b/data/CTR-KSB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018C000 + name: The Legend of Kusakari + updates: [] +- regions: + - JP + id: 0004000000162B00 + name: シバ・カーリーの伝説 + updates: [] +- regions: + - US + id: 000400000018B800 + name: 'The Legend of Kusakari ' + updates: [] diff --git a/data/CTR-KSB/icon.jpg b/data/CTR-KSB/icon.jpg new file mode 100644 index 0000000..52ba22c Binary files /dev/null and b/data/CTR-KSB/icon.jpg differ diff --git a/data/CTR-KSD/art.jpg b/data/CTR-KSD/art.jpg new file mode 100644 index 0000000..8fa1ed5 Binary files /dev/null and b/data/CTR-KSD/art.jpg differ diff --git a/data/CTR-KSD/data.yml b/data/CTR-KSD/data.yml new file mode 100644 index 0000000..b8ac4c6 --- /dev/null +++ b/data/CTR-KSD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145A00 + name: 新宿ダンジョン + updates: [] diff --git a/data/CTR-KSD/icon.jpg b/data/CTR-KSD/icon.jpg new file mode 100644 index 0000000..a3e79ec Binary files /dev/null and b/data/CTR-KSD/icon.jpg differ diff --git a/data/CTR-KSE/art.jpg b/data/CTR-KSE/art.jpg new file mode 100644 index 0000000..4f23823 Binary files /dev/null and b/data/CTR-KSE/art.jpg differ diff --git a/data/CTR-KSE/data.yml b/data/CTR-KSE/data.yml new file mode 100644 index 0000000..11de73e --- /dev/null +++ b/data/CTR-KSE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013EC00 + name: Secret Empires of the Ancient World + updates: [] diff --git a/data/CTR-KSE/icon.jpg b/data/CTR-KSE/icon.jpg new file mode 100644 index 0000000..876e5ac Binary files /dev/null and b/data/CTR-KSE/icon.jpg differ diff --git a/data/CTR-KSF/art.jpg b/data/CTR-KSF/art.jpg new file mode 100644 index 0000000..ddd29e2 Binary files /dev/null and b/data/CTR-KSF/art.jpg differ diff --git a/data/CTR-KSF/data.yml b/data/CTR-KSF/data.yml new file mode 100644 index 0000000..2a2a4cf --- /dev/null +++ b/data/CTR-KSF/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000132C00 + name: Siesta Fiesta + updates: + - id: 0004000E00132C00 + name: Siesta Fiesta - Update +- regions: + - US + id: 0004000000139300 + name: Siesta Fiesta + updates: + - id: 0004000E00139300 + name: Siesta Fiesta Update Ver. 1.0 diff --git a/data/CTR-KSF/icon.jpg b/data/CTR-KSF/icon.jpg new file mode 100644 index 0000000..a7e9a1d Binary files /dev/null and b/data/CTR-KSF/icon.jpg differ diff --git a/data/CTR-KSG/art.jpg b/data/CTR-KSG/art.jpg new file mode 100644 index 0000000..18eb207 Binary files /dev/null and b/data/CTR-KSG/art.jpg differ diff --git a/data/CTR-KSG/data.yml b/data/CTR-KSG/data.yml new file mode 100644 index 0000000..425baf8 --- /dev/null +++ b/data/CTR-KSG/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013D800 + name: Scarygirl Illustration Kit + updates: [] diff --git a/data/CTR-KSG/icon.jpg b/data/CTR-KSG/icon.jpg new file mode 100644 index 0000000..09cb4bd Binary files /dev/null and b/data/CTR-KSG/icon.jpg differ diff --git a/data/CTR-KSH/art.jpg b/data/CTR-KSH/art.jpg new file mode 100644 index 0000000..5369636 Binary files /dev/null and b/data/CTR-KSH/art.jpg differ diff --git a/data/CTR-KSH/data.yml b/data/CTR-KSH/data.yml new file mode 100644 index 0000000..b109d15 --- /dev/null +++ b/data/CTR-KSH/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000136900 + name: ぐるたん 中学英単語 + updates: [] diff --git a/data/CTR-KSH/icon.jpg b/data/CTR-KSH/icon.jpg new file mode 100644 index 0000000..169dbbb Binary files /dev/null and b/data/CTR-KSH/icon.jpg differ diff --git a/data/CTR-KSJ/art.jpg b/data/CTR-KSJ/art.jpg new file mode 100644 index 0000000..10abf4d Binary files /dev/null and b/data/CTR-KSJ/art.jpg differ diff --git a/data/CTR-KSJ/data.yml b/data/CTR-KSJ/data.yml new file mode 100644 index 0000000..6ac5e0a --- /dev/null +++ b/data/CTR-KSJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013ED00 + name: 'Secret Journeys: Cities of the World' + updates: [] diff --git a/data/CTR-KSJ/icon.jpg b/data/CTR-KSJ/icon.jpg new file mode 100644 index 0000000..b68ef05 Binary files /dev/null and b/data/CTR-KSJ/icon.jpg differ diff --git a/data/CTR-KSK/art.jpg b/data/CTR-KSK/art.jpg new file mode 100644 index 0000000..501447f Binary files /dev/null and b/data/CTR-KSK/art.jpg differ diff --git a/data/CTR-KSK/data.yml b/data/CTR-KSK/data.yml new file mode 100644 index 0000000..6fa57b3 --- /dev/null +++ b/data/CTR-KSK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000136800 + name: ぐるたん 高校英単語 + updates: [] diff --git a/data/CTR-KSK/icon.jpg b/data/CTR-KSK/icon.jpg new file mode 100644 index 0000000..2b70578 Binary files /dev/null and b/data/CTR-KSK/icon.jpg differ diff --git a/data/CTR-KSL/art.jpg b/data/CTR-KSL/art.jpg new file mode 100644 index 0000000..a4e00ed Binary files /dev/null and b/data/CTR-KSL/art.jpg differ diff --git a/data/CTR-KSL/data.yml b/data/CTR-KSL/data.yml new file mode 100644 index 0000000..41bd42f --- /dev/null +++ b/data/CTR-KSL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000153E00 + name: Space Lift Danger Panic! + updates: [] +- regions: + - US + id: 0004000000154300 + name: Space Lift Danger Panic! + updates: [] diff --git a/data/CTR-KSL/icon.jpg b/data/CTR-KSL/icon.jpg new file mode 100644 index 0000000..f580905 Binary files /dev/null and b/data/CTR-KSL/icon.jpg differ diff --git a/data/CTR-KSM/art.jpg b/data/CTR-KSM/art.jpg new file mode 100644 index 0000000..c9ebd81 Binary files /dev/null and b/data/CTR-KSM/art.jpg differ diff --git a/data/CTR-KSM/data.yml b/data/CTR-KSM/data.yml new file mode 100644 index 0000000..cd1e0f0 --- /dev/null +++ b/data/CTR-KSM/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000157200 + name: Sumico + updates: [] +- regions: + - JP + id: 0004000000191400 + name: ツナガレ・ナンバーズ + updates: [] +- regions: + - US + id: 000400000015C200 + name: Sumico + updates: [] diff --git a/data/CTR-KSM/icon.jpg b/data/CTR-KSM/icon.jpg new file mode 100644 index 0000000..fb74b62 Binary files /dev/null and b/data/CTR-KSM/icon.jpg differ diff --git a/data/CTR-KSN/art.jpg b/data/CTR-KSN/art.jpg new file mode 100644 index 0000000..0e5c228 Binary files /dev/null and b/data/CTR-KSN/art.jpg differ diff --git a/data/CTR-KSN/data.yml b/data/CTR-KSN/data.yml new file mode 100644 index 0000000..3699856 --- /dev/null +++ b/data/CTR-KSN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015BA00 + name: 3D Sonic The Hedgehog 2 + updates: [] +- regions: + - JP + id: 0004000000162700 + name: 3D ソニック・ザ・ヘッジホッグ2 + updates: [] +- regions: + - US + id: 0004000000158D00 + name: 3D Sonic The Hedgehog 2 + updates: [] diff --git a/data/CTR-KSN/icon.jpg b/data/CTR-KSN/icon.jpg new file mode 100644 index 0000000..743b5e7 Binary files /dev/null and b/data/CTR-KSN/icon.jpg differ diff --git a/data/CTR-KSP/art.jpg b/data/CTR-KSP/art.jpg new file mode 100644 index 0000000..db4a070 Binary files /dev/null and b/data/CTR-KSP/art.jpg differ diff --git a/data/CTR-KSP/data.yml b/data/CTR-KSP/data.yml new file mode 100644 index 0000000..064911b --- /dev/null +++ b/data/CTR-KSP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000145600 + name: プチノベル「子宮の九月」 + updates: [] diff --git a/data/CTR-KSP/icon.jpg b/data/CTR-KSP/icon.jpg new file mode 100644 index 0000000..eba4084 Binary files /dev/null and b/data/CTR-KSP/icon.jpg differ diff --git a/data/CTR-KSR/art.jpg b/data/CTR-KSR/art.jpg new file mode 100644 index 0000000..81b841d Binary files /dev/null and b/data/CTR-KSR/art.jpg differ diff --git a/data/CTR-KSR/data.yml b/data/CTR-KSR/data.yml new file mode 100644 index 0000000..568a1ea --- /dev/null +++ b/data/CTR-KSR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000015B800 + name: 3D Streets of Rage 2 + updates: [] +- regions: + - JP + id: 0004000000162500 + name: 3D ベア・ナックルⅡ 死闘への鎮魂歌 + updates: [] +- regions: + - US + id: 0004000000158300 + name: 3D Streets of Rage 2 + updates: [] diff --git a/data/CTR-KSR/icon.jpg b/data/CTR-KSR/icon.jpg new file mode 100644 index 0000000..594f603 Binary files /dev/null and b/data/CTR-KSR/icon.jpg differ diff --git a/data/CTR-KST/art.jpg b/data/CTR-KST/art.jpg new file mode 100644 index 0000000..61f2480 Binary files /dev/null and b/data/CTR-KST/art.jpg differ diff --git a/data/CTR-KST/data.yml b/data/CTR-KST/data.yml new file mode 100644 index 0000000..72fa83d --- /dev/null +++ b/data/CTR-KST/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000140600 + name: サンゴクストーリーズ天 + updates: [] diff --git a/data/CTR-KST/icon.jpg b/data/CTR-KST/icon.jpg new file mode 100644 index 0000000..3b1ccc8 Binary files /dev/null and b/data/CTR-KST/icon.jpg differ diff --git a/data/CTR-KSV/art.jpg b/data/CTR-KSV/art.jpg new file mode 100644 index 0000000..7709f36 Binary files /dev/null and b/data/CTR-KSV/art.jpg differ diff --git a/data/CTR-KSV/data.yml b/data/CTR-KSV/data.yml new file mode 100644 index 0000000..ee50548 --- /dev/null +++ b/data/CTR-KSV/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000165F00 + name: Severed + updates: [] +- regions: + - JP + id: 00040000001B4800 + name: SEVERED-セヴァード- + updates: [] +- regions: + - US + id: 0004000000166300 + name: Severed + updates: [] diff --git a/data/CTR-KSV/icon.jpg b/data/CTR-KSV/icon.jpg new file mode 100644 index 0000000..82faf80 Binary files /dev/null and b/data/CTR-KSV/icon.jpg differ diff --git a/data/CTR-KSZ/art.jpg b/data/CTR-KSZ/art.jpg new file mode 100644 index 0000000..6803659 Binary files /dev/null and b/data/CTR-KSZ/art.jpg differ diff --git a/data/CTR-KSZ/data.yml b/data/CTR-KSZ/data.yml new file mode 100644 index 0000000..b631c65 --- /dev/null +++ b/data/CTR-KSZ/data.yml @@ -0,0 +1,22 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C1700 + name: Of Mice And Sand + updates: [] +- regions: + - JP + id: 0004000000190B00 + name: サバクのネズミ団! + updates: [] +- regions: + - KR + id: 00040000001BF800 + name: 사막의 서생결단! + updates: [] +- regions: + - US + id: 00040000001C1A00 + name: Of Mice And Sand + updates: [] diff --git a/data/CTR-KSZ/icon.jpg b/data/CTR-KSZ/icon.jpg new file mode 100644 index 0000000..a2a9052 Binary files /dev/null and b/data/CTR-KSZ/icon.jpg differ diff --git a/data/CTR-KT2/art.jpg b/data/CTR-KT2/art.jpg new file mode 100644 index 0000000..610bf00 Binary files /dev/null and b/data/CTR-KT2/art.jpg differ diff --git a/data/CTR-KT2/data.yml b/data/CTR-KT2/data.yml new file mode 100644 index 0000000..70043b6 --- /dev/null +++ b/data/CTR-KT2/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016DC00 + name: Toki Tori 3D + updates: [] +- regions: + - JP + id: 0004000000190C00 + name: TOKI TORI 3D + updates: [] +- regions: + - US + id: 0004000000182000 + name: Toki Tori 3D + updates: [] diff --git a/data/CTR-KT2/icon.jpg b/data/CTR-KT2/icon.jpg new file mode 100644 index 0000000..a6316ef Binary files /dev/null and b/data/CTR-KT2/icon.jpg differ diff --git a/data/CTR-KT3/art.jpg b/data/CTR-KT3/art.jpg new file mode 100644 index 0000000..3c77623 Binary files /dev/null and b/data/CTR-KT3/art.jpg differ diff --git a/data/CTR-KT3/data.yml b/data/CTR-KT3/data.yml new file mode 100644 index 0000000..9cf5281 --- /dev/null +++ b/data/CTR-KT3/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001AD200 + name: TOUCH BATTLE TANK - TAG COMBAT - + updates: [] +- regions: + - JP + id: 0004000000190700 + name: タッチバトル戦車3D-4 ダブルコマンダー + updates: [] +- regions: + - US + id: 00040000001ADC00 + name: Touch Battle Tank - Tag Combat - + updates: [] diff --git a/data/CTR-KT3/icon.jpg b/data/CTR-KT3/icon.jpg new file mode 100644 index 0000000..963a638 Binary files /dev/null and b/data/CTR-KT3/icon.jpg differ diff --git a/data/CTR-KT4/art.jpg b/data/CTR-KT4/art.jpg new file mode 100644 index 0000000..08a2082 Binary files /dev/null and b/data/CTR-KT4/art.jpg differ diff --git a/data/CTR-KT4/data.yml b/data/CTR-KT4/data.yml new file mode 100644 index 0000000..3473520 --- /dev/null +++ b/data/CTR-KT4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000189200 + name: @SIMPLE DLシリーズ Vol.40 THE密室からの脱出 キャンプ場編 + updates: [] diff --git a/data/CTR-KT4/icon.jpg b/data/CTR-KT4/icon.jpg new file mode 100644 index 0000000..d941fdb Binary files /dev/null and b/data/CTR-KT4/icon.jpg differ diff --git a/data/CTR-KT6/art.jpg b/data/CTR-KT6/art.jpg new file mode 100644 index 0000000..cb98af9 Binary files /dev/null and b/data/CTR-KT6/art.jpg differ diff --git a/data/CTR-KT6/data.yml b/data/CTR-KT6/data.yml new file mode 100644 index 0000000..f3e59d6 --- /dev/null +++ b/data/CTR-KT6/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C8200 + name: Kid Tripp + updates: [] +- regions: + - JP + id: 00040000001C9B00 + name: キッドトリップ RUN! + updates: [] +- regions: + - US + id: 00040000001C7B00 + name: Kid Tripp + updates: [] diff --git a/data/CTR-KT6/icon.jpg b/data/CTR-KT6/icon.jpg new file mode 100644 index 0000000..231e0a6 Binary files /dev/null and b/data/CTR-KT6/icon.jpg differ diff --git a/data/CTR-KT8/art.jpg b/data/CTR-KT8/art.jpg new file mode 100644 index 0000000..8ac550f Binary files /dev/null and b/data/CTR-KT8/art.jpg differ diff --git a/data/CTR-KT8/data.yml b/data/CTR-KT8/data.yml new file mode 100644 index 0000000..19ec03d --- /dev/null +++ b/data/CTR-KT8/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000019DC00 + name: 'Lionel City Builder 3D: Rise of the Rails' + updates: [] +- regions: + - JP + id: 0004000000198000 + name: トレインクリエイター3D + updates: [] +- regions: + - US + id: 0004000000151300 + name: 'Lionel City Builder 3D: Rise of the Rails' + updates: [] diff --git a/data/CTR-KT8/icon.jpg b/data/CTR-KT8/icon.jpg new file mode 100644 index 0000000..eb44a37 Binary files /dev/null and b/data/CTR-KT8/icon.jpg differ diff --git a/data/CTR-KTA/art.jpg b/data/CTR-KTA/art.jpg new file mode 100644 index 0000000..0390e5a Binary files /dev/null and b/data/CTR-KTA/art.jpg differ diff --git a/data/CTR-KTA/data.yml b/data/CTR-KTA/data.yml new file mode 100644 index 0000000..d460fec --- /dev/null +++ b/data/CTR-KTA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000146800 + name: Tangram Attack + updates: [] diff --git a/data/CTR-KTA/icon.jpg b/data/CTR-KTA/icon.jpg new file mode 100644 index 0000000..ade8700 Binary files /dev/null and b/data/CTR-KTA/icon.jpg differ diff --git a/data/CTR-KTB/art.jpg b/data/CTR-KTB/art.jpg new file mode 100644 index 0000000..850e98f Binary files /dev/null and b/data/CTR-KTB/art.jpg differ diff --git a/data/CTR-KTB/data.yml b/data/CTR-KTB/data.yml new file mode 100644 index 0000000..4b618e4 --- /dev/null +++ b/data/CTR-KTB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000162900 + name: タッチバトル戦車3D-3 + updates: [] diff --git a/data/CTR-KTB/icon.jpg b/data/CTR-KTB/icon.jpg new file mode 100644 index 0000000..41359b4 Binary files /dev/null and b/data/CTR-KTB/icon.jpg differ diff --git a/data/CTR-KTC/art.jpg b/data/CTR-KTC/art.jpg new file mode 100644 index 0000000..cffc23c Binary files /dev/null and b/data/CTR-KTC/art.jpg differ diff --git a/data/CTR-KTC/data.yml b/data/CTR-KTC/data.yml new file mode 100644 index 0000000..7df0725 --- /dev/null +++ b/data/CTR-KTC/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BF200 + name: Anime Workshop + updates: [] +- regions: + - JP + id: 000400000016BA00 + name: 動かそう! ちびキャラ工房 + updates: + - id: 0004000E0016BA00 + name: 更新データ Ver. 1.1 動かそう! ちびキャラ工房 +- regions: + - US + id: 00040000001BEF00 + name: Anime Workshop + updates: [] diff --git a/data/CTR-KTC/icon.jpg b/data/CTR-KTC/icon.jpg new file mode 100644 index 0000000..742b81d Binary files /dev/null and b/data/CTR-KTC/icon.jpg differ diff --git a/data/CTR-KTD/art.jpg b/data/CTR-KTD/art.jpg new file mode 100644 index 0000000..c8dcd05 Binary files /dev/null and b/data/CTR-KTD/art.jpg differ diff --git a/data/CTR-KTD/data.yml b/data/CTR-KTD/data.yml new file mode 100644 index 0000000..72886c7 --- /dev/null +++ b/data/CTR-KTD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000198100 + name: マル合格!宅建士試験 平成28年度版 + updates: [] diff --git a/data/CTR-KTD/icon.jpg b/data/CTR-KTD/icon.jpg new file mode 100644 index 0000000..efb87da Binary files /dev/null and b/data/CTR-KTD/icon.jpg differ diff --git a/data/CTR-KTH/art.jpg b/data/CTR-KTH/art.jpg new file mode 100644 index 0000000..b854669 Binary files /dev/null and b/data/CTR-KTH/art.jpg differ diff --git a/data/CTR-KTH/data.yml b/data/CTR-KTH/data.yml new file mode 100644 index 0000000..4a50662 --- /dev/null +++ b/data/CTR-KTH/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A4600 + name: Urban Trial Freestyle 2 + updates: + - id: 0004000E001A4600 + name: 'Urban Trial Freestyle 2: Update' +- regions: + - JP + id: 00040000001B4900 + name: アーバントライアル: フリースタイル2 + updates: [] +- regions: + - US + id: 00040000001A4500 + name: URBAN TRIAL FREESTYLE 2 + updates: [] diff --git a/data/CTR-KTH/icon.jpg b/data/CTR-KTH/icon.jpg new file mode 100644 index 0000000..fe2ef7d Binary files /dev/null and b/data/CTR-KTH/icon.jpg differ diff --git a/data/CTR-KTJ/art.jpg b/data/CTR-KTJ/art.jpg new file mode 100644 index 0000000..1f83eee Binary files /dev/null and b/data/CTR-KTJ/art.jpg differ diff --git a/data/CTR-KTJ/data.yml b/data/CTR-KTJ/data.yml new file mode 100644 index 0000000..802d362 --- /dev/null +++ b/data/CTR-KTJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B2300 + name: 電車運転指令! 東京湾編 + updates: [] diff --git a/data/CTR-KTJ/icon.jpg b/data/CTR-KTJ/icon.jpg new file mode 100644 index 0000000..f6c8b3e Binary files /dev/null and b/data/CTR-KTJ/icon.jpg differ diff --git a/data/CTR-KTL/art.jpg b/data/CTR-KTL/art.jpg new file mode 100644 index 0000000..7ba7c43 Binary files /dev/null and b/data/CTR-KTL/art.jpg differ diff --git a/data/CTR-KTL/data.yml b/data/CTR-KTL/data.yml new file mode 100644 index 0000000..4dd77e7 --- /dev/null +++ b/data/CTR-KTL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000162400 + name: マル合格! 宅建試験 平成27年度版 + updates: [] diff --git a/data/CTR-KTL/icon.jpg b/data/CTR-KTL/icon.jpg new file mode 100644 index 0000000..d6f48a6 Binary files /dev/null and b/data/CTR-KTL/icon.jpg differ diff --git a/data/CTR-KTM/art.jpg b/data/CTR-KTM/art.jpg new file mode 100644 index 0000000..6168526 Binary files /dev/null and b/data/CTR-KTM/art.jpg differ diff --git a/data/CTR-KTM/data.yml b/data/CTR-KTM/data.yml new file mode 100644 index 0000000..c66c128 --- /dev/null +++ b/data/CTR-KTM/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000153D00 + name: TOYS VS MONSTERS + updates: [] +- regions: + - JP + id: 0004000000187900 + name: Toys VS Monsters + updates: [] +- regions: + - KR + id: 000400000019BA00 + name: Toys VS Monsters + updates: [] +- regions: + - TW + id: 0004000000199D00 + name: Toys VS Monsters (日文版) + updates: [] +- regions: + - US + id: 0004000000150800 + name: TOYS VS MONSTERS + updates: [] diff --git a/data/CTR-KTM/icon.jpg b/data/CTR-KTM/icon.jpg new file mode 100644 index 0000000..baececc Binary files /dev/null and b/data/CTR-KTM/icon.jpg differ diff --git a/data/CTR-KTN/art.jpg b/data/CTR-KTN/art.jpg new file mode 100644 index 0000000..975d1d4 Binary files /dev/null and b/data/CTR-KTN/art.jpg differ diff --git a/data/CTR-KTN/data.yml b/data/CTR-KTN/data.yml new file mode 100644 index 0000000..9616eee --- /dev/null +++ b/data/CTR-KTN/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B6B00 + name: Mini Sports Collection + updates: [] +- regions: + - JP + id: 0004000000198B00 + name: ミニスポ魂 + updates: [] +- regions: + - US + id: 00040000001B6E00 + name: Mini Sports Collection + updates: [] diff --git a/data/CTR-KTN/icon.jpg b/data/CTR-KTN/icon.jpg new file mode 100644 index 0000000..03665b4 Binary files /dev/null and b/data/CTR-KTN/icon.jpg differ diff --git a/data/CTR-KTP/art.jpg b/data/CTR-KTP/art.jpg new file mode 100644 index 0000000..bcd0ce8 Binary files /dev/null and b/data/CTR-KTP/art.jpg differ diff --git a/data/CTR-KTP/data.yml b/data/CTR-KTP/data.yml new file mode 100644 index 0000000..bda92bf --- /dev/null +++ b/data/CTR-KTP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016C800 + name: Tappingo 2 + updates: [] diff --git a/data/CTR-KTP/icon.jpg b/data/CTR-KTP/icon.jpg new file mode 100644 index 0000000..09ae628 Binary files /dev/null and b/data/CTR-KTP/icon.jpg differ diff --git a/data/CTR-KTQ/art.jpg b/data/CTR-KTQ/art.jpg new file mode 100644 index 0000000..648ee04 Binary files /dev/null and b/data/CTR-KTQ/art.jpg differ diff --git a/data/CTR-KTQ/data.yml b/data/CTR-KTQ/data.yml new file mode 100644 index 0000000..c2966ce --- /dev/null +++ b/data/CTR-KTQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000019CA00 + name: おでかけタコりん ちょいがえ + updates: [] diff --git a/data/CTR-KTQ/icon.jpg b/data/CTR-KTQ/icon.jpg new file mode 100644 index 0000000..40af752 Binary files /dev/null and b/data/CTR-KTQ/icon.jpg differ diff --git a/data/CTR-KTR/art.jpg b/data/CTR-KTR/art.jpg new file mode 100644 index 0000000..98adc3e Binary files /dev/null and b/data/CTR-KTR/art.jpg differ diff --git a/data/CTR-KTR/data.yml b/data/CTR-KTR/data.yml new file mode 100644 index 0000000..28ba93e --- /dev/null +++ b/data/CTR-KTR/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000150100 + name: チャリ走 DX3 タイムライダー + updates: + - id: 0004000E00150100 + name: 更新データ Ver. 1.5 チャリ走 DX3 タイムライダー diff --git a/data/CTR-KTR/icon.jpg b/data/CTR-KTR/icon.jpg new file mode 100644 index 0000000..a1cae4e Binary files /dev/null and b/data/CTR-KTR/icon.jpg differ diff --git a/data/CTR-KTT/art.jpg b/data/CTR-KTT/art.jpg new file mode 100644 index 0000000..d4c838e Binary files /dev/null and b/data/CTR-KTT/art.jpg differ diff --git a/data/CTR-KTT/data.yml b/data/CTR-KTT/data.yml new file mode 100644 index 0000000..73e35a6 --- /dev/null +++ b/data/CTR-KTT/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000159000 + name: Titan Attacks! + updates: + - id: 0004000E00159000 + name: Titan Attacks! - Update +- regions: + - US + id: 0004000000158600 + name: Titan Attacks! + updates: + - id: 0004000E00158600 + name: Titan Attacks! Update Ver. 1.1 diff --git a/data/CTR-KTT/icon.jpg b/data/CTR-KTT/icon.jpg new file mode 100644 index 0000000..9ec3e9a Binary files /dev/null and b/data/CTR-KTT/icon.jpg differ diff --git a/data/CTR-KTW/art.jpg b/data/CTR-KTW/art.jpg new file mode 100644 index 0000000..69df492 Binary files /dev/null and b/data/CTR-KTW/art.jpg differ diff --git a/data/CTR-KTW/data.yml b/data/CTR-KTW/data.yml new file mode 100644 index 0000000..cdc3061 --- /dev/null +++ b/data/CTR-KTW/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000017CD00 + name: Tank Troopers + updates: [] +- regions: + - JP + id: 000400000017CB00 + name: Tank Troopers (タンクトゥルーパーズ) + updates: [] +- regions: + - US + id: 000400000017CC00 + name: Tank Troopers™ + updates: [] diff --git a/data/CTR-KTW/icon.jpg b/data/CTR-KTW/icon.jpg new file mode 100644 index 0000000..117b27b Binary files /dev/null and b/data/CTR-KTW/icon.jpg differ diff --git a/data/CTR-KTY/art.jpg b/data/CTR-KTY/art.jpg new file mode 100644 index 0000000..7e96b30 Binary files /dev/null and b/data/CTR-KTY/art.jpg differ diff --git a/data/CTR-KTY/data.yml b/data/CTR-KTY/data.yml new file mode 100644 index 0000000..1af4ac5 --- /dev/null +++ b/data/CTR-KTY/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C0B00 + name: Timberman + updates: [] +- regions: + - US + id: 00040000001C0200 + name: Timberman + updates: [] diff --git a/data/CTR-KTY/icon.jpg b/data/CTR-KTY/icon.jpg new file mode 100644 index 0000000..1efc12e Binary files /dev/null and b/data/CTR-KTY/icon.jpg differ diff --git a/data/CTR-KV2/art.jpg b/data/CTR-KV2/art.jpg new file mode 100644 index 0000000..f9a8893 Binary files /dev/null and b/data/CTR-KV2/art.jpg differ diff --git a/data/CTR-KV2/data.yml b/data/CTR-KV2/data.yml new file mode 100644 index 0000000..0df1ce2 --- /dev/null +++ b/data/CTR-KV2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A5000 + name: デジコロ じーさん邪 Vol.002 じーさん大ピンチじゃっっ!! + updates: [] diff --git a/data/CTR-KV2/icon.jpg b/data/CTR-KV2/icon.jpg new file mode 100644 index 0000000..b37a069 Binary files /dev/null and b/data/CTR-KV2/icon.jpg differ diff --git a/data/CTR-KV3/art.jpg b/data/CTR-KV3/art.jpg new file mode 100644 index 0000000..52e5b44 Binary files /dev/null and b/data/CTR-KV3/art.jpg differ diff --git a/data/CTR-KV3/data.yml b/data/CTR-KV3/data.yml new file mode 100644 index 0000000..8a404f8 --- /dev/null +++ b/data/CTR-KV3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7B00 + name: デジコロ じーさん邪 Vol.003 じーさんがケータイ電話じゃっっ!! + updates: [] diff --git a/data/CTR-KV3/icon.jpg b/data/CTR-KV3/icon.jpg new file mode 100644 index 0000000..650831d Binary files /dev/null and b/data/CTR-KV3/icon.jpg differ diff --git a/data/CTR-KV4/art.jpg b/data/CTR-KV4/art.jpg new file mode 100644 index 0000000..a1212e2 Binary files /dev/null and b/data/CTR-KV4/art.jpg differ diff --git a/data/CTR-KV4/data.yml b/data/CTR-KV4/data.yml new file mode 100644 index 0000000..f5608e8 --- /dev/null +++ b/data/CTR-KV4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A7A00 + name: デジコロ じーさん邪 Vol.004 おみくじをひくのじゃっっ!! + updates: [] diff --git a/data/CTR-KV4/icon.jpg b/data/CTR-KV4/icon.jpg new file mode 100644 index 0000000..27ca679 Binary files /dev/null and b/data/CTR-KV4/icon.jpg differ diff --git a/data/CTR-KV5/art.jpg b/data/CTR-KV5/art.jpg new file mode 100644 index 0000000..105fa8f Binary files /dev/null and b/data/CTR-KV5/art.jpg differ diff --git a/data/CTR-KV5/data.yml b/data/CTR-KV5/data.yml new file mode 100644 index 0000000..f95c37a --- /dev/null +++ b/data/CTR-KV5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A4E00 + name: デジコロ ケシカスくん Vol.005 給食を進化スさせるぜ!? + updates: [] diff --git a/data/CTR-KV5/icon.jpg b/data/CTR-KV5/icon.jpg new file mode 100644 index 0000000..3ee5760 Binary files /dev/null and b/data/CTR-KV5/icon.jpg differ diff --git a/data/CTR-KV6/art.jpg b/data/CTR-KV6/art.jpg new file mode 100644 index 0000000..26aaa7a Binary files /dev/null and b/data/CTR-KV6/art.jpg differ diff --git a/data/CTR-KV6/data.yml b/data/CTR-KV6/data.yml new file mode 100644 index 0000000..3eac286 --- /dev/null +++ b/data/CTR-KV6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A4F00 + name: デジコロ ケシカスくん Vol.006 カスモールワールドにご案内! + updates: [] diff --git a/data/CTR-KV6/icon.jpg b/data/CTR-KV6/icon.jpg new file mode 100644 index 0000000..d95ac9f Binary files /dev/null and b/data/CTR-KV6/icon.jpg differ diff --git a/data/CTR-KVA/art.jpg b/data/CTR-KVA/art.jpg new file mode 100644 index 0000000..ba96bbd Binary files /dev/null and b/data/CTR-KVA/art.jpg differ diff --git a/data/CTR-KVA/data.yml b/data/CTR-KVA/data.yml new file mode 100644 index 0000000..5d77a16 --- /dev/null +++ b/data/CTR-KVA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000143800 + name: 'Vacation Adventures: Park Ranger 2' + updates: [] diff --git a/data/CTR-KVA/icon.jpg b/data/CTR-KVA/icon.jpg new file mode 100644 index 0000000..4098bbf Binary files /dev/null and b/data/CTR-KVA/icon.jpg differ diff --git a/data/CTR-KVB/art.jpg b/data/CTR-KVB/art.jpg new file mode 100644 index 0000000..7c4b4d5 Binary files /dev/null and b/data/CTR-KVB/art.jpg differ diff --git a/data/CTR-KVB/data.yml b/data/CTR-KVB/data.yml new file mode 100644 index 0000000..ea9a1ce --- /dev/null +++ b/data/CTR-KVB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156300 + name: シカクいアタマをマルくする。 マスター + updates: [] diff --git a/data/CTR-KVB/icon.jpg b/data/CTR-KVB/icon.jpg new file mode 100644 index 0000000..747808c Binary files /dev/null and b/data/CTR-KVB/icon.jpg differ diff --git a/data/CTR-KVC/art.jpg b/data/CTR-KVC/art.jpg new file mode 100644 index 0000000..5ba8f20 Binary files /dev/null and b/data/CTR-KVC/art.jpg differ diff --git a/data/CTR-KVC/data.yml b/data/CTR-KVC/data.yml new file mode 100644 index 0000000..fa3afd4 --- /dev/null +++ b/data/CTR-KVC/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C5500 + name: 'Squareboy vs Bullies: Arena Edition' + updates: [] +- regions: + - US + id: 00040000001C5B00 + name: 'Squareboy vs Bullies: Arena Edition' + updates: [] diff --git a/data/CTR-KVC/icon.jpg b/data/CTR-KVC/icon.jpg new file mode 100644 index 0000000..ce86e8d Binary files /dev/null and b/data/CTR-KVC/icon.jpg differ diff --git a/data/CTR-KVD/art.jpg b/data/CTR-KVD/art.jpg new file mode 100644 index 0000000..df8be73 Binary files /dev/null and b/data/CTR-KVD/art.jpg differ diff --git a/data/CTR-KVD/data.yml b/data/CTR-KVD/data.yml new file mode 100644 index 0000000..c907f8f --- /dev/null +++ b/data/CTR-KVD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156500 + name: シカクいアタマをマルくする。 エキスパート + updates: [] diff --git a/data/CTR-KVD/icon.jpg b/data/CTR-KVD/icon.jpg new file mode 100644 index 0000000..6a44f28 Binary files /dev/null and b/data/CTR-KVD/icon.jpg differ diff --git a/data/CTR-KVE/art.jpg b/data/CTR-KVE/art.jpg new file mode 100644 index 0000000..87fcdaf Binary files /dev/null and b/data/CTR-KVE/art.jpg differ diff --git a/data/CTR-KVE/data.yml b/data/CTR-KVE/data.yml new file mode 100644 index 0000000..4cabe7e --- /dev/null +++ b/data/CTR-KVE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000156A00 + name: シカクいアタマをマルくする。 ジュニア + updates: [] diff --git a/data/CTR-KVE/icon.jpg b/data/CTR-KVE/icon.jpg new file mode 100644 index 0000000..989194b Binary files /dev/null and b/data/CTR-KVE/icon.jpg differ diff --git a/data/CTR-KVG/art.jpg b/data/CTR-KVG/art.jpg new file mode 100644 index 0000000..6d517ff Binary files /dev/null and b/data/CTR-KVG/art.jpg differ diff --git a/data/CTR-KVG/data.yml b/data/CTR-KVG/data.yml new file mode 100644 index 0000000..0eec470 --- /dev/null +++ b/data/CTR-KVG/data.yml @@ -0,0 +1,17 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000001B9400 + name: 'Azure Striker Gunvolt: The Anime' + updates: [] +- regions: + - JP + id: 00040000001B3600 + name: アニメ 蒼き雷霆ガンヴォルト + updates: [] +- regions: + - US + id: 00040000001B7600 + name: 'Azure Striker Gunvolt: The Anime' + updates: [] diff --git a/data/CTR-KVG/icon.jpg b/data/CTR-KVG/icon.jpg new file mode 100644 index 0000000..e478689 Binary files /dev/null and b/data/CTR-KVG/icon.jpg differ diff --git a/data/CTR-KVM/art.jpg b/data/CTR-KVM/art.jpg new file mode 100644 index 0000000..2f6c51a Binary files /dev/null and b/data/CTR-KVM/art.jpg differ diff --git a/data/CTR-KVM/data.yml b/data/CTR-KVM/data.yml new file mode 100644 index 0000000..90e447b --- /dev/null +++ b/data/CTR-KVM/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AF300 + name: 新みんなの塗り絵 ポムポムプリン + updates: [] diff --git a/data/CTR-KVM/icon.jpg b/data/CTR-KVM/icon.jpg new file mode 100644 index 0000000..0db535b Binary files /dev/null and b/data/CTR-KVM/icon.jpg differ diff --git a/data/CTR-KVP/art.jpg b/data/CTR-KVP/art.jpg new file mode 100644 index 0000000..6f0c8cf Binary files /dev/null and b/data/CTR-KVP/art.jpg differ diff --git a/data/CTR-KVP/data.yml b/data/CTR-KVP/data.yml new file mode 100644 index 0000000..1cb2886 --- /dev/null +++ b/data/CTR-KVP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000139800 + name: Plain Video Poker + updates: [] diff --git a/data/CTR-KVP/icon.jpg b/data/CTR-KVP/icon.jpg new file mode 100644 index 0000000..47e5405 Binary files /dev/null and b/data/CTR-KVP/icon.jpg differ diff --git a/data/CTR-KVR/art.jpg b/data/CTR-KVR/art.jpg new file mode 100644 index 0000000..d09dad6 Binary files /dev/null and b/data/CTR-KVR/art.jpg differ diff --git a/data/CTR-KVR/data.yml b/data/CTR-KVR/data.yml new file mode 100644 index 0000000..cbf1a9f --- /dev/null +++ b/data/CTR-KVR/data.yml @@ -0,0 +1,27 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000018A900 + name: RV-7 My Drone + updates: [] +- regions: + - JP + id: 0004000000195000 + name: RV-7 マイ・ドローン + updates: [] +- regions: + - KR + id: 000400000019BB00 + name: RV-7 My Drone + updates: [] +- regions: + - TW + id: 0004000000199F00 + name: RV-7 My Drone (日文版) + updates: [] +- regions: + - US + id: 0004000000188000 + name: RV-7 My Drone + updates: [] diff --git a/data/CTR-KVR/icon.jpg b/data/CTR-KVR/icon.jpg new file mode 100644 index 0000000..8eee8e4 Binary files /dev/null and b/data/CTR-KVR/icon.jpg differ diff --git a/data/CTR-KVX/art.jpg b/data/CTR-KVX/art.jpg new file mode 100644 index 0000000..1f1410b Binary files /dev/null and b/data/CTR-KVX/art.jpg differ diff --git a/data/CTR-KVX/data.yml b/data/CTR-KVX/data.yml new file mode 100644 index 0000000..3f9a9f2 --- /dev/null +++ b/data/CTR-KVX/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C4000 + name: Asdivine Cross + updates: [] +- regions: + - JP + id: 00040000001C2900 + name: アスディバインクロス + updates: [] +- regions: + - US + id: 00040000001C5000 + name: Asdivine Cross + updates: [] diff --git a/data/CTR-KVX/icon.jpg b/data/CTR-KVX/icon.jpg new file mode 100644 index 0000000..6787cbe Binary files /dev/null and b/data/CTR-KVX/icon.jpg differ diff --git a/data/CTR-KVZ/art.jpg b/data/CTR-KVZ/art.jpg new file mode 100644 index 0000000..526862a Binary files /dev/null and b/data/CTR-KVZ/art.jpg differ diff --git a/data/CTR-KVZ/data.yml b/data/CTR-KVZ/data.yml new file mode 100644 index 0000000..2dde025 --- /dev/null +++ b/data/CTR-KVZ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A5100 + name: デジコロ じーさん邪 Vol.001 頭がスゴイのじゃっっ!! + updates: [] diff --git a/data/CTR-KVZ/icon.jpg b/data/CTR-KVZ/icon.jpg new file mode 100644 index 0000000..37e3de8 Binary files /dev/null and b/data/CTR-KVZ/icon.jpg differ diff --git a/data/CTR-KW2/art.jpg b/data/CTR-KW2/art.jpg new file mode 100644 index 0000000..f0e1f1f Binary files /dev/null and b/data/CTR-KW2/art.jpg differ diff --git a/data/CTR-KW2/data.yml b/data/CTR-KW2/data.yml new file mode 100644 index 0000000..3eac605 --- /dev/null +++ b/data/CTR-KW2/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000166F00 + name: Comic Workshop 2 + updates: + - id: 0004000E00166F00 + name: 'Comic Workshop 2: Update' +- regions: + - JP + id: 0004000000160800 + name: コミック工房2 + updates: + - id: 0004000E00160800 + name: 更新データ Ver. 1.4 コミック工房2 +- regions: + - US + id: 0004000000167F00 + name: Comic Workshop 2 + updates: + - id: 0004000E00167F00 + name: Comic Workshop 2 Update Ver. 1.2 diff --git a/data/CTR-KW2/icon.jpg b/data/CTR-KW2/icon.jpg new file mode 100644 index 0000000..7105b47 Binary files /dev/null and b/data/CTR-KW2/icon.jpg differ diff --git a/data/CTR-KW3/art.jpg b/data/CTR-KW3/art.jpg new file mode 100644 index 0000000..445539a Binary files /dev/null and b/data/CTR-KW3/art.jpg differ diff --git a/data/CTR-KW3/data.yml b/data/CTR-KW3/data.yml new file mode 100644 index 0000000..f00990d --- /dev/null +++ b/data/CTR-KW3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A6100 + name: 3D パワードリフト + updates: [] diff --git a/data/CTR-KW3/icon.jpg b/data/CTR-KW3/icon.jpg new file mode 100644 index 0000000..194e84a Binary files /dev/null and b/data/CTR-KW3/icon.jpg differ diff --git a/data/CTR-KW4/art.jpg b/data/CTR-KW4/art.jpg new file mode 100644 index 0000000..df0db13 Binary files /dev/null and b/data/CTR-KW4/art.jpg differ diff --git a/data/CTR-KW4/data.yml b/data/CTR-KW4/data.yml new file mode 100644 index 0000000..c9d0af2 --- /dev/null +++ b/data/CTR-KW4/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BBF00 + name: SteamWorld Dig 2 + updates: [] +- regions: + - US + id: 00040000001B2D00 + name: SteamWorld Dig 2 + updates: [] diff --git a/data/CTR-KW4/icon.jpg b/data/CTR-KW4/icon.jpg new file mode 100644 index 0000000..bdac548 Binary files /dev/null and b/data/CTR-KW4/icon.jpg differ diff --git a/data/CTR-KW9/art.jpg b/data/CTR-KW9/art.jpg new file mode 100644 index 0000000..2b9f5ce Binary files /dev/null and b/data/CTR-KW9/art.jpg differ diff --git a/data/CTR-KW9/data.yml b/data/CTR-KW9/data.yml new file mode 100644 index 0000000..4dcdc06 --- /dev/null +++ b/data/CTR-KW9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B8300 + name: モンスターハンターダブルクロス 特別体験版 + updates: [] diff --git a/data/CTR-KW9/icon.jpg b/data/CTR-KW9/icon.jpg new file mode 100644 index 0000000..5e1bec8 Binary files /dev/null and b/data/CTR-KW9/icon.jpg differ diff --git a/data/CTR-KWA/art.jpg b/data/CTR-KWA/art.jpg new file mode 100644 index 0000000..68d94a8 Binary files /dev/null and b/data/CTR-KWA/art.jpg differ diff --git a/data/CTR-KWA/data.yml b/data/CTR-KWA/data.yml new file mode 100644 index 0000000..ae19ec7 --- /dev/null +++ b/data/CTR-KWA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000196600 + name: WordsUp! Academy + updates: [] +- regions: + - US + id: 0004000000185F00 + name: WordsUp! Academy + updates: [] diff --git a/data/CTR-KWA/icon.jpg b/data/CTR-KWA/icon.jpg new file mode 100644 index 0000000..4d15509 Binary files /dev/null and b/data/CTR-KWA/icon.jpg differ diff --git a/data/CTR-KWB/art.jpg b/data/CTR-KWB/art.jpg new file mode 100644 index 0000000..8978703 Binary files /dev/null and b/data/CTR-KWB/art.jpg differ diff --git a/data/CTR-KWB/data.yml b/data/CTR-KWB/data.yml new file mode 100644 index 0000000..c3ebd4a --- /dev/null +++ b/data/CTR-KWB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000169300 + name: Word Search by POWGI + updates: [] +- regions: + - US + id: 0004000000164200 + name: Word Search by POWGI + updates: [] diff --git a/data/CTR-KWB/icon.jpg b/data/CTR-KWB/icon.jpg new file mode 100644 index 0000000..44dfb64 Binary files /dev/null and b/data/CTR-KWB/icon.jpg differ diff --git a/data/CTR-KWC/art.jpg b/data/CTR-KWC/art.jpg new file mode 100644 index 0000000..0df60b3 Binary files /dev/null and b/data/CTR-KWC/art.jpg differ diff --git a/data/CTR-KWC/data.yml b/data/CTR-KWC/data.yml new file mode 100644 index 0000000..edb40ab --- /dev/null +++ b/data/CTR-KWC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A7200 + name: SubaraCity + updates: [] +- regions: + - JP + id: 000400000018DA00 + name: スバラシティ + updates: [] +- regions: + - US + id: 00040000001A8100 + name: SubaraCity + updates: [] diff --git a/data/CTR-KWC/icon.jpg b/data/CTR-KWC/icon.jpg new file mode 100644 index 0000000..bcfe51b Binary files /dev/null and b/data/CTR-KWC/icon.jpg differ diff --git a/data/CTR-KWD/art.jpg b/data/CTR-KWD/art.jpg new file mode 100644 index 0000000..1ac09a3 Binary files /dev/null and b/data/CTR-KWD/art.jpg differ diff --git a/data/CTR-KWD/data.yml b/data/CTR-KWD/data.yml new file mode 100644 index 0000000..f30fa04 --- /dev/null +++ b/data/CTR-KWD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013EE00 + name: Woah Dave! + updates: [] diff --git a/data/CTR-KWD/icon.jpg b/data/CTR-KWD/icon.jpg new file mode 100644 index 0000000..fe87e46 Binary files /dev/null and b/data/CTR-KWD/icon.jpg differ diff --git a/data/CTR-KWE/art.jpg b/data/CTR-KWE/art.jpg new file mode 100644 index 0000000..df211c9 Binary files /dev/null and b/data/CTR-KWE/art.jpg differ diff --git a/data/CTR-KWE/data.yml b/data/CTR-KWE/data.yml new file mode 100644 index 0000000..32d16da --- /dev/null +++ b/data/CTR-KWE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A3600 + name: Word Logic by POWGI + updates: [] +- regions: + - US + id: 00040000001A0900 + name: Word Logic by POWGI + updates: [] diff --git a/data/CTR-KWE/icon.jpg b/data/CTR-KWE/icon.jpg new file mode 100644 index 0000000..345002b Binary files /dev/null and b/data/CTR-KWE/icon.jpg differ diff --git a/data/CTR-KWH/art.jpg b/data/CTR-KWH/art.jpg new file mode 100644 index 0000000..75651ba Binary files /dev/null and b/data/CTR-KWH/art.jpg differ diff --git a/data/CTR-KWH/data.yml b/data/CTR-KWH/data.yml new file mode 100644 index 0000000..c4f2933 --- /dev/null +++ b/data/CTR-KWH/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016D000 + name: Witch & Hero 2 + updates: [] +- regions: + - JP + id: 0004000000140800 + name: 魔女と勇者Ⅱ + updates: [] +- regions: + - US + id: 000400000016D600 + name: Witch & Hero 2 + updates: [] diff --git a/data/CTR-KWH/icon.jpg b/data/CTR-KWH/icon.jpg new file mode 100644 index 0000000..d431a44 Binary files /dev/null and b/data/CTR-KWH/icon.jpg differ diff --git a/data/CTR-KWJ/art.jpg b/data/CTR-KWJ/art.jpg new file mode 100644 index 0000000..335f93d Binary files /dev/null and b/data/CTR-KWJ/art.jpg differ diff --git a/data/CTR-KWJ/data.yml b/data/CTR-KWJ/data.yml new file mode 100644 index 0000000..42433f0 --- /dev/null +++ b/data/CTR-KWJ/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A9000 + name: Unlucky Mage + updates: [] +- regions: + - JP + id: 00040000001A4A00 + name: こんな僕が救う世界 + updates: [] +- regions: + - US + id: 00040000001A9700 + name: Unlucky Mage + updates: [] diff --git a/data/CTR-KWJ/icon.jpg b/data/CTR-KWJ/icon.jpg new file mode 100644 index 0000000..75f850d Binary files /dev/null and b/data/CTR-KWJ/icon.jpg differ diff --git a/data/CTR-KWL/art.jpg b/data/CTR-KWL/art.jpg new file mode 100644 index 0000000..f3d4663 Binary files /dev/null and b/data/CTR-KWL/art.jpg differ diff --git a/data/CTR-KWL/data.yml b/data/CTR-KWL/data.yml new file mode 100644 index 0000000..e1282a6 --- /dev/null +++ b/data/CTR-KWL/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000187300 + name: Worcle Worlds + updates: [] +- regions: + - US + id: 0004000000187400 + name: Worcle Worlds + updates: [] diff --git a/data/CTR-KWL/icon.jpg b/data/CTR-KWL/icon.jpg new file mode 100644 index 0000000..e95c1f1 Binary files /dev/null and b/data/CTR-KWL/icon.jpg differ diff --git a/data/CTR-KWM/art.jpg b/data/CTR-KWM/art.jpg new file mode 100644 index 0000000..af5500c Binary files /dev/null and b/data/CTR-KWM/art.jpg differ diff --git a/data/CTR-KWM/data.yml b/data/CTR-KWM/data.yml new file mode 100644 index 0000000..2649821 --- /dev/null +++ b/data/CTR-KWM/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000190A00 + name: めがみめぐり + updates: + - id: 0004000E00190A00 + name: 更新データ Ver. 2.1.0 めがみめぐり diff --git a/data/CTR-KWM/icon.jpg b/data/CTR-KWM/icon.jpg new file mode 100644 index 0000000..4cc8808 Binary files /dev/null and b/data/CTR-KWM/icon.jpg differ diff --git a/data/CTR-KWN/art.jpg b/data/CTR-KWN/art.jpg new file mode 100644 index 0000000..9e13217 Binary files /dev/null and b/data/CTR-KWN/art.jpg differ diff --git a/data/CTR-KWN/data.yml b/data/CTR-KWN/data.yml new file mode 100644 index 0000000..f126c20 --- /dev/null +++ b/data/CTR-KWN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B1800 + name: WORLD END ECONOMiCA Episode.3 + updates: [] diff --git a/data/CTR-KWN/icon.jpg b/data/CTR-KWN/icon.jpg new file mode 100644 index 0000000..29f0232 Binary files /dev/null and b/data/CTR-KWN/icon.jpg differ diff --git a/data/CTR-KWP/art.jpg b/data/CTR-KWP/art.jpg new file mode 100644 index 0000000..22a6b8e Binary files /dev/null and b/data/CTR-KWP/art.jpg differ diff --git a/data/CTR-KWP/data.yml b/data/CTR-KWP/data.yml new file mode 100644 index 0000000..ac3fce0 --- /dev/null +++ b/data/CTR-KWP/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000175800 + name: Word Puzzles by POWGI + updates: + - id: 0004000E00175800 + name: 'Word Puzzles by POWGI: Update' +- regions: + - US + id: 0004000000175B00 + name: Word Puzzles by POWGI + updates: [] diff --git a/data/CTR-KWP/icon.jpg b/data/CTR-KWP/icon.jpg new file mode 100644 index 0000000..26710b0 Binary files /dev/null and b/data/CTR-KWP/icon.jpg differ diff --git a/data/CTR-KWQ/art.jpg b/data/CTR-KWQ/art.jpg new file mode 100644 index 0000000..f3d1ce7 Binary files /dev/null and b/data/CTR-KWQ/art.jpg differ diff --git a/data/CTR-KWQ/data.yml b/data/CTR-KWQ/data.yml new file mode 100644 index 0000000..7d0de43 --- /dev/null +++ b/data/CTR-KWQ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001AC900 + name: WORLD END ECONOMiCA Episode.2 + updates: [] diff --git a/data/CTR-KWQ/icon.jpg b/data/CTR-KWQ/icon.jpg new file mode 100644 index 0000000..d0f1a04 Binary files /dev/null and b/data/CTR-KWQ/icon.jpg differ diff --git a/data/CTR-KWR/art.jpg b/data/CTR-KWR/art.jpg new file mode 100644 index 0000000..f335b57 Binary files /dev/null and b/data/CTR-KWR/art.jpg differ diff --git a/data/CTR-KWR/data.yml b/data/CTR-KWR/data.yml new file mode 100644 index 0000000..7da66d8 --- /dev/null +++ b/data/CTR-KWR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A4000 + name: WORLD END ECONOMiCA Episode.1 + updates: [] diff --git a/data/CTR-KWR/icon.jpg b/data/CTR-KWR/icon.jpg new file mode 100644 index 0000000..0b6eba8 Binary files /dev/null and b/data/CTR-KWR/icon.jpg differ diff --git a/data/CTR-KWS/art.jpg b/data/CTR-KWS/art.jpg new file mode 100644 index 0000000..76fdc3e Binary files /dev/null and b/data/CTR-KWS/art.jpg differ diff --git a/data/CTR-KWS/data.yml b/data/CTR-KWS/data.yml new file mode 100644 index 0000000..78e42a8 --- /dev/null +++ b/data/CTR-KWS/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 000400000013EA00 + name: Comic Workshop + updates: [] diff --git a/data/CTR-KWS/icon.jpg b/data/CTR-KWS/icon.jpg new file mode 100644 index 0000000..15846d7 Binary files /dev/null and b/data/CTR-KWS/icon.jpg differ diff --git a/data/CTR-KWT/art.jpg b/data/CTR-KWT/art.jpg new file mode 100644 index 0000000..a58774f Binary files /dev/null and b/data/CTR-KWT/art.jpg differ diff --git a/data/CTR-KWT/data.yml b/data/CTR-KWT/data.yml new file mode 100644 index 0000000..abcd42d --- /dev/null +++ b/data/CTR-KWT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B1E00 + name: Word Search 10K + updates: [] +- regions: + - US + id: 00040000001B2200 + name: Word Search 10K + updates: [] diff --git a/data/CTR-KWT/icon.jpg b/data/CTR-KWT/icon.jpg new file mode 100644 index 0000000..d68f118 Binary files /dev/null and b/data/CTR-KWT/icon.jpg differ diff --git a/data/CTR-KWV/art.jpg b/data/CTR-KWV/art.jpg new file mode 100644 index 0000000..0696972 Binary files /dev/null and b/data/CTR-KWV/art.jpg differ diff --git a/data/CTR-KWV/data.yml b/data/CTR-KWV/data.yml new file mode 100644 index 0000000..1b10daa --- /dev/null +++ b/data/CTR-KWV/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BCF00 + name: おそ松さん ニート脱出スパイラル!! + updates: + - id: 0004000E001BCF00 + name: 更新データ Ver. 1.1 おそ松さん ニート脱出スパイラル!! diff --git a/data/CTR-KWV/icon.jpg b/data/CTR-KWV/icon.jpg new file mode 100644 index 0000000..eb49e1e Binary files /dev/null and b/data/CTR-KWV/icon.jpg differ diff --git a/data/CTR-KWW/art.jpg b/data/CTR-KWW/art.jpg new file mode 100644 index 0000000..b6c255b Binary files /dev/null and b/data/CTR-KWW/art.jpg differ diff --git a/data/CTR-KWW/data.yml b/data/CTR-KWW/data.yml new file mode 100644 index 0000000..ca24cac --- /dev/null +++ b/data/CTR-KWW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B8400 + name: イモムシウォーズ + updates: [] diff --git a/data/CTR-KWW/icon.jpg b/data/CTR-KWW/icon.jpg new file mode 100644 index 0000000..79dc9b8 Binary files /dev/null and b/data/CTR-KWW/icon.jpg differ diff --git a/data/CTR-KX2/art.jpg b/data/CTR-KX2/art.jpg new file mode 100644 index 0000000..ae8b198 Binary files /dev/null and b/data/CTR-KX2/art.jpg differ diff --git a/data/CTR-KX2/data.yml b/data/CTR-KX2/data.yml new file mode 100644 index 0000000..7565d53 --- /dev/null +++ b/data/CTR-KX2/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C0700 + name: デジコロ ケシカスくん Vol.012 ランドセルサバイバル! + updates: [] diff --git a/data/CTR-KX2/icon.jpg b/data/CTR-KX2/icon.jpg new file mode 100644 index 0000000..fe97b74 Binary files /dev/null and b/data/CTR-KX2/icon.jpg differ diff --git a/data/CTR-KX3/art.jpg b/data/CTR-KX3/art.jpg new file mode 100644 index 0000000..df6791d Binary files /dev/null and b/data/CTR-KX3/art.jpg differ diff --git a/data/CTR-KX3/data.yml b/data/CTR-KX3/data.yml new file mode 100644 index 0000000..f41bce7 --- /dev/null +++ b/data/CTR-KX3/data.yml @@ -0,0 +1,19 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000016D400 + name: 'Excave III : Tower of Destiny' + updates: [] +- regions: + - JP + id: 000400000015DC00 + name: エクスケーブ ~運命の夢幻塔編~ + updates: + - id: 0004000E0015DC00 + name: 更新データ Ver. 1.1 エクスケーブ ~運命の夢幻塔編~ +- regions: + - US + id: 000400000016E000 + name: 'Excave III : Tower of Destiny' + updates: [] diff --git a/data/CTR-KX3/icon.jpg b/data/CTR-KX3/icon.jpg new file mode 100644 index 0000000..ca37c39 Binary files /dev/null and b/data/CTR-KX3/icon.jpg differ diff --git a/data/CTR-KX4/art.jpg b/data/CTR-KX4/art.jpg new file mode 100644 index 0000000..cd96325 Binary files /dev/null and b/data/CTR-KX4/art.jpg differ diff --git a/data/CTR-KX4/data.yml b/data/CTR-KX4/data.yml new file mode 100644 index 0000000..708a91c --- /dev/null +++ b/data/CTR-KX4/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C7300 + name: デジコロ ケシカスくん Vol.013 オトナの遊びに挑戦! + updates: [] diff --git a/data/CTR-KX4/icon.jpg b/data/CTR-KX4/icon.jpg new file mode 100644 index 0000000..7842d56 Binary files /dev/null and b/data/CTR-KX4/icon.jpg differ diff --git a/data/CTR-KX5/art.jpg b/data/CTR-KX5/art.jpg new file mode 100644 index 0000000..004a696 Binary files /dev/null and b/data/CTR-KX5/art.jpg differ diff --git a/data/CTR-KX5/data.yml b/data/CTR-KX5/data.yml new file mode 100644 index 0000000..81261d9 --- /dev/null +++ b/data/CTR-KX5/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001C4700 + name: ザ・ゲーム15 Vol2 + updates: [] diff --git a/data/CTR-KX5/icon.jpg b/data/CTR-KX5/icon.jpg new file mode 100644 index 0000000..141324f Binary files /dev/null and b/data/CTR-KX5/icon.jpg differ diff --git a/data/CTR-KX6/art.jpg b/data/CTR-KX6/art.jpg new file mode 100644 index 0000000..87a3006 Binary files /dev/null and b/data/CTR-KX6/art.jpg differ diff --git a/data/CTR-KX6/data.yml b/data/CTR-KX6/data.yml new file mode 100644 index 0000000..0d248e0 --- /dev/null +++ b/data/CTR-KX6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001CDE00 + name: デジコロ ケシカスくん Vol.014 クセになるお宝探し!! + updates: [] diff --git a/data/CTR-KX6/icon.jpg b/data/CTR-KX6/icon.jpg new file mode 100644 index 0000000..39f763b Binary files /dev/null and b/data/CTR-KX6/icon.jpg differ diff --git a/data/CTR-KXC/art.jpg b/data/CTR-KXC/art.jpg new file mode 100644 index 0000000..4551f32 Binary files /dev/null and b/data/CTR-KXC/art.jpg differ diff --git a/data/CTR-KXC/data.yml b/data/CTR-KXC/data.yml new file mode 100644 index 0000000..7702233 --- /dev/null +++ b/data/CTR-KXC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000014C600 + name: Smash Controller + updates: [] +- regions: + - JP + id: 000400000014C400 + name: スマブラコントローラー + updates: [] +- regions: + - US + id: 000400000014C500 + name: Smash Controller + updates: [] diff --git a/data/CTR-KXC/icon.jpg b/data/CTR-KXC/icon.jpg new file mode 100644 index 0000000..8d821b3 Binary files /dev/null and b/data/CTR-KXC/icon.jpg differ diff --git a/data/CTR-KXE/art.jpg b/data/CTR-KXE/art.jpg new file mode 100644 index 0000000..70ed12c Binary files /dev/null and b/data/CTR-KXE/art.jpg differ diff --git a/data/CTR-KXE/data.yml b/data/CTR-KXE/data.yml new file mode 100644 index 0000000..15d2690 --- /dev/null +++ b/data/CTR-KXE/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000172000 + name: Xeodrifter + updates: [] +- regions: + - US + id: 000400000014D600 + name: Xeodrifter™ + updates: [] diff --git a/data/CTR-KXE/icon.jpg b/data/CTR-KXE/icon.jpg new file mode 100644 index 0000000..27e2d25 Binary files /dev/null and b/data/CTR-KXE/icon.jpg differ diff --git a/data/CTR-KXN/art.jpg b/data/CTR-KXN/art.jpg new file mode 100644 index 0000000..3dd9977 Binary files /dev/null and b/data/CTR-KXN/art.jpg differ diff --git a/data/CTR-KXN/data.yml b/data/CTR-KXN/data.yml new file mode 100644 index 0000000..0abe9bc --- /dev/null +++ b/data/CTR-KXN/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000013D100 + name: ドラゴンクエストⅩ オンライン + updates: [] diff --git a/data/CTR-KXN/icon.jpg b/data/CTR-KXN/icon.jpg new file mode 100644 index 0000000..1edd8c8 Binary files /dev/null and b/data/CTR-KXN/icon.jpg differ diff --git a/data/CTR-KXP/art.jpg b/data/CTR-KXP/art.jpg new file mode 100644 index 0000000..5585070 Binary files /dev/null and b/data/CTR-KXP/art.jpg differ diff --git a/data/CTR-KXP/data.yml b/data/CTR-KXP/data.yml new file mode 100644 index 0000000..af3dd36 --- /dev/null +++ b/data/CTR-KXP/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000189900 + name: 対戦パズドラクロス + updates: + - id: 0004000E00189900 + name: 更新データ Ver. 4.0 対戦パズドラクロス diff --git a/data/CTR-KXP/icon.jpg b/data/CTR-KXP/icon.jpg new file mode 100644 index 0000000..acecb56 Binary files /dev/null and b/data/CTR-KXP/icon.jpg differ diff --git a/data/CTR-KXR/art.jpg b/data/CTR-KXR/art.jpg new file mode 100644 index 0000000..425f5fa Binary files /dev/null and b/data/CTR-KXR/art.jpg differ diff --git a/data/CTR-KXR/data.yml b/data/CTR-KXR/data.yml new file mode 100644 index 0000000..c85568c --- /dev/null +++ b/data/CTR-KXR/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B6200 + name: デジコロ ケシカスくん Vol.010 爆走!ラジコンレース + updates: [] diff --git a/data/CTR-KXR/icon.jpg b/data/CTR-KXR/icon.jpg new file mode 100644 index 0000000..fc32785 Binary files /dev/null and b/data/CTR-KXR/icon.jpg differ diff --git a/data/CTR-KXS/art.jpg b/data/CTR-KXS/art.jpg new file mode 100644 index 0000000..0c89b0a Binary files /dev/null and b/data/CTR-KXS/art.jpg differ diff --git a/data/CTR-KXS/data.yml b/data/CTR-KXS/data.yml new file mode 100644 index 0000000..d2ce23a --- /dev/null +++ b/data/CTR-KXS/data.yml @@ -0,0 +1,9 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000141D00 + name: 大合奏!バンドブラザーズP デビュー + updates: + - id: 0004000E00141D00 + name: 更新データ Ver. 1.2 大合奏!バンドブラザーズP デビュー diff --git a/data/CTR-KXS/icon.jpg b/data/CTR-KXS/icon.jpg new file mode 100644 index 0000000..dd9db11 Binary files /dev/null and b/data/CTR-KXS/icon.jpg differ diff --git a/data/CTR-KY3/art.jpg b/data/CTR-KY3/art.jpg new file mode 100644 index 0000000..8580ec8 Binary files /dev/null and b/data/CTR-KY3/art.jpg differ diff --git a/data/CTR-KY3/data.yml b/data/CTR-KY3/data.yml new file mode 100644 index 0000000..1b07ea7 --- /dev/null +++ b/data/CTR-KY3/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000187A00 + name: 3D ぷよぷよ通 + updates: [] diff --git a/data/CTR-KY3/icon.jpg b/data/CTR-KY3/icon.jpg new file mode 100644 index 0000000..367907b Binary files /dev/null and b/data/CTR-KY3/icon.jpg differ diff --git a/data/CTR-KY6/art.jpg b/data/CTR-KY6/art.jpg new file mode 100644 index 0000000..375d155 Binary files /dev/null and b/data/CTR-KY6/art.jpg differ diff --git a/data/CTR-KY6/data.yml b/data/CTR-KY6/data.yml new file mode 100644 index 0000000..8755c28 --- /dev/null +++ b/data/CTR-KY6/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A1100 + name: デジコロ ケシカスくん Vol.001 貫け!ちくわ道! + updates: [] diff --git a/data/CTR-KY6/icon.jpg b/data/CTR-KY6/icon.jpg new file mode 100644 index 0000000..8690558 Binary files /dev/null and b/data/CTR-KY6/icon.jpg differ diff --git a/data/CTR-KY7/art.jpg b/data/CTR-KY7/art.jpg new file mode 100644 index 0000000..87e5ab2 Binary files /dev/null and b/data/CTR-KY7/art.jpg differ diff --git a/data/CTR-KY7/data.yml b/data/CTR-KY7/data.yml new file mode 100644 index 0000000..e530d34 --- /dev/null +++ b/data/CTR-KY7/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A1200 + name: デジコロ ケシカスくん Vol.002 あの文具と真剣勝負!? + updates: [] diff --git a/data/CTR-KY7/icon.jpg b/data/CTR-KY7/icon.jpg new file mode 100644 index 0000000..3f10001 Binary files /dev/null and b/data/CTR-KY7/icon.jpg differ diff --git a/data/CTR-KY8/art.jpg b/data/CTR-KY8/art.jpg new file mode 100644 index 0000000..60fe6c0 Binary files /dev/null and b/data/CTR-KY8/art.jpg differ diff --git a/data/CTR-KY8/data.yml b/data/CTR-KY8/data.yml new file mode 100644 index 0000000..3503490 --- /dev/null +++ b/data/CTR-KY8/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A1300 + name: デジコロ ケシカスくん Vol.004 決死のフライに挑め! + updates: [] diff --git a/data/CTR-KY8/icon.jpg b/data/CTR-KY8/icon.jpg new file mode 100644 index 0000000..8ca7055 Binary files /dev/null and b/data/CTR-KY8/icon.jpg differ diff --git a/data/CTR-KY9/art.jpg b/data/CTR-KY9/art.jpg new file mode 100644 index 0000000..db900fe Binary files /dev/null and b/data/CTR-KY9/art.jpg differ diff --git a/data/CTR-KY9/data.yml b/data/CTR-KY9/data.yml new file mode 100644 index 0000000..051af9a --- /dev/null +++ b/data/CTR-KY9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001A1400 + name: デジコロ ケシカスくん Vol.003 よっちゃんの不思議な釣り!? + updates: [] diff --git a/data/CTR-KY9/icon.jpg b/data/CTR-KY9/icon.jpg new file mode 100644 index 0000000..18069b0 Binary files /dev/null and b/data/CTR-KY9/icon.jpg differ diff --git a/data/CTR-KYA/art.jpg b/data/CTR-KYA/art.jpg new file mode 100644 index 0000000..ab0f2b2 Binary files /dev/null and b/data/CTR-KYA/art.jpg differ diff --git a/data/CTR-KYA/data.yml b/data/CTR-KYA/data.yml new file mode 100644 index 0000000..f60f133 --- /dev/null +++ b/data/CTR-KYA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000015F700 + name: ぼくらの七日間戦争 ~友情アドベンチャー~ + updates: [] diff --git a/data/CTR-KYA/icon.jpg b/data/CTR-KYA/icon.jpg new file mode 100644 index 0000000..938e9cc Binary files /dev/null and b/data/CTR-KYA/icon.jpg differ diff --git a/data/CTR-KYB/art.jpg b/data/CTR-KYB/art.jpg new file mode 100644 index 0000000..72c7bb1 Binary files /dev/null and b/data/CTR-KYB/art.jpg differ diff --git a/data/CTR-KYB/data.yml b/data/CTR-KYB/data.yml new file mode 100644 index 0000000..de8e748 --- /dev/null +++ b/data/CTR-KYB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001B1F00 + name: Sudoku Party + updates: [] +- regions: + - JP + id: 00040000001C3500 + name: みんなでナンプレ + updates: [] +- regions: + - US + id: 00040000001B2000 + name: Sudoku Party + updates: [] diff --git a/data/CTR-KYB/icon.jpg b/data/CTR-KYB/icon.jpg new file mode 100644 index 0000000..e232512 Binary files /dev/null and b/data/CTR-KYB/icon.jpg differ diff --git a/data/CTR-KYD/art.jpg b/data/CTR-KYD/art.jpg new file mode 100644 index 0000000..7c5251e Binary files /dev/null and b/data/CTR-KYD/art.jpg differ diff --git a/data/CTR-KYD/data.yml b/data/CTR-KYD/data.yml new file mode 100644 index 0000000..1501bdc --- /dev/null +++ b/data/CTR-KYD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000188500 + name: 遊戯王 最強カードバトル! + updates: [] diff --git a/data/CTR-KYD/icon.jpg b/data/CTR-KYD/icon.jpg new file mode 100644 index 0000000..afa4d67 Binary files /dev/null and b/data/CTR-KYD/icon.jpg differ diff --git a/data/CTR-KYP/art.jpg b/data/CTR-KYP/art.jpg new file mode 100644 index 0000000..0277142 Binary files /dev/null and b/data/CTR-KYP/art.jpg differ diff --git a/data/CTR-KYP/data.yml b/data/CTR-KYP/data.yml new file mode 100644 index 0000000..30a384e --- /dev/null +++ b/data/CTR-KYP/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000144B00 + name: Ultimate Poker & BlackJack + updates: [] diff --git a/data/CTR-KYP/icon.jpg b/data/CTR-KYP/icon.jpg new file mode 100644 index 0000000..9c8bf26 Binary files /dev/null and b/data/CTR-KYP/icon.jpg differ diff --git a/data/CTR-KZC/art.jpg b/data/CTR-KZC/art.jpg new file mode 100644 index 0000000..c1d8071 Binary files /dev/null and b/data/CTR-KZC/art.jpg differ diff --git a/data/CTR-KZC/data.yml b/data/CTR-KZC/data.yml new file mode 100644 index 0000000..38ebd17 --- /dev/null +++ b/data/CTR-KZC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001B6700 + name: ねむネコ パズルでも寝ています + updates: [] diff --git a/data/CTR-KZC/icon.jpg b/data/CTR-KZC/icon.jpg new file mode 100644 index 0000000..a573e62 Binary files /dev/null and b/data/CTR-KZC/icon.jpg differ diff --git a/data/CTR-KZE/art.jpg b/data/CTR-KZE/art.jpg new file mode 100644 index 0000000..f452e81 Binary files /dev/null and b/data/CTR-KZE/art.jpg differ diff --git a/data/CTR-KZE/data.yml b/data/CTR-KZE/data.yml new file mode 100644 index 0000000..fc18b80 --- /dev/null +++ b/data/CTR-KZE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001BBC00 + name: 1000m ゾンビエスケープ! + updates: [] diff --git a/data/CTR-KZE/icon.jpg b/data/CTR-KZE/icon.jpg new file mode 100644 index 0000000..2f69034 Binary files /dev/null and b/data/CTR-KZE/icon.jpg differ diff --git a/data/CTR-KZP/art.jpg b/data/CTR-KZP/art.jpg new file mode 100644 index 0000000..4fcc078 Binary files /dev/null and b/data/CTR-KZP/art.jpg differ diff --git a/data/CTR-KZP/data.yml b/data/CTR-KZP/data.yml new file mode 100644 index 0000000..aee51b9 --- /dev/null +++ b/data/CTR-KZP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001A9800 + name: PixelMaker + updates: [] +- regions: + - JP + id: 00040000001BF300 + name: ドットアーティスト + updates: [] +- regions: + - US + id: 00040000001A6700 + name: PixelMaker + updates: [] diff --git a/data/CTR-KZP/icon.jpg b/data/CTR-KZP/icon.jpg new file mode 100644 index 0000000..7a267d6 Binary files /dev/null and b/data/CTR-KZP/icon.jpg differ diff --git a/data/CTR-KZS/art.jpg b/data/CTR-KZS/art.jpg new file mode 100644 index 0000000..882803a Binary files /dev/null and b/data/CTR-KZS/art.jpg differ diff --git a/data/CTR-KZS/data.yml b/data/CTR-KZS/data.yml new file mode 100644 index 0000000..2e5a622 --- /dev/null +++ b/data/CTR-KZS/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000199700 + name: Ice Station Z + updates: [] +- regions: + - JP + id: 00040000001BEA00 + name: Ice Station Z + updates: [] +- regions: + - US + id: 0004000000190300 + name: Ice Station Z + updates: [] diff --git a/data/CTR-KZS/icon.jpg b/data/CTR-KZS/icon.jpg new file mode 100644 index 0000000..0c31a09 Binary files /dev/null and b/data/CTR-KZS/icon.jpg differ diff --git a/data/CTR-KZV/art.jpg b/data/CTR-KZV/art.jpg new file mode 100644 index 0000000..955a564 Binary files /dev/null and b/data/CTR-KZV/art.jpg differ diff --git a/data/CTR-KZV/data.yml b/data/CTR-KZV/data.yml new file mode 100644 index 0000000..3a76843 --- /dev/null +++ b/data/CTR-KZV/data.yml @@ -0,0 +1,23 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001BC300 + name: Blaster Master Zero + updates: + - id: 0004000E001BC300 + name: 'Blaster Master Zero: Update' +- regions: + - JP + id: 00040000001B5700 + name: ブラスターマスター ゼロ + updates: + - id: 0004000E001B5700 + name: 更新データ Ver. 1.4.1 ブラスターマスター ゼロ +- regions: + - US + id: 00040000001BD000 + name: Blaster Master Zero + updates: + - id: 0004000E001BD000 + name: Blaster Master Zero Update Ver. 1.4.1 diff --git a/data/CTR-KZV/icon.jpg b/data/CTR-KZV/icon.jpg new file mode 100644 index 0000000..cad0438 Binary files /dev/null and b/data/CTR-KZV/icon.jpg differ diff --git a/data/CTR-KZZ/art.jpg b/data/CTR-KZZ/art.jpg new file mode 100644 index 0000000..b859e44 Binary files /dev/null and b/data/CTR-KZZ/art.jpg differ diff --git a/data/CTR-KZZ/data.yml b/data/CTR-KZZ/data.yml new file mode 100644 index 0000000..aa346ab --- /dev/null +++ b/data/CTR-KZZ/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CB900 + name: Monster Hunter Stories™ Demo + updates: [] +- regions: + - US + id: 00040000001CB800 + name: MONSTER HUNTER STORIES™ Demo + updates: [] diff --git a/data/CTR-KZZ/icon.jpg b/data/CTR-KZZ/icon.jpg new file mode 100644 index 0000000..92eeba1 Binary files /dev/null and b/data/CTR-KZZ/icon.jpg differ diff --git a/data/CTR-L5W/art.jpg b/data/CTR-L5W/art.jpg new file mode 100644 index 0000000..3fe68dc Binary files /dev/null and b/data/CTR-L5W/art.jpg differ diff --git a/data/CTR-L5W/data.yml b/data/CTR-L5W/data.yml new file mode 100644 index 0000000..f8c6578 --- /dev/null +++ b/data/CTR-L5W/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DCA00 + name: Bricks Pinball + updates: [] diff --git a/data/CTR-L5W/icon.jpg b/data/CTR-L5W/icon.jpg new file mode 100644 index 0000000..492f1d5 Binary files /dev/null and b/data/CTR-L5W/icon.jpg differ diff --git a/data/CTR-L7F/art.jpg b/data/CTR-L7F/art.jpg new file mode 100644 index 0000000..02027b0 Binary files /dev/null and b/data/CTR-L7F/art.jpg differ diff --git a/data/CTR-L7F/data.yml b/data/CTR-L7F/data.yml new file mode 100644 index 0000000..015c19e --- /dev/null +++ b/data/CTR-L7F/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DBF00 + name: Tinboy + updates: [] diff --git a/data/CTR-L7F/icon.jpg b/data/CTR-L7F/icon.jpg new file mode 100644 index 0000000..65f3cb1 Binary files /dev/null and b/data/CTR-L7F/icon.jpg differ diff --git a/data/CTR-LAB/art.jpg b/data/CTR-LAB/art.jpg new file mode 100644 index 0000000..a0c89eb Binary files /dev/null and b/data/CTR-LAB/art.jpg differ diff --git a/data/CTR-LAB/data.yml b/data/CTR-LAB/data.yml new file mode 100644 index 0000000..2e475d9 --- /dev/null +++ b/data/CTR-LAB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001DA600 + name: Fatal Fracture + updates: [] +- regions: + - US + id: 00040000001DB100 + name: Fatal Fracture + updates: [] diff --git a/data/CTR-LAB/icon.jpg b/data/CTR-LAB/icon.jpg new file mode 100644 index 0000000..213abec Binary files /dev/null and b/data/CTR-LAB/icon.jpg differ diff --git a/data/CTR-LAP/art.jpg b/data/CTR-LAP/art.jpg new file mode 100644 index 0000000..ea0cfd4 Binary files /dev/null and b/data/CTR-LAP/art.jpg differ diff --git a/data/CTR-LAP/data.yml b/data/CTR-LAP/data.yml new file mode 100644 index 0000000..a88b51c --- /dev/null +++ b/data/CTR-LAP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001C9F00 + name: Little Adventure on the Prairie + updates: [] +- regions: + - US + id: 00040000001C9200 + name: Little Adventure on the Prairie + updates: [] diff --git a/data/CTR-LAP/icon.jpg b/data/CTR-LAP/icon.jpg new file mode 100644 index 0000000..d27ec25 Binary files /dev/null and b/data/CTR-LAP/icon.jpg differ diff --git a/data/CTR-LBP/art.jpg b/data/CTR-LBP/art.jpg new file mode 100644 index 0000000..fc8131d Binary files /dev/null and b/data/CTR-LBP/art.jpg differ diff --git a/data/CTR-LBP/data.yml b/data/CTR-LBP/data.yml new file mode 100644 index 0000000..aca1413 --- /dev/null +++ b/data/CTR-LBP/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D2C00 + name: Block-a-Pix Colour + updates: [] +- regions: + - JP + id: 00040000001D3200 + name: スクエアピクト Block-a-Pix + updates: [] +- regions: + - US + id: 00040000001D3000 + name: Block-a-Pix Color + updates: [] diff --git a/data/CTR-LBP/icon.jpg b/data/CTR-LBP/icon.jpg new file mode 100644 index 0000000..8173b48 Binary files /dev/null and b/data/CTR-LBP/icon.jpg differ diff --git a/data/CTR-LDR/art.jpg b/data/CTR-LDR/art.jpg new file mode 100644 index 0000000..fdce9d2 Binary files /dev/null and b/data/CTR-LDR/art.jpg differ diff --git a/data/CTR-LDR/data.yml b/data/CTR-LDR/data.yml new file mode 100644 index 0000000..d892a49 --- /dev/null +++ b/data/CTR-LDR/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D2F00 + name: Dragon Lapis + updates: [] +- regions: + - JP + id: 00040000001D2300 + name: ドラゴンラピス + updates: [] +- regions: + - US + id: 00040000001D3500 + name: Dragon Lapis + updates: [] diff --git a/data/CTR-LDR/icon.jpg b/data/CTR-LDR/icon.jpg new file mode 100644 index 0000000..ee9f205 Binary files /dev/null and b/data/CTR-LDR/icon.jpg differ diff --git a/data/CTR-LDW/art.jpg b/data/CTR-LDW/art.jpg new file mode 100644 index 0000000..e06dcb5 Binary files /dev/null and b/data/CTR-LDW/art.jpg differ diff --git a/data/CTR-LDW/data.yml b/data/CTR-LDW/data.yml new file mode 100644 index 0000000..37596c9 --- /dev/null +++ b/data/CTR-LDW/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000001D4C00 + name: Dragon's Wrath + updates: [] diff --git a/data/CTR-LDW/icon.jpg b/data/CTR-LDW/icon.jpg new file mode 100644 index 0000000..9b65121 Binary files /dev/null and b/data/CTR-LDW/icon.jpg differ diff --git a/data/CTR-LFD/art.jpg b/data/CTR-LFD/art.jpg new file mode 100644 index 0000000..dacada7 Binary files /dev/null and b/data/CTR-LFD/art.jpg differ diff --git a/data/CTR-LFD/data.yml b/data/CTR-LFD/data.yml new file mode 100644 index 0000000..8878ede --- /dev/null +++ b/data/CTR-LFD/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D0300 + name: Fat Dragons + updates: [] +- regions: + - US + id: 00040000001CFA00 + name: Fat Dragons + updates: [] diff --git a/data/CTR-LFD/icon.jpg b/data/CTR-LFD/icon.jpg new file mode 100644 index 0000000..839740d Binary files /dev/null and b/data/CTR-LFD/icon.jpg differ diff --git a/data/CTR-LP9/art.jpg b/data/CTR-LP9/art.jpg new file mode 100644 index 0000000..4b20df4 Binary files /dev/null and b/data/CTR-LP9/art.jpg differ diff --git a/data/CTR-LP9/data.yml b/data/CTR-LP9/data.yml new file mode 100644 index 0000000..a13586c --- /dev/null +++ b/data/CTR-LP9/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001D5300 + name: ピクロスe9 + updates: [] diff --git a/data/CTR-LP9/icon.jpg b/data/CTR-LP9/icon.jpg new file mode 100644 index 0000000..9d0f3ee Binary files /dev/null and b/data/CTR-LP9/icon.jpg differ diff --git a/data/CTR-LPB/art.jpg b/data/CTR-LPB/art.jpg new file mode 100644 index 0000000..f6998bd Binary files /dev/null and b/data/CTR-LPB/art.jpg differ diff --git a/data/CTR-LPB/data.yml b/data/CTR-LPB/data.yml new file mode 100644 index 0000000..76c4afa --- /dev/null +++ b/data/CTR-LPB/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D8700 + name: Pinball Breaker + updates: [] +- regions: + - US + id: 00040000001D8900 + name: Pinball Breaker + updates: [] diff --git a/data/CTR-LPB/icon.jpg b/data/CTR-LPB/icon.jpg new file mode 100644 index 0000000..8399c72 Binary files /dev/null and b/data/CTR-LPB/icon.jpg differ diff --git a/data/CTR-LPC/art.jpg b/data/CTR-LPC/art.jpg new file mode 100644 index 0000000..8d1dc4e Binary files /dev/null and b/data/CTR-LPC/art.jpg differ diff --git a/data/CTR-LPC/data.yml b/data/CTR-LPC/data.yml new file mode 100644 index 0000000..2b93041 --- /dev/null +++ b/data/CTR-LPC/data.yml @@ -0,0 +1,16 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D0E00 + name: Link-a-Pix Colour + updates: + - id: 0004000E001D0E00 + name: 'Link-a-Pix Colour: Update' +- regions: + - US + id: 00040000001D1300 + name: Link-a-Pix Color + updates: + - id: 0004000E001D1300 + name: Link-a-Pix Color Update Ver. 1.01 diff --git a/data/CTR-LPC/icon.jpg b/data/CTR-LPC/icon.jpg new file mode 100644 index 0000000..32635c2 Binary files /dev/null and b/data/CTR-LPC/icon.jpg differ diff --git a/data/CTR-LPD/art.jpg b/data/CTR-LPD/art.jpg new file mode 100644 index 0000000..158ba8e Binary files /dev/null and b/data/CTR-LPD/art.jpg differ diff --git a/data/CTR-LPD/data.yml b/data/CTR-LPD/data.yml new file mode 100644 index 0000000..dbee7a4 --- /dev/null +++ b/data/CTR-LPD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000001D4100 + name: PDI Check + updates: [] diff --git a/data/CTR-LPD/icon.jpg b/data/CTR-LPD/icon.jpg new file mode 100644 index 0000000..80df3ac Binary files /dev/null and b/data/CTR-LPD/icon.jpg differ diff --git a/data/CTR-LPE/art.jpg b/data/CTR-LPE/art.jpg new file mode 100644 index 0000000..b486418 Binary files /dev/null and b/data/CTR-LPE/art.jpg differ diff --git a/data/CTR-LPE/data.yml b/data/CTR-LPE/data.yml new file mode 100644 index 0000000..510124b --- /dev/null +++ b/data/CTR-LPE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000001D1700 + name: リンク絵 Link-a-Pix + updates: [] diff --git a/data/CTR-LPE/icon.jpg b/data/CTR-LPE/icon.jpg new file mode 100644 index 0000000..8a687a9 Binary files /dev/null and b/data/CTR-LPE/icon.jpg differ diff --git a/data/CTR-LPF/art.jpg b/data/CTR-LPF/art.jpg new file mode 100644 index 0000000..cfc85ee Binary files /dev/null and b/data/CTR-LPF/art.jpg differ diff --git a/data/CTR-LPF/data.yml b/data/CTR-LPF/data.yml new file mode 100644 index 0000000..7e91cc6 --- /dev/null +++ b/data/CTR-LPF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001CCB00 + name: Phil's Epic Fill-a-Pix Adventure + updates: [] +- regions: + - JP + id: 00040000001CFF00 + name: モザイクアート Fill-a-Pix + updates: [] +- regions: + - US + id: 00040000001CCF00 + name: Phil's Epic Fill-a-Pix Adventure + updates: [] diff --git a/data/CTR-LPF/icon.jpg b/data/CTR-LPF/icon.jpg new file mode 100644 index 0000000..452cd37 Binary files /dev/null and b/data/CTR-LPF/icon.jpg differ diff --git a/data/CTR-LQP/art.jpg b/data/CTR-LQP/art.jpg new file mode 100644 index 0000000..0505a54 Binary files /dev/null and b/data/CTR-LQP/art.jpg differ diff --git a/data/CTR-LQP/data.yml b/data/CTR-LQP/data.yml new file mode 100644 index 0000000..29a5f80 --- /dev/null +++ b/data/CTR-LQP/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D7A00 + name: Quarters, Please! + updates: [] +- regions: + - US + id: 00040000001D5A00 + name: Quarters, Please! + updates: [] diff --git a/data/CTR-LQP/icon.jpg b/data/CTR-LQP/icon.jpg new file mode 100644 index 0000000..4dec7d6 Binary files /dev/null and b/data/CTR-LQP/icon.jpg differ diff --git a/data/CTR-LR3/art.jpg b/data/CTR-LR3/art.jpg new file mode 100644 index 0000000..bfb52ca Binary files /dev/null and b/data/CTR-LR3/art.jpg differ diff --git a/data/CTR-LR3/data.yml b/data/CTR-LR3/data.yml new file mode 100644 index 0000000..5532f25 --- /dev/null +++ b/data/CTR-LR3/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D7F00 + name: RTO 3 + updates: [] +- regions: + - US + id: 00040000001D8100 + name: RTO 3 + updates: [] diff --git a/data/CTR-LR3/icon.jpg b/data/CTR-LR3/icon.jpg new file mode 100644 index 0000000..121ba97 Binary files /dev/null and b/data/CTR-LR3/icon.jpg differ diff --git a/data/CTR-LRS/art.jpg b/data/CTR-LRS/art.jpg new file mode 100644 index 0000000..d4a9d0e Binary files /dev/null and b/data/CTR-LRS/art.jpg differ diff --git a/data/CTR-LRS/data.yml b/data/CTR-LRS/data.yml new file mode 100644 index 0000000..bcab9e6 --- /dev/null +++ b/data/CTR-LRS/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D3800 + name: Rainbow Snake + updates: [] +- regions: + - US + id: 00040000001D3F00 + name: Rainbow Snake + updates: [] diff --git a/data/CTR-LRS/icon.jpg b/data/CTR-LRS/icon.jpg new file mode 100644 index 0000000..914659c Binary files /dev/null and b/data/CTR-LRS/icon.jpg differ diff --git a/data/CTR-LSA/art.jpg b/data/CTR-LSA/art.jpg new file mode 100644 index 0000000..3b72d0a Binary files /dev/null and b/data/CTR-LSA/art.jpg differ diff --git a/data/CTR-LSA/data.yml b/data/CTR-LSA/data.yml new file mode 100644 index 0000000..c5b8dab --- /dev/null +++ b/data/CTR-LSA/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D8300 + name: Azure Snake + updates: [] +- regions: + - US + id: 00040000001D8400 + name: Azure Snake + updates: [] diff --git a/data/CTR-LSA/icon.jpg b/data/CTR-LSA/icon.jpg new file mode 100644 index 0000000..431c738 Binary files /dev/null and b/data/CTR-LSA/icon.jpg differ diff --git a/data/CTR-LSC/art.jpg b/data/CTR-LSC/art.jpg new file mode 100644 index 0000000..ae1675b Binary files /dev/null and b/data/CTR-LSC/art.jpg differ diff --git a/data/CTR-LSC/data.yml b/data/CTR-LSC/data.yml new file mode 100644 index 0000000..53efd7b --- /dev/null +++ b/data/CTR-LSC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D3100 + name: Sanrio characters Picross + updates: [] +- regions: + - JP + id: 00040000001D2A00 + name: サンリオキャラクターズピクロス + updates: [] +- regions: + - US + id: 00040000001D3400 + name: Sanrio characters Picross + updates: [] diff --git a/data/CTR-LSC/icon.jpg b/data/CTR-LSC/icon.jpg new file mode 100644 index 0000000..d9e46d7 Binary files /dev/null and b/data/CTR-LSC/icon.jpg differ diff --git a/data/CTR-LSG/art.jpg b/data/CTR-LSG/art.jpg new file mode 100644 index 0000000..e9b0311 Binary files /dev/null and b/data/CTR-LSG/art.jpg differ diff --git a/data/CTR-LSG/data.yml b/data/CTR-LSG/data.yml new file mode 100644 index 0000000..32ed715 --- /dev/null +++ b/data/CTR-LSG/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D3E00 + name: SPACE DEFENDER BATTLE INFINITY + updates: [] +- regions: + - US + id: 00040000001D2700 + name: SPACE DEFENDER + updates: [] diff --git a/data/CTR-LSG/icon.jpg b/data/CTR-LSG/icon.jpg new file mode 100644 index 0000000..6027767 Binary files /dev/null and b/data/CTR-LSG/icon.jpg differ diff --git a/data/CTR-LST/art.jpg b/data/CTR-LST/art.jpg new file mode 100644 index 0000000..2627dcd Binary files /dev/null and b/data/CTR-LST/art.jpg differ diff --git a/data/CTR-LST/data.yml b/data/CTR-LST/data.yml new file mode 100644 index 0000000..a12c71b --- /dev/null +++ b/data/CTR-LST/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D9C00 + name: Squarcat + updates: [] +- regions: + - US + id: 00040000001D9D00 + name: Squarcat + updates: [] diff --git a/data/CTR-LST/icon.jpg b/data/CTR-LST/icon.jpg new file mode 100644 index 0000000..036a3ab Binary files /dev/null and b/data/CTR-LST/icon.jpg differ diff --git a/data/CTR-LTT/art.jpg b/data/CTR-LTT/art.jpg new file mode 100644 index 0000000..cdb7605 Binary files /dev/null and b/data/CTR-LTT/art.jpg differ diff --git a/data/CTR-LTT/data.yml b/data/CTR-LTT/data.yml new file mode 100644 index 0000000..32646a3 --- /dev/null +++ b/data/CTR-LTT/data.yml @@ -0,0 +1,12 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 00040000001D8F00 + name: Tank Onslaught + updates: [] +- regions: + - US + id: 00040000001D9000 + name: Tank Onslaught + updates: [] diff --git a/data/CTR-LTT/icon.jpg b/data/CTR-LTT/icon.jpg new file mode 100644 index 0000000..5ecaf22 Binary files /dev/null and b/data/CTR-LTT/icon.jpg differ diff --git a/data/CTR-MA8/art.jpg b/data/CTR-MA8/art.jpg new file mode 100644 index 0000000..2f623c6 Binary files /dev/null and b/data/CTR-MA8/art.jpg differ diff --git a/data/CTR-MA8/data.yml b/data/CTR-MA8/data.yml new file mode 100644 index 0000000..faaa3e6 --- /dev/null +++ b/data/CTR-MA8/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000C5A00 + name: 'The 3D Machine Series: Episode 1' + updates: [] diff --git a/data/CTR-MA8/icon.jpg b/data/CTR-MA8/icon.jpg new file mode 100644 index 0000000..c928272 Binary files /dev/null and b/data/CTR-MA8/icon.jpg differ diff --git a/data/CTR-MA9/art.jpg b/data/CTR-MA9/art.jpg new file mode 100644 index 0000000..05109c7 Binary files /dev/null and b/data/CTR-MA9/art.jpg differ diff --git a/data/CTR-MA9/data.yml b/data/CTR-MA9/data.yml new file mode 100644 index 0000000..64a1a04 --- /dev/null +++ b/data/CTR-MA9/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000C5B00 + name: 'The 3D Machine Series: Episode 2' + updates: [] diff --git a/data/CTR-MA9/icon.jpg b/data/CTR-MA9/icon.jpg new file mode 100644 index 0000000..c1afc0b Binary files /dev/null and b/data/CTR-MA9/icon.jpg differ diff --git a/data/CTR-MAA/art.jpg b/data/CTR-MAA/art.jpg new file mode 100644 index 0000000..92ac553 Binary files /dev/null and b/data/CTR-MAA/art.jpg differ diff --git a/data/CTR-MAA/data.yml b/data/CTR-MAA/data.yml new file mode 100644 index 0000000..60f7f45 --- /dev/null +++ b/data/CTR-MAA/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 0004000000096F00 + name: The 3D Machine + updates: [] diff --git a/data/CTR-MAA/icon.jpg b/data/CTR-MAA/icon.jpg new file mode 100644 index 0000000..54143de Binary files /dev/null and b/data/CTR-MAA/icon.jpg differ diff --git a/data/CTR-MAJ/art.jpg b/data/CTR-MAJ/art.jpg new file mode 100644 index 0000000..dcc7fcd Binary files /dev/null and b/data/CTR-MAJ/art.jpg differ diff --git a/data/CTR-MAJ/data.yml b/data/CTR-MAJ/data.yml new file mode 100644 index 0000000..4ebf3fe --- /dev/null +++ b/data/CTR-MAJ/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000AA000 + name: ひつじのショーン3D 第1巻 + updates: [] diff --git a/data/CTR-MAJ/icon.jpg b/data/CTR-MAJ/icon.jpg new file mode 100644 index 0000000..baa231b Binary files /dev/null and b/data/CTR-MAJ/icon.jpg differ diff --git a/data/CTR-MAK/art.jpg b/data/CTR-MAK/art.jpg new file mode 100644 index 0000000..70632d1 Binary files /dev/null and b/data/CTR-MAK/art.jpg differ diff --git a/data/CTR-MAK/data.yml b/data/CTR-MAK/data.yml new file mode 100644 index 0000000..d5652aa --- /dev/null +++ b/data/CTR-MAK/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000AA300 + name: ひつじのショーン3D 第2巻 + updates: [] diff --git a/data/CTR-MAK/icon.jpg b/data/CTR-MAK/icon.jpg new file mode 100644 index 0000000..af3fd6b Binary files /dev/null and b/data/CTR-MAK/icon.jpg differ diff --git a/data/CTR-MAL/art.jpg b/data/CTR-MAL/art.jpg new file mode 100644 index 0000000..6b9df38 Binary files /dev/null and b/data/CTR-MAL/art.jpg differ diff --git a/data/CTR-MAL/data.yml b/data/CTR-MAL/data.yml new file mode 100644 index 0000000..64b2485 --- /dev/null +++ b/data/CTR-MAL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000AA400 + name: ひつじのショーン3D 第3巻 + updates: [] diff --git a/data/CTR-MAL/icon.jpg b/data/CTR-MAL/icon.jpg new file mode 100644 index 0000000..73b0261 Binary files /dev/null and b/data/CTR-MAL/icon.jpg differ diff --git a/data/CTR-MBA/art.jpg b/data/CTR-MBA/art.jpg new file mode 100644 index 0000000..0c3c884 Binary files /dev/null and b/data/CTR-MBA/art.jpg differ diff --git a/data/CTR-MBA/data.yml b/data/CTR-MBA/data.yml new file mode 100644 index 0000000..50a7b97 --- /dev/null +++ b/data/CTR-MBA/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000C5C00 + name: 'The 3D Machine Series: Episode 3' + updates: [] diff --git a/data/CTR-MBA/icon.jpg b/data/CTR-MBA/icon.jpg new file mode 100644 index 0000000..96b457d Binary files /dev/null and b/data/CTR-MBA/icon.jpg differ diff --git a/data/CTR-MBB/art.jpg b/data/CTR-MBB/art.jpg new file mode 100644 index 0000000..b6f8b09 Binary files /dev/null and b/data/CTR-MBB/art.jpg differ diff --git a/data/CTR-MBB/data.yml b/data/CTR-MBB/data.yml new file mode 100644 index 0000000..2737d75 --- /dev/null +++ b/data/CTR-MBB/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000C5D00 + name: 'The 3D Machine Series: Episode 4' + updates: [] diff --git a/data/CTR-MBB/icon.jpg b/data/CTR-MBB/icon.jpg new file mode 100644 index 0000000..98e5456 Binary files /dev/null and b/data/CTR-MBB/icon.jpg differ diff --git a/data/CTR-MBC/art.jpg b/data/CTR-MBC/art.jpg new file mode 100644 index 0000000..de6c543 Binary files /dev/null and b/data/CTR-MBC/art.jpg differ diff --git a/data/CTR-MBC/data.yml b/data/CTR-MBC/data.yml new file mode 100644 index 0000000..56aab2d --- /dev/null +++ b/data/CTR-MBC/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000C5E00 + name: 'The 3D Machine Series: Episode 5' + updates: [] diff --git a/data/CTR-MBC/icon.jpg b/data/CTR-MBC/icon.jpg new file mode 100644 index 0000000..f53db10 Binary files /dev/null and b/data/CTR-MBC/icon.jpg differ diff --git a/data/CTR-MBD/art.jpg b/data/CTR-MBD/art.jpg new file mode 100644 index 0000000..21649de Binary files /dev/null and b/data/CTR-MBD/art.jpg differ diff --git a/data/CTR-MBD/data.yml b/data/CTR-MBD/data.yml new file mode 100644 index 0000000..0827744 --- /dev/null +++ b/data/CTR-MBD/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D1B00 + name: ひつじのショーン3D 第4巻 + updates: [] diff --git a/data/CTR-MBD/icon.jpg b/data/CTR-MBD/icon.jpg new file mode 100644 index 0000000..ee8750c Binary files /dev/null and b/data/CTR-MBD/icon.jpg differ diff --git a/data/CTR-MBE/art.jpg b/data/CTR-MBE/art.jpg new file mode 100644 index 0000000..e0f3b1a Binary files /dev/null and b/data/CTR-MBE/art.jpg differ diff --git a/data/CTR-MBE/data.yml b/data/CTR-MBE/data.yml new file mode 100644 index 0000000..f5b7717 --- /dev/null +++ b/data/CTR-MBE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 00040000000D1C00 + name: ひつじのショーン3D 第5巻 + updates: [] diff --git a/data/CTR-MBE/icon.jpg b/data/CTR-MBE/icon.jpg new file mode 100644 index 0000000..80799e2 Binary files /dev/null and b/data/CTR-MBE/icon.jpg differ diff --git a/data/CTR-MBJ/art.jpg b/data/CTR-MBJ/art.jpg new file mode 100644 index 0000000..e351124 Binary files /dev/null and b/data/CTR-MBJ/art.jpg differ diff --git a/data/CTR-MBJ/data.yml b/data/CTR-MBJ/data.yml new file mode 100644 index 0000000..b223885 --- /dev/null +++ b/data/CTR-MBJ/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000F2700 + name: Shaun the Sheep (episode 1-5) + updates: [] diff --git a/data/CTR-MBJ/icon.jpg b/data/CTR-MBJ/icon.jpg new file mode 100644 index 0000000..5d19838 Binary files /dev/null and b/data/CTR-MBJ/icon.jpg differ diff --git a/data/CTR-MBK/art.jpg b/data/CTR-MBK/art.jpg new file mode 100644 index 0000000..8947399 Binary files /dev/null and b/data/CTR-MBK/art.jpg differ diff --git a/data/CTR-MBK/data.yml b/data/CTR-MBK/data.yml new file mode 100644 index 0000000..ab78ce5 --- /dev/null +++ b/data/CTR-MBK/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000F2800 + name: Shaun the Sheep (episode 6-10) + updates: [] diff --git a/data/CTR-MBK/icon.jpg b/data/CTR-MBK/icon.jpg new file mode 100644 index 0000000..cf24241 Binary files /dev/null and b/data/CTR-MBK/icon.jpg differ diff --git a/data/CTR-MBL/art.jpg b/data/CTR-MBL/art.jpg new file mode 100644 index 0000000..5e75d93 Binary files /dev/null and b/data/CTR-MBL/art.jpg differ diff --git a/data/CTR-MBL/data.yml b/data/CTR-MBL/data.yml new file mode 100644 index 0000000..79eb5f8 --- /dev/null +++ b/data/CTR-MBL/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000F2900 + name: Shaun the Sheep (episode 11-15) + updates: [] diff --git a/data/CTR-MBL/icon.jpg b/data/CTR-MBL/icon.jpg new file mode 100644 index 0000000..01ff230 Binary files /dev/null and b/data/CTR-MBL/icon.jpg differ diff --git a/data/CTR-MBM/art.jpg b/data/CTR-MBM/art.jpg new file mode 100644 index 0000000..3a40cbc Binary files /dev/null and b/data/CTR-MBM/art.jpg differ diff --git a/data/CTR-MBM/data.yml b/data/CTR-MBM/data.yml new file mode 100644 index 0000000..35b7d6c --- /dev/null +++ b/data/CTR-MBM/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 00040000000F2A00 + name: Shaun the Sheep (episode 1-15 + Making of) + updates: [] diff --git a/data/CTR-MBM/icon.jpg b/data/CTR-MBM/icon.jpg new file mode 100644 index 0000000..4be501d Binary files /dev/null and b/data/CTR-MBM/icon.jpg differ diff --git a/data/CTR-MBT/art.jpg b/data/CTR-MBT/art.jpg new file mode 100644 index 0000000..13e42f9 Binary files /dev/null and b/data/CTR-MBT/art.jpg differ diff --git a/data/CTR-MBT/data.yml b/data/CTR-MBT/data.yml new file mode 100644 index 0000000..625f0bf --- /dev/null +++ b/data/CTR-MBT/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000164900 + name: シュガー・ラッシュ 3D + updates: [] diff --git a/data/CTR-MBT/icon.jpg b/data/CTR-MBT/icon.jpg new file mode 100644 index 0000000..c14599e Binary files /dev/null and b/data/CTR-MBT/icon.jpg differ diff --git a/data/CTR-MBU/art.jpg b/data/CTR-MBU/art.jpg new file mode 100644 index 0000000..e6f171f Binary files /dev/null and b/data/CTR-MBU/art.jpg differ diff --git a/data/CTR-MBU/data.yml b/data/CTR-MBU/data.yml new file mode 100644 index 0000000..7232538 --- /dev/null +++ b/data/CTR-MBU/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000016BE00 + name: ベイマックス 3D + updates: [] diff --git a/data/CTR-MBU/icon.jpg b/data/CTR-MBU/icon.jpg new file mode 100644 index 0000000..ef8cc08 Binary files /dev/null and b/data/CTR-MBU/icon.jpg differ diff --git a/data/CTR-MBX/art.jpg b/data/CTR-MBX/art.jpg new file mode 100644 index 0000000..5534701 Binary files /dev/null and b/data/CTR-MBX/art.jpg differ diff --git a/data/CTR-MBX/data.yml b/data/CTR-MBX/data.yml new file mode 100644 index 0000000..afe6f98 --- /dev/null +++ b/data/CTR-MBX/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000162C00 + name: カールじいさんの空飛ぶ家 3D + updates: [] diff --git a/data/CTR-MBX/icon.jpg b/data/CTR-MBX/icon.jpg new file mode 100644 index 0000000..8e6c21d Binary files /dev/null and b/data/CTR-MBX/icon.jpg differ diff --git a/data/CTR-NAA/art.jpg b/data/CTR-NAA/art.jpg new file mode 100644 index 0000000..b4e22d8 Binary files /dev/null and b/data/CTR-NAA/art.jpg differ diff --git a/data/CTR-NAA/data.yml b/data/CTR-NAA/data.yml new file mode 100644 index 0000000..f86e81c --- /dev/null +++ b/data/CTR-NAA/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000008F600 + name: トモダチコレクション 新生活 Mii引越しソフト + updates: [] diff --git a/data/CTR-NAA/icon.jpg b/data/CTR-NAA/icon.jpg new file mode 100644 index 0000000..dd49c9b Binary files /dev/null and b/data/CTR-NAA/icon.jpg differ diff --git a/data/CTR-NAB/art.jpg b/data/CTR-NAB/art.jpg new file mode 100644 index 0000000..0ca0fcb Binary files /dev/null and b/data/CTR-NAB/art.jpg differ diff --git a/data/CTR-NAB/data.yml b/data/CTR-NAB/data.yml new file mode 100644 index 0000000..dc25790 --- /dev/null +++ b/data/CTR-NAB/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000099700 + name: レコチョク + updates: [] diff --git a/data/CTR-NAB/icon.jpg b/data/CTR-NAB/icon.jpg new file mode 100644 index 0000000..0d2b436 Binary files /dev/null and b/data/CTR-NAB/icon.jpg differ diff --git a/data/CTR-NAC/art.jpg b/data/CTR-NAC/art.jpg new file mode 100644 index 0000000..6f8ae19 Binary files /dev/null and b/data/CTR-NAC/art.jpg differ diff --git a/data/CTR-NAC/data.yml b/data/CTR-NAC/data.yml new file mode 100644 index 0000000..8af691b --- /dev/null +++ b/data/CTR-NAC/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 0004000000130500 + name: Photos with Mario™ + updates: [] diff --git a/data/CTR-NAC/icon.jpg b/data/CTR-NAC/icon.jpg new file mode 100644 index 0000000..847b690 Binary files /dev/null and b/data/CTR-NAC/icon.jpg differ diff --git a/data/CTR-NAE/art.jpg b/data/CTR-NAE/art.jpg new file mode 100644 index 0000000..e5c37aa Binary files /dev/null and b/data/CTR-NAE/art.jpg differ diff --git a/data/CTR-NAE/data.yml b/data/CTR-NAE/data.yml new file mode 100644 index 0000000..8a5be21 --- /dev/null +++ b/data/CTR-NAE/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - JP + id: 0004000000109800 + name: ニコニコ + updates: [] diff --git a/data/CTR-NAE/icon.jpg b/data/CTR-NAE/icon.jpg new file mode 100644 index 0000000..6721c17 Binary files /dev/null and b/data/CTR-NAE/icon.jpg differ diff --git a/data/CTR-NAH/art.jpg b/data/CTR-NAH/art.jpg new file mode 100644 index 0000000..8173c48 Binary files /dev/null and b/data/CTR-NAH/art.jpg differ diff --git a/data/CTR-NAH/data.yml b/data/CTR-NAH/data.yml new file mode 100644 index 0000000..db34fc9 --- /dev/null +++ b/data/CTR-NAH/data.yml @@ -0,0 +1,8 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - US + id: 000400000014A300 + name: Pokémon Omega Ruby and Alpha Sapphire Special Demo + updates: [] diff --git a/data/CTR-NAH/icon.jpg b/data/CTR-NAH/icon.jpg new file mode 100644 index 0000000..6391ff2 Binary files /dev/null and b/data/CTR-NAH/icon.jpg differ diff --git a/data/CTR-NCG/art.jpg b/data/CTR-NCG/art.jpg new file mode 100644 index 0000000..aa2ad73 Binary files /dev/null and b/data/CTR-NCG/art.jpg differ diff --git a/data/CTR-NCG/data.yml b/data/CTR-NCG/data.yml new file mode 100644 index 0000000..7a3cc3d --- /dev/null +++ b/data/CTR-NCG/data.yml @@ -0,0 +1,14 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + - KR + - US + id: 00040000000AE100 + name: Pokémon™ Dream Radar + updates: [] +- regions: + - JP + id: 0004000000073200 + name: ポケモンARサーチャー + updates: [] diff --git a/data/CTR-NCG/icon.jpg b/data/CTR-NCG/icon.jpg new file mode 100644 index 0000000..c083be1 Binary files /dev/null and b/data/CTR-NCG/icon.jpg differ diff --git a/data/CTR-PNA/art.jpg b/data/CTR-PNA/art.jpg new file mode 100644 index 0000000..2f90ed0 Binary files /dev/null and b/data/CTR-PNA/art.jpg differ diff --git a/data/CTR-PNA/data.yml b/data/CTR-PNA/data.yml new file mode 100644 index 0000000..8e162df --- /dev/null +++ b/data/CTR-PNA/data.yml @@ -0,0 +1,7 @@ +platform: 26 +releases: +- regions: + - JP + id: 00040000000DF900 + name: グラディウス + updates: [] diff --git a/data/CTR-PNA/icon.jpg b/data/CTR-PNA/icon.jpg new file mode 100644 index 0000000..e696fe2 Binary files /dev/null and b/data/CTR-PNA/icon.jpg differ diff --git a/data/CTR-PND/art.jpg b/data/CTR-PND/art.jpg new file mode 100644 index 0000000..2babf63 Binary files /dev/null and b/data/CTR-PND/art.jpg differ diff --git a/data/CTR-PND/data.yml b/data/CTR-PND/data.yml new file mode 100644 index 0000000..5257737 --- /dev/null +++ b/data/CTR-PND/data.yml @@ -0,0 +1,7 @@ +platform: 26 +releases: +- regions: + - JP + id: 00040000000E0200 + name: エイリアンクラッシュ + updates: [] diff --git a/data/CTR-PND/icon.jpg b/data/CTR-PND/icon.jpg new file mode 100644 index 0000000..e22d64e Binary files /dev/null and b/data/CTR-PND/icon.jpg differ diff --git a/data/CTR-PNQ/art.jpg b/data/CTR-PNQ/art.jpg new file mode 100644 index 0000000..fb4e963 Binary files /dev/null and b/data/CTR-PNQ/art.jpg differ diff --git a/data/CTR-PNQ/data.yml b/data/CTR-PNQ/data.yml new file mode 100644 index 0000000..7c14b90 --- /dev/null +++ b/data/CTR-PNQ/data.yml @@ -0,0 +1,7 @@ +platform: 26 +releases: +- regions: + - JP + id: 00040000000E2300 + name: THE 功夫 + updates: [] diff --git a/data/CTR-PNQ/icon.jpg b/data/CTR-PNQ/icon.jpg new file mode 100644 index 0000000..45e48ff Binary files /dev/null and b/data/CTR-PNQ/icon.jpg differ diff --git a/data/CTR-PPA/art.jpg b/data/CTR-PPA/art.jpg new file mode 100644 index 0000000..1e75203 Binary files /dev/null and b/data/CTR-PPA/art.jpg differ diff --git a/data/CTR-PPA/data.yml b/data/CTR-PPA/data.yml new file mode 100644 index 0000000..c5de16f --- /dev/null +++ b/data/CTR-PPA/data.yml @@ -0,0 +1,7 @@ +platform: 26 +releases: +- regions: + - JP + id: 000400000011C900 + name: R-TYPE + updates: [] diff --git a/data/CTR-PPA/icon.jpg b/data/CTR-PPA/icon.jpg new file mode 100644 index 0000000..2872834 Binary files /dev/null and b/data/CTR-PPA/icon.jpg differ diff --git a/data/CTR-QA2/art.jpg b/data/CTR-QA2/art.jpg new file mode 100644 index 0000000..f867c80 Binary files /dev/null and b/data/CTR-QA2/art.jpg differ diff --git a/data/CTR-QA2/data.yml b/data/CTR-QA2/data.yml new file mode 100644 index 0000000..4aa6203 --- /dev/null +++ b/data/CTR-QA2/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 00040000000F0100 + name: Mega Man™ Xtreme 2 + updates: [] +- regions: + - JP + id: 00040000000EFF00 + name: ロックマンX2 ソウルイレイザー + updates: [] +- regions: + - US + id: 00040000000F0000 + name: Mega Man™ Xtreme 2 + updates: [] diff --git a/data/CTR-QA2/icon.jpg b/data/CTR-QA2/icon.jpg new file mode 100644 index 0000000..366acef Binary files /dev/null and b/data/CTR-QA2/icon.jpg differ diff --git a/data/CTR-QA4/art.jpg b/data/CTR-QA4/art.jpg new file mode 100644 index 0000000..3deb80c Binary files /dev/null and b/data/CTR-QA4/art.jpg differ diff --git a/data/CTR-QA4/data.yml b/data/CTR-QA4/data.yml new file mode 100644 index 0000000..d9c7974 --- /dev/null +++ b/data/CTR-QA4/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 00040000000F0300 + name: Xtreme Sports + updates: [] +- regions: + - US + id: 00040000000F0200 + name: Xtreme Sports + updates: [] diff --git a/data/CTR-QA4/icon.jpg b/data/CTR-QA4/icon.jpg new file mode 100644 index 0000000..a365f5b Binary files /dev/null and b/data/CTR-QA4/icon.jpg differ diff --git a/data/CTR-QA5/art.jpg b/data/CTR-QA5/art.jpg new file mode 100644 index 0000000..ec1a9eb Binary files /dev/null and b/data/CTR-QA5/art.jpg differ diff --git a/data/CTR-QA5/data.yml b/data/CTR-QA5/data.yml new file mode 100644 index 0000000..91aa0ea --- /dev/null +++ b/data/CTR-QA5/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 00040000000FFB00 + name: Super Mario Bros.™ Deluxe + updates: [] +- regions: + - KR + id: 0004000000181400 + name: Super Mario Bros. Deluxe + updates: [] +- regions: + - US + id: 00040000000FFA00 + name: Super Mario Bros.™ Deluxe + updates: [] diff --git a/data/CTR-QA5/icon.jpg b/data/CTR-QA5/icon.jpg new file mode 100644 index 0000000..8bd3e28 Binary files /dev/null and b/data/CTR-QA5/icon.jpg differ diff --git a/data/CTR-QA6/art.jpg b/data/CTR-QA6/art.jpg new file mode 100644 index 0000000..aad0cfc Binary files /dev/null and b/data/CTR-QA6/art.jpg differ diff --git a/data/CTR-QA6/data.yml b/data/CTR-QA6/data.yml new file mode 100644 index 0000000..63281fc --- /dev/null +++ b/data/CTR-QA6/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 000400000010FF00 + name: Game & Watch™ Gallery 3 + updates: [] +- regions: + - US + id: 000400000010FE00 + name: Game & Watch™ Gallery 3 + updates: [] diff --git a/data/CTR-QA6/icon.jpg b/data/CTR-QA6/icon.jpg new file mode 100644 index 0000000..b21e38c Binary files /dev/null and b/data/CTR-QA6/icon.jpg differ diff --git a/data/CTR-QA7/art.jpg b/data/CTR-QA7/art.jpg new file mode 100644 index 0000000..6393e6e Binary files /dev/null and b/data/CTR-QA7/art.jpg differ diff --git a/data/CTR-QA7/data.yml b/data/CTR-QA7/data.yml new file mode 100644 index 0000000..a9bfd83 --- /dev/null +++ b/data/CTR-QA7/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - US + id: 0004000000110000 + name: Harvest Moon® 2 GBC + updates: [] diff --git a/data/CTR-QA7/icon.jpg b/data/CTR-QA7/icon.jpg new file mode 100644 index 0000000..a65d271 Binary files /dev/null and b/data/CTR-QA7/icon.jpg differ diff --git a/data/CTR-QA8/art.jpg b/data/CTR-QA8/art.jpg new file mode 100644 index 0000000..bffac3c Binary files /dev/null and b/data/CTR-QA8/art.jpg differ diff --git a/data/CTR-QA8/data.yml b/data/CTR-QA8/data.yml new file mode 100644 index 0000000..4b45188 --- /dev/null +++ b/data/CTR-QA8/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - US + id: 0004000000110200 + name: Harvest Moon® 3 GBC + updates: [] diff --git a/data/CTR-QA8/icon.jpg b/data/CTR-QA8/icon.jpg new file mode 100644 index 0000000..8d207d4 Binary files /dev/null and b/data/CTR-QA8/icon.jpg differ diff --git a/data/CTR-QA9/art.jpg b/data/CTR-QA9/art.jpg new file mode 100644 index 0000000..26f5730 Binary files /dev/null and b/data/CTR-QA9/art.jpg differ diff --git a/data/CTR-QA9/data.yml b/data/CTR-QA9/data.yml new file mode 100644 index 0000000..8760bf1 --- /dev/null +++ b/data/CTR-QA9/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000110600 + name: Legend of the River King™ 2 + updates: [] +- regions: + - US + id: 0004000000110500 + name: Legend of the River King™ 2 + updates: [] diff --git a/data/CTR-QA9/icon.jpg b/data/CTR-QA9/icon.jpg new file mode 100644 index 0000000..61fd8ca Binary files /dev/null and b/data/CTR-QA9/icon.jpg differ diff --git a/data/CTR-QAA/art.jpg b/data/CTR-QAA/art.jpg new file mode 100644 index 0000000..c48188d Binary files /dev/null and b/data/CTR-QAA/art.jpg differ diff --git a/data/CTR-QAA/data.yml b/data/CTR-QAA/data.yml new file mode 100644 index 0000000..bf64c9a --- /dev/null +++ b/data/CTR-QAA/data.yml @@ -0,0 +1,22 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000042A00 + name: "The Legend of Zelda™: Link's Awakening DX™" + updates: [] +- regions: + - JP + id: 0004000000042900 + name: ゼルダの伝説 夢をみる島DX + updates: [] +- regions: + - KR + id: 0004000000184A00 + name: The Legend of Zelda Link's Awakening DX + updates: [] +- regions: + - US + id: 0004000000042700 + name: "The Legend of Zelda™: Link's Awakening DX™" + updates: [] diff --git a/data/CTR-QAA/icon.jpg b/data/CTR-QAA/icon.jpg new file mode 100644 index 0000000..68f2096 Binary files /dev/null and b/data/CTR-QAA/icon.jpg differ diff --git a/data/CTR-QAB/art.jpg b/data/CTR-QAB/art.jpg new file mode 100644 index 0000000..ee36f1f Binary files /dev/null and b/data/CTR-QAB/art.jpg differ diff --git a/data/CTR-QAB/data.yml b/data/CTR-QAB/data.yml new file mode 100644 index 0000000..ba28ce8 --- /dev/null +++ b/data/CTR-QAB/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 0004000000043200 + name: トレード&バトル カードヒーロー + updates: [] diff --git a/data/CTR-QAB/icon.jpg b/data/CTR-QAB/icon.jpg new file mode 100644 index 0000000..0b3b156 Binary files /dev/null and b/data/CTR-QAB/icon.jpg differ diff --git a/data/CTR-QAC/art.jpg b/data/CTR-QAC/art.jpg new file mode 100644 index 0000000..bc013dd Binary files /dev/null and b/data/CTR-QAC/art.jpg differ diff --git a/data/CTR-QAC/data.yml b/data/CTR-QAC/data.yml new file mode 100644 index 0000000..7c5d630 --- /dev/null +++ b/data/CTR-QAC/data.yml @@ -0,0 +1,22 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000058D00 + name: 'The Legend of Zelda™: Oracle of Seasons' + updates: [] +- regions: + - JP + id: 0004000000058B00 + name: ゼルダの伝説 ふしぎの木の実 大地の章 + updates: [] +- regions: + - KR + id: 0004000000191900 + name: 'The Legend of Zelda: Oracle of Seasons' + updates: [] +- regions: + - US + id: 0004000000058C00 + name: 'The Legend of Zelda™: Oracle of Seasons™' + updates: [] diff --git a/data/CTR-QAC/icon.jpg b/data/CTR-QAC/icon.jpg new file mode 100644 index 0000000..07f27e6 Binary files /dev/null and b/data/CTR-QAC/icon.jpg differ diff --git a/data/CTR-QAD/art.jpg b/data/CTR-QAD/art.jpg new file mode 100644 index 0000000..bdd08ba Binary files /dev/null and b/data/CTR-QAD/art.jpg differ diff --git a/data/CTR-QAD/data.yml b/data/CTR-QAD/data.yml new file mode 100644 index 0000000..edddc20 --- /dev/null +++ b/data/CTR-QAD/data.yml @@ -0,0 +1,22 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000059000 + name: 'The Legend of Zelda™: Oracle of Ages' + updates: [] +- regions: + - JP + id: 0004000000058E00 + name: ゼルダの伝説 ふしぎの木の実 時空の章 + updates: [] +- regions: + - KR + id: 0004000000191800 + name: 'The Legend of Zelda: Oracle of Ages' + updates: [] +- regions: + - US + id: 0004000000058F00 + name: 'The Legend of Zelda™: Oracle of Ages™' + updates: [] diff --git a/data/CTR-QAD/icon.jpg b/data/CTR-QAD/icon.jpg new file mode 100644 index 0000000..7a4c502 Binary files /dev/null and b/data/CTR-QAD/icon.jpg differ diff --git a/data/CTR-QAE/art.jpg b/data/CTR-QAE/art.jpg new file mode 100644 index 0000000..7d2e98e Binary files /dev/null and b/data/CTR-QAE/art.jpg differ diff --git a/data/CTR-QAE/data.yml b/data/CTR-QAE/data.yml new file mode 100644 index 0000000..89dc2a5 --- /dev/null +++ b/data/CTR-QAE/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000061D00 + name: Blaster Master Enemy Below + updates: [] +- regions: + - JP + id: 0004000000059100 + name: メタファイトEX + updates: [] +- regions: + - US + id: 0004000000061C00 + name: Blaster Master Enemy Below + updates: [] diff --git a/data/CTR-QAE/icon.jpg b/data/CTR-QAE/icon.jpg new file mode 100644 index 0000000..e49acfb Binary files /dev/null and b/data/CTR-QAE/icon.jpg differ diff --git a/data/CTR-QAF/art.jpg b/data/CTR-QAF/art.jpg new file mode 100644 index 0000000..a139a69 Binary files /dev/null and b/data/CTR-QAF/art.jpg differ diff --git a/data/CTR-QAF/data.yml b/data/CTR-QAF/data.yml new file mode 100644 index 0000000..a67f60b --- /dev/null +++ b/data/CTR-QAF/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 0004000000067100 + name: バルーンファイトGB + updates: [] diff --git a/data/CTR-QAF/icon.jpg b/data/CTR-QAF/icon.jpg new file mode 100644 index 0000000..f6e6366 Binary files /dev/null and b/data/CTR-QAF/icon.jpg differ diff --git a/data/CTR-QAG/art.jpg b/data/CTR-QAG/art.jpg new file mode 100644 index 0000000..f972784 Binary files /dev/null and b/data/CTR-QAG/art.jpg differ diff --git a/data/CTR-QAG/data.yml b/data/CTR-QAG/data.yml new file mode 100644 index 0000000..6f583bd --- /dev/null +++ b/data/CTR-QAG/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000069B00 + name: Prince of Persia + updates: [] +- regions: + - US + id: 0004000000069A00 + name: Prince of Persia® + updates: [] diff --git a/data/CTR-QAG/icon.jpg b/data/CTR-QAG/icon.jpg new file mode 100644 index 0000000..485e481 Binary files /dev/null and b/data/CTR-QAG/icon.jpg differ diff --git a/data/CTR-QAJ/art.jpg b/data/CTR-QAJ/art.jpg new file mode 100644 index 0000000..636f457 Binary files /dev/null and b/data/CTR-QAJ/art.jpg differ diff --git a/data/CTR-QAJ/data.yml b/data/CTR-QAJ/data.yml new file mode 100644 index 0000000..d832e96 --- /dev/null +++ b/data/CTR-QAJ/data.yml @@ -0,0 +1,22 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 000400000007D900 + name: Wario Land II + updates: [] +- regions: + - JP + id: 000400000007D700 + name: ワリオランド2 盗まれた財宝 + updates: [] +- regions: + - KR + id: 0004000000181900 + name: Wario Land 2 + updates: [] +- regions: + - US + id: 000400000007D800 + name: Wario Land™ II + updates: [] diff --git a/data/CTR-QAJ/icon.jpg b/data/CTR-QAJ/icon.jpg new file mode 100644 index 0000000..d0b58f0 Binary files /dev/null and b/data/CTR-QAJ/icon.jpg differ diff --git a/data/CTR-QAK/art.jpg b/data/CTR-QAK/art.jpg new file mode 100644 index 0000000..6f8a1c5 Binary files /dev/null and b/data/CTR-QAK/art.jpg differ diff --git a/data/CTR-QAK/data.yml b/data/CTR-QAK/data.yml new file mode 100644 index 0000000..b159426 --- /dev/null +++ b/data/CTR-QAK/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000082C00 + name: Game & Watch™ Gallery 2 + updates: [] +- regions: + - US + id: 0004000000082B00 + name: Game & Watch™ Gallery 2 + updates: [] diff --git a/data/CTR-QAK/icon.jpg b/data/CTR-QAK/icon.jpg new file mode 100644 index 0000000..4919ecd Binary files /dev/null and b/data/CTR-QAK/icon.jpg differ diff --git a/data/CTR-QAL/art.jpg b/data/CTR-QAL/art.jpg new file mode 100644 index 0000000..31054b1 Binary files /dev/null and b/data/CTR-QAL/art.jpg differ diff --git a/data/CTR-QAL/data.yml b/data/CTR-QAL/data.yml new file mode 100644 index 0000000..6c2279d --- /dev/null +++ b/data/CTR-QAL/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000083700 + name: Rayman® + updates: [] +- regions: + - JP + id: 0004000000083500 + name: レイマン ミスター・ダークの罠 + updates: [] +- regions: + - US + id: 0004000000083600 + name: Rayman® + updates: [] diff --git a/data/CTR-QAL/icon.jpg b/data/CTR-QAL/icon.jpg new file mode 100644 index 0000000..bd463e6 Binary files /dev/null and b/data/CTR-QAL/icon.jpg differ diff --git a/data/CTR-QAM/art.jpg b/data/CTR-QAM/art.jpg new file mode 100644 index 0000000..85e08fe Binary files /dev/null and b/data/CTR-QAM/art.jpg differ diff --git a/data/CTR-QAM/data.yml b/data/CTR-QAM/data.yml new file mode 100644 index 0000000..8f9c9b4 --- /dev/null +++ b/data/CTR-QAM/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 0004000000089800 + name: コトバトル 天外の守人 + updates: [] diff --git a/data/CTR-QAM/icon.jpg b/data/CTR-QAM/icon.jpg new file mode 100644 index 0000000..c250ac7 Binary files /dev/null and b/data/CTR-QAM/icon.jpg differ diff --git a/data/CTR-QAN/art.jpg b/data/CTR-QAN/art.jpg new file mode 100644 index 0000000..95dd7b2 Binary files /dev/null and b/data/CTR-QAN/art.jpg differ diff --git a/data/CTR-QAN/data.yml b/data/CTR-QAN/data.yml new file mode 100644 index 0000000..40c8fa5 --- /dev/null +++ b/data/CTR-QAN/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 0004000000089900 + name: 女神転生外伝ラストバイブル + updates: [] diff --git a/data/CTR-QAN/icon.jpg b/data/CTR-QAN/icon.jpg new file mode 100644 index 0000000..8129def Binary files /dev/null and b/data/CTR-QAN/icon.jpg differ diff --git a/data/CTR-QAP/art.jpg b/data/CTR-QAP/art.jpg new file mode 100644 index 0000000..46a97cb Binary files /dev/null and b/data/CTR-QAP/art.jpg differ diff --git a/data/CTR-QAP/data.yml b/data/CTR-QAP/data.yml new file mode 100644 index 0000000..fc13323 --- /dev/null +++ b/data/CTR-QAP/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 000400000008AF00 + name: Wario Land™ 3 + updates: [] +- regions: + - JP + id: 0004000000089A00 + name: ワリオランド3 不思議なオルゴール + updates: [] +- regions: + - US + id: 000400000008AE00 + name: Wario Land™ 3 + updates: [] diff --git a/data/CTR-QAP/icon.jpg b/data/CTR-QAP/icon.jpg new file mode 100644 index 0000000..a2c1cc6 Binary files /dev/null and b/data/CTR-QAP/icon.jpg differ diff --git a/data/CTR-QAQ/art.jpg b/data/CTR-QAQ/art.jpg new file mode 100644 index 0000000..ffc6fa3 Binary files /dev/null and b/data/CTR-QAQ/art.jpg differ diff --git a/data/CTR-QAQ/data.yml b/data/CTR-QAQ/data.yml new file mode 100644 index 0000000..76ee122 --- /dev/null +++ b/data/CTR-QAQ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000093D00 + name: Mario Golf™ + updates: [] +- regions: + - JP + id: 0004000000093B00 + name: マリオゴルフGB + updates: [] +- regions: + - US + id: 0004000000093C00 + name: Mario Golf™ + updates: [] diff --git a/data/CTR-QAQ/icon.jpg b/data/CTR-QAQ/icon.jpg new file mode 100644 index 0000000..fb3962e Binary files /dev/null and b/data/CTR-QAQ/icon.jpg differ diff --git a/data/CTR-QAR/art.jpg b/data/CTR-QAR/art.jpg new file mode 100644 index 0000000..e670f5c Binary files /dev/null and b/data/CTR-QAR/art.jpg differ diff --git a/data/CTR-QAR/data.yml b/data/CTR-QAR/data.yml new file mode 100644 index 0000000..314d343 --- /dev/null +++ b/data/CTR-QAR/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000094D00 + name: Toki Tori + updates: [] +- regions: + - US + id: 0004000000094C00 + name: Toki Tori + updates: [] diff --git a/data/CTR-QAR/icon.jpg b/data/CTR-QAR/icon.jpg new file mode 100644 index 0000000..687d744 Binary files /dev/null and b/data/CTR-QAR/icon.jpg differ diff --git a/data/CTR-QAS/art.jpg b/data/CTR-QAS/art.jpg new file mode 100644 index 0000000..00d4deb Binary files /dev/null and b/data/CTR-QAS/art.jpg differ diff --git a/data/CTR-QAS/data.yml b/data/CTR-QAS/data.yml new file mode 100644 index 0000000..2c3b9aa --- /dev/null +++ b/data/CTR-QAS/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000099C00 + name: Harvest Moon GBC + updates: [] +- regions: + - US + id: 0004000000099B00 + name: Harvest Moon® + updates: [] diff --git a/data/CTR-QAS/icon.jpg b/data/CTR-QAS/icon.jpg new file mode 100644 index 0000000..722687e Binary files /dev/null and b/data/CTR-QAS/icon.jpg differ diff --git a/data/CTR-QAT/art.jpg b/data/CTR-QAT/art.jpg new file mode 100644 index 0000000..69812f1 Binary files /dev/null and b/data/CTR-QAT/art.jpg differ diff --git a/data/CTR-QAT/data.yml b/data/CTR-QAT/data.yml new file mode 100644 index 0000000..99c89d1 --- /dev/null +++ b/data/CTR-QAT/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000099E00 + name: Legend of the River King™ + updates: [] +- regions: + - US + id: 0004000000099D00 + name: Legend of the River King™ + updates: [] diff --git a/data/CTR-QAT/icon.jpg b/data/CTR-QAT/icon.jpg new file mode 100644 index 0000000..ed034b9 Binary files /dev/null and b/data/CTR-QAT/icon.jpg differ diff --git a/data/CTR-QAU/art.jpg b/data/CTR-QAU/art.jpg new file mode 100644 index 0000000..68c8572 Binary files /dev/null and b/data/CTR-QAU/art.jpg differ diff --git a/data/CTR-QAU/data.yml b/data/CTR-QAU/data.yml new file mode 100644 index 0000000..404d48c --- /dev/null +++ b/data/CTR-QAU/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 000400000009D800 + name: 女神転生外伝ラストバイブルⅡ + updates: [] diff --git a/data/CTR-QAU/icon.jpg b/data/CTR-QAU/icon.jpg new file mode 100644 index 0000000..cd6b0bd Binary files /dev/null and b/data/CTR-QAU/icon.jpg differ diff --git a/data/CTR-QAV/art.jpg b/data/CTR-QAV/art.jpg new file mode 100644 index 0000000..e1f877b Binary files /dev/null and b/data/CTR-QAV/art.jpg differ diff --git a/data/CTR-QAV/data.yml b/data/CTR-QAV/data.yml new file mode 100644 index 0000000..03fcaa3 --- /dev/null +++ b/data/CTR-QAV/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 00040000000BE600 + name: Shantae™ + updates: [] +- regions: + - US + id: 00040000000BE500 + name: Shantae™ + updates: [] diff --git a/data/CTR-QAV/icon.jpg b/data/CTR-QAV/icon.jpg new file mode 100644 index 0000000..80b71fa Binary files /dev/null and b/data/CTR-QAV/icon.jpg differ diff --git a/data/CTR-QAW/art.jpg b/data/CTR-QAW/art.jpg new file mode 100644 index 0000000..6175795 Binary files /dev/null and b/data/CTR-QAW/art.jpg differ diff --git a/data/CTR-QAW/data.yml b/data/CTR-QAW/data.yml new file mode 100644 index 0000000..18b4420 --- /dev/null +++ b/data/CTR-QAW/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 00040000000D3E00 + name: Mario Tennis™ + updates: [] +- regions: + - JP + id: 00040000000D3C00 + name: マリオテニスGB + updates: [] +- regions: + - US + id: 00040000000D3D00 + name: Mario Tennis™ + updates: [] diff --git a/data/CTR-QAW/icon.jpg b/data/CTR-QAW/icon.jpg new file mode 100644 index 0000000..fb28d9b Binary files /dev/null and b/data/CTR-QAW/icon.jpg differ diff --git a/data/CTR-QAX/art.jpg b/data/CTR-QAX/art.jpg new file mode 100644 index 0000000..8a7039d Binary files /dev/null and b/data/CTR-QAX/art.jpg differ diff --git a/data/CTR-QAX/data.yml b/data/CTR-QAX/data.yml new file mode 100644 index 0000000..91a7597 --- /dev/null +++ b/data/CTR-QAX/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 00040000000EA300 + name: 真・女神転生デビルチルドレン 黒の書 + updates: [] diff --git a/data/CTR-QAX/icon.jpg b/data/CTR-QAX/icon.jpg new file mode 100644 index 0000000..7cea041 Binary files /dev/null and b/data/CTR-QAX/icon.jpg differ diff --git a/data/CTR-QAY/art.jpg b/data/CTR-QAY/art.jpg new file mode 100644 index 0000000..cb88ad9 Binary files /dev/null and b/data/CTR-QAY/art.jpg differ diff --git a/data/CTR-QAY/data.yml b/data/CTR-QAY/data.yml new file mode 100644 index 0000000..b0c63eb --- /dev/null +++ b/data/CTR-QAY/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 00040000000EA400 + name: 真・女神転生デビルチルドレン 赤の書 + updates: [] diff --git a/data/CTR-QAY/icon.jpg b/data/CTR-QAY/icon.jpg new file mode 100644 index 0000000..9b24217 Binary files /dev/null and b/data/CTR-QAY/icon.jpg differ diff --git a/data/CTR-QAZ/art.jpg b/data/CTR-QAZ/art.jpg new file mode 100644 index 0000000..3117f94 Binary files /dev/null and b/data/CTR-QAZ/art.jpg differ diff --git a/data/CTR-QAZ/data.yml b/data/CTR-QAZ/data.yml new file mode 100644 index 0000000..46cd1c8 --- /dev/null +++ b/data/CTR-QAZ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 00040000000F0400 + name: Mega Man™ Xtreme + updates: [] +- regions: + - JP + id: 00040000000EFD00 + name: ロックマンX サイバーミッション + updates: [] +- regions: + - US + id: 00040000000EFE00 + name: Mega Man™ Xtreme + updates: [] diff --git a/data/CTR-QAZ/icon.jpg b/data/CTR-QAZ/icon.jpg new file mode 100644 index 0000000..04774a6 Binary files /dev/null and b/data/CTR-QAZ/icon.jpg differ diff --git a/data/CTR-QB2/art.jpg b/data/CTR-QB2/art.jpg new file mode 100644 index 0000000..5d454ad Binary files /dev/null and b/data/CTR-QB2/art.jpg differ diff --git a/data/CTR-QB2/data.yml b/data/CTR-QB2/data.yml new file mode 100644 index 0000000..ffb670d --- /dev/null +++ b/data/CTR-QB2/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000173100 + name: Pokémon™ Crystal Version (Spanish Version) + updates: [] diff --git a/data/CTR-QB2/icon.jpg b/data/CTR-QB2/icon.jpg new file mode 100644 index 0000000..89904b6 Binary files /dev/null and b/data/CTR-QB2/icon.jpg differ diff --git a/data/CTR-QB3/art.jpg b/data/CTR-QB3/art.jpg new file mode 100644 index 0000000..9a1a577 Binary files /dev/null and b/data/CTR-QB3/art.jpg differ diff --git a/data/CTR-QB3/data.yml b/data/CTR-QB3/data.yml new file mode 100644 index 0000000..54b0149 --- /dev/null +++ b/data/CTR-QB3/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000173200 + name: Pokémon™ Versione Oro + updates: [] diff --git a/data/CTR-QB3/icon.jpg b/data/CTR-QB3/icon.jpg new file mode 100644 index 0000000..168d052 Binary files /dev/null and b/data/CTR-QB3/icon.jpg differ diff --git a/data/CTR-QB4/art.jpg b/data/CTR-QB4/art.jpg new file mode 100644 index 0000000..00b856c Binary files /dev/null and b/data/CTR-QB4/art.jpg differ diff --git a/data/CTR-QB4/data.yml b/data/CTR-QB4/data.yml new file mode 100644 index 0000000..9f2e1bc --- /dev/null +++ b/data/CTR-QB4/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000173300 + name: Pokémon™ Versione Argento + updates: [] diff --git a/data/CTR-QB4/icon.jpg b/data/CTR-QB4/icon.jpg new file mode 100644 index 0000000..c7c1756 Binary files /dev/null and b/data/CTR-QB4/icon.jpg differ diff --git a/data/CTR-QB5/art.jpg b/data/CTR-QB5/art.jpg new file mode 100644 index 0000000..194cb39 Binary files /dev/null and b/data/CTR-QB5/art.jpg differ diff --git a/data/CTR-QB5/data.yml b/data/CTR-QB5/data.yml new file mode 100644 index 0000000..640eb3b --- /dev/null +++ b/data/CTR-QB5/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000173400 + name: Pokémon Versione Cristallo + updates: [] diff --git a/data/CTR-QB5/icon.jpg b/data/CTR-QB5/icon.jpg new file mode 100644 index 0000000..d48c0e3 Binary files /dev/null and b/data/CTR-QB5/icon.jpg differ diff --git a/data/CTR-QB6/art.jpg b/data/CTR-QB6/art.jpg new file mode 100644 index 0000000..916ef8e Binary files /dev/null and b/data/CTR-QB6/art.jpg differ diff --git a/data/CTR-QB6/data.yml b/data/CTR-QB6/data.yml new file mode 100644 index 0000000..73ac00c --- /dev/null +++ b/data/CTR-QB6/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - KR + id: 0004000000173500 + name: 포켓몬스터 금 + updates: [] diff --git a/data/CTR-QB6/icon.jpg b/data/CTR-QB6/icon.jpg new file mode 100644 index 0000000..a92b9a9 Binary files /dev/null and b/data/CTR-QB6/icon.jpg differ diff --git a/data/CTR-QB7/art.jpg b/data/CTR-QB7/art.jpg new file mode 100644 index 0000000..86dae70 Binary files /dev/null and b/data/CTR-QB7/art.jpg differ diff --git a/data/CTR-QB7/data.yml b/data/CTR-QB7/data.yml new file mode 100644 index 0000000..a48f294 --- /dev/null +++ b/data/CTR-QB7/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - KR + id: 0004000000173600 + name: 포켓몬스터 은 + updates: [] diff --git a/data/CTR-QB7/icon.jpg b/data/CTR-QB7/icon.jpg new file mode 100644 index 0000000..d50a43e Binary files /dev/null and b/data/CTR-QB7/icon.jpg differ diff --git a/data/CTR-QBA/art.jpg b/data/CTR-QBA/art.jpg new file mode 100644 index 0000000..49b3b92 Binary files /dev/null and b/data/CTR-QBA/art.jpg differ diff --git a/data/CTR-QBA/data.yml b/data/CTR-QBA/data.yml new file mode 100644 index 0000000..cc6ff44 --- /dev/null +++ b/data/CTR-QBA/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000119E00 + name: Pokémon™ Puzzle Challenge + updates: [] +- regions: + - US + id: 0004000000119D00 + name: Pokémon™ Puzzle Challenge + updates: [] diff --git a/data/CTR-QBA/icon.jpg b/data/CTR-QBA/icon.jpg new file mode 100644 index 0000000..a0f5a70 Binary files /dev/null and b/data/CTR-QBA/icon.jpg differ diff --git a/data/CTR-QBB/art.jpg b/data/CTR-QBB/art.jpg new file mode 100644 index 0000000..4873539 Binary files /dev/null and b/data/CTR-QBB/art.jpg differ diff --git a/data/CTR-QBB/data.yml b/data/CTR-QBB/data.yml new file mode 100644 index 0000000..09ade93 --- /dev/null +++ b/data/CTR-QBB/data.yml @@ -0,0 +1,17 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 000400000011A100 + name: Pokémon™ Trading Card Game + updates: [] +- regions: + - JP + id: 0004000000119F00 + name: ポケモンカードGB + updates: [] +- regions: + - US + id: 000400000011A000 + name: Pokémon™ Trading Card Game + updates: [] diff --git a/data/CTR-QBB/icon.jpg b/data/CTR-QBB/icon.jpg new file mode 100644 index 0000000..0f26718 Binary files /dev/null and b/data/CTR-QBB/icon.jpg differ diff --git a/data/CTR-QBC/art.jpg b/data/CTR-QBC/art.jpg new file mode 100644 index 0000000..5037f35 Binary files /dev/null and b/data/CTR-QBC/art.jpg differ diff --git a/data/CTR-QBC/data.yml b/data/CTR-QBC/data.yml new file mode 100644 index 0000000..db6eff6 --- /dev/null +++ b/data/CTR-QBC/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - JP + id: 000400000011A500 + name: ドンキーコングGB ディンキー コング&ディクシーコング + updates: [] diff --git a/data/CTR-QBC/icon.jpg b/data/CTR-QBC/icon.jpg new file mode 100644 index 0000000..f786805 Binary files /dev/null and b/data/CTR-QBC/icon.jpg differ diff --git a/data/CTR-QBD/art.jpg b/data/CTR-QBD/art.jpg new file mode 100644 index 0000000..843d77f Binary files /dev/null and b/data/CTR-QBD/art.jpg differ diff --git a/data/CTR-QBD/data.yml b/data/CTR-QBD/data.yml new file mode 100644 index 0000000..00c29a0 --- /dev/null +++ b/data/CTR-QBD/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 000400000011A900 + name: 'Bionic Commando™: Elite Forces' + updates: [] +- regions: + - US + id: 000400000011A800 + name: 'Bionic Commando™: Elite Forces' + updates: [] diff --git a/data/CTR-QBD/icon.jpg b/data/CTR-QBD/icon.jpg new file mode 100644 index 0000000..6258cfc Binary files /dev/null and b/data/CTR-QBD/icon.jpg differ diff --git a/data/CTR-QBE/art.jpg b/data/CTR-QBE/art.jpg new file mode 100644 index 0000000..3145877 Binary files /dev/null and b/data/CTR-QBE/art.jpg differ diff --git a/data/CTR-QBE/data.yml b/data/CTR-QBE/data.yml new file mode 100644 index 0000000..3c5bcf8 --- /dev/null +++ b/data/CTR-QBE/data.yml @@ -0,0 +1,12 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 000400000011AB00 + name: 'Lufia®: The Legend Returns' + updates: [] +- regions: + - US + id: 000400000011AA00 + name: 'Lufia®: The Legend Returns' + updates: [] diff --git a/data/CTR-QBE/icon.jpg b/data/CTR-QBE/icon.jpg new file mode 100644 index 0000000..3b30617 Binary files /dev/null and b/data/CTR-QBE/icon.jpg differ diff --git a/data/CTR-QBF/art.jpg b/data/CTR-QBF/art.jpg new file mode 100644 index 0000000..364f8d8 Binary files /dev/null and b/data/CTR-QBF/art.jpg differ diff --git a/data/CTR-QBF/data.yml b/data/CTR-QBF/data.yml new file mode 100644 index 0000000..316aa0b --- /dev/null +++ b/data/CTR-QBF/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000171200 + name: Pokémon™ Yellow Version (English Version) + updates: [] diff --git a/data/CTR-QBF/icon.jpg b/data/CTR-QBF/icon.jpg new file mode 100644 index 0000000..c74948a Binary files /dev/null and b/data/CTR-QBF/icon.jpg differ diff --git a/data/CTR-QBG/art.jpg b/data/CTR-QBG/art.jpg new file mode 100644 index 0000000..71afcf3 Binary files /dev/null and b/data/CTR-QBG/art.jpg differ diff --git a/data/CTR-QBG/data.yml b/data/CTR-QBG/data.yml new file mode 100644 index 0000000..1c6a2b9 --- /dev/null +++ b/data/CTR-QBG/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000171500 + name: Pokémon™ Gelbe Edition + updates: [] diff --git a/data/CTR-QBG/icon.jpg b/data/CTR-QBG/icon.jpg new file mode 100644 index 0000000..bb0a8c8 Binary files /dev/null and b/data/CTR-QBG/icon.jpg differ diff --git a/data/CTR-QBH/art.jpg b/data/CTR-QBH/art.jpg new file mode 100644 index 0000000..8920c6d Binary files /dev/null and b/data/CTR-QBH/art.jpg differ diff --git a/data/CTR-QBH/data.yml b/data/CTR-QBH/data.yml new file mode 100644 index 0000000..7172587 --- /dev/null +++ b/data/CTR-QBH/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000171800 + name: Pokémon™ Yellow Version (French Version) + updates: [] diff --git a/data/CTR-QBH/icon.jpg b/data/CTR-QBH/icon.jpg new file mode 100644 index 0000000..c74948a Binary files /dev/null and b/data/CTR-QBH/icon.jpg differ diff --git a/data/CTR-QBJ/art.jpg b/data/CTR-QBJ/art.jpg new file mode 100644 index 0000000..8920c6d Binary files /dev/null and b/data/CTR-QBJ/art.jpg differ diff --git a/data/CTR-QBJ/data.yml b/data/CTR-QBJ/data.yml new file mode 100644 index 0000000..f9ec9e9 --- /dev/null +++ b/data/CTR-QBJ/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000171B00 + name: Pokémon™ Yellow Version (Spanish Version) + updates: [] diff --git a/data/CTR-QBJ/icon.jpg b/data/CTR-QBJ/icon.jpg new file mode 100644 index 0000000..c74948a Binary files /dev/null and b/data/CTR-QBJ/icon.jpg differ diff --git a/data/CTR-QBK/art.jpg b/data/CTR-QBK/art.jpg new file mode 100644 index 0000000..62f2ea3 Binary files /dev/null and b/data/CTR-QBK/art.jpg differ diff --git a/data/CTR-QBK/data.yml b/data/CTR-QBK/data.yml new file mode 100644 index 0000000..4a9e9bd --- /dev/null +++ b/data/CTR-QBK/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000171E00 + name: Pokémon™ Versione Gialla + updates: [] diff --git a/data/CTR-QBK/icon.jpg b/data/CTR-QBK/icon.jpg new file mode 100644 index 0000000..74c2c7b Binary files /dev/null and b/data/CTR-QBK/icon.jpg differ diff --git a/data/CTR-QBL/art.jpg b/data/CTR-QBL/art.jpg new file mode 100644 index 0000000..6c1b994 Binary files /dev/null and b/data/CTR-QBL/art.jpg differ diff --git a/data/CTR-QBL/data.yml b/data/CTR-QBL/data.yml new file mode 100644 index 0000000..7b36933 --- /dev/null +++ b/data/CTR-QBL/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - JP + - TW + id: 0004000000172300 + name: ポケットモンスター 金 + updates: [] diff --git a/data/CTR-QBL/icon.jpg b/data/CTR-QBL/icon.jpg new file mode 100644 index 0000000..0453c7c Binary files /dev/null and b/data/CTR-QBL/icon.jpg differ diff --git a/data/CTR-QBM/art.jpg b/data/CTR-QBM/art.jpg new file mode 100644 index 0000000..b0f601a Binary files /dev/null and b/data/CTR-QBM/art.jpg differ diff --git a/data/CTR-QBM/data.yml b/data/CTR-QBM/data.yml new file mode 100644 index 0000000..a8ec2fe --- /dev/null +++ b/data/CTR-QBM/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - JP + - TW + id: 0004000000172400 + name: ポケットモンスター 銀 + updates: [] diff --git a/data/CTR-QBM/icon.jpg b/data/CTR-QBM/icon.jpg new file mode 100644 index 0000000..24847ab Binary files /dev/null and b/data/CTR-QBM/icon.jpg differ diff --git a/data/CTR-QBN/art.jpg b/data/CTR-QBN/art.jpg new file mode 100644 index 0000000..1f06e7d Binary files /dev/null and b/data/CTR-QBN/art.jpg differ diff --git a/data/CTR-QBN/data.yml b/data/CTR-QBN/data.yml new file mode 100644 index 0000000..1506650 --- /dev/null +++ b/data/CTR-QBN/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - JP + - TW + id: 0004000000172500 + name: ポケットモンスター クリスタルバージョン + updates: [] diff --git a/data/CTR-QBN/icon.jpg b/data/CTR-QBN/icon.jpg new file mode 100644 index 0000000..ff3b298 Binary files /dev/null and b/data/CTR-QBN/icon.jpg differ diff --git a/data/CTR-QBP/art.jpg b/data/CTR-QBP/art.jpg new file mode 100644 index 0000000..d360cc1 Binary files /dev/null and b/data/CTR-QBP/art.jpg differ diff --git a/data/CTR-QBP/data.yml b/data/CTR-QBP/data.yml new file mode 100644 index 0000000..f133ff1 --- /dev/null +++ b/data/CTR-QBP/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172600 + name: Pokémon™ Gold Version (English Version) + updates: [] diff --git a/data/CTR-QBP/icon.jpg b/data/CTR-QBP/icon.jpg new file mode 100644 index 0000000..695908d Binary files /dev/null and b/data/CTR-QBP/icon.jpg differ diff --git a/data/CTR-QBQ/art.jpg b/data/CTR-QBQ/art.jpg new file mode 100644 index 0000000..5117c55 Binary files /dev/null and b/data/CTR-QBQ/art.jpg differ diff --git a/data/CTR-QBQ/data.yml b/data/CTR-QBQ/data.yml new file mode 100644 index 0000000..6271c03 --- /dev/null +++ b/data/CTR-QBQ/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172700 + name: Pokémon™ Silver Version (English Version) + updates: [] diff --git a/data/CTR-QBQ/icon.jpg b/data/CTR-QBQ/icon.jpg new file mode 100644 index 0000000..5f5b4c0 Binary files /dev/null and b/data/CTR-QBQ/icon.jpg differ diff --git a/data/CTR-QBR/art.jpg b/data/CTR-QBR/art.jpg new file mode 100644 index 0000000..5d454ad Binary files /dev/null and b/data/CTR-QBR/art.jpg differ diff --git a/data/CTR-QBR/data.yml b/data/CTR-QBR/data.yml new file mode 100644 index 0000000..f1765b5 --- /dev/null +++ b/data/CTR-QBR/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172800 + name: Pokémon™ Crystal Version (English Version) + updates: [] diff --git a/data/CTR-QBR/icon.jpg b/data/CTR-QBR/icon.jpg new file mode 100644 index 0000000..89904b6 Binary files /dev/null and b/data/CTR-QBR/icon.jpg differ diff --git a/data/CTR-QBS/art.jpg b/data/CTR-QBS/art.jpg new file mode 100644 index 0000000..ad1847e Binary files /dev/null and b/data/CTR-QBS/art.jpg differ diff --git a/data/CTR-QBS/data.yml b/data/CTR-QBS/data.yml new file mode 100644 index 0000000..93ed9f2 --- /dev/null +++ b/data/CTR-QBS/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000172900 + name: Pokémon™ Goldene Edition + updates: [] diff --git a/data/CTR-QBS/icon.jpg b/data/CTR-QBS/icon.jpg new file mode 100644 index 0000000..92406b3 Binary files /dev/null and b/data/CTR-QBS/icon.jpg differ diff --git a/data/CTR-QBT/art.jpg b/data/CTR-QBT/art.jpg new file mode 100644 index 0000000..e803f53 Binary files /dev/null and b/data/CTR-QBT/art.jpg differ diff --git a/data/CTR-QBT/data.yml b/data/CTR-QBT/data.yml new file mode 100644 index 0000000..2c91e62 --- /dev/null +++ b/data/CTR-QBT/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000172A00 + name: Pokémon™ Silberne Edition + updates: [] diff --git a/data/CTR-QBT/icon.jpg b/data/CTR-QBT/icon.jpg new file mode 100644 index 0000000..6b33de4 Binary files /dev/null and b/data/CTR-QBT/icon.jpg differ diff --git a/data/CTR-QBU/art.jpg b/data/CTR-QBU/art.jpg new file mode 100644 index 0000000..7a38fdf Binary files /dev/null and b/data/CTR-QBU/art.jpg differ diff --git a/data/CTR-QBU/data.yml b/data/CTR-QBU/data.yml new file mode 100644 index 0000000..b97ea4f --- /dev/null +++ b/data/CTR-QBU/data.yml @@ -0,0 +1,7 @@ +platform: GameBoyColor +releases: +- regions: + - EU + id: 0004000000172B00 + name: Pokémon™ - Kristall-Edition + updates: [] diff --git a/data/CTR-QBU/icon.jpg b/data/CTR-QBU/icon.jpg new file mode 100644 index 0000000..25bedb5 Binary files /dev/null and b/data/CTR-QBU/icon.jpg differ diff --git a/data/CTR-QBV/art.jpg b/data/CTR-QBV/art.jpg new file mode 100644 index 0000000..d360cc1 Binary files /dev/null and b/data/CTR-QBV/art.jpg differ diff --git a/data/CTR-QBV/data.yml b/data/CTR-QBV/data.yml new file mode 100644 index 0000000..9ccb7bd --- /dev/null +++ b/data/CTR-QBV/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172C00 + name: Pokémon™ Gold Version (French Version) + updates: [] diff --git a/data/CTR-QBV/icon.jpg b/data/CTR-QBV/icon.jpg new file mode 100644 index 0000000..695908d Binary files /dev/null and b/data/CTR-QBV/icon.jpg differ diff --git a/data/CTR-QBW/art.jpg b/data/CTR-QBW/art.jpg new file mode 100644 index 0000000..5117c55 Binary files /dev/null and b/data/CTR-QBW/art.jpg differ diff --git a/data/CTR-QBW/data.yml b/data/CTR-QBW/data.yml new file mode 100644 index 0000000..c29ff29 --- /dev/null +++ b/data/CTR-QBW/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172D00 + name: Pokémon™ Silver Version (French Version) + updates: [] diff --git a/data/CTR-QBW/icon.jpg b/data/CTR-QBW/icon.jpg new file mode 100644 index 0000000..5f5b4c0 Binary files /dev/null and b/data/CTR-QBW/icon.jpg differ diff --git a/data/CTR-QBX/art.jpg b/data/CTR-QBX/art.jpg new file mode 100644 index 0000000..5d454ad Binary files /dev/null and b/data/CTR-QBX/art.jpg differ diff --git a/data/CTR-QBX/data.yml b/data/CTR-QBX/data.yml new file mode 100644 index 0000000..4869d8c --- /dev/null +++ b/data/CTR-QBX/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172E00 + name: Pokémon™ Crystal Version (French Version) + updates: [] diff --git a/data/CTR-QBX/icon.jpg b/data/CTR-QBX/icon.jpg new file mode 100644 index 0000000..89904b6 Binary files /dev/null and b/data/CTR-QBX/icon.jpg differ diff --git a/data/CTR-QBY/art.jpg b/data/CTR-QBY/art.jpg new file mode 100644 index 0000000..d360cc1 Binary files /dev/null and b/data/CTR-QBY/art.jpg differ diff --git a/data/CTR-QBY/data.yml b/data/CTR-QBY/data.yml new file mode 100644 index 0000000..6e4a234 --- /dev/null +++ b/data/CTR-QBY/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000172F00 + name: Pokémon™ Gold Version (Spanish Version) + updates: [] diff --git a/data/CTR-QBY/icon.jpg b/data/CTR-QBY/icon.jpg new file mode 100644 index 0000000..695908d Binary files /dev/null and b/data/CTR-QBY/icon.jpg differ diff --git a/data/CTR-QBZ/art.jpg b/data/CTR-QBZ/art.jpg new file mode 100644 index 0000000..5117c55 Binary files /dev/null and b/data/CTR-QBZ/art.jpg differ diff --git a/data/CTR-QBZ/data.yml b/data/CTR-QBZ/data.yml new file mode 100644 index 0000000..b74f3fe --- /dev/null +++ b/data/CTR-QBZ/data.yml @@ -0,0 +1,8 @@ +platform: GameBoyColor +releases: +- regions: + - EU + - US + id: 0004000000173000 + name: Pokémon™ Silver Version (Spanish Version) + updates: [] diff --git a/data/CTR-QBZ/icon.jpg b/data/CTR-QBZ/icon.jpg new file mode 100644 index 0000000..5f5b4c0 Binary files /dev/null and b/data/CTR-QBZ/icon.jpg differ diff --git a/data/CTR-RA2/art.jpg b/data/CTR-RA2/art.jpg new file mode 100644 index 0000000..ad206d3 Binary files /dev/null and b/data/CTR-RA2/art.jpg differ diff --git a/data/CTR-RA2/data.yml b/data/CTR-RA2/data.yml new file mode 100644 index 0000000..0905675 --- /dev/null +++ b/data/CTR-RA2/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000004FF00 + name: ADVENTURE ISLAND + updates: [] +- regions: + - JP + id: 000400000004FD00 + name: 高橋名人の冒険島Ⅱ + updates: [] +- regions: + - US + id: 000400000004FE00 + name: Adventure Island + updates: [] diff --git a/data/CTR-RA2/icon.jpg b/data/CTR-RA2/icon.jpg new file mode 100644 index 0000000..c60067d Binary files /dev/null and b/data/CTR-RA2/icon.jpg differ diff --git a/data/CTR-RA3/art.jpg b/data/CTR-RA3/art.jpg new file mode 100644 index 0000000..f1d7f47 Binary files /dev/null and b/data/CTR-RA3/art.jpg differ diff --git a/data/CTR-RA3/data.yml b/data/CTR-RA3/data.yml new file mode 100644 index 0000000..133349b --- /dev/null +++ b/data/CTR-RA3/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000050200 + name: Donkey Kong™ Land + updates: [] +- regions: + - JP + id: 0004000000050000 + name: スーパードンキーコングGB + updates: [] +- regions: + - US + id: 0004000000050100 + name: Donkey Kong Land™ + updates: [] diff --git a/data/CTR-RA3/icon.jpg b/data/CTR-RA3/icon.jpg new file mode 100644 index 0000000..76220df Binary files /dev/null and b/data/CTR-RA3/icon.jpg differ diff --git a/data/CTR-RA4/art.jpg b/data/CTR-RA4/art.jpg new file mode 100644 index 0000000..7784a68 Binary files /dev/null and b/data/CTR-RA4/art.jpg differ diff --git a/data/CTR-RA4/data.yml b/data/CTR-RA4/data.yml new file mode 100644 index 0000000..70e1a30 --- /dev/null +++ b/data/CTR-RA4/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000050500 + name: Metroid™ II - Return of Samus + updates: [] +- regions: + - JP + id: 0004000000050300 + name: メトロイドⅡ RETURN OF SAMUS + updates: [] +- regions: + - KR + id: 0004000000195500 + name: Metroid II - Return of Samus (메트로이드 II-리턴 오브 사무스) + updates: [] +- regions: + - US + id: 0004000000050400 + name: Metroid™ II - Return of Samus™ + updates: [] diff --git a/data/CTR-RA4/icon.jpg b/data/CTR-RA4/icon.jpg new file mode 100644 index 0000000..bf89bd1 Binary files /dev/null and b/data/CTR-RA4/icon.jpg differ diff --git a/data/CTR-RA5/art.jpg b/data/CTR-RA5/art.jpg new file mode 100644 index 0000000..cb32c8c Binary files /dev/null and b/data/CTR-RA5/art.jpg differ diff --git a/data/CTR-RA5/data.yml b/data/CTR-RA5/data.yml new file mode 100644 index 0000000..f22ac47 --- /dev/null +++ b/data/CTR-RA5/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000050800 + name: Dr. Mario™ + updates: [] +- regions: + - JP + id: 0004000000050600 + name: ドクターマリオ + updates: [] +- regions: + - KR + id: 0004000000196100 + name: Dr. Mario + updates: [] +- regions: + - US + id: 0004000000050700 + name: Dr. Mario™ + updates: [] diff --git a/data/CTR-RA5/icon.jpg b/data/CTR-RA5/icon.jpg new file mode 100644 index 0000000..5071b66 Binary files /dev/null and b/data/CTR-RA5/icon.jpg differ diff --git a/data/CTR-RA6/art.jpg b/data/CTR-RA6/art.jpg new file mode 100644 index 0000000..232ec19 Binary files /dev/null and b/data/CTR-RA6/art.jpg differ diff --git a/data/CTR-RA6/data.yml b/data/CTR-RA6/data.yml new file mode 100644 index 0000000..2495c32 --- /dev/null +++ b/data/CTR-RA6/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000050B00 + name: Burger Time DELUXE + updates: [] +- regions: + - JP + id: 0004000000050900 + name: バーガータイムデラックス + updates: [] +- regions: + - US + id: 0004000000050A00 + name: Burger Time Deluxe™ + updates: [] diff --git a/data/CTR-RA6/icon.jpg b/data/CTR-RA6/icon.jpg new file mode 100644 index 0000000..1020225 Binary files /dev/null and b/data/CTR-RA6/icon.jpg differ diff --git a/data/CTR-RA7/art.jpg b/data/CTR-RA7/art.jpg new file mode 100644 index 0000000..31b2163 Binary files /dev/null and b/data/CTR-RA7/art.jpg differ diff --git a/data/CTR-RA7/data.yml b/data/CTR-RA7/data.yml new file mode 100644 index 0000000..dad9c5f --- /dev/null +++ b/data/CTR-RA7/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000050E00 + name: Side Pocket + updates: [] +- regions: + - JP + id: 0004000000050C00 + name: サイドポケット + updates: [] +- regions: + - US + id: 0004000000050D00 + name: Side Pocket + updates: [] diff --git a/data/CTR-RA7/icon.jpg b/data/CTR-RA7/icon.jpg new file mode 100644 index 0000000..40dc391 Binary files /dev/null and b/data/CTR-RA7/icon.jpg differ diff --git a/data/CTR-RA8/art.jpg b/data/CTR-RA8/art.jpg new file mode 100644 index 0000000..46719e8 Binary files /dev/null and b/data/CTR-RA8/art.jpg differ diff --git a/data/CTR-RA8/data.yml b/data/CTR-RA8/data.yml new file mode 100644 index 0000000..2281fbd --- /dev/null +++ b/data/CTR-RA8/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000050F00 + name: ヘラクレスの栄光 動き出した神々 + updates: [] diff --git a/data/CTR-RA8/icon.jpg b/data/CTR-RA8/icon.jpg new file mode 100644 index 0000000..4b9812d Binary files /dev/null and b/data/CTR-RA8/icon.jpg differ diff --git a/data/CTR-RA9/art.jpg b/data/CTR-RA9/art.jpg new file mode 100644 index 0000000..ffe1b9c Binary files /dev/null and b/data/CTR-RA9/art.jpg differ diff --git a/data/CTR-RA9/data.yml b/data/CTR-RA9/data.yml new file mode 100644 index 0000000..65fa658 --- /dev/null +++ b/data/CTR-RA9/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000051000 + name: ZOIDS ゾイド伝説 + updates: [] diff --git a/data/CTR-RA9/icon.jpg b/data/CTR-RA9/icon.jpg new file mode 100644 index 0000000..ea399c4 Binary files /dev/null and b/data/CTR-RA9/icon.jpg differ diff --git a/data/CTR-RAA/art.jpg b/data/CTR-RAA/art.jpg new file mode 100644 index 0000000..78400b3 Binary files /dev/null and b/data/CTR-RAA/art.jpg differ diff --git a/data/CTR-RAA/data.yml b/data/CTR-RAA/data.yml new file mode 100644 index 0000000..69380b1 --- /dev/null +++ b/data/CTR-RAA/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000040A00 + name: Super Mario Land™ + updates: [] +- regions: + - JP + id: 0004000000040900 + name: スーパーマリオランド + updates: [] +- regions: + - KR + id: 0004000000181600 + name: Super Mario Land + updates: [] +- regions: + - US + id: 0004000000040800 + name: Super Mario Land™ + updates: [] diff --git a/data/CTR-RAA/icon.jpg b/data/CTR-RAA/icon.jpg new file mode 100644 index 0000000..403dc1a Binary files /dev/null and b/data/CTR-RAA/icon.jpg differ diff --git a/data/CTR-RAB/art.jpg b/data/CTR-RAB/art.jpg new file mode 100644 index 0000000..88fd5d2 Binary files /dev/null and b/data/CTR-RAB/art.jpg differ diff --git a/data/CTR-RAB/data.yml b/data/CTR-RAB/data.yml new file mode 100644 index 0000000..519b9df --- /dev/null +++ b/data/CTR-RAB/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000040D00 + name: Baseball + updates: [] +- regions: + - JP + id: 0004000000040B00 + name: ベースボール + updates: [] +- regions: + - KR + id: 0004000000191700 + name: Baseball + updates: [] +- regions: + - US + id: 0004000000040C00 + name: Baseball + updates: [] diff --git a/data/CTR-RAB/icon.jpg b/data/CTR-RAB/icon.jpg new file mode 100644 index 0000000..90b15de Binary files /dev/null and b/data/CTR-RAB/icon.jpg differ diff --git a/data/CTR-RAC/art.jpg b/data/CTR-RAC/art.jpg new file mode 100644 index 0000000..ba55c0b Binary files /dev/null and b/data/CTR-RAC/art.jpg differ diff --git a/data/CTR-RAC/data.yml b/data/CTR-RAC/data.yml new file mode 100644 index 0000000..de19b05 --- /dev/null +++ b/data/CTR-RAC/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000041000 + name: Alleyway™ + updates: [] +- regions: + - JP + id: 0004000000040F00 + name: アレイウェイ + updates: [] +- regions: + - KR + id: 0004000000195F00 + name: Alleyway + updates: [] +- regions: + - US + id: 0004000000040E00 + name: Alleyway™ + updates: [] diff --git a/data/CTR-RAC/icon.jpg b/data/CTR-RAC/icon.jpg new file mode 100644 index 0000000..10ebb01 Binary files /dev/null and b/data/CTR-RAC/icon.jpg differ diff --git a/data/CTR-RAD/art.jpg b/data/CTR-RAD/art.jpg new file mode 100644 index 0000000..eea06ca Binary files /dev/null and b/data/CTR-RAD/art.jpg differ diff --git a/data/CTR-RAD/data.yml b/data/CTR-RAD/data.yml new file mode 100644 index 0000000..3c20964 --- /dev/null +++ b/data/CTR-RAD/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000041300 + name: Tennis + updates: [] +- regions: + - JP + id: 0004000000041200 + name: テニス + updates: [] +- regions: + - KR + id: 0004000000181700 + name: Tennis + updates: [] +- regions: + - US + id: 0004000000041100 + name: Tennis + updates: [] diff --git a/data/CTR-RAD/icon.jpg b/data/CTR-RAD/icon.jpg new file mode 100644 index 0000000..85733e5 Binary files /dev/null and b/data/CTR-RAD/icon.jpg differ diff --git a/data/CTR-RAE/art.jpg b/data/CTR-RAE/art.jpg new file mode 100644 index 0000000..8d4b36b Binary files /dev/null and b/data/CTR-RAE/art.jpg differ diff --git a/data/CTR-RAE/data.yml b/data/CTR-RAE/data.yml new file mode 100644 index 0000000..8bca954 --- /dev/null +++ b/data/CTR-RAE/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000041600 + name: QIX + updates: [] +- regions: + - JP + id: 0004000000041500 + name: クイックス + updates: [] +- regions: + - US + id: 0004000000041400 + name: Qix™ + updates: [] diff --git a/data/CTR-RAE/icon.jpg b/data/CTR-RAE/icon.jpg new file mode 100644 index 0000000..3ba2b0d Binary files /dev/null and b/data/CTR-RAE/icon.jpg differ diff --git a/data/CTR-RAF/art.jpg b/data/CTR-RAF/art.jpg new file mode 100644 index 0000000..045f0e7 Binary files /dev/null and b/data/CTR-RAF/art.jpg differ diff --git a/data/CTR-RAF/data.yml b/data/CTR-RAF/data.yml new file mode 100644 index 0000000..6b4d547 --- /dev/null +++ b/data/CTR-RAF/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000041900 + name: Kirby's Dream Land™ + updates: [] +- regions: + - JP + id: 0004000000041800 + name: 星のカービィ + updates: [] +- regions: + - KR + id: 0004000000184900 + name: Kirby's Dream Land + updates: [] +- regions: + - US + id: 0004000000041700 + name: Kirby's Dream Land™ + updates: [] diff --git a/data/CTR-RAF/icon.jpg b/data/CTR-RAF/icon.jpg new file mode 100644 index 0000000..13aa742 Binary files /dev/null and b/data/CTR-RAF/icon.jpg differ diff --git a/data/CTR-RAG/art.jpg b/data/CTR-RAG/art.jpg new file mode 100644 index 0000000..4a7ec68 Binary files /dev/null and b/data/CTR-RAG/art.jpg differ diff --git a/data/CTR-RAG/data.yml b/data/CTR-RAG/data.yml new file mode 100644 index 0000000..a4d9d6d --- /dev/null +++ b/data/CTR-RAG/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000041C00 + name: 'Super Mario Land™ 2: 6 Golden Coins™' + updates: [] +- regions: + - JP + id: 0004000000041B00 + name: スーパーマリオランド2 6つの金貨 + updates: [] +- regions: + - KR + id: 0004000000181500 + name: 'Super Mario Land 2: 6 Golden Coins' + updates: [] +- regions: + - US + id: 0004000000041A00 + name: 'Super Mario Land™ 2: 6 Golden Coins™' + updates: [] diff --git a/data/CTR-RAG/icon.jpg b/data/CTR-RAG/icon.jpg new file mode 100644 index 0000000..71ad313 Binary files /dev/null and b/data/CTR-RAG/icon.jpg differ diff --git a/data/CTR-RAH/art.jpg b/data/CTR-RAH/art.jpg new file mode 100644 index 0000000..0000db0 Binary files /dev/null and b/data/CTR-RAH/art.jpg differ diff --git a/data/CTR-RAH/data.yml b/data/CTR-RAH/data.yml new file mode 100644 index 0000000..30b1ab5 --- /dev/null +++ b/data/CTR-RAH/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000041F00 + name: Donkey Kong™ + updates: [] +- regions: + - JP + id: 0004000000041E00 + name: ドンキーコング + updates: [] +- regions: + - KR + id: 0004000000191600 + name: Donkey Kong + updates: [] +- regions: + - US + id: 0004000000041D00 + name: Donkey Kong™ + updates: [] diff --git a/data/CTR-RAH/icon.jpg b/data/CTR-RAH/icon.jpg new file mode 100644 index 0000000..ea68fb6 Binary files /dev/null and b/data/CTR-RAH/icon.jpg differ diff --git a/data/CTR-RAJ/art.jpg b/data/CTR-RAJ/art.jpg new file mode 100644 index 0000000..89ebcff Binary files /dev/null and b/data/CTR-RAJ/art.jpg differ diff --git a/data/CTR-RAJ/data.yml b/data/CTR-RAJ/data.yml new file mode 100644 index 0000000..25c392a --- /dev/null +++ b/data/CTR-RAJ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000042200 + name: Mario's Picross™ + updates: [] +- regions: + - JP + id: 0004000000042100 + name: マリオのピクロス + updates: [] +- regions: + - US + id: 0004000000042000 + name: Mario's Picross™ + updates: [] diff --git a/data/CTR-RAJ/icon.jpg b/data/CTR-RAJ/icon.jpg new file mode 100644 index 0000000..adf4d88 Binary files /dev/null and b/data/CTR-RAJ/icon.jpg differ diff --git a/data/CTR-RAK/art.jpg b/data/CTR-RAK/art.jpg new file mode 100644 index 0000000..24fc12a Binary files /dev/null and b/data/CTR-RAK/art.jpg differ diff --git a/data/CTR-RAK/data.yml b/data/CTR-RAK/data.yml new file mode 100644 index 0000000..3d4b81d --- /dev/null +++ b/data/CTR-RAK/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000042500 + name: Game & Watch™ Gallery + updates: [] +- regions: + - JP + id: 0004000000042400 + name: ゲームボーイギャラリー + updates: [] +- regions: + - US + id: 0004000000042300 + name: Game & Watch™ Gallery + updates: [] diff --git a/data/CTR-RAK/icon.jpg b/data/CTR-RAK/icon.jpg new file mode 100644 index 0000000..77ab923 Binary files /dev/null and b/data/CTR-RAK/icon.jpg differ diff --git a/data/CTR-RAL/art.jpg b/data/CTR-RAL/art.jpg new file mode 100644 index 0000000..163b4e4 Binary files /dev/null and b/data/CTR-RAL/art.jpg differ diff --git a/data/CTR-RAL/data.yml b/data/CTR-RAL/data.yml new file mode 100644 index 0000000..b0c6647 --- /dev/null +++ b/data/CTR-RAL/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000042D00 + name: Golf + updates: [] +- regions: + - JP + id: 0004000000042C00 + name: ゴルフ + updates: [] +- regions: + - KR + id: 0004000000181B00 + name: Golf + updates: [] +- regions: + - US + id: 0004000000042B00 + name: Golf + updates: [] diff --git a/data/CTR-RAL/icon.jpg b/data/CTR-RAL/icon.jpg new file mode 100644 index 0000000..b6a7409 Binary files /dev/null and b/data/CTR-RAL/icon.jpg differ diff --git a/data/CTR-RAM/art.jpg b/data/CTR-RAM/art.jpg new file mode 100644 index 0000000..2edf352 Binary files /dev/null and b/data/CTR-RAM/art.jpg differ diff --git a/data/CTR-RAM/data.yml b/data/CTR-RAM/data.yml new file mode 100644 index 0000000..530e4f5 --- /dev/null +++ b/data/CTR-RAM/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000043000 + name: Radar Mission™ + updates: [] +- regions: + - JP + id: 0004000000042F00 + name: レーダーミッション + updates: [] +- regions: + - US + id: 0004000000042E00 + name: Radar Mission™ + updates: [] diff --git a/data/CTR-RAM/icon.jpg b/data/CTR-RAM/icon.jpg new file mode 100644 index 0000000..bdf7f39 Binary files /dev/null and b/data/CTR-RAM/icon.jpg differ diff --git a/data/CTR-RAN/art.jpg b/data/CTR-RAN/art.jpg new file mode 100644 index 0000000..c988405 Binary files /dev/null and b/data/CTR-RAN/art.jpg differ diff --git a/data/CTR-RAN/data.yml b/data/CTR-RAN/data.yml new file mode 100644 index 0000000..d7f9a9b --- /dev/null +++ b/data/CTR-RAN/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000043100 + name: カエルの為に鐘は鳴る + updates: [] diff --git a/data/CTR-RAN/icon.jpg b/data/CTR-RAN/icon.jpg new file mode 100644 index 0000000..c72387b Binary files /dev/null and b/data/CTR-RAN/icon.jpg differ diff --git a/data/CTR-RAQ/art.jpg b/data/CTR-RAQ/art.jpg new file mode 100644 index 0000000..5d51429 Binary files /dev/null and b/data/CTR-RAQ/art.jpg differ diff --git a/data/CTR-RAQ/data.yml b/data/CTR-RAQ/data.yml new file mode 100644 index 0000000..e40757a --- /dev/null +++ b/data/CTR-RAQ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000046D00 + name: Fortified Zone + updates: [] +- regions: + - JP + id: 0004000000046C00 + name: 怒りの要塞 + updates: [] +- regions: + - US + id: 0004000000046B00 + name: Fortified Zone + updates: [] diff --git a/data/CTR-RAQ/icon.jpg b/data/CTR-RAQ/icon.jpg new file mode 100644 index 0000000..63d1af0 Binary files /dev/null and b/data/CTR-RAQ/icon.jpg differ diff --git a/data/CTR-RAR/art.jpg b/data/CTR-RAR/art.jpg new file mode 100644 index 0000000..17d9189 Binary files /dev/null and b/data/CTR-RAR/art.jpg differ diff --git a/data/CTR-RAR/data.yml b/data/CTR-RAR/data.yml new file mode 100644 index 0000000..62fee86 --- /dev/null +++ b/data/CTR-RAR/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000049700 + name: Avenging Spirit + updates: [] +- regions: + - JP + id: 0004000000048900 + name: ファンタズム + updates: [] +- regions: + - US + id: 0004000000049800 + name: Avenging Spirit + updates: [] diff --git a/data/CTR-RAR/icon.jpg b/data/CTR-RAR/icon.jpg new file mode 100644 index 0000000..65039c8 Binary files /dev/null and b/data/CTR-RAR/icon.jpg differ diff --git a/data/CTR-RAS/art.jpg b/data/CTR-RAS/art.jpg new file mode 100644 index 0000000..377b71c Binary files /dev/null and b/data/CTR-RAS/art.jpg differ diff --git a/data/CTR-RAS/data.yml b/data/CTR-RAS/data.yml new file mode 100644 index 0000000..8fcd145 --- /dev/null +++ b/data/CTR-RAS/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000049900 + name: ダウンタウンスペシャル くにおくんの時代劇だよ全員集合! + updates: [] diff --git a/data/CTR-RAS/icon.jpg b/data/CTR-RAS/icon.jpg new file mode 100644 index 0000000..13f7cb0 Binary files /dev/null and b/data/CTR-RAS/icon.jpg differ diff --git a/data/CTR-RAT/art.jpg b/data/CTR-RAT/art.jpg new file mode 100644 index 0000000..96e6e68 Binary files /dev/null and b/data/CTR-RAT/art.jpg differ diff --git a/data/CTR-RAT/data.yml b/data/CTR-RAT/data.yml new file mode 100644 index 0000000..315a55a --- /dev/null +++ b/data/CTR-RAT/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000049A00 + name: 熱血高校ドッジボール部 ~強敵!闘球戦士の巻~ + updates: [] diff --git a/data/CTR-RAT/icon.jpg b/data/CTR-RAT/icon.jpg new file mode 100644 index 0000000..0e626ba Binary files /dev/null and b/data/CTR-RAT/icon.jpg differ diff --git a/data/CTR-RAU/art.jpg b/data/CTR-RAU/art.jpg new file mode 100644 index 0000000..03326ba Binary files /dev/null and b/data/CTR-RAU/art.jpg differ diff --git a/data/CTR-RAU/data.yml b/data/CTR-RAU/data.yml new file mode 100644 index 0000000..a782280 --- /dev/null +++ b/data/CTR-RAU/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000049D00 + name: Double Dragon + updates: [] +- regions: + - JP + id: 000400000004B400 + name: ダブルドラゴン + updates: [] +- regions: + - US + id: 0004000000049C00 + name: Double Dragon® + updates: [] diff --git a/data/CTR-RAU/icon.jpg b/data/CTR-RAU/icon.jpg new file mode 100644 index 0000000..ab26d84 Binary files /dev/null and b/data/CTR-RAU/icon.jpg differ diff --git a/data/CTR-RAV/art.jpg b/data/CTR-RAV/art.jpg new file mode 100644 index 0000000..48fe526 Binary files /dev/null and b/data/CTR-RAV/art.jpg differ diff --git a/data/CTR-RAV/data.yml b/data/CTR-RAV/data.yml new file mode 100644 index 0000000..8e4f875 --- /dev/null +++ b/data/CTR-RAV/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000049B00 + name: びっくり熱血新記録! どこでも金メダル + updates: [] diff --git a/data/CTR-RAV/icon.jpg b/data/CTR-RAV/icon.jpg new file mode 100644 index 0000000..48ef877 Binary files /dev/null and b/data/CTR-RAV/icon.jpg differ diff --git a/data/CTR-RAW/art.jpg b/data/CTR-RAW/art.jpg new file mode 100644 index 0000000..a802334 Binary files /dev/null and b/data/CTR-RAW/art.jpg differ diff --git a/data/CTR-RAW/data.yml b/data/CTR-RAW/data.yml new file mode 100644 index 0000000..d64b152 --- /dev/null +++ b/data/CTR-RAW/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000004F200 + name: "Mega Man™: Dr. Wily's Revenge" + updates: [] +- regions: + - JP + id: 000400000004EF00 + name: ロックマンワールド + updates: [] +- regions: + - US + id: 000400000004F100 + name: "Mega Man™: Dr. Wily's Revenge" + updates: [] diff --git a/data/CTR-RAW/icon.jpg b/data/CTR-RAW/icon.jpg new file mode 100644 index 0000000..a5a951b Binary files /dev/null and b/data/CTR-RAW/icon.jpg differ diff --git a/data/CTR-RAX/art.jpg b/data/CTR-RAX/art.jpg new file mode 100644 index 0000000..54a1cf8 Binary files /dev/null and b/data/CTR-RAX/art.jpg differ diff --git a/data/CTR-RAX/data.yml b/data/CTR-RAX/data.yml new file mode 100644 index 0000000..84f138a --- /dev/null +++ b/data/CTR-RAX/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000004F500 + name: GARGOYLE'S QUEST + updates: [] +- regions: + - JP + id: 000400000004F300 + name: レッドアリーマー MAKAIMURA GAIDEN + updates: [] +- regions: + - US + id: 000400000004F400 + name: GARGOYLE'S QUEST + updates: [] diff --git a/data/CTR-RAX/icon.jpg b/data/CTR-RAX/icon.jpg new file mode 100644 index 0000000..7c3e78b Binary files /dev/null and b/data/CTR-RAX/icon.jpg differ diff --git a/data/CTR-RAY/art.jpg b/data/CTR-RAY/art.jpg new file mode 100644 index 0000000..f7565f8 Binary files /dev/null and b/data/CTR-RAY/art.jpg differ diff --git a/data/CTR-RAY/data.yml b/data/CTR-RAY/data.yml new file mode 100644 index 0000000..33df37b --- /dev/null +++ b/data/CTR-RAY/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000004F900 + name: CATRAP + updates: [] +- regions: + - JP + id: 000400000004F700 + name: PITMAN + updates: [] +- regions: + - US + id: 000400000004F800 + name: CATRAP + updates: [] diff --git a/data/CTR-RAY/icon.jpg b/data/CTR-RAY/icon.jpg new file mode 100644 index 0000000..189efaf Binary files /dev/null and b/data/CTR-RAY/icon.jpg differ diff --git a/data/CTR-RAZ/art.jpg b/data/CTR-RAZ/art.jpg new file mode 100644 index 0000000..c339172 Binary files /dev/null and b/data/CTR-RAZ/art.jpg differ diff --git a/data/CTR-RAZ/data.yml b/data/CTR-RAZ/data.yml new file mode 100644 index 0000000..0ba4a98 --- /dev/null +++ b/data/CTR-RAZ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000004FC00 + name: PAC-MAN™ + updates: [] +- regions: + - JP + id: 000400000004FA00 + name: パックマン + updates: [] +- regions: + - US + id: 000400000004FB00 + name: PAC-MAN® + updates: [] diff --git a/data/CTR-RAZ/icon.jpg b/data/CTR-RAZ/icon.jpg new file mode 100644 index 0000000..e9a636e Binary files /dev/null and b/data/CTR-RAZ/icon.jpg differ diff --git a/data/CTR-RB2/art.jpg b/data/CTR-RB2/art.jpg new file mode 100644 index 0000000..676b8f8 Binary files /dev/null and b/data/CTR-RB2/art.jpg differ diff --git a/data/CTR-RB2/data.yml b/data/CTR-RB2/data.yml new file mode 100644 index 0000000..739a0b4 --- /dev/null +++ b/data/CTR-RB2/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000008E400 + name: ダウンタウン熱血行進曲 どこでも大運動会 + updates: [] diff --git a/data/CTR-RB2/icon.jpg b/data/CTR-RB2/icon.jpg new file mode 100644 index 0000000..078dd91 Binary files /dev/null and b/data/CTR-RB2/icon.jpg differ diff --git a/data/CTR-RB3/art.jpg b/data/CTR-RB3/art.jpg new file mode 100644 index 0000000..bcb1613 Binary files /dev/null and b/data/CTR-RB3/art.jpg differ diff --git a/data/CTR-RB3/data.yml b/data/CTR-RB3/data.yml new file mode 100644 index 0000000..5abdfa2 --- /dev/null +++ b/data/CTR-RB3/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000008E500 + name: ボンバーマンGB3 + updates: [] diff --git a/data/CTR-RB3/icon.jpg b/data/CTR-RB3/icon.jpg new file mode 100644 index 0000000..85afa1e Binary files /dev/null and b/data/CTR-RB3/icon.jpg differ diff --git a/data/CTR-RB4/art.jpg b/data/CTR-RB4/art.jpg new file mode 100644 index 0000000..a917890 Binary files /dev/null and b/data/CTR-RB4/art.jpg differ diff --git a/data/CTR-RB4/data.yml b/data/CTR-RB4/data.yml new file mode 100644 index 0000000..6901af2 --- /dev/null +++ b/data/CTR-RB4/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000008E600 + name: がんばれゴエモン さらわれたエビス丸 + updates: [] diff --git a/data/CTR-RB4/icon.jpg b/data/CTR-RB4/icon.jpg new file mode 100644 index 0000000..e5f3882 Binary files /dev/null and b/data/CTR-RB4/icon.jpg differ diff --git a/data/CTR-RB5/art.jpg b/data/CTR-RB5/art.jpg new file mode 100644 index 0000000..0dee60f Binary files /dev/null and b/data/CTR-RB5/art.jpg differ diff --git a/data/CTR-RB5/data.yml b/data/CTR-RB5/data.yml new file mode 100644 index 0000000..4e358fe --- /dev/null +++ b/data/CTR-RB5/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000008E700 + name: ピクロス2 + updates: [] diff --git a/data/CTR-RB5/icon.jpg b/data/CTR-RB5/icon.jpg new file mode 100644 index 0000000..17bfa54 Binary files /dev/null and b/data/CTR-RB5/icon.jpg differ diff --git a/data/CTR-RB6/art.jpg b/data/CTR-RB6/art.jpg new file mode 100644 index 0000000..5cfadbc Binary files /dev/null and b/data/CTR-RB6/art.jpg differ diff --git a/data/CTR-RB6/data.yml b/data/CTR-RB6/data.yml new file mode 100644 index 0000000..5f2d890 --- /dev/null +++ b/data/CTR-RB6/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000008E800 + name: ツインビーだ!! + updates: [] diff --git a/data/CTR-RB6/icon.jpg b/data/CTR-RB6/icon.jpg new file mode 100644 index 0000000..c2af41f Binary files /dev/null and b/data/CTR-RB6/icon.jpg differ diff --git a/data/CTR-RB7/art.jpg b/data/CTR-RB7/art.jpg new file mode 100644 index 0000000..89297ab Binary files /dev/null and b/data/CTR-RB7/art.jpg differ diff --git a/data/CTR-RB7/data.yml b/data/CTR-RB7/data.yml new file mode 100644 index 0000000..eb6e6e7 --- /dev/null +++ b/data/CTR-RB7/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000093900 + name: Mole Mania + updates: [] +- regions: + - JP + id: 0004000000093700 + name: モグラ~ニャ + updates: [] +- regions: + - US + id: 0004000000093800 + name: Mole Mania™ + updates: [] diff --git a/data/CTR-RB7/icon.jpg b/data/CTR-RB7/icon.jpg new file mode 100644 index 0000000..220d247 Binary files /dev/null and b/data/CTR-RB7/icon.jpg differ diff --git a/data/CTR-RB8/art.jpg b/data/CTR-RB8/art.jpg new file mode 100644 index 0000000..ac1955e Binary files /dev/null and b/data/CTR-RB8/art.jpg differ diff --git a/data/CTR-RB8/data.yml b/data/CTR-RB8/data.yml new file mode 100644 index 0000000..82f7e39 --- /dev/null +++ b/data/CTR-RB8/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000093A00 + name: ネコジャラ物語 + updates: [] diff --git a/data/CTR-RB8/icon.jpg b/data/CTR-RB8/icon.jpg new file mode 100644 index 0000000..16f781a Binary files /dev/null and b/data/CTR-RB8/icon.jpg differ diff --git a/data/CTR-RB9/art.jpg b/data/CTR-RB9/art.jpg new file mode 100644 index 0000000..bcad48f Binary files /dev/null and b/data/CTR-RB9/art.jpg differ diff --git a/data/CTR-RB9/data.yml b/data/CTR-RB9/data.yml new file mode 100644 index 0000000..90e5245 --- /dev/null +++ b/data/CTR-RB9/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000098C00 + name: プリプリ PRIMITIVE PRINCESS! + updates: [] diff --git a/data/CTR-RB9/icon.jpg b/data/CTR-RB9/icon.jpg new file mode 100644 index 0000000..0d13e00 Binary files /dev/null and b/data/CTR-RB9/icon.jpg differ diff --git a/data/CTR-RBA/art.jpg b/data/CTR-RBA/art.jpg new file mode 100644 index 0000000..7ffee73 Binary files /dev/null and b/data/CTR-RBA/art.jpg differ diff --git a/data/CTR-RBA/data.yml b/data/CTR-RBA/data.yml new file mode 100644 index 0000000..89bb453 --- /dev/null +++ b/data/CTR-RBA/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000057D00 + name: 'Wario Land: Super Mario Land 3' + updates: [] +- regions: + - JP + id: 0004000000057B00 + name: スーパーマリオランド3 ワリオランド + updates: [] +- regions: + - KR + id: 0004000000181A00 + name: 'Wario Land: Super Mario Land 3' + updates: [] +- regions: + - US + id: 0004000000057C00 + name: 'Wario Land™: Super Mario Land™ 3' + updates: [] diff --git a/data/CTR-RBA/icon.jpg b/data/CTR-RBA/icon.jpg new file mode 100644 index 0000000..bd7837a Binary files /dev/null and b/data/CTR-RBA/icon.jpg differ diff --git a/data/CTR-RBC/art.jpg b/data/CTR-RBC/art.jpg new file mode 100644 index 0000000..b6f54c3 Binary files /dev/null and b/data/CTR-RBC/art.jpg differ diff --git a/data/CTR-RBC/data.yml b/data/CTR-RBC/data.yml new file mode 100644 index 0000000..bd255c7 --- /dev/null +++ b/data/CTR-RBC/data.yml @@ -0,0 +1,12 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000058200 + name: Trip World™ + updates: [] +- regions: + - JP + id: 0004000000058000 + name: トリップワールド + updates: [] diff --git a/data/CTR-RBC/icon.jpg b/data/CTR-RBC/icon.jpg new file mode 100644 index 0000000..fa9e122 Binary files /dev/null and b/data/CTR-RBC/icon.jpg differ diff --git a/data/CTR-RBD/art.jpg b/data/CTR-RBD/art.jpg new file mode 100644 index 0000000..6e46d0c Binary files /dev/null and b/data/CTR-RBD/art.jpg differ diff --git a/data/CTR-RBD/data.yml b/data/CTR-RBD/data.yml new file mode 100644 index 0000000..7aa423c --- /dev/null +++ b/data/CTR-RBD/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000058500 + name: BIONIC COMMANDO™ + updates: [] +- regions: + - JP + id: 0004000000058300 + name: BIONIC COMMANDO + updates: [] +- regions: + - US + id: 0004000000058400 + name: BIONIC COMMANDO™ + updates: [] diff --git a/data/CTR-RBD/icon.jpg b/data/CTR-RBD/icon.jpg new file mode 100644 index 0000000..9ff677b Binary files /dev/null and b/data/CTR-RBD/icon.jpg differ diff --git a/data/CTR-RBE/art.jpg b/data/CTR-RBE/art.jpg new file mode 100644 index 0000000..498fec9 Binary files /dev/null and b/data/CTR-RBE/art.jpg differ diff --git a/data/CTR-RBE/data.yml b/data/CTR-RBE/data.yml new file mode 100644 index 0000000..ea2341f --- /dev/null +++ b/data/CTR-RBE/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000067300 + name: Balloon Kid™ + updates: [] +- regions: + - KR + id: 0004000000195700 + name: Balloon Kid(벌룬 키드) + updates: [] +- regions: + - US + id: 0004000000067200 + name: Balloon Kid™ + updates: [] diff --git a/data/CTR-RBE/icon.jpg b/data/CTR-RBE/icon.jpg new file mode 100644 index 0000000..35f2fc7 Binary files /dev/null and b/data/CTR-RBE/icon.jpg differ diff --git a/data/CTR-RBF/art.jpg b/data/CTR-RBF/art.jpg new file mode 100644 index 0000000..680b4dc Binary files /dev/null and b/data/CTR-RBF/art.jpg differ diff --git a/data/CTR-RBF/data.yml b/data/CTR-RBF/data.yml new file mode 100644 index 0000000..9ffe6b0 --- /dev/null +++ b/data/CTR-RBF/data.yml @@ -0,0 +1,12 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000058700 + name: おいらじゃじゃ丸!世界大冒険 + updates: [] +- regions: + - US + id: 0004000000058800 + name: Maru's Mission + updates: [] diff --git a/data/CTR-RBF/icon.jpg b/data/CTR-RBF/icon.jpg new file mode 100644 index 0000000..4f1a16b Binary files /dev/null and b/data/CTR-RBF/icon.jpg differ diff --git a/data/CTR-RBG/art.jpg b/data/CTR-RBG/art.jpg new file mode 100644 index 0000000..d346459 Binary files /dev/null and b/data/CTR-RBG/art.jpg differ diff --git a/data/CTR-RBG/data.yml b/data/CTR-RBG/data.yml new file mode 100644 index 0000000..77a1736 --- /dev/null +++ b/data/CTR-RBG/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000059900 + name: LOCK’N CHASE + updates: [] +- regions: + - JP + id: 0004000000058A00 + name: ロックンチェイス + updates: [] +- regions: + - US + id: 0004000000059A00 + name: Lock'N Chase + updates: [] diff --git a/data/CTR-RBG/icon.jpg b/data/CTR-RBG/icon.jpg new file mode 100644 index 0000000..c0000be Binary files /dev/null and b/data/CTR-RBG/icon.jpg differ diff --git a/data/CTR-RBH/art.jpg b/data/CTR-RBH/art.jpg new file mode 100644 index 0000000..41b086c Binary files /dev/null and b/data/CTR-RBH/art.jpg differ diff --git a/data/CTR-RBH/data.yml b/data/CTR-RBH/data.yml new file mode 100644 index 0000000..2f86ce0 --- /dev/null +++ b/data/CTR-RBH/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000059500 + name: 熱血!ビーチバレーだよ くにおくん + updates: [] diff --git a/data/CTR-RBH/icon.jpg b/data/CTR-RBH/icon.jpg new file mode 100644 index 0000000..b8451e8 Binary files /dev/null and b/data/CTR-RBH/icon.jpg differ diff --git a/data/CTR-RBJ/art.jpg b/data/CTR-RBJ/art.jpg new file mode 100644 index 0000000..4ab4501 Binary files /dev/null and b/data/CTR-RBJ/art.jpg differ diff --git a/data/CTR-RBJ/data.yml b/data/CTR-RBJ/data.yml new file mode 100644 index 0000000..42ce5e9 --- /dev/null +++ b/data/CTR-RBJ/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000059600 + name: セレクション 選ばれし者 + updates: [] diff --git a/data/CTR-RBJ/icon.jpg b/data/CTR-RBJ/icon.jpg new file mode 100644 index 0000000..52e670c Binary files /dev/null and b/data/CTR-RBJ/icon.jpg differ diff --git a/data/CTR-RBK/art.jpg b/data/CTR-RBK/art.jpg new file mode 100644 index 0000000..8bb861b Binary files /dev/null and b/data/CTR-RBK/art.jpg differ diff --git a/data/CTR-RBK/data.yml b/data/CTR-RBK/data.yml new file mode 100644 index 0000000..01afcd4 --- /dev/null +++ b/data/CTR-RBK/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000069200 + name: Kirby's Block Ball™ + updates: [] +- regions: + - JP + id: 0004000000069000 + name: カービィのブロックボール + updates: [] +- regions: + - US + id: 0004000000069100 + name: Kirby's Block Ball™ + updates: [] diff --git a/data/CTR-RBK/icon.jpg b/data/CTR-RBK/icon.jpg new file mode 100644 index 0000000..4b7e638 Binary files /dev/null and b/data/CTR-RBK/icon.jpg differ diff --git a/data/CTR-RBL/art.jpg b/data/CTR-RBL/art.jpg new file mode 100644 index 0000000..3adea99 Binary files /dev/null and b/data/CTR-RBL/art.jpg differ diff --git a/data/CTR-RBL/data.yml b/data/CTR-RBL/data.yml new file mode 100644 index 0000000..b265ab7 --- /dev/null +++ b/data/CTR-RBL/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000069500 + name: Kid Icarus™ Of Myths And Monsters + updates: [] +- regions: + - JP + id: 0004000000069300 + name: 'Kid Icarus: Of Myths and Monsters' + updates: [] +- regions: + - US + id: 0004000000069400 + name: Kid Icarus™ Of Myths and Monsters + updates: [] diff --git a/data/CTR-RBL/icon.jpg b/data/CTR-RBL/icon.jpg new file mode 100644 index 0000000..822d589 Binary files /dev/null and b/data/CTR-RBL/icon.jpg differ diff --git a/data/CTR-RBM/art.jpg b/data/CTR-RBM/art.jpg new file mode 100644 index 0000000..120ba04 Binary files /dev/null and b/data/CTR-RBM/art.jpg differ diff --git a/data/CTR-RBM/data.yml b/data/CTR-RBM/data.yml new file mode 100644 index 0000000..dbf041c --- /dev/null +++ b/data/CTR-RBM/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000069900 + name: 怒りの要塞2 + updates: [] diff --git a/data/CTR-RBM/icon.jpg b/data/CTR-RBM/icon.jpg new file mode 100644 index 0000000..c0fde53 Binary files /dev/null and b/data/CTR-RBM/icon.jpg differ diff --git a/data/CTR-RBN/art.jpg b/data/CTR-RBN/art.jpg new file mode 100644 index 0000000..7c9dac6 Binary files /dev/null and b/data/CTR-RBN/art.jpg differ diff --git a/data/CTR-RBN/data.yml b/data/CTR-RBN/data.yml new file mode 100644 index 0000000..a71e3e6 --- /dev/null +++ b/data/CTR-RBN/data.yml @@ -0,0 +1,22 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000007DC00 + name: Kirby's Dream Land™ 2 + updates: [] +- regions: + - JP + id: 000400000007DA00 + name: 星のカービィ 2 + updates: [] +- regions: + - KR + id: 0004000000191A00 + name: Kirby's Dream Land 2 + updates: [] +- regions: + - US + id: 000400000007DB00 + name: Kirby's Dream Land™ 2 + updates: [] diff --git a/data/CTR-RBN/icon.jpg b/data/CTR-RBN/icon.jpg new file mode 100644 index 0000000..7b620e0 Binary files /dev/null and b/data/CTR-RBN/icon.jpg differ diff --git a/data/CTR-RBP/art.jpg b/data/CTR-RBP/art.jpg new file mode 100644 index 0000000..a154e6a Binary files /dev/null and b/data/CTR-RBP/art.jpg differ diff --git a/data/CTR-RBP/data.yml b/data/CTR-RBP/data.yml new file mode 100644 index 0000000..95f5dac --- /dev/null +++ b/data/CTR-RBP/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000007DF00 + name: Castlevania The Adventure + updates: [] +- regions: + - JP + id: 000400000007DD00 + name: ドラキュラ伝説 + updates: [] +- regions: + - US + id: 000400000007DE00 + name: 'Castlevania: The Adventure' + updates: [] diff --git a/data/CTR-RBP/icon.jpg b/data/CTR-RBP/icon.jpg new file mode 100644 index 0000000..bd07277 Binary files /dev/null and b/data/CTR-RBP/icon.jpg differ diff --git a/data/CTR-RBQ/art.jpg b/data/CTR-RBQ/art.jpg new file mode 100644 index 0000000..b6f09c9 Binary files /dev/null and b/data/CTR-RBQ/art.jpg differ diff --git a/data/CTR-RBQ/data.yml b/data/CTR-RBQ/data.yml new file mode 100644 index 0000000..ff3a001 --- /dev/null +++ b/data/CTR-RBQ/data.yml @@ -0,0 +1,12 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000007E000 + name: クォース + updates: [] +- regions: + - US + id: 000400000007E100 + name: Quarth® + updates: [] diff --git a/data/CTR-RBQ/icon.jpg b/data/CTR-RBQ/icon.jpg new file mode 100644 index 0000000..1c4eda5 Binary files /dev/null and b/data/CTR-RBQ/icon.jpg differ diff --git a/data/CTR-RBR/art.jpg b/data/CTR-RBR/art.jpg new file mode 100644 index 0000000..af8cbbf Binary files /dev/null and b/data/CTR-RBR/art.jpg differ diff --git a/data/CTR-RBR/data.yml b/data/CTR-RBR/data.yml new file mode 100644 index 0000000..7480334 --- /dev/null +++ b/data/CTR-RBR/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000007E500 + name: MYSTICAL NINJA starring GOEMON + updates: [] +- regions: + - JP + id: 000400000007E300 + name: がんばれゴエモン 黒船党の謎 + updates: [] +- regions: + - US + id: 000400000007E400 + name: MYSTICAL NINJA starring GOEMON + updates: [] diff --git a/data/CTR-RBR/icon.jpg b/data/CTR-RBR/icon.jpg new file mode 100644 index 0000000..a6e6384 Binary files /dev/null and b/data/CTR-RBR/icon.jpg differ diff --git a/data/CTR-RBT/art.jpg b/data/CTR-RBT/art.jpg new file mode 100644 index 0000000..55af308 Binary files /dev/null and b/data/CTR-RBT/art.jpg differ diff --git a/data/CTR-RBT/data.yml b/data/CTR-RBT/data.yml new file mode 100644 index 0000000..afced1e --- /dev/null +++ b/data/CTR-RBT/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000082A00 + name: ゲームボーイギャラリー2 + updates: [] diff --git a/data/CTR-RBT/icon.jpg b/data/CTR-RBT/icon.jpg new file mode 100644 index 0000000..679cbd1 Binary files /dev/null and b/data/CTR-RBT/icon.jpg differ diff --git a/data/CTR-RBU/art.jpg b/data/CTR-RBU/art.jpg new file mode 100644 index 0000000..177de54 Binary files /dev/null and b/data/CTR-RBU/art.jpg differ diff --git a/data/CTR-RBU/data.yml b/data/CTR-RBU/data.yml new file mode 100644 index 0000000..5d8eda3 --- /dev/null +++ b/data/CTR-RBU/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000082F00 + name: Tumble Pop + updates: [] +- regions: + - JP + id: 0004000000082D00 + name: タンブルポップ + updates: [] +- regions: + - US + id: 0004000000082E00 + name: Tumble Pop™ + updates: [] diff --git a/data/CTR-RBU/icon.jpg b/data/CTR-RBU/icon.jpg new file mode 100644 index 0000000..499db47 Binary files /dev/null and b/data/CTR-RBU/icon.jpg differ diff --git a/data/CTR-RBV/art.jpg b/data/CTR-RBV/art.jpg new file mode 100644 index 0000000..9e1bb9e Binary files /dev/null and b/data/CTR-RBV/art.jpg differ diff --git a/data/CTR-RBV/data.yml b/data/CTR-RBV/data.yml new file mode 100644 index 0000000..fd78d10 --- /dev/null +++ b/data/CTR-RBV/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000083200 + name: The Sword of Hope II + updates: [] +- regions: + - JP + id: 0004000000083000 + name: セレクションⅡ 暗黒の封印 + updates: [] +- regions: + - US + id: 0004000000083100 + name: The Sword of Hope II + updates: [] diff --git a/data/CTR-RBV/icon.jpg b/data/CTR-RBV/icon.jpg new file mode 100644 index 0000000..f6845c6 Binary files /dev/null and b/data/CTR-RBV/icon.jpg differ diff --git a/data/CTR-RBY/art.jpg b/data/CTR-RBY/art.jpg new file mode 100644 index 0000000..c07be90 Binary files /dev/null and b/data/CTR-RBY/art.jpg differ diff --git a/data/CTR-RBY/data.yml b/data/CTR-RBY/data.yml new file mode 100644 index 0000000..494bc4f --- /dev/null +++ b/data/CTR-RBY/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000008AD00 + name: Kirby's Star Stacker + updates: [] +- regions: + - JP + id: 0004000000089B00 + name: カービィのきらきらきっず + updates: [] +- regions: + - US + id: 000400000008AC00 + name: Kirby's Star Stacker™ + updates: [] diff --git a/data/CTR-RBY/icon.jpg b/data/CTR-RBY/icon.jpg new file mode 100644 index 0000000..2e2d8b0 Binary files /dev/null and b/data/CTR-RBY/icon.jpg differ diff --git a/data/CTR-RBZ/art.jpg b/data/CTR-RBZ/art.jpg new file mode 100644 index 0000000..3902914 Binary files /dev/null and b/data/CTR-RBZ/art.jpg differ diff --git a/data/CTR-RBZ/data.yml b/data/CTR-RBZ/data.yml new file mode 100644 index 0000000..8dc6a86 --- /dev/null +++ b/data/CTR-RBZ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000008B100 + name: Kirby's Pinball Land + updates: [] +- regions: + - JP + id: 0004000000089C00 + name: カービィのピンボール + updates: [] +- regions: + - US + id: 000400000008B000 + name: Kirby's Pinball Land™ + updates: [] diff --git a/data/CTR-RBZ/icon.jpg b/data/CTR-RBZ/icon.jpg new file mode 100644 index 0000000..a854600 Binary files /dev/null and b/data/CTR-RBZ/icon.jpg differ diff --git a/data/CTR-RCA/art.jpg b/data/CTR-RCA/art.jpg new file mode 100644 index 0000000..bd13cb7 Binary files /dev/null and b/data/CTR-RCA/art.jpg differ diff --git a/data/CTR-RCA/data.yml b/data/CTR-RCA/data.yml new file mode 100644 index 0000000..61f53aa --- /dev/null +++ b/data/CTR-RCA/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 0004000000098D00 + name: 熱血高校サッカー部 ワールドカップ編 + updates: [] diff --git a/data/CTR-RCA/icon.jpg b/data/CTR-RCA/icon.jpg new file mode 100644 index 0000000..645b9a0 Binary files /dev/null and b/data/CTR-RCA/icon.jpg differ diff --git a/data/CTR-RCB/art.jpg b/data/CTR-RCB/art.jpg new file mode 100644 index 0000000..f2bff1e Binary files /dev/null and b/data/CTR-RCB/art.jpg differ diff --git a/data/CTR-RCB/data.yml b/data/CTR-RCB/data.yml new file mode 100644 index 0000000..79fb79a --- /dev/null +++ b/data/CTR-RCB/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000009D700 + name: 熱血硬派くにおくん 番外乱闘編 + updates: [] diff --git a/data/CTR-RCB/icon.jpg b/data/CTR-RCB/icon.jpg new file mode 100644 index 0000000..9ba6286 Binary files /dev/null and b/data/CTR-RCB/icon.jpg differ diff --git a/data/CTR-RCC/art.jpg b/data/CTR-RCC/art.jpg new file mode 100644 index 0000000..e4bf1c9 Binary files /dev/null and b/data/CTR-RCC/art.jpg differ diff --git a/data/CTR-RCC/data.yml b/data/CTR-RCC/data.yml new file mode 100644 index 0000000..0fd0881 --- /dev/null +++ b/data/CTR-RCC/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 00040000000B2800 + name: 'Pinball: Revenge of the Gator' + updates: [] +- regions: + - JP + id: 00040000000B2600 + name: ピンボール66匹のワニ大行進 + updates: [] +- regions: + - US + id: 00040000000B2700 + name: 'Pinball: Revenge of the Gator' + updates: [] diff --git a/data/CTR-RCC/icon.jpg b/data/CTR-RCC/icon.jpg new file mode 100644 index 0000000..9c5040e Binary files /dev/null and b/data/CTR-RCC/icon.jpg differ diff --git a/data/CTR-RCD/art.jpg b/data/CTR-RCD/art.jpg new file mode 100644 index 0000000..1518258 Binary files /dev/null and b/data/CTR-RCD/art.jpg differ diff --git a/data/CTR-RCD/data.yml b/data/CTR-RCD/data.yml new file mode 100644 index 0000000..94a3632 --- /dev/null +++ b/data/CTR-RCD/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 00040000000EF300 + name: Mega Man™ 2 + updates: [] +- regions: + - JP + id: 00040000000EF100 + name: ロックマンワールド2 + updates: [] +- regions: + - US + id: 00040000000EF200 + name: Mega Man II™ + updates: [] diff --git a/data/CTR-RCD/icon.jpg b/data/CTR-RCD/icon.jpg new file mode 100644 index 0000000..60c628a Binary files /dev/null and b/data/CTR-RCD/icon.jpg differ diff --git a/data/CTR-RCE/art.jpg b/data/CTR-RCE/art.jpg new file mode 100644 index 0000000..3fbc7a7 Binary files /dev/null and b/data/CTR-RCE/art.jpg differ diff --git a/data/CTR-RCE/data.yml b/data/CTR-RCE/data.yml new file mode 100644 index 0000000..b40ad89 --- /dev/null +++ b/data/CTR-RCE/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 00040000000EF600 + name: Mega Man™ 3 + updates: [] +- regions: + - JP + id: 00040000000EF400 + name: ロックマンワールド3 + updates: [] +- regions: + - US + id: 00040000000EF500 + name: Mega Man III™ + updates: [] diff --git a/data/CTR-RCE/icon.jpg b/data/CTR-RCE/icon.jpg new file mode 100644 index 0000000..24d72fa Binary files /dev/null and b/data/CTR-RCE/icon.jpg differ diff --git a/data/CTR-RCF/art.jpg b/data/CTR-RCF/art.jpg new file mode 100644 index 0000000..8e40847 Binary files /dev/null and b/data/CTR-RCF/art.jpg differ diff --git a/data/CTR-RCF/data.yml b/data/CTR-RCF/data.yml new file mode 100644 index 0000000..be82dd9 --- /dev/null +++ b/data/CTR-RCF/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 00040000000EF900 + name: Mega Man™ 4 + updates: [] +- regions: + - JP + id: 00040000000EF700 + name: ロックマンワールド4 + updates: [] +- regions: + - US + id: 00040000000EF800 + name: Mega Man™ IV + updates: [] diff --git a/data/CTR-RCF/icon.jpg b/data/CTR-RCF/icon.jpg new file mode 100644 index 0000000..9289489 Binary files /dev/null and b/data/CTR-RCF/icon.jpg differ diff --git a/data/CTR-RCG/art.jpg b/data/CTR-RCG/art.jpg new file mode 100644 index 0000000..b593c9e Binary files /dev/null and b/data/CTR-RCG/art.jpg differ diff --git a/data/CTR-RCG/data.yml b/data/CTR-RCG/data.yml new file mode 100644 index 0000000..efee9c5 --- /dev/null +++ b/data/CTR-RCG/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 00040000000EFC00 + name: Mega Man™ 5 + updates: [] +- regions: + - JP + id: 00040000000EFA00 + name: ロックマンワールド5 + updates: [] +- regions: + - US + id: 00040000000EFB00 + name: Mega Man™ V + updates: [] diff --git a/data/CTR-RCG/icon.jpg b/data/CTR-RCG/icon.jpg new file mode 100644 index 0000000..9afe950 Binary files /dev/null and b/data/CTR-RCG/icon.jpg differ diff --git a/data/CTR-RCH/art.jpg b/data/CTR-RCH/art.jpg new file mode 100644 index 0000000..9947e69 Binary files /dev/null and b/data/CTR-RCH/art.jpg differ diff --git a/data/CTR-RCH/data.yml b/data/CTR-RCH/data.yml new file mode 100644 index 0000000..0786bdf --- /dev/null +++ b/data/CTR-RCH/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - JP + id: 000400000010FC00 + name: ヨッシーのパネポン + updates: [] diff --git a/data/CTR-RCH/icon.jpg b/data/CTR-RCH/icon.jpg new file mode 100644 index 0000000..50332f7 Binary files /dev/null and b/data/CTR-RCH/icon.jpg differ diff --git a/data/CTR-RCJ/art.jpg b/data/CTR-RCJ/art.jpg new file mode 100644 index 0000000..0745df7 Binary files /dev/null and b/data/CTR-RCJ/art.jpg differ diff --git a/data/CTR-RCJ/data.yml b/data/CTR-RCJ/data.yml new file mode 100644 index 0000000..3962f24 --- /dev/null +++ b/data/CTR-RCJ/data.yml @@ -0,0 +1,17 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000011A400 + name: Donkey Kong Land™ 2 + updates: [] +- regions: + - JP + id: 000400000011A200 + name: ドンキーコングランド + updates: [] +- regions: + - US + id: 000400000011A300 + name: Donkey Kong Land 2™ + updates: [] diff --git a/data/CTR-RCJ/icon.jpg b/data/CTR-RCJ/icon.jpg new file mode 100644 index 0000000..952715e Binary files /dev/null and b/data/CTR-RCJ/icon.jpg differ diff --git a/data/CTR-RCK/art.jpg b/data/CTR-RCK/art.jpg new file mode 100644 index 0000000..301e20c Binary files /dev/null and b/data/CTR-RCK/art.jpg differ diff --git a/data/CTR-RCK/data.yml b/data/CTR-RCK/data.yml new file mode 100644 index 0000000..8d6d724 --- /dev/null +++ b/data/CTR-RCK/data.yml @@ -0,0 +1,12 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 000400000011A700 + name: Donkey Kong Land™ III + updates: [] +- regions: + - US + id: 000400000011A600 + name: Donkey Kong Land III™ + updates: [] diff --git a/data/CTR-RCK/icon.jpg b/data/CTR-RCK/icon.jpg new file mode 100644 index 0000000..3d36b24 Binary files /dev/null and b/data/CTR-RCK/icon.jpg differ diff --git a/data/CTR-RCL/art.jpg b/data/CTR-RCL/art.jpg new file mode 100644 index 0000000..78586a6 Binary files /dev/null and b/data/CTR-RCL/art.jpg differ diff --git a/data/CTR-RCL/data.yml b/data/CTR-RCL/data.yml new file mode 100644 index 0000000..6a07aee --- /dev/null +++ b/data/CTR-RCL/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - JP + - TW + id: 0004000000170C00 + name: ポケットモンスター 赤 + updates: [] diff --git a/data/CTR-RCL/icon.jpg b/data/CTR-RCL/icon.jpg new file mode 100644 index 0000000..6fa394c Binary files /dev/null and b/data/CTR-RCL/icon.jpg differ diff --git a/data/CTR-RCM/art.jpg b/data/CTR-RCM/art.jpg new file mode 100644 index 0000000..f554ede Binary files /dev/null and b/data/CTR-RCM/art.jpg differ diff --git a/data/CTR-RCM/data.yml b/data/CTR-RCM/data.yml new file mode 100644 index 0000000..8e0c13d --- /dev/null +++ b/data/CTR-RCM/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - JP + - TW + id: 0004000000170D00 + name: ポケットモンスター 緑 + updates: [] diff --git a/data/CTR-RCM/icon.jpg b/data/CTR-RCM/icon.jpg new file mode 100644 index 0000000..50d6e89 Binary files /dev/null and b/data/CTR-RCM/icon.jpg differ diff --git a/data/CTR-RCN/art.jpg b/data/CTR-RCN/art.jpg new file mode 100644 index 0000000..821168b Binary files /dev/null and b/data/CTR-RCN/art.jpg differ diff --git a/data/CTR-RCN/data.yml b/data/CTR-RCN/data.yml new file mode 100644 index 0000000..738dc59 --- /dev/null +++ b/data/CTR-RCN/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - JP + - TW + id: 0004000000170E00 + name: ポケットモンスター 青 + updates: [] diff --git a/data/CTR-RCN/icon.jpg b/data/CTR-RCN/icon.jpg new file mode 100644 index 0000000..fb92cc2 Binary files /dev/null and b/data/CTR-RCN/icon.jpg differ diff --git a/data/CTR-RCP/art.jpg b/data/CTR-RCP/art.jpg new file mode 100644 index 0000000..0492a29 Binary files /dev/null and b/data/CTR-RCP/art.jpg differ diff --git a/data/CTR-RCP/data.yml b/data/CTR-RCP/data.yml new file mode 100644 index 0000000..d9f2779 --- /dev/null +++ b/data/CTR-RCP/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - JP + - TW + id: 0004000000170F00 + name: ポケットモンスター ピカチュウ + updates: [] diff --git a/data/CTR-RCP/icon.jpg b/data/CTR-RCP/icon.jpg new file mode 100644 index 0000000..4502892 Binary files /dev/null and b/data/CTR-RCP/icon.jpg differ diff --git a/data/CTR-RCQ/art.jpg b/data/CTR-RCQ/art.jpg new file mode 100644 index 0000000..602d69f Binary files /dev/null and b/data/CTR-RCQ/art.jpg differ diff --git a/data/CTR-RCQ/data.yml b/data/CTR-RCQ/data.yml new file mode 100644 index 0000000..3e0b1cc --- /dev/null +++ b/data/CTR-RCQ/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - EU + - US + id: 0004000000171000 + name: Pokémon™ Red Version (English Version) + updates: [] diff --git a/data/CTR-RCQ/icon.jpg b/data/CTR-RCQ/icon.jpg new file mode 100644 index 0000000..8c64510 Binary files /dev/null and b/data/CTR-RCQ/icon.jpg differ diff --git a/data/CTR-RCR/art.jpg b/data/CTR-RCR/art.jpg new file mode 100644 index 0000000..1cb0e2c Binary files /dev/null and b/data/CTR-RCR/art.jpg differ diff --git a/data/CTR-RCR/data.yml b/data/CTR-RCR/data.yml new file mode 100644 index 0000000..d473dbe --- /dev/null +++ b/data/CTR-RCR/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - EU + - US + id: 0004000000171100 + name: Pokémon™ Blue Version (English Version) + updates: [] diff --git a/data/CTR-RCR/icon.jpg b/data/CTR-RCR/icon.jpg new file mode 100644 index 0000000..dccded0 Binary files /dev/null and b/data/CTR-RCR/icon.jpg differ diff --git a/data/CTR-RCS/art.jpg b/data/CTR-RCS/art.jpg new file mode 100644 index 0000000..b9241b2 Binary files /dev/null and b/data/CTR-RCS/art.jpg differ diff --git a/data/CTR-RCS/data.yml b/data/CTR-RCS/data.yml new file mode 100644 index 0000000..7768c48 --- /dev/null +++ b/data/CTR-RCS/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000171300 + name: Pokémon™ Rote Edition + updates: [] diff --git a/data/CTR-RCS/icon.jpg b/data/CTR-RCS/icon.jpg new file mode 100644 index 0000000..3b9e0d1 Binary files /dev/null and b/data/CTR-RCS/icon.jpg differ diff --git a/data/CTR-RCT/art.jpg b/data/CTR-RCT/art.jpg new file mode 100644 index 0000000..40420b5 Binary files /dev/null and b/data/CTR-RCT/art.jpg differ diff --git a/data/CTR-RCT/data.yml b/data/CTR-RCT/data.yml new file mode 100644 index 0000000..771e022 --- /dev/null +++ b/data/CTR-RCT/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000171400 + name: Pokémon™ Blaue Edition + updates: [] diff --git a/data/CTR-RCT/icon.jpg b/data/CTR-RCT/icon.jpg new file mode 100644 index 0000000..890ee1e Binary files /dev/null and b/data/CTR-RCT/icon.jpg differ diff --git a/data/CTR-RCU/art.jpg b/data/CTR-RCU/art.jpg new file mode 100644 index 0000000..41ef9f4 Binary files /dev/null and b/data/CTR-RCU/art.jpg differ diff --git a/data/CTR-RCU/data.yml b/data/CTR-RCU/data.yml new file mode 100644 index 0000000..762a121 --- /dev/null +++ b/data/CTR-RCU/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - EU + - US + id: 0004000000171600 + name: Pokémon™ Red Version (French Version) + updates: [] diff --git a/data/CTR-RCU/icon.jpg b/data/CTR-RCU/icon.jpg new file mode 100644 index 0000000..8c64510 Binary files /dev/null and b/data/CTR-RCU/icon.jpg differ diff --git a/data/CTR-RCV/art.jpg b/data/CTR-RCV/art.jpg new file mode 100644 index 0000000..cb2ed1d Binary files /dev/null and b/data/CTR-RCV/art.jpg differ diff --git a/data/CTR-RCV/data.yml b/data/CTR-RCV/data.yml new file mode 100644 index 0000000..70d1366 --- /dev/null +++ b/data/CTR-RCV/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - EU + - US + id: 0004000000171700 + name: Pokémon™ Blue Version (French Version) + updates: [] diff --git a/data/CTR-RCV/icon.jpg b/data/CTR-RCV/icon.jpg new file mode 100644 index 0000000..dccded0 Binary files /dev/null and b/data/CTR-RCV/icon.jpg differ diff --git a/data/CTR-RCW/art.jpg b/data/CTR-RCW/art.jpg new file mode 100644 index 0000000..41ef9f4 Binary files /dev/null and b/data/CTR-RCW/art.jpg differ diff --git a/data/CTR-RCW/data.yml b/data/CTR-RCW/data.yml new file mode 100644 index 0000000..2811bd0 --- /dev/null +++ b/data/CTR-RCW/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - EU + - US + id: 0004000000171900 + name: Pokémon™ Red Version (Spanish Version) + updates: [] diff --git a/data/CTR-RCW/icon.jpg b/data/CTR-RCW/icon.jpg new file mode 100644 index 0000000..8c64510 Binary files /dev/null and b/data/CTR-RCW/icon.jpg differ diff --git a/data/CTR-RCX/art.jpg b/data/CTR-RCX/art.jpg new file mode 100644 index 0000000..cb2ed1d Binary files /dev/null and b/data/CTR-RCX/art.jpg differ diff --git a/data/CTR-RCX/data.yml b/data/CTR-RCX/data.yml new file mode 100644 index 0000000..d5b60f2 --- /dev/null +++ b/data/CTR-RCX/data.yml @@ -0,0 +1,8 @@ +platform: GameBoy +releases: +- regions: + - EU + - US + id: 0004000000171A00 + name: Pokémon™ Blue Version (Spanish Version) + updates: [] diff --git a/data/CTR-RCX/icon.jpg b/data/CTR-RCX/icon.jpg new file mode 100644 index 0000000..dccded0 Binary files /dev/null and b/data/CTR-RCX/icon.jpg differ diff --git a/data/CTR-RCY/art.jpg b/data/CTR-RCY/art.jpg new file mode 100644 index 0000000..911290e Binary files /dev/null and b/data/CTR-RCY/art.jpg differ diff --git a/data/CTR-RCY/data.yml b/data/CTR-RCY/data.yml new file mode 100644 index 0000000..47d3cff --- /dev/null +++ b/data/CTR-RCY/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000171C00 + name: Pokémon™ Versione Rossa + updates: [] diff --git a/data/CTR-RCY/icon.jpg b/data/CTR-RCY/icon.jpg new file mode 100644 index 0000000..610615e Binary files /dev/null and b/data/CTR-RCY/icon.jpg differ diff --git a/data/CTR-RCZ/art.jpg b/data/CTR-RCZ/art.jpg new file mode 100644 index 0000000..6d01864 Binary files /dev/null and b/data/CTR-RCZ/art.jpg differ diff --git a/data/CTR-RCZ/data.yml b/data/CTR-RCZ/data.yml new file mode 100644 index 0000000..3d2e28c --- /dev/null +++ b/data/CTR-RCZ/data.yml @@ -0,0 +1,7 @@ +platform: GameBoy +releases: +- regions: + - EU + id: 0004000000171D00 + name: Pokémon™ Versione Blu + updates: [] diff --git a/data/CTR-RCZ/icon.jpg b/data/CTR-RCZ/icon.jpg new file mode 100644 index 0000000..a655378 Binary files /dev/null and b/data/CTR-RCZ/icon.jpg differ diff --git a/data/CTR-SAA/art.jpg b/data/CTR-SAA/art.jpg new file mode 100644 index 0000000..bbc1cba Binary files /dev/null and b/data/CTR-SAA/art.jpg differ diff --git a/data/CTR-SAA/data.yml b/data/CTR-SAA/data.yml new file mode 100644 index 0000000..127f0ed --- /dev/null +++ b/data/CTR-SAA/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000055200 + name: 3D Classics Kid Icarus™ + updates: [] +- regions: + - JP + id: 0004000000045B00 + name: 3Dクラシックス 光神話 パルテナの鏡 + updates: [] +- regions: + - US + id: 0004000000054200 + name: '3D Classics: Kid Icarus™' + updates: [] diff --git a/data/CTR-SAA/icon.jpg b/data/CTR-SAA/icon.jpg new file mode 100644 index 0000000..d4dd15c Binary files /dev/null and b/data/CTR-SAA/icon.jpg differ diff --git a/data/CTR-SAB/art.jpg b/data/CTR-SAB/art.jpg new file mode 100644 index 0000000..08361cf Binary files /dev/null and b/data/CTR-SAB/art.jpg differ diff --git a/data/CTR-SAB/data.yml b/data/CTR-SAB/data.yml new file mode 100644 index 0000000..0ff0a5f --- /dev/null +++ b/data/CTR-SAB/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000055100 + name: 3D Classics Xevious™ + updates: [] +- regions: + - JP + id: 000400000004D500 + name: 3Dクラシックス ゼビウス + updates: [] +- regions: + - US + id: 0004000000054700 + name: '3D Classics: Xevious™' + updates: [] diff --git a/data/CTR-SAB/icon.jpg b/data/CTR-SAB/icon.jpg new file mode 100644 index 0000000..c9702e3 Binary files /dev/null and b/data/CTR-SAB/icon.jpg differ diff --git a/data/CTR-SAC/art.jpg b/data/CTR-SAC/art.jpg new file mode 100644 index 0000000..b2bd4ab Binary files /dev/null and b/data/CTR-SAC/art.jpg differ diff --git a/data/CTR-SAC/data.yml b/data/CTR-SAC/data.yml new file mode 100644 index 0000000..05bc5c6 --- /dev/null +++ b/data/CTR-SAC/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000055300 + name: 3D Classics TwinBee™ + updates: [] +- regions: + - JP + id: 000400000004D600 + name: 3Dクラシックス ツインビー + updates: [] +- regions: + - US + id: 0004000000054400 + name: '3D Classics: TwinBee™' + updates: [] diff --git a/data/CTR-SAC/icon.jpg b/data/CTR-SAC/icon.jpg new file mode 100644 index 0000000..db3c6cf Binary files /dev/null and b/data/CTR-SAC/icon.jpg differ diff --git a/data/CTR-SAD/art.jpg b/data/CTR-SAD/art.jpg new file mode 100644 index 0000000..085fb2e Binary files /dev/null and b/data/CTR-SAD/art.jpg differ diff --git a/data/CTR-SAD/data.yml b/data/CTR-SAD/data.yml new file mode 100644 index 0000000..daef358 --- /dev/null +++ b/data/CTR-SAD/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000054F00 + name: 3D Classics Urban Champion™ + updates: [] +- regions: + - JP + id: 000400000004E700 + name: 3Dクラシックス アーバンチャンピオン + updates: [] +- regions: + - US + id: 0004000000054500 + name: '3D Classics: Urban Champion™' + updates: [] diff --git a/data/CTR-SAD/icon.jpg b/data/CTR-SAD/icon.jpg new file mode 100644 index 0000000..55fa7bc Binary files /dev/null and b/data/CTR-SAD/icon.jpg differ diff --git a/data/CTR-SAE/art.jpg b/data/CTR-SAE/art.jpg new file mode 100644 index 0000000..22adb84 Binary files /dev/null and b/data/CTR-SAE/art.jpg differ diff --git a/data/CTR-SAE/data.yml b/data/CTR-SAE/data.yml new file mode 100644 index 0000000..c19978e --- /dev/null +++ b/data/CTR-SAE/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000054E00 + name: 3D Classics Excitebike™ + updates: [] +- regions: + - JP + id: 0004000000045C00 + name: 3Dクラシックス エキサイトバイク + updates: [] +- regions: + - US + id: 0004000000054300 + name: '3D Classics: Excitebike™' + updates: [] diff --git a/data/CTR-SAE/icon.jpg b/data/CTR-SAE/icon.jpg new file mode 100644 index 0000000..82d8e4d Binary files /dev/null and b/data/CTR-SAE/icon.jpg differ diff --git a/data/CTR-SAF/art.jpg b/data/CTR-SAF/art.jpg new file mode 100644 index 0000000..8ef6cce Binary files /dev/null and b/data/CTR-SAF/art.jpg differ diff --git a/data/CTR-SAF/data.yml b/data/CTR-SAF/data.yml new file mode 100644 index 0000000..34bf73f --- /dev/null +++ b/data/CTR-SAF/data.yml @@ -0,0 +1,17 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - EU + id: 0004000000055000 + name: 3D Classics Kirby's Adventure™ + updates: [] +- regions: + - JP + id: 000400000004E800 + name: 3Dクラシックス 星のカービィ 夢の泉の物語 + updates: [] +- regions: + - US + id: 0004000000054600 + name: "3D Classics: Kirby's Adventure™" + updates: [] diff --git a/data/CTR-SAF/icon.jpg b/data/CTR-SAF/icon.jpg new file mode 100644 index 0000000..22d23db Binary files /dev/null and b/data/CTR-SAF/icon.jpg differ diff --git a/data/CTR-SN4/art.jpg b/data/CTR-SN4/art.jpg new file mode 100644 index 0000000..504f810 Binary files /dev/null and b/data/CTR-SN4/art.jpg differ diff --git a/data/CTR-SN4/data.yml b/data/CTR-SN4/data.yml new file mode 100644 index 0000000..53da5b7 --- /dev/null +++ b/data/CTR-SN4/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000000BE300 + name: 'Kid Icarus: Uprising Montage ' + updates: [] diff --git a/data/CTR-SN4/icon.jpg b/data/CTR-SN4/icon.jpg new file mode 100644 index 0000000..a9252bd Binary files /dev/null and b/data/CTR-SN4/icon.jpg differ diff --git a/data/CTR-SN8/art.jpg b/data/CTR-SN8/art.jpg new file mode 100644 index 0000000..b97f5e2 Binary files /dev/null and b/data/CTR-SN8/art.jpg differ diff --git a/data/CTR-SN8/data.yml b/data/CTR-SN8/data.yml new file mode 100644 index 0000000..da58add --- /dev/null +++ b/data/CTR-SN8/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000000D9B00 + name: Donkey Kong Country Returns 3D Nintendo Direct 2.14.2013 + updates: [] diff --git a/data/CTR-SN8/icon.jpg b/data/CTR-SN8/icon.jpg new file mode 100644 index 0000000..7111169 Binary files /dev/null and b/data/CTR-SN8/icon.jpg differ diff --git a/data/CTR-SP5/art.jpg b/data/CTR-SP5/art.jpg new file mode 100644 index 0000000..c25cce8 Binary files /dev/null and b/data/CTR-SP5/art.jpg differ diff --git a/data/CTR-SP5/data.yml b/data/CTR-SP5/data.yml new file mode 100644 index 0000000..28c2fdc --- /dev/null +++ b/data/CTR-SP5/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000001B5800 + name: The Legend of Zelda Ballad of The Goddess + updates: [] diff --git a/data/CTR-SP5/icon.jpg b/data/CTR-SP5/icon.jpg new file mode 100644 index 0000000..11463d1 Binary files /dev/null and b/data/CTR-SP5/icon.jpg differ diff --git a/data/CTR-SP6/art.jpg b/data/CTR-SP6/art.jpg new file mode 100644 index 0000000..72526c5 Binary files /dev/null and b/data/CTR-SP6/art.jpg differ diff --git a/data/CTR-SP6/data.yml b/data/CTR-SP6/data.yml new file mode 100644 index 0000000..e7123a0 --- /dev/null +++ b/data/CTR-SP6/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000001B5900 + name: The Legend of Zelda Main Theme Medley + updates: [] diff --git a/data/CTR-SP6/icon.jpg b/data/CTR-SP6/icon.jpg new file mode 100644 index 0000000..7b8b5d0 Binary files /dev/null and b/data/CTR-SP6/icon.jpg differ diff --git a/data/CTR-SP7/art.jpg b/data/CTR-SP7/art.jpg new file mode 100644 index 0000000..fa39d4a Binary files /dev/null and b/data/CTR-SP7/art.jpg differ diff --git a/data/CTR-SP7/data.yml b/data/CTR-SP7/data.yml new file mode 100644 index 0000000..a4ef584 --- /dev/null +++ b/data/CTR-SP7/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000001B5A00 + name: The Legend of Zelda Great Fairy's Fountain Theme + updates: [] diff --git a/data/CTR-SP7/icon.jpg b/data/CTR-SP7/icon.jpg new file mode 100644 index 0000000..227f64f Binary files /dev/null and b/data/CTR-SP7/icon.jpg differ diff --git a/data/CTR-SPC/art.jpg b/data/CTR-SPC/art.jpg new file mode 100644 index 0000000..c6f2b0e Binary files /dev/null and b/data/CTR-SPC/art.jpg differ diff --git a/data/CTR-SPC/data.yml b/data/CTR-SPC/data.yml new file mode 100644 index 0000000..9d3b6d7 --- /dev/null +++ b/data/CTR-SPC/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000000EC600 + name: 'The Legend of Zelda: A Link Between Worlds Trailer' + updates: [] diff --git a/data/CTR-SPC/icon.jpg b/data/CTR-SPC/icon.jpg new file mode 100644 index 0000000..ee9ccf0 Binary files /dev/null and b/data/CTR-SPC/icon.jpg differ diff --git a/data/CTR-SQH/art.jpg b/data/CTR-SQH/art.jpg new file mode 100644 index 0000000..b91b81d Binary files /dev/null and b/data/CTR-SQH/art.jpg differ diff --git a/data/CTR-SQH/data.yml b/data/CTR-SQH/data.yml new file mode 100644 index 0000000..8ab0551 --- /dev/null +++ b/data/CTR-SQH/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - US + id: 00040000001C7400 + name: 'Metroid™: Samus Returns Announcement Trailer' + updates: [] diff --git a/data/CTR-SQH/icon.jpg b/data/CTR-SQH/icon.jpg new file mode 100644 index 0000000..fb9e6ab Binary files /dev/null and b/data/CTR-SQH/icon.jpg differ diff --git a/data/CTR-SQL/art.jpg b/data/CTR-SQL/art.jpg new file mode 100644 index 0000000..3b71cb4 Binary files /dev/null and b/data/CTR-SQL/art.jpg differ diff --git a/data/CTR-SQL/data.yml b/data/CTR-SQL/data.yml new file mode 100644 index 0000000..77739f5 --- /dev/null +++ b/data/CTR-SQL/data.yml @@ -0,0 +1,7 @@ +platform: Old3dsDownloadOnly +releases: +- regions: + - US + id: 00040000001D7E00 + name: Games to Play on Halloween! + updates: [] diff --git a/data/CTR-SQL/icon.jpg b/data/CTR-SQL/icon.jpg new file mode 100644 index 0000000..74d4554 Binary files /dev/null and b/data/CTR-SQL/icon.jpg differ diff --git a/data/CTR-SZM/art.jpg b/data/CTR-SZM/art.jpg new file mode 100644 index 0000000..ecd4991 Binary files /dev/null and b/data/CTR-SZM/art.jpg differ diff --git a/data/CTR-SZM/data.yml b/data/CTR-SZM/data.yml new file mode 100644 index 0000000..e3e9bf4 --- /dev/null +++ b/data/CTR-SZM/data.yml @@ -0,0 +1,7 @@ +platform: DownloadableVideo +releases: +- regions: + - EU + id: 0004000000165B00 + name: "The Legend of Zelda™: Majora's Mask 3D: Trailer" + updates: [] diff --git a/data/CTR-SZM/icon.jpg b/data/CTR-SZM/icon.jpg new file mode 100644 index 0000000..8c72e17 Binary files /dev/null and b/data/CTR-SZM/icon.jpg differ diff --git a/data/CTR-TA2/art.jpg b/data/CTR-TA2/art.jpg new file mode 100644 index 0000000..ae500cc Binary files /dev/null and b/data/CTR-TA2/art.jpg differ diff --git a/data/CTR-TA2/data.yml b/data/CTR-TA2/data.yml new file mode 100644 index 0000000..80301b9 --- /dev/null +++ b/data/CTR-TA2/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 0004000000099000 + name: ファイアーエムブレム 暗黒竜と光の剣 + updates: [] diff --git a/data/CTR-TA2/icon.jpg b/data/CTR-TA2/icon.jpg new file mode 100644 index 0000000..bc0d145 Binary files /dev/null and b/data/CTR-TA2/icon.jpg differ diff --git a/data/CTR-TA3/art.jpg b/data/CTR-TA3/art.jpg new file mode 100644 index 0000000..0fecaeb Binary files /dev/null and b/data/CTR-TA3/art.jpg differ diff --git a/data/CTR-TA3/data.yml b/data/CTR-TA3/data.yml new file mode 100644 index 0000000..bf3aa70 --- /dev/null +++ b/data/CTR-TA3/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000099300 + name: BLASTER MASTER™ + updates: [] +- regions: + - JP + id: 0004000000099100 + name: 超惑星戦記メタファイト + updates: [] +- regions: + - US + id: 0004000000099200 + name: Blaster Master + updates: [] diff --git a/data/CTR-TA3/icon.jpg b/data/CTR-TA3/icon.jpg new file mode 100644 index 0000000..c546868 Binary files /dev/null and b/data/CTR-TA3/icon.jpg differ diff --git a/data/CTR-TA4/art.jpg b/data/CTR-TA4/art.jpg new file mode 100644 index 0000000..3c7bcab Binary files /dev/null and b/data/CTR-TA4/art.jpg differ diff --git a/data/CTR-TA4/data.yml b/data/CTR-TA4/data.yml new file mode 100644 index 0000000..2cf4cda --- /dev/null +++ b/data/CTR-TA4/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000099600 + name: GHOSTS'N GOBLINS™ + updates: [] +- regions: + - JP + id: 0004000000099400 + name: 魔界村 + updates: [] +- regions: + - US + id: 0004000000099500 + name: Ghosts'n Goblins™ + updates: [] diff --git a/data/CTR-TA4/icon.jpg b/data/CTR-TA4/icon.jpg new file mode 100644 index 0000000..c532563 Binary files /dev/null and b/data/CTR-TA4/icon.jpg differ diff --git a/data/CTR-TA5/art.jpg b/data/CTR-TA5/art.jpg new file mode 100644 index 0000000..69dd5e1 Binary files /dev/null and b/data/CTR-TA5/art.jpg differ diff --git a/data/CTR-TA5/data.yml b/data/CTR-TA5/data.yml new file mode 100644 index 0000000..ba20c15 --- /dev/null +++ b/data/CTR-TA5/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000099A00 + name: MEGA MAN™ 2 + updates: [] +- regions: + - JP + id: 0004000000099800 + name: ロックマン2 Dr.ワイリーの謎 + updates: [] +- regions: + - US + id: 0004000000099900 + name: Mega Man™ 2 + updates: [] diff --git a/data/CTR-TA5/icon.jpg b/data/CTR-TA5/icon.jpg new file mode 100644 index 0000000..8ec7c8e Binary files /dev/null and b/data/CTR-TA5/icon.jpg differ diff --git a/data/CTR-TA6/art.jpg b/data/CTR-TA6/art.jpg new file mode 100644 index 0000000..24b0d08 Binary files /dev/null and b/data/CTR-TA6/art.jpg differ diff --git a/data/CTR-TA6/data.yml b/data/CTR-TA6/data.yml new file mode 100644 index 0000000..1929349 --- /dev/null +++ b/data/CTR-TA6/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000009A100 + name: PAC-MAN™ + updates: [] +- regions: + - JP + id: 0004000000099F00 + name: パックマン + updates: [] +- regions: + - US + id: 000400000009A000 + name: PAC-MAN® + updates: [] diff --git a/data/CTR-TA6/icon.jpg b/data/CTR-TA6/icon.jpg new file mode 100644 index 0000000..8a93b63 Binary files /dev/null and b/data/CTR-TA6/icon.jpg differ diff --git a/data/CTR-TA8/art.jpg b/data/CTR-TA8/art.jpg new file mode 100644 index 0000000..2904899 Binary files /dev/null and b/data/CTR-TA8/art.jpg differ diff --git a/data/CTR-TA8/data.yml b/data/CTR-TA8/data.yml new file mode 100644 index 0000000..e1267fb --- /dev/null +++ b/data/CTR-TA8/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000009DC00 + name: Castlevania™ + updates: [] +- regions: + - JP + id: 000400000009DA00 + name: 悪魔城ドラキュラ + updates: [] +- regions: + - US + id: 000400000009DB00 + name: Castlevania® + updates: [] diff --git a/data/CTR-TA8/icon.jpg b/data/CTR-TA8/icon.jpg new file mode 100644 index 0000000..b351ce7 Binary files /dev/null and b/data/CTR-TA8/icon.jpg differ diff --git a/data/CTR-TA9/art.jpg b/data/CTR-TA9/art.jpg new file mode 100644 index 0000000..8d7459a Binary files /dev/null and b/data/CTR-TA9/art.jpg differ diff --git a/data/CTR-TA9/data.yml b/data/CTR-TA9/data.yml new file mode 100644 index 0000000..afb886e --- /dev/null +++ b/data/CTR-TA9/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000009DF00 + name: Dig Dug + updates: [] +- regions: + - JP + id: 000400000009DD00 + name: ディグダグ + updates: [] +- regions: + - US + id: 000400000009DE00 + name: DIG DUG™ + updates: [] diff --git a/data/CTR-TA9/icon.jpg b/data/CTR-TA9/icon.jpg new file mode 100644 index 0000000..9a6e82a Binary files /dev/null and b/data/CTR-TA9/icon.jpg differ diff --git a/data/CTR-TAA/art.jpg b/data/CTR-TAA/art.jpg new file mode 100644 index 0000000..e30e482 Binary files /dev/null and b/data/CTR-TAA/art.jpg differ diff --git a/data/CTR-TAA/data.yml b/data/CTR-TAA/data.yml new file mode 100644 index 0000000..9a0f5dd --- /dev/null +++ b/data/CTR-TAA/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006E600 + name: Super Mario Bros.™ + updates: [] +- regions: + - JP + id: 000400000006E400 + name: スーパーマリオブラザーズ + updates: [] +- regions: + - KR + id: 000400000017E600 + name: Super Mario Bros. + updates: [] +- regions: + - US + id: 000400000006E500 + name: Super Mario Bros.™ + updates: [] diff --git a/data/CTR-TAA/icon.jpg b/data/CTR-TAA/icon.jpg new file mode 100644 index 0000000..bf4ad6d Binary files /dev/null and b/data/CTR-TAA/icon.jpg differ diff --git a/data/CTR-TAB/art.jpg b/data/CTR-TAB/art.jpg new file mode 100644 index 0000000..148ae77 Binary files /dev/null and b/data/CTR-TAB/art.jpg differ diff --git a/data/CTR-TAB/data.yml b/data/CTR-TAB/data.yml new file mode 100644 index 0000000..5d3e465 --- /dev/null +++ b/data/CTR-TAB/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006E900 + name: Super Mario Bros.™ 3 + updates: [] +- regions: + - JP + id: 000400000006E700 + name: スーパーマリオブラザーズ3 + updates: [] +- regions: + - KR + id: 0004000000184B00 + name: Super Mario Bros. 3 + updates: [] +- regions: + - US + id: 000400000006E800 + name: Super Mario Bros.™ 3 + updates: [] diff --git a/data/CTR-TAB/icon.jpg b/data/CTR-TAB/icon.jpg new file mode 100644 index 0000000..43add82 Binary files /dev/null and b/data/CTR-TAB/icon.jpg differ diff --git a/data/CTR-TAC/art.jpg b/data/CTR-TAC/art.jpg new file mode 100644 index 0000000..2184060 Binary files /dev/null and b/data/CTR-TAC/art.jpg differ diff --git a/data/CTR-TAC/data.yml b/data/CTR-TAC/data.yml new file mode 100644 index 0000000..8f97827 --- /dev/null +++ b/data/CTR-TAC/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006EC00 + name: Punch-Out!!™ + updates: [] +- regions: + - JP + id: 000400000006EA00 + name: パンチアウト + updates: [] +- regions: + - US + id: 000400000006EB00 + name: Punch-Out!!™ Featuring Mr. Dream + updates: [] diff --git a/data/CTR-TAC/icon.jpg b/data/CTR-TAC/icon.jpg new file mode 100644 index 0000000..6132d54 Binary files /dev/null and b/data/CTR-TAC/icon.jpg differ diff --git a/data/CTR-TAD/art.jpg b/data/CTR-TAD/art.jpg new file mode 100644 index 0000000..6edcf99 Binary files /dev/null and b/data/CTR-TAD/art.jpg differ diff --git a/data/CTR-TAD/data.yml b/data/CTR-TAD/data.yml new file mode 100644 index 0000000..24cd157 --- /dev/null +++ b/data/CTR-TAD/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006EF00 + name: Metroid™ + updates: [] +- regions: + - JP + id: 000400000006ED00 + name: メトロイド + updates: [] +- regions: + - KR + id: 0004000000191500 + name: Metroid + updates: [] +- regions: + - US + id: 000400000006EE00 + name: Metroid™ + updates: [] diff --git a/data/CTR-TAD/icon.jpg b/data/CTR-TAD/icon.jpg new file mode 100644 index 0000000..f6367f4 Binary files /dev/null and b/data/CTR-TAD/icon.jpg differ diff --git a/data/CTR-TAE/art.jpg b/data/CTR-TAE/art.jpg new file mode 100644 index 0000000..da0adfd Binary files /dev/null and b/data/CTR-TAE/art.jpg differ diff --git a/data/CTR-TAE/data.yml b/data/CTR-TAE/data.yml new file mode 100644 index 0000000..38819ab --- /dev/null +++ b/data/CTR-TAE/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006F200 + name: The Legend of Zelda™ + updates: [] +- regions: + - JP + id: 000400000006F000 + name: ゼルダの伝説1 + updates: [] +- regions: + - KR + id: 0004000000184800 + name: The Legend of Zelda + updates: [] +- regions: + - US + id: 000400000006F100 + name: The Legend of Zelda™ + updates: [] diff --git a/data/CTR-TAE/icon.jpg b/data/CTR-TAE/icon.jpg new file mode 100644 index 0000000..71ca271 Binary files /dev/null and b/data/CTR-TAE/icon.jpg differ diff --git a/data/CTR-TAF/art.jpg b/data/CTR-TAF/art.jpg new file mode 100644 index 0000000..96e9cb9 Binary files /dev/null and b/data/CTR-TAF/art.jpg differ diff --git a/data/CTR-TAF/data.yml b/data/CTR-TAF/data.yml new file mode 100644 index 0000000..173ede8 --- /dev/null +++ b/data/CTR-TAF/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006F500 + name: Donkey Kong™ Original Edition + updates: [] diff --git a/data/CTR-TAF/icon.jpg b/data/CTR-TAF/icon.jpg new file mode 100644 index 0000000..892f186 Binary files /dev/null and b/data/CTR-TAF/icon.jpg differ diff --git a/data/CTR-TAG/art.jpg b/data/CTR-TAG/art.jpg new file mode 100644 index 0000000..a248bbe Binary files /dev/null and b/data/CTR-TAG/art.jpg differ diff --git a/data/CTR-TAG/data.yml b/data/CTR-TAG/data.yml new file mode 100644 index 0000000..390d666 --- /dev/null +++ b/data/CTR-TAG/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006F800 + name: Wrecking Crew + updates: [] +- regions: + - JP + id: 000400000006F600 + name: レッキングクルー + updates: [] +- regions: + - KR + id: 0004000000181800 + name: Wrecking Crew(레킹 크루) + updates: [] +- regions: + - US + id: 000400000006F700 + name: Wrecking Crew™ + updates: [] diff --git a/data/CTR-TAG/icon.jpg b/data/CTR-TAG/icon.jpg new file mode 100644 index 0000000..0208d80 Binary files /dev/null and b/data/CTR-TAG/icon.jpg differ diff --git a/data/CTR-TAH/art.jpg b/data/CTR-TAH/art.jpg new file mode 100644 index 0000000..2c25702 Binary files /dev/null and b/data/CTR-TAH/art.jpg differ diff --git a/data/CTR-TAH/data.yml b/data/CTR-TAH/data.yml new file mode 100644 index 0000000..070621c --- /dev/null +++ b/data/CTR-TAH/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000006FB00 + name: NES Open Tournament Golf + updates: [] +- regions: + - JP + id: 000400000006F900 + name: マリオオープンゴルフ + updates: [] +- regions: + - US + id: 000400000006FA00 + name: NES Open Tournament Golf™ + updates: [] diff --git a/data/CTR-TAH/icon.jpg b/data/CTR-TAH/icon.jpg new file mode 100644 index 0000000..d25a947 Binary files /dev/null and b/data/CTR-TAH/icon.jpg differ diff --git a/data/CTR-TAK/art.jpg b/data/CTR-TAK/art.jpg new file mode 100644 index 0000000..b75f225 Binary files /dev/null and b/data/CTR-TAK/art.jpg differ diff --git a/data/CTR-TAK/data.yml b/data/CTR-TAK/data.yml new file mode 100644 index 0000000..142abd2 --- /dev/null +++ b/data/CTR-TAK/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000070100 + name: Donkey Kong Jr.™ + updates: [] +- regions: + - JP + id: 000400000006FF00 + name: ドンキーコングJR. + updates: [] +- regions: + - KR + id: 0004000000184D00 + name: Donkey Kong Jr. + updates: [] +- regions: + - US + id: 0004000000070000 + name: Donkey Kong Jr.™ + updates: [] diff --git a/data/CTR-TAK/icon.jpg b/data/CTR-TAK/icon.jpg new file mode 100644 index 0000000..bdf46ee Binary files /dev/null and b/data/CTR-TAK/icon.jpg differ diff --git a/data/CTR-TAL/art.jpg b/data/CTR-TAL/art.jpg new file mode 100644 index 0000000..8aff5b7 Binary files /dev/null and b/data/CTR-TAL/art.jpg differ diff --git a/data/CTR-TAL/data.yml b/data/CTR-TAL/data.yml new file mode 100644 index 0000000..882ce9a --- /dev/null +++ b/data/CTR-TAL/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000070400 + name: Balloon Fight™ + updates: [] +- regions: + - JP + id: 0004000000070200 + name: バルーンファイト + updates: [] +- regions: + - US + id: 0004000000070300 + name: Balloon Fight™ + updates: [] diff --git a/data/CTR-TAL/icon.jpg b/data/CTR-TAL/icon.jpg new file mode 100644 index 0000000..498bcd1 Binary files /dev/null and b/data/CTR-TAL/icon.jpg differ diff --git a/data/CTR-TAM/art.jpg b/data/CTR-TAM/art.jpg new file mode 100644 index 0000000..73b9018 Binary files /dev/null and b/data/CTR-TAM/art.jpg differ diff --git a/data/CTR-TAM/data.yml b/data/CTR-TAM/data.yml new file mode 100644 index 0000000..1ca5b1b --- /dev/null +++ b/data/CTR-TAM/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000070700 + name: Ice Climber™ + updates: [] +- regions: + - JP + id: 0004000000070500 + name: アイスクライマー + updates: [] +- regions: + - KR + id: 0004000000184C00 + name: Ice Climber + updates: [] +- regions: + - US + id: 0004000000070600 + name: Ice Climber™ + updates: [] diff --git a/data/CTR-TAM/icon.jpg b/data/CTR-TAM/icon.jpg new file mode 100644 index 0000000..86a8fd1 Binary files /dev/null and b/data/CTR-TAM/icon.jpg differ diff --git a/data/CTR-TAN/art.jpg b/data/CTR-TAN/art.jpg new file mode 100644 index 0000000..97b424b Binary files /dev/null and b/data/CTR-TAN/art.jpg differ diff --git a/data/CTR-TAN/data.yml b/data/CTR-TAN/data.yml new file mode 100644 index 0000000..93ed891 --- /dev/null +++ b/data/CTR-TAN/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000070A00 + name: 'Zelda II: The Adventure of Link' + updates: [] +- regions: + - JP + id: 0004000000070800 + name: リンクの冒険 + updates: [] +- regions: + - KR + id: 0004000000195300 + name: Zelda II The Adventure of Link + updates: [] +- regions: + - US + id: 0004000000070900 + name: Zelda II™ - The Adventure of Link™ + updates: [] diff --git a/data/CTR-TAN/icon.jpg b/data/CTR-TAN/icon.jpg new file mode 100644 index 0000000..e39688d Binary files /dev/null and b/data/CTR-TAN/icon.jpg differ diff --git a/data/CTR-TAR/art.jpg b/data/CTR-TAR/art.jpg new file mode 100644 index 0000000..b237629 Binary files /dev/null and b/data/CTR-TAR/art.jpg differ diff --git a/data/CTR-TAR/data.yml b/data/CTR-TAR/data.yml new file mode 100644 index 0000000..22a79b8 --- /dev/null +++ b/data/CTR-TAR/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000071300 + name: Mario & Yoshi™ + updates: [] +- regions: + - JP + id: 0004000000071100 + name: ヨッシーのたまご + updates: [] +- regions: + - US + id: 0004000000071200 + name: Yoshi™ + updates: [] diff --git a/data/CTR-TAR/icon.jpg b/data/CTR-TAR/icon.jpg new file mode 100644 index 0000000..58c2085 Binary files /dev/null and b/data/CTR-TAR/icon.jpg differ diff --git a/data/CTR-TAS/art.jpg b/data/CTR-TAS/art.jpg new file mode 100644 index 0000000..2407860 Binary files /dev/null and b/data/CTR-TAS/art.jpg differ diff --git a/data/CTR-TAS/data.yml b/data/CTR-TAS/data.yml new file mode 100644 index 0000000..5ef95ac --- /dev/null +++ b/data/CTR-TAS/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000071600 + name: Wario's Woods + updates: [] +- regions: + - JP + id: 0004000000071400 + name: ワリオの森 + updates: [] +- regions: + - KR + id: 0004000000195C00 + name: Wario‘s Woods + updates: [] +- regions: + - US + id: 0004000000071500 + name: Wario's Woods™ + updates: [] diff --git a/data/CTR-TAS/icon.jpg b/data/CTR-TAS/icon.jpg new file mode 100644 index 0000000..9aef975 Binary files /dev/null and b/data/CTR-TAS/icon.jpg differ diff --git a/data/CTR-TAT/art.jpg b/data/CTR-TAT/art.jpg new file mode 100644 index 0000000..b22eae1 Binary files /dev/null and b/data/CTR-TAT/art.jpg differ diff --git a/data/CTR-TAT/data.yml b/data/CTR-TAT/data.yml new file mode 100644 index 0000000..dbfe0ab --- /dev/null +++ b/data/CTR-TAT/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000094F00 + name: 'Super Mario Bros.™: The Lost Levels™' + updates: [] +- regions: + - JP + id: 0004000000093E00 + name: スーパーマリオブラザーズ2 + updates: [] +- regions: + - KR + id: 0004000000195D00 + name: 'Super Mario Bros.: The Lost Levels' + updates: [] +- regions: + - US + id: 0004000000094E00 + name: 'Super Mario Bros.™: The Lost Levels' + updates: [] diff --git a/data/CTR-TAT/icon.jpg b/data/CTR-TAT/icon.jpg new file mode 100644 index 0000000..5043283 Binary files /dev/null and b/data/CTR-TAT/icon.jpg differ diff --git a/data/CTR-TAU/art.jpg b/data/CTR-TAU/art.jpg new file mode 100644 index 0000000..df7d8fd Binary files /dev/null and b/data/CTR-TAU/art.jpg differ diff --git a/data/CTR-TAU/data.yml b/data/CTR-TAU/data.yml new file mode 100644 index 0000000..06d5bf7 --- /dev/null +++ b/data/CTR-TAU/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000094100 + name: MIGHTY BOMB JACK™ + updates: [] +- regions: + - JP + id: 0004000000093F00 + name: マイティボンジャック + updates: [] +- regions: + - US + id: 0004000000094000 + name: Mighty Bomb Jack™ + updates: [] diff --git a/data/CTR-TAU/icon.jpg b/data/CTR-TAU/icon.jpg new file mode 100644 index 0000000..bb8169d Binary files /dev/null and b/data/CTR-TAU/icon.jpg differ diff --git a/data/CTR-TAV/art.jpg b/data/CTR-TAV/art.jpg new file mode 100644 index 0000000..c84964b Binary files /dev/null and b/data/CTR-TAV/art.jpg differ diff --git a/data/CTR-TAV/data.yml b/data/CTR-TAV/data.yml new file mode 100644 index 0000000..3d147d8 --- /dev/null +++ b/data/CTR-TAV/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000D0200 + name: Summer Carnival '92 RECCA + updates: [] +- regions: + - JP + id: 0004000000094200 + name: サマーカーニバル'92 烈火 + updates: [] +- regions: + - US + id: 00040000000D0100 + name: Summer Carnival '92 RECCA + updates: [] diff --git a/data/CTR-TAV/icon.jpg b/data/CTR-TAV/icon.jpg new file mode 100644 index 0000000..417db01 Binary files /dev/null and b/data/CTR-TAV/icon.jpg differ diff --git a/data/CTR-TAW/art.jpg b/data/CTR-TAW/art.jpg new file mode 100644 index 0000000..7ad70fb Binary files /dev/null and b/data/CTR-TAW/art.jpg differ diff --git a/data/CTR-TAW/data.yml b/data/CTR-TAW/data.yml new file mode 100644 index 0000000..d66b833 --- /dev/null +++ b/data/CTR-TAW/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000094500 + name: MEGA MAN™ + updates: [] +- regions: + - JP + id: 0004000000094300 + name: ロックマン + updates: [] +- regions: + - US + id: 0004000000094400 + name: Mega Man™ + updates: [] diff --git a/data/CTR-TAW/icon.jpg b/data/CTR-TAW/icon.jpg new file mode 100644 index 0000000..1cd1303 Binary files /dev/null and b/data/CTR-TAW/icon.jpg differ diff --git a/data/CTR-TAX/art.jpg b/data/CTR-TAX/art.jpg new file mode 100644 index 0000000..7ca9d5b Binary files /dev/null and b/data/CTR-TAX/art.jpg differ diff --git a/data/CTR-TAX/data.yml b/data/CTR-TAX/data.yml new file mode 100644 index 0000000..44d64e4 --- /dev/null +++ b/data/CTR-TAX/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000094800 + name: NINJA GAIDEN® + updates: [] +- regions: + - JP + id: 0004000000094600 + name: 忍者龍剣伝 + updates: [] +- regions: + - US + id: 0004000000094700 + name: Ninja Gaiden® + updates: [] diff --git a/data/CTR-TAX/icon.jpg b/data/CTR-TAX/icon.jpg new file mode 100644 index 0000000..14e72c2 Binary files /dev/null and b/data/CTR-TAX/icon.jpg differ diff --git a/data/CTR-TAY/art.jpg b/data/CTR-TAY/art.jpg new file mode 100644 index 0000000..215619b Binary files /dev/null and b/data/CTR-TAY/art.jpg differ diff --git a/data/CTR-TAY/data.yml b/data/CTR-TAY/data.yml new file mode 100644 index 0000000..8766981 --- /dev/null +++ b/data/CTR-TAY/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000094B00 + name: GRADIUS + updates: [] +- regions: + - JP + id: 0004000000094900 + name: グラディウス + updates: [] +- regions: + - US + id: 0004000000094A00 + name: Gradius® + updates: [] diff --git a/data/CTR-TAY/icon.jpg b/data/CTR-TAY/icon.jpg new file mode 100644 index 0000000..5d72476 Binary files /dev/null and b/data/CTR-TAY/icon.jpg differ diff --git a/data/CTR-TAZ/art.jpg b/data/CTR-TAZ/art.jpg new file mode 100644 index 0000000..0799c14 Binary files /dev/null and b/data/CTR-TAZ/art.jpg differ diff --git a/data/CTR-TAZ/data.yml b/data/CTR-TAZ/data.yml new file mode 100644 index 0000000..39e62dd --- /dev/null +++ b/data/CTR-TAZ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 0004000000098E00 + name: サラダの国のトマト姫 + updates: [] diff --git a/data/CTR-TAZ/icon.jpg b/data/CTR-TAZ/icon.jpg new file mode 100644 index 0000000..41f59f8 Binary files /dev/null and b/data/CTR-TAZ/icon.jpg differ diff --git a/data/CTR-TB2/art.jpg b/data/CTR-TB2/art.jpg new file mode 100644 index 0000000..8bf7257 Binary files /dev/null and b/data/CTR-TB2/art.jpg differ diff --git a/data/CTR-TB2/data.yml b/data/CTR-TB2/data.yml new file mode 100644 index 0000000..df3a875 --- /dev/null +++ b/data/CTR-TB2/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000B5C00 + name: 月風魔伝 + updates: [] diff --git a/data/CTR-TB2/icon.jpg b/data/CTR-TB2/icon.jpg new file mode 100644 index 0000000..8eb26db Binary files /dev/null and b/data/CTR-TB2/icon.jpg differ diff --git a/data/CTR-TB3/art.jpg b/data/CTR-TB3/art.jpg new file mode 100644 index 0000000..6bfbdb0 Binary files /dev/null and b/data/CTR-TB3/art.jpg differ diff --git a/data/CTR-TB3/data.yml b/data/CTR-TB3/data.yml new file mode 100644 index 0000000..c7bee6a --- /dev/null +++ b/data/CTR-TB3/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000B5D00 + name: いっき + updates: [] diff --git a/data/CTR-TB3/icon.jpg b/data/CTR-TB3/icon.jpg new file mode 100644 index 0000000..9bf6e6f Binary files /dev/null and b/data/CTR-TB3/icon.jpg differ diff --git a/data/CTR-TB4/art.jpg b/data/CTR-TB4/art.jpg new file mode 100644 index 0000000..19ae0cc Binary files /dev/null and b/data/CTR-TB4/art.jpg differ diff --git a/data/CTR-TB4/data.yml b/data/CTR-TB4/data.yml new file mode 100644 index 0000000..0182bc2 --- /dev/null +++ b/data/CTR-TB4/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B6000 + name: Donkey Kong™ 3 + updates: [] +- regions: + - JP + id: 00040000000B5E00 + name: ドンキーコング3 + updates: [] +- regions: + - KR + id: 0004000000195E00 + name: Donkey Kong 3 + updates: [] +- regions: + - US + id: 00040000000B5F00 + name: Donkey Kong™ 3 + updates: [] diff --git a/data/CTR-TB4/icon.jpg b/data/CTR-TB4/icon.jpg new file mode 100644 index 0000000..110a9fe Binary files /dev/null and b/data/CTR-TB4/icon.jpg differ diff --git a/data/CTR-TB5/art.jpg b/data/CTR-TB5/art.jpg new file mode 100644 index 0000000..b697098 Binary files /dev/null and b/data/CTR-TB5/art.jpg differ diff --git a/data/CTR-TB5/data.yml b/data/CTR-TB5/data.yml new file mode 100644 index 0000000..484d28a --- /dev/null +++ b/data/CTR-TB5/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000B6100 + name: ファミコン探偵倶楽部 消えた後継者(前後編) + updates: [] diff --git a/data/CTR-TB5/icon.jpg b/data/CTR-TB5/icon.jpg new file mode 100644 index 0000000..f9470c0 Binary files /dev/null and b/data/CTR-TB5/icon.jpg differ diff --git a/data/CTR-TB6/art.jpg b/data/CTR-TB6/art.jpg new file mode 100644 index 0000000..a246b4f Binary files /dev/null and b/data/CTR-TB6/art.jpg differ diff --git a/data/CTR-TB6/data.yml b/data/CTR-TB6/data.yml new file mode 100644 index 0000000..ad2f51d --- /dev/null +++ b/data/CTR-TB6/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B7200 + name: Crash'n the Boys Street Challenge + updates: [] +- regions: + - JP + id: 00040000000B7000 + name: びっくり熱血新記録! はるかなる金メダル + updates: [] +- regions: + - US + id: 00040000000B7100 + name: Crash 'n the Boys™ Street Challenge + updates: [] diff --git a/data/CTR-TB6/icon.jpg b/data/CTR-TB6/icon.jpg new file mode 100644 index 0000000..cfaeb2c Binary files /dev/null and b/data/CTR-TB6/icon.jpg differ diff --git a/data/CTR-TB7/art.jpg b/data/CTR-TB7/art.jpg new file mode 100644 index 0000000..6f6cc06 Binary files /dev/null and b/data/CTR-TB7/art.jpg differ diff --git a/data/CTR-TB7/data.yml b/data/CTR-TB7/data.yml new file mode 100644 index 0000000..2d24937 --- /dev/null +++ b/data/CTR-TB7/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000BD100 + name: Mario Bros.™ + updates: [] +- regions: + - JP + id: 00040000000BCF00 + name: マリオブラザーズ + updates: [] +- regions: + - US + id: 00040000000BD000 + name: Mario Bros™ + updates: [] diff --git a/data/CTR-TB7/icon.jpg b/data/CTR-TB7/icon.jpg new file mode 100644 index 0000000..1511a7a Binary files /dev/null and b/data/CTR-TB7/icon.jpg differ diff --git a/data/CTR-TB8/art.jpg b/data/CTR-TB8/art.jpg new file mode 100644 index 0000000..a8ce732 Binary files /dev/null and b/data/CTR-TB8/art.jpg differ diff --git a/data/CTR-TB8/data.yml b/data/CTR-TB8/data.yml new file mode 100644 index 0000000..2b74397 --- /dev/null +++ b/data/CTR-TB8/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000BD200 + name: ファミコン探偵倶楽部 PARTⅡ うしろに立つ少女(前後編) + updates: [] diff --git a/data/CTR-TB8/icon.jpg b/data/CTR-TB8/icon.jpg new file mode 100644 index 0000000..df379d9 Binary files /dev/null and b/data/CTR-TB8/icon.jpg differ diff --git a/data/CTR-TB9/art.jpg b/data/CTR-TB9/art.jpg new file mode 100644 index 0000000..7bb6cfc Binary files /dev/null and b/data/CTR-TB9/art.jpg differ diff --git a/data/CTR-TB9/data.yml b/data/CTR-TB9/data.yml new file mode 100644 index 0000000..69f559a --- /dev/null +++ b/data/CTR-TB9/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 0004000000107E00 + name: Super Dodge Ball + updates: [] +- regions: + - JP + id: 00040000000BD700 + name: 熱血高校ドッジボール部 + updates: [] +- regions: + - US + id: 00040000000BD800 + name: Super Dodge Ball + updates: [] diff --git a/data/CTR-TB9/icon.jpg b/data/CTR-TB9/icon.jpg new file mode 100644 index 0000000..5137a86 Binary files /dev/null and b/data/CTR-TB9/icon.jpg differ diff --git a/data/CTR-TBA/art.jpg b/data/CTR-TBA/art.jpg new file mode 100644 index 0000000..0ded322 Binary files /dev/null and b/data/CTR-TBA/art.jpg differ diff --git a/data/CTR-TBA/data.yml b/data/CTR-TBA/data.yml new file mode 100644 index 0000000..020ec3d --- /dev/null +++ b/data/CTR-TBA/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000009E300 + name: Super C + updates: [] +- regions: + - JP + id: 000400000009E000 + name: SUPER魂斗羅 + updates: [] +- regions: + - US + id: 000400000009E100 + name: Super C™ + updates: [] diff --git a/data/CTR-TBA/icon.jpg b/data/CTR-TBA/icon.jpg new file mode 100644 index 0000000..518f05f Binary files /dev/null and b/data/CTR-TBA/icon.jpg differ diff --git a/data/CTR-TBB/art.jpg b/data/CTR-TBB/art.jpg new file mode 100644 index 0000000..1cdfab9 Binary files /dev/null and b/data/CTR-TBB/art.jpg differ diff --git a/data/CTR-TBB/data.yml b/data/CTR-TBB/data.yml new file mode 100644 index 0000000..8eafea0 --- /dev/null +++ b/data/CTR-TBB/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - US + id: 000400000009E400 + name: Tecmo Bowl™ + updates: [] diff --git a/data/CTR-TBB/icon.jpg b/data/CTR-TBB/icon.jpg new file mode 100644 index 0000000..a3a0f36 Binary files /dev/null and b/data/CTR-TBB/icon.jpg differ diff --git a/data/CTR-TBC/art.jpg b/data/CTR-TBC/art.jpg new file mode 100644 index 0000000..de84158 Binary files /dev/null and b/data/CTR-TBC/art.jpg differ diff --git a/data/CTR-TBC/data.yml b/data/CTR-TBC/data.yml new file mode 100644 index 0000000..df119a6 --- /dev/null +++ b/data/CTR-TBC/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A0E00 + name: Mega Man™ 3 + updates: [] +- regions: + - JP + id: 00040000000A0C00 + name: ロックマン3 Dr.ワイリーの最期!? + updates: [] +- regions: + - US + id: 00040000000A0D00 + name: Mega Man™ 3 + updates: [] diff --git a/data/CTR-TBC/icon.jpg b/data/CTR-TBC/icon.jpg new file mode 100644 index 0000000..140e80e Binary files /dev/null and b/data/CTR-TBC/icon.jpg differ diff --git a/data/CTR-TBD/art.jpg b/data/CTR-TBD/art.jpg new file mode 100644 index 0000000..2782415 Binary files /dev/null and b/data/CTR-TBD/art.jpg differ diff --git a/data/CTR-TBD/data.yml b/data/CTR-TBD/data.yml new file mode 100644 index 0000000..cf3bf59 --- /dev/null +++ b/data/CTR-TBD/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A1200 + name: Mega Man™ 4 + updates: [] +- regions: + - JP + id: 00040000000A0F00 + name: ロックマン4 新たなる野望!! + updates: [] +- regions: + - US + id: 00040000000A1000 + name: Mega Man™ 4 + updates: [] diff --git a/data/CTR-TBD/icon.jpg b/data/CTR-TBD/icon.jpg new file mode 100644 index 0000000..19fff41 Binary files /dev/null and b/data/CTR-TBD/icon.jpg differ diff --git a/data/CTR-TBE/art.jpg b/data/CTR-TBE/art.jpg new file mode 100644 index 0000000..aa2a13a Binary files /dev/null and b/data/CTR-TBE/art.jpg differ diff --git a/data/CTR-TBE/data.yml b/data/CTR-TBE/data.yml new file mode 100644 index 0000000..33fc16b --- /dev/null +++ b/data/CTR-TBE/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A1400 + name: Mega Man™ 5 + updates: [] +- regions: + - JP + id: 00040000000A1100 + name: ロックマン5 ブルースの罠!? + updates: [] +- regions: + - US + id: 00040000000A1300 + name: Mega Man™ 5 + updates: [] diff --git a/data/CTR-TBE/icon.jpg b/data/CTR-TBE/icon.jpg new file mode 100644 index 0000000..176ec08 Binary files /dev/null and b/data/CTR-TBE/icon.jpg differ diff --git a/data/CTR-TBF/art.jpg b/data/CTR-TBF/art.jpg new file mode 100644 index 0000000..fe914df Binary files /dev/null and b/data/CTR-TBF/art.jpg differ diff --git a/data/CTR-TBF/data.yml b/data/CTR-TBF/data.yml new file mode 100644 index 0000000..b69033c --- /dev/null +++ b/data/CTR-TBF/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A1700 + name: Mega Man™ 6 + updates: [] +- regions: + - JP + id: 00040000000A1500 + name: ロックマン6 史上最大の戦い!! + updates: [] +- regions: + - US + id: 00040000000A1600 + name: Mega Man™ 6 + updates: [] diff --git a/data/CTR-TBF/icon.jpg b/data/CTR-TBF/icon.jpg new file mode 100644 index 0000000..715c18a Binary files /dev/null and b/data/CTR-TBF/icon.jpg differ diff --git a/data/CTR-TBG/art.jpg b/data/CTR-TBG/art.jpg new file mode 100644 index 0000000..032909f Binary files /dev/null and b/data/CTR-TBG/art.jpg differ diff --git a/data/CTR-TBG/data.yml b/data/CTR-TBG/data.yml new file mode 100644 index 0000000..be2cbb4 --- /dev/null +++ b/data/CTR-TBG/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000A3E00 + name: 忍者じゃじゃ丸くん + updates: [] diff --git a/data/CTR-TBG/icon.jpg b/data/CTR-TBG/icon.jpg new file mode 100644 index 0000000..0f5084b Binary files /dev/null and b/data/CTR-TBG/icon.jpg differ diff --git a/data/CTR-TBH/art.jpg b/data/CTR-TBH/art.jpg new file mode 100644 index 0000000..acc2843 Binary files /dev/null and b/data/CTR-TBH/art.jpg differ diff --git a/data/CTR-TBH/data.yml b/data/CTR-TBH/data.yml new file mode 100644 index 0000000..f849723 --- /dev/null +++ b/data/CTR-TBH/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A4400 + name: Street Gangs + updates: [] +- regions: + - JP + id: 00040000000A4200 + name: ダウンタウン熱血物語 + updates: [] +- regions: + - US + id: 00040000000A4300 + name: River City Ransom™ + updates: [] diff --git a/data/CTR-TBH/icon.jpg b/data/CTR-TBH/icon.jpg new file mode 100644 index 0000000..5923e74 Binary files /dev/null and b/data/CTR-TBH/icon.jpg differ diff --git a/data/CTR-TBJ/art.jpg b/data/CTR-TBJ/art.jpg new file mode 100644 index 0000000..1592e8f Binary files /dev/null and b/data/CTR-TBJ/art.jpg differ diff --git a/data/CTR-TBJ/data.yml b/data/CTR-TBJ/data.yml new file mode 100644 index 0000000..300b156 --- /dev/null +++ b/data/CTR-TBJ/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A4700 + name: Donkey Kong™ + updates: [] +- regions: + - JP + id: 00040000000A4500 + name: ドンキーコング + updates: [] +- regions: + - KR + id: 0004000000181300 + name: Donkey Kong + updates: [] +- regions: + - US + id: 00040000000A4600 + name: Donkey Kong™ + updates: [] diff --git a/data/CTR-TBJ/icon.jpg b/data/CTR-TBJ/icon.jpg new file mode 100644 index 0000000..2049e5b Binary files /dev/null and b/data/CTR-TBJ/icon.jpg differ diff --git a/data/CTR-TBK/art.jpg b/data/CTR-TBK/art.jpg new file mode 100644 index 0000000..47b49bf Binary files /dev/null and b/data/CTR-TBK/art.jpg differ diff --git a/data/CTR-TBK/data.yml b/data/CTR-TBK/data.yml new file mode 100644 index 0000000..553f19c --- /dev/null +++ b/data/CTR-TBK/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A4900 + name: 'Ninja Gaiden II™: The Dark Sword of Chaos' + updates: [] +- regions: + - US + id: 00040000000A4800 + name: 'Ninja Gaiden II™: The Dark Sword of Chaos' + updates: [] diff --git a/data/CTR-TBK/icon.jpg b/data/CTR-TBK/icon.jpg new file mode 100644 index 0000000..603c64c Binary files /dev/null and b/data/CTR-TBK/icon.jpg differ diff --git a/data/CTR-TBL/art.jpg b/data/CTR-TBL/art.jpg new file mode 100644 index 0000000..67a16b5 Binary files /dev/null and b/data/CTR-TBL/art.jpg differ diff --git a/data/CTR-TBL/data.yml b/data/CTR-TBL/data.yml new file mode 100644 index 0000000..44ade13 --- /dev/null +++ b/data/CTR-TBL/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A4C00 + name: Star Soldier + updates: [] +- regions: + - JP + id: 00040000000A4A00 + name: スターソルジャー + updates: [] +- regions: + - US + id: 00040000000A4B00 + name: Star Soldier™ + updates: [] diff --git a/data/CTR-TBL/icon.jpg b/data/CTR-TBL/icon.jpg new file mode 100644 index 0000000..c62a0a8 Binary files /dev/null and b/data/CTR-TBL/icon.jpg differ diff --git a/data/CTR-TBM/art.jpg b/data/CTR-TBM/art.jpg new file mode 100644 index 0000000..b03eb70 Binary files /dev/null and b/data/CTR-TBM/art.jpg differ diff --git a/data/CTR-TBM/data.yml b/data/CTR-TBM/data.yml new file mode 100644 index 0000000..0156b4e --- /dev/null +++ b/data/CTR-TBM/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A6300 + name: Super Mario Bros. 2™ + updates: [] +- regions: + - JP + id: 00040000000A6100 + name: スーパーマリオUSA + updates: [] +- regions: + - KR + id: 0004000000181200 + name: Super Mario Bros. 2 + updates: [] +- regions: + - US + id: 00040000000A6200 + name: Super Mario Bros.™ 2 + updates: [] diff --git a/data/CTR-TBM/icon.jpg b/data/CTR-TBM/icon.jpg new file mode 100644 index 0000000..c356db3 Binary files /dev/null and b/data/CTR-TBM/icon.jpg differ diff --git a/data/CTR-TBN/art.jpg b/data/CTR-TBN/art.jpg new file mode 100644 index 0000000..c967cb8 Binary files /dev/null and b/data/CTR-TBN/art.jpg differ diff --git a/data/CTR-TBN/data.yml b/data/CTR-TBN/data.yml new file mode 100644 index 0000000..cf9d24b --- /dev/null +++ b/data/CTR-TBN/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A6600 + name: Spelunker™ + updates: [] +- regions: + - JP + id: 00040000000A6400 + name: スペランカー + updates: [] +- regions: + - US + id: 00040000000A6500 + name: Spelunker™ + updates: [] diff --git a/data/CTR-TBN/icon.jpg b/data/CTR-TBN/icon.jpg new file mode 100644 index 0000000..0bcdf8a Binary files /dev/null and b/data/CTR-TBN/icon.jpg differ diff --git a/data/CTR-TBP/art.jpg b/data/CTR-TBP/art.jpg new file mode 100644 index 0000000..7484072 Binary files /dev/null and b/data/CTR-TBP/art.jpg differ diff --git a/data/CTR-TBP/data.yml b/data/CTR-TBP/data.yml new file mode 100644 index 0000000..744c359 --- /dev/null +++ b/data/CTR-TBP/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A6900 + name: Solomon's Key™ + updates: [] +- regions: + - JP + id: 00040000000A6700 + name: ソロモンの鍵 + updates: [] +- regions: + - US + id: 00040000000A6800 + name: Solomon's Key™ + updates: [] diff --git a/data/CTR-TBP/icon.jpg b/data/CTR-TBP/icon.jpg new file mode 100644 index 0000000..4eda9a5 Binary files /dev/null and b/data/CTR-TBP/icon.jpg differ diff --git a/data/CTR-TBQ/art.jpg b/data/CTR-TBQ/art.jpg new file mode 100644 index 0000000..5d6bf30 Binary files /dev/null and b/data/CTR-TBQ/art.jpg differ diff --git a/data/CTR-TBQ/data.yml b/data/CTR-TBQ/data.yml new file mode 100644 index 0000000..97c908a --- /dev/null +++ b/data/CTR-TBQ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000A6A00 + name: ドルアーガの塔 + updates: [] diff --git a/data/CTR-TBQ/icon.jpg b/data/CTR-TBQ/icon.jpg new file mode 100644 index 0000000..a9086a7 Binary files /dev/null and b/data/CTR-TBQ/icon.jpg differ diff --git a/data/CTR-TBR/art.jpg b/data/CTR-TBR/art.jpg new file mode 100644 index 0000000..1f56bd3 Binary files /dev/null and b/data/CTR-TBR/art.jpg differ diff --git a/data/CTR-TBR/data.yml b/data/CTR-TBR/data.yml new file mode 100644 index 0000000..e49819a --- /dev/null +++ b/data/CTR-TBR/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000A6C00 + name: 'Ninja Gaiden III: The Ancient Ship of Doom' + updates: [] +- regions: + - US + id: 00040000000A6B00 + name: 'Ninja Gaiden™ III: The Ancient Ship of Doom' + updates: [] diff --git a/data/CTR-TBR/icon.jpg b/data/CTR-TBR/icon.jpg new file mode 100644 index 0000000..3c5cab8 Binary files /dev/null and b/data/CTR-TBR/icon.jpg differ diff --git a/data/CTR-TBS/art.jpg b/data/CTR-TBS/art.jpg new file mode 100644 index 0000000..0795312 Binary files /dev/null and b/data/CTR-TBS/art.jpg differ diff --git a/data/CTR-TBS/data.yml b/data/CTR-TBS/data.yml new file mode 100644 index 0000000..2875c70 --- /dev/null +++ b/data/CTR-TBS/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B2B00 + name: "Castlevania III: Dracula's Curse" + updates: [] +- regions: + - US + id: 00040000000B2A00 + name: "Castlevania III: Dracula's Curse" + updates: [] diff --git a/data/CTR-TBS/icon.jpg b/data/CTR-TBS/icon.jpg new file mode 100644 index 0000000..bdd1ded Binary files /dev/null and b/data/CTR-TBS/icon.jpg differ diff --git a/data/CTR-TBT/art.jpg b/data/CTR-TBT/art.jpg new file mode 100644 index 0000000..d738bc3 Binary files /dev/null and b/data/CTR-TBT/art.jpg differ diff --git a/data/CTR-TBT/data.yml b/data/CTR-TBT/data.yml new file mode 100644 index 0000000..3be5729 --- /dev/null +++ b/data/CTR-TBT/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000B2C00 + name: メタルマックス + updates: [] diff --git a/data/CTR-TBT/icon.jpg b/data/CTR-TBT/icon.jpg new file mode 100644 index 0000000..5900e35 Binary files /dev/null and b/data/CTR-TBT/icon.jpg differ diff --git a/data/CTR-TBU/art.jpg b/data/CTR-TBU/art.jpg new file mode 100644 index 0000000..6886f21 Binary files /dev/null and b/data/CTR-TBU/art.jpg differ diff --git a/data/CTR-TBU/data.yml b/data/CTR-TBU/data.yml new file mode 100644 index 0000000..89776f4 --- /dev/null +++ b/data/CTR-TBU/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B2F00 + name: City Connection™ + updates: [] +- regions: + - JP + id: 00040000000B2D00 + name: シティコネクション + updates: [] +- regions: + - US + id: 00040000000B2E00 + name: City Connection™ + updates: [] diff --git a/data/CTR-TBU/icon.jpg b/data/CTR-TBU/icon.jpg new file mode 100644 index 0000000..3dab751 Binary files /dev/null and b/data/CTR-TBU/icon.jpg differ diff --git a/data/CTR-TBV/art.jpg b/data/CTR-TBV/art.jpg new file mode 100644 index 0000000..3b946d0 Binary files /dev/null and b/data/CTR-TBV/art.jpg differ diff --git a/data/CTR-TBV/data.yml b/data/CTR-TBV/data.yml new file mode 100644 index 0000000..e2b8c08 --- /dev/null +++ b/data/CTR-TBV/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000B3000 + name: マドゥーラの翼 + updates: [] diff --git a/data/CTR-TBV/icon.jpg b/data/CTR-TBV/icon.jpg new file mode 100644 index 0000000..617843e Binary files /dev/null and b/data/CTR-TBV/icon.jpg differ diff --git a/data/CTR-TBW/art.jpg b/data/CTR-TBW/art.jpg new file mode 100644 index 0000000..69d3b65 Binary files /dev/null and b/data/CTR-TBW/art.jpg differ diff --git a/data/CTR-TBW/data.yml b/data/CTR-TBW/data.yml new file mode 100644 index 0000000..f94f1d7 --- /dev/null +++ b/data/CTR-TBW/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B3300 + name: Milon´s Secret Castle + updates: [] +- regions: + - JP + id: 00040000000B3100 + name: 迷宮組曲 ミロンの大冒険 + updates: [] +- regions: + - US + id: 00040000000B3200 + name: Milon's Secret Castle® + updates: [] diff --git a/data/CTR-TBW/icon.jpg b/data/CTR-TBW/icon.jpg new file mode 100644 index 0000000..f13f255 Binary files /dev/null and b/data/CTR-TBW/icon.jpg differ diff --git a/data/CTR-TBX/art.jpg b/data/CTR-TBX/art.jpg new file mode 100644 index 0000000..dfc8532 Binary files /dev/null and b/data/CTR-TBX/art.jpg differ diff --git a/data/CTR-TBX/data.yml b/data/CTR-TBX/data.yml new file mode 100644 index 0000000..de4a781 --- /dev/null +++ b/data/CTR-TBX/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000B3400 + name: ファミコンウォーズ + updates: [] diff --git a/data/CTR-TBX/icon.jpg b/data/CTR-TBX/icon.jpg new file mode 100644 index 0000000..c539a92 Binary files /dev/null and b/data/CTR-TBX/icon.jpg differ diff --git a/data/CTR-TBY/art.jpg b/data/CTR-TBY/art.jpg new file mode 100644 index 0000000..2a45c1d Binary files /dev/null and b/data/CTR-TBY/art.jpg differ diff --git a/data/CTR-TBY/data.yml b/data/CTR-TBY/data.yml new file mode 100644 index 0000000..3a4d12b --- /dev/null +++ b/data/CTR-TBY/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B5800 + name: Double Dragon + updates: [] +- regions: + - JP + id: 00040000000B5600 + name: ダブルドラゴン + updates: [] +- regions: + - US + id: 00040000000B5700 + name: Double Dragon™ + updates: [] diff --git a/data/CTR-TBY/icon.jpg b/data/CTR-TBY/icon.jpg new file mode 100644 index 0000000..8746296 Binary files /dev/null and b/data/CTR-TBY/icon.jpg differ diff --git a/data/CTR-TBZ/art.jpg b/data/CTR-TBZ/art.jpg new file mode 100644 index 0000000..15059eb Binary files /dev/null and b/data/CTR-TBZ/art.jpg differ diff --git a/data/CTR-TBZ/data.yml b/data/CTR-TBZ/data.yml new file mode 100644 index 0000000..00fd104 --- /dev/null +++ b/data/CTR-TBZ/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000B5B00 + name: Life Force + updates: [] +- regions: + - JP + id: 00040000000B5900 + name: 沙羅曼蛇 + updates: [] +- regions: + - US + id: 00040000000B5A00 + name: Life Force + updates: [] diff --git a/data/CTR-TBZ/icon.jpg b/data/CTR-TBZ/icon.jpg new file mode 100644 index 0000000..f9c2912 Binary files /dev/null and b/data/CTR-TBZ/icon.jpg differ diff --git a/data/CTR-TC2/art.jpg b/data/CTR-TC2/art.jpg new file mode 100644 index 0000000..adf8ac3 Binary files /dev/null and b/data/CTR-TC2/art.jpg differ diff --git a/data/CTR-TC2/data.yml b/data/CTR-TC2/data.yml new file mode 100644 index 0000000..cb83b45 --- /dev/null +++ b/data/CTR-TC2/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000D3400 + name: イー・アル・カンフー + updates: [] diff --git a/data/CTR-TC2/icon.jpg b/data/CTR-TC2/icon.jpg new file mode 100644 index 0000000..310f6be Binary files /dev/null and b/data/CTR-TC2/icon.jpg differ diff --git a/data/CTR-TC3/art.jpg b/data/CTR-TC3/art.jpg new file mode 100644 index 0000000..8c56528 Binary files /dev/null and b/data/CTR-TC3/art.jpg differ diff --git a/data/CTR-TC3/data.yml b/data/CTR-TC3/data.yml new file mode 100644 index 0000000..59a6b5c --- /dev/null +++ b/data/CTR-TC3/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000D3700 + name: 'Double Dragon II: The Revenge' + updates: [] +- regions: + - JP + id: 00040000000D3500 + name: ダブルドラゴンⅡ The Revenge + updates: [] +- regions: + - US + id: 00040000000D3600 + name: 'Double Dragon II: The Revenge' + updates: [] diff --git a/data/CTR-TC3/icon.jpg b/data/CTR-TC3/icon.jpg new file mode 100644 index 0000000..4791a7a Binary files /dev/null and b/data/CTR-TC3/icon.jpg differ diff --git a/data/CTR-TC4/art.jpg b/data/CTR-TC4/art.jpg new file mode 100644 index 0000000..39b64d1 Binary files /dev/null and b/data/CTR-TC4/art.jpg differ diff --git a/data/CTR-TC4/data.yml b/data/CTR-TC4/data.yml new file mode 100644 index 0000000..1fac6c2 --- /dev/null +++ b/data/CTR-TC4/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000D3800 + name: いけいけ!熱血ホッケー部 「すべってころんで大乱闘」 + updates: [] diff --git a/data/CTR-TC4/icon.jpg b/data/CTR-TC4/icon.jpg new file mode 100644 index 0000000..94a687a Binary files /dev/null and b/data/CTR-TC4/icon.jpg differ diff --git a/data/CTR-TC5/art.jpg b/data/CTR-TC5/art.jpg new file mode 100644 index 0000000..a0d7211 Binary files /dev/null and b/data/CTR-TC5/art.jpg differ diff --git a/data/CTR-TC5/data.yml b/data/CTR-TC5/data.yml new file mode 100644 index 0000000..adda7b8 --- /dev/null +++ b/data/CTR-TC5/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000D3900 + name: ダウンタウンスペシャル くにおくんの時代劇だよ全員集合! + updates: [] diff --git a/data/CTR-TC5/icon.jpg b/data/CTR-TC5/icon.jpg new file mode 100644 index 0000000..94c1cff Binary files /dev/null and b/data/CTR-TC5/icon.jpg differ diff --git a/data/CTR-TC6/art.jpg b/data/CTR-TC6/art.jpg new file mode 100644 index 0000000..808897d Binary files /dev/null and b/data/CTR-TC6/art.jpg differ diff --git a/data/CTR-TC6/data.yml b/data/CTR-TC6/data.yml new file mode 100644 index 0000000..a7dad76 --- /dev/null +++ b/data/CTR-TC6/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000D3A00 + name: ダウンタウン熱血行進曲 それゆけ大運動会 + updates: [] diff --git a/data/CTR-TC6/icon.jpg b/data/CTR-TC6/icon.jpg new file mode 100644 index 0000000..a09100f Binary files /dev/null and b/data/CTR-TC6/icon.jpg differ diff --git a/data/CTR-TC7/art.jpg b/data/CTR-TC7/art.jpg new file mode 100644 index 0000000..9ae275b Binary files /dev/null and b/data/CTR-TC7/art.jpg differ diff --git a/data/CTR-TC7/data.yml b/data/CTR-TC7/data.yml new file mode 100644 index 0000000..c421768 --- /dev/null +++ b/data/CTR-TC7/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000D3B00 + name: つっぱり大相撲 + updates: [] diff --git a/data/CTR-TC7/icon.jpg b/data/CTR-TC7/icon.jpg new file mode 100644 index 0000000..2112c1d Binary files /dev/null and b/data/CTR-TC7/icon.jpg differ diff --git a/data/CTR-TC8/art.jpg b/data/CTR-TC8/art.jpg new file mode 100644 index 0000000..79b152d Binary files /dev/null and b/data/CTR-TC8/art.jpg differ diff --git a/data/CTR-TC8/data.yml b/data/CTR-TC8/data.yml new file mode 100644 index 0000000..901df54 --- /dev/null +++ b/data/CTR-TC8/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000DED00 + name: Mach Rider + updates: [] +- regions: + - JP + id: 00040000000DEB00 + name: マッハライダー + updates: [] +- regions: + - KR + id: 0004000000195600 + name: Mach Rider(마하 라이더) + updates: [] +- regions: + - US + id: 00040000000DEC00 + name: Mach Rider™ + updates: [] diff --git a/data/CTR-TC8/icon.jpg b/data/CTR-TC8/icon.jpg new file mode 100644 index 0000000..7a51eb7 Binary files /dev/null and b/data/CTR-TC8/icon.jpg differ diff --git a/data/CTR-TC9/art.jpg b/data/CTR-TC9/art.jpg new file mode 100644 index 0000000..a58083e Binary files /dev/null and b/data/CTR-TC9/art.jpg differ diff --git a/data/CTR-TC9/data.yml b/data/CTR-TC9/data.yml new file mode 100644 index 0000000..3eff249 --- /dev/null +++ b/data/CTR-TC9/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DEE00 + name: へべれけ + updates: [] diff --git a/data/CTR-TC9/icon.jpg b/data/CTR-TC9/icon.jpg new file mode 100644 index 0000000..5b359c3 Binary files /dev/null and b/data/CTR-TC9/icon.jpg differ diff --git a/data/CTR-TCA/art.jpg b/data/CTR-TCA/art.jpg new file mode 100644 index 0000000..43cb042 Binary files /dev/null and b/data/CTR-TCA/art.jpg differ diff --git a/data/CTR-TCA/data.yml b/data/CTR-TCA/data.yml new file mode 100644 index 0000000..cdaf97d --- /dev/null +++ b/data/CTR-TCA/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000BD900 + name: すごろクエスト ダイスの戦士たち + updates: [] diff --git a/data/CTR-TCA/icon.jpg b/data/CTR-TCA/icon.jpg new file mode 100644 index 0000000..1778ba7 Binary files /dev/null and b/data/CTR-TCA/icon.jpg differ diff --git a/data/CTR-TCB/art.jpg b/data/CTR-TCB/art.jpg new file mode 100644 index 0000000..3e7428e Binary files /dev/null and b/data/CTR-TCB/art.jpg differ diff --git a/data/CTR-TCB/data.yml b/data/CTR-TCB/data.yml new file mode 100644 index 0000000..8580359 --- /dev/null +++ b/data/CTR-TCB/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000BDC00 + name: Castlevania Ⅱ Simon's Quest + updates: [] +- regions: + - JP + id: 00040000000BDA00 + name: ドラキュラⅡ 呪いの封印 + updates: [] +- regions: + - US + id: 00040000000BDB00 + name: "Castlevania II: Simon's Quest" + updates: [] diff --git a/data/CTR-TCB/icon.jpg b/data/CTR-TCB/icon.jpg new file mode 100644 index 0000000..7d726b7 Binary files /dev/null and b/data/CTR-TCB/icon.jpg differ diff --git a/data/CTR-TCC/art.jpg b/data/CTR-TCC/art.jpg new file mode 100644 index 0000000..4c71aae Binary files /dev/null and b/data/CTR-TCC/art.jpg differ diff --git a/data/CTR-TCC/data.yml b/data/CTR-TCC/data.yml new file mode 100644 index 0000000..1482770 --- /dev/null +++ b/data/CTR-TCC/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000BDD00 + name: チャレンジャー + updates: [] diff --git a/data/CTR-TCC/icon.jpg b/data/CTR-TCC/icon.jpg new file mode 100644 index 0000000..089daeb Binary files /dev/null and b/data/CTR-TCC/icon.jpg differ diff --git a/data/CTR-TCD/art.jpg b/data/CTR-TCD/art.jpg new file mode 100644 index 0000000..6472aa3 Binary files /dev/null and b/data/CTR-TCD/art.jpg differ diff --git a/data/CTR-TCD/data.yml b/data/CTR-TCD/data.yml new file mode 100644 index 0000000..1c346e2 --- /dev/null +++ b/data/CTR-TCD/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000BDE00 + name: ドラゴンバスター + updates: [] diff --git a/data/CTR-TCD/icon.jpg b/data/CTR-TCD/icon.jpg new file mode 100644 index 0000000..a7eb495 Binary files /dev/null and b/data/CTR-TCD/icon.jpg differ diff --git a/data/CTR-TCG/art.jpg b/data/CTR-TCG/art.jpg new file mode 100644 index 0000000..00c54a7 Binary files /dev/null and b/data/CTR-TCG/art.jpg differ diff --git a/data/CTR-TCG/data.yml b/data/CTR-TCG/data.yml new file mode 100644 index 0000000..e70f5ad --- /dev/null +++ b/data/CTR-TCG/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CA200 + name: ファイアーエムブレム 外伝 + updates: [] diff --git a/data/CTR-TCG/icon.jpg b/data/CTR-TCG/icon.jpg new file mode 100644 index 0000000..f186b1f Binary files /dev/null and b/data/CTR-TCG/icon.jpg differ diff --git a/data/CTR-TCH/art.jpg b/data/CTR-TCH/art.jpg new file mode 100644 index 0000000..17f467d Binary files /dev/null and b/data/CTR-TCH/art.jpg differ diff --git a/data/CTR-TCH/data.yml b/data/CTR-TCH/data.yml new file mode 100644 index 0000000..06b4fd6 --- /dev/null +++ b/data/CTR-TCH/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000CA400 + name: Devil World + updates: [] +- regions: + - JP + id: 00040000000CA300 + name: デビルワールド + updates: [] diff --git a/data/CTR-TCH/icon.jpg b/data/CTR-TCH/icon.jpg new file mode 100644 index 0000000..3d15c94 Binary files /dev/null and b/data/CTR-TCH/icon.jpg differ diff --git a/data/CTR-TCJ/art.jpg b/data/CTR-TCJ/art.jpg new file mode 100644 index 0000000..4e418ae Binary files /dev/null and b/data/CTR-TCJ/art.jpg differ diff --git a/data/CTR-TCJ/data.yml b/data/CTR-TCJ/data.yml new file mode 100644 index 0000000..35d01dd --- /dev/null +++ b/data/CTR-TCJ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CA500 + name: がんばれゴエモン!からくり道中 + updates: [] diff --git a/data/CTR-TCJ/icon.jpg b/data/CTR-TCJ/icon.jpg new file mode 100644 index 0000000..996626e Binary files /dev/null and b/data/CTR-TCJ/icon.jpg differ diff --git a/data/CTR-TCK/art.jpg b/data/CTR-TCK/art.jpg new file mode 100644 index 0000000..220c477 Binary files /dev/null and b/data/CTR-TCK/art.jpg differ diff --git a/data/CTR-TCK/data.yml b/data/CTR-TCK/data.yml new file mode 100644 index 0000000..0403b02 --- /dev/null +++ b/data/CTR-TCK/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000CFA00 + name: Adventure Island II + updates: [] +- regions: + - JP + id: 00040000000CA600 + name: 高橋名人の冒険島Ⅱ + updates: [] +- regions: + - US + id: 00040000000CA700 + name: Adventure Island II + updates: [] diff --git a/data/CTR-TCK/icon.jpg b/data/CTR-TCK/icon.jpg new file mode 100644 index 0000000..1dce7ef Binary files /dev/null and b/data/CTR-TCK/icon.jpg differ diff --git a/data/CTR-TCL/art.jpg b/data/CTR-TCL/art.jpg new file mode 100644 index 0000000..6c87ed5 Binary files /dev/null and b/data/CTR-TCL/art.jpg differ diff --git a/data/CTR-TCL/data.yml b/data/CTR-TCL/data.yml new file mode 100644 index 0000000..8495962 --- /dev/null +++ b/data/CTR-TCL/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000CAF00 + name: Renegade + updates: [] +- regions: + - JP + id: 00040000000CA800 + name: 熱血硬派くにおくん + updates: [] +- regions: + - US + id: 00040000000CA900 + name: Renegade™ + updates: [] diff --git a/data/CTR-TCL/icon.jpg b/data/CTR-TCL/icon.jpg new file mode 100644 index 0000000..ade2344 Binary files /dev/null and b/data/CTR-TCL/icon.jpg differ diff --git a/data/CTR-TCN/art.jpg b/data/CTR-TCN/art.jpg new file mode 100644 index 0000000..59ae0b4 Binary files /dev/null and b/data/CTR-TCN/art.jpg differ diff --git a/data/CTR-TCN/data.yml b/data/CTR-TCN/data.yml new file mode 100644 index 0000000..01553a6 --- /dev/null +++ b/data/CTR-TCN/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CAA00 + name: フィールドコンバット + updates: [] diff --git a/data/CTR-TCN/icon.jpg b/data/CTR-TCN/icon.jpg new file mode 100644 index 0000000..69d59cd Binary files /dev/null and b/data/CTR-TCN/icon.jpg differ diff --git a/data/CTR-TCP/art.jpg b/data/CTR-TCP/art.jpg new file mode 100644 index 0000000..2b898f3 Binary files /dev/null and b/data/CTR-TCP/art.jpg differ diff --git a/data/CTR-TCP/data.yml b/data/CTR-TCP/data.yml new file mode 100644 index 0000000..2b5e815 --- /dev/null +++ b/data/CTR-TCP/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CAB00 + name: スカイキッド + updates: [] +- regions: + - US + id: 00040000000CAC00 + name: Sky Kid + updates: [] diff --git a/data/CTR-TCP/icon.jpg b/data/CTR-TCP/icon.jpg new file mode 100644 index 0000000..bf4bea3 Binary files /dev/null and b/data/CTR-TCP/icon.jpg differ diff --git a/data/CTR-TCQ/art.jpg b/data/CTR-TCQ/art.jpg new file mode 100644 index 0000000..486777b Binary files /dev/null and b/data/CTR-TCQ/art.jpg differ diff --git a/data/CTR-TCQ/data.yml b/data/CTR-TCQ/data.yml new file mode 100644 index 0000000..dc19dde --- /dev/null +++ b/data/CTR-TCQ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CAE00 + name: リップルアイランド + updates: [] diff --git a/data/CTR-TCQ/icon.jpg b/data/CTR-TCQ/icon.jpg new file mode 100644 index 0000000..440b279 Binary files /dev/null and b/data/CTR-TCQ/icon.jpg differ diff --git a/data/CTR-TCR/art.jpg b/data/CTR-TCR/art.jpg new file mode 100644 index 0000000..121cf85 Binary files /dev/null and b/data/CTR-TCR/art.jpg differ diff --git a/data/CTR-TCR/data.yml b/data/CTR-TCR/data.yml new file mode 100644 index 0000000..8e95be7 --- /dev/null +++ b/data/CTR-TCR/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000CDC00 + name: Clu Clu Land + updates: [] +- regions: + - JP + id: 00040000000CDA00 + name: クルクルランド + updates: [] +- regions: + - US + id: 00040000000CDB00 + name: Clu Clu Land™ + updates: [] diff --git a/data/CTR-TCR/icon.jpg b/data/CTR-TCR/icon.jpg new file mode 100644 index 0000000..7e4f960 Binary files /dev/null and b/data/CTR-TCR/icon.jpg differ diff --git a/data/CTR-TCS/art.jpg b/data/CTR-TCS/art.jpg new file mode 100644 index 0000000..0791fed Binary files /dev/null and b/data/CTR-TCS/art.jpg differ diff --git a/data/CTR-TCS/data.yml b/data/CTR-TCS/data.yml new file mode 100644 index 0000000..8615890 --- /dev/null +++ b/data/CTR-TCS/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CDD00 + name: がんばれゴエモン2 + updates: [] diff --git a/data/CTR-TCS/icon.jpg b/data/CTR-TCS/icon.jpg new file mode 100644 index 0000000..b3daef9 Binary files /dev/null and b/data/CTR-TCS/icon.jpg differ diff --git a/data/CTR-TCT/art.jpg b/data/CTR-TCT/art.jpg new file mode 100644 index 0000000..9884b64 Binary files /dev/null and b/data/CTR-TCT/art.jpg differ diff --git a/data/CTR-TCT/data.yml b/data/CTR-TCT/data.yml new file mode 100644 index 0000000..d135ab0 --- /dev/null +++ b/data/CTR-TCT/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CDE00 + name: がんばれゴエモン外伝 きえた黄金キセル + updates: [] diff --git a/data/CTR-TCT/icon.jpg b/data/CTR-TCT/icon.jpg new file mode 100644 index 0000000..b492f19 Binary files /dev/null and b/data/CTR-TCT/icon.jpg differ diff --git a/data/CTR-TCU/art.jpg b/data/CTR-TCU/art.jpg new file mode 100644 index 0000000..040bbba Binary files /dev/null and b/data/CTR-TCU/art.jpg differ diff --git a/data/CTR-TCU/data.yml b/data/CTR-TCU/data.yml new file mode 100644 index 0000000..8ee7ba0 --- /dev/null +++ b/data/CTR-TCU/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000CE100 + name: Galaga™ + updates: [] +- regions: + - JP + id: 00040000000CDF00 + name: ギャラガ + updates: [] +- regions: + - US + id: 00040000000CE000 + name: Galaga™ + updates: [] diff --git a/data/CTR-TCU/icon.jpg b/data/CTR-TCU/icon.jpg new file mode 100644 index 0000000..33fa868 Binary files /dev/null and b/data/CTR-TCU/icon.jpg differ diff --git a/data/CTR-TCV/art.jpg b/data/CTR-TCV/art.jpg new file mode 100644 index 0000000..e1f81f7 Binary files /dev/null and b/data/CTR-TCV/art.jpg differ diff --git a/data/CTR-TCV/data.yml b/data/CTR-TCV/data.yml new file mode 100644 index 0000000..c61b910 --- /dev/null +++ b/data/CTR-TCV/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CE200 + name: 熱血高校ドッジボール部 サッカー編 + updates: [] diff --git a/data/CTR-TCV/icon.jpg b/data/CTR-TCV/icon.jpg new file mode 100644 index 0000000..050f1c1 Binary files /dev/null and b/data/CTR-TCV/icon.jpg differ diff --git a/data/CTR-TCW/art.jpg b/data/CTR-TCW/art.jpg new file mode 100644 index 0000000..aec6d24 Binary files /dev/null and b/data/CTR-TCW/art.jpg differ diff --git a/data/CTR-TCW/data.yml b/data/CTR-TCW/data.yml new file mode 100644 index 0000000..7297852 --- /dev/null +++ b/data/CTR-TCW/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CE300 + name: エスパードリーム + updates: [] diff --git a/data/CTR-TCW/icon.jpg b/data/CTR-TCW/icon.jpg new file mode 100644 index 0000000..bd75779 Binary files /dev/null and b/data/CTR-TCW/icon.jpg differ diff --git a/data/CTR-TCX/art.jpg b/data/CTR-TCX/art.jpg new file mode 100644 index 0000000..d7ccb48 Binary files /dev/null and b/data/CTR-TCX/art.jpg differ diff --git a/data/CTR-TCX/data.yml b/data/CTR-TCX/data.yml new file mode 100644 index 0000000..b27fbc4 --- /dev/null +++ b/data/CTR-TCX/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CE400 + name: 燃えろ!!プロ野球 + updates: [] +- regions: + - US + id: 00040000000CE500 + name: Bases Loaded™ + updates: [] diff --git a/data/CTR-TCX/icon.jpg b/data/CTR-TCX/icon.jpg new file mode 100644 index 0000000..970490f Binary files /dev/null and b/data/CTR-TCX/icon.jpg differ diff --git a/data/CTR-TCY/art.jpg b/data/CTR-TCY/art.jpg new file mode 100644 index 0000000..37d08ce Binary files /dev/null and b/data/CTR-TCY/art.jpg differ diff --git a/data/CTR-TCY/data.yml b/data/CTR-TCY/data.yml new file mode 100644 index 0000000..bf1375a --- /dev/null +++ b/data/CTR-TCY/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000CE600 + name: ふぁみこんむかし話 新・鬼ヶ島(前後編) + updates: [] diff --git a/data/CTR-TCY/icon.jpg b/data/CTR-TCY/icon.jpg new file mode 100644 index 0000000..6b8f17d Binary files /dev/null and b/data/CTR-TCY/icon.jpg differ diff --git a/data/CTR-TCZ/art.jpg b/data/CTR-TCZ/art.jpg new file mode 100644 index 0000000..2a30c27 Binary files /dev/null and b/data/CTR-TCZ/art.jpg differ diff --git a/data/CTR-TCZ/data.yml b/data/CTR-TCZ/data.yml new file mode 100644 index 0000000..9f33415 --- /dev/null +++ b/data/CTR-TCZ/data.yml @@ -0,0 +1,22 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000D3300 + name: The Mysterious Murasame Castle + updates: [] +- regions: + - JP + id: 00040000000D3100 + name: 謎の村雨城 + updates: [] +- regions: + - KR + id: 0004000000196000 + name: The Mysterious Murasame Castle + updates: [] +- regions: + - US + id: 00040000000D3200 + name: The Mysterious Murasame Castle + updates: [] diff --git a/data/CTR-TCZ/icon.jpg b/data/CTR-TCZ/icon.jpg new file mode 100644 index 0000000..97a2393 Binary files /dev/null and b/data/CTR-TCZ/icon.jpg differ diff --git a/data/CTR-TD2/art.jpg b/data/CTR-TD2/art.jpg new file mode 100644 index 0000000..d9f5be3 Binary files /dev/null and b/data/CTR-TD2/art.jpg differ diff --git a/data/CTR-TD2/data.yml b/data/CTR-TD2/data.yml new file mode 100644 index 0000000..61bc038 --- /dev/null +++ b/data/CTR-TD2/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 0004000000100400 + name: Chack'n Pop + updates: [] diff --git a/data/CTR-TD2/icon.jpg b/data/CTR-TD2/icon.jpg new file mode 100644 index 0000000..38fbc61 Binary files /dev/null and b/data/CTR-TD2/icon.jpg differ diff --git a/data/CTR-TD3/art.jpg b/data/CTR-TD3/art.jpg new file mode 100644 index 0000000..574eeb6 Binary files /dev/null and b/data/CTR-TD3/art.jpg differ diff --git a/data/CTR-TD3/data.yml b/data/CTR-TD3/data.yml new file mode 100644 index 0000000..0411c69 --- /dev/null +++ b/data/CTR-TD3/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000010FB00 + name: Adventures of Lolo™ + updates: [] +- regions: + - JP + id: 000400000010F900 + name: アドベンチャーズ オブ ロロ + updates: [] +- regions: + - US + id: 000400000010FA00 + name: Adventures of Lolo™ + updates: [] diff --git a/data/CTR-TD3/icon.jpg b/data/CTR-TD3/icon.jpg new file mode 100644 index 0000000..7680ef5 Binary files /dev/null and b/data/CTR-TD3/icon.jpg differ diff --git a/data/CTR-TD4/art.jpg b/data/CTR-TD4/art.jpg new file mode 100644 index 0000000..085ca06 Binary files /dev/null and b/data/CTR-TD4/art.jpg differ diff --git a/data/CTR-TD4/data.yml b/data/CTR-TD4/data.yml new file mode 100644 index 0000000..d040e77 --- /dev/null +++ b/data/CTR-TD4/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 000400000011AC00 + name: シャドウゲイト + updates: [] diff --git a/data/CTR-TD4/icon.jpg b/data/CTR-TD4/icon.jpg new file mode 100644 index 0000000..2329688 Binary files /dev/null and b/data/CTR-TD4/icon.jpg differ diff --git a/data/CTR-TD5/art.jpg b/data/CTR-TD5/art.jpg new file mode 100644 index 0000000..59b4149 Binary files /dev/null and b/data/CTR-TD5/art.jpg differ diff --git a/data/CTR-TD5/data.yml b/data/CTR-TD5/data.yml new file mode 100644 index 0000000..5f3d6cd --- /dev/null +++ b/data/CTR-TD5/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000011AE00 + name: Shadow of the Ninja™ + updates: [] +- regions: + - US + id: 000400000011AD00 + name: Shadow of the Ninja™ + updates: [] diff --git a/data/CTR-TD5/icon.jpg b/data/CTR-TD5/icon.jpg new file mode 100644 index 0000000..48c8b78 Binary files /dev/null and b/data/CTR-TD5/icon.jpg differ diff --git a/data/CTR-TD6/art.jpg b/data/CTR-TD6/art.jpg new file mode 100644 index 0000000..ec8e0c7 Binary files /dev/null and b/data/CTR-TD6/art.jpg differ diff --git a/data/CTR-TD6/data.yml b/data/CTR-TD6/data.yml new file mode 100644 index 0000000..c8339da --- /dev/null +++ b/data/CTR-TD6/data.yml @@ -0,0 +1,12 @@ +platform: NES +releases: +- regions: + - EU + id: 000400000011B000 + name: S.C.A.T.™ + updates: [] +- regions: + - US + id: 000400000011AF00 + name: S.C.A.T. + updates: [] diff --git a/data/CTR-TD6/icon.jpg b/data/CTR-TD6/icon.jpg new file mode 100644 index 0000000..23467de Binary files /dev/null and b/data/CTR-TD6/icon.jpg differ diff --git a/data/CTR-TDA/art.jpg b/data/CTR-TDA/art.jpg new file mode 100644 index 0000000..c7e1480 Binary files /dev/null and b/data/CTR-TDA/art.jpg differ diff --git a/data/CTR-TDA/data.yml b/data/CTR-TDA/data.yml new file mode 100644 index 0000000..2ee7e86 --- /dev/null +++ b/data/CTR-TDA/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DF000 + name: バイナリィランド + updates: [] diff --git a/data/CTR-TDA/icon.jpg b/data/CTR-TDA/icon.jpg new file mode 100644 index 0000000..f91b9e5 Binary files /dev/null and b/data/CTR-TDA/icon.jpg differ diff --git a/data/CTR-TDB/art.jpg b/data/CTR-TDB/art.jpg new file mode 100644 index 0000000..ce5cec4 Binary files /dev/null and b/data/CTR-TDB/art.jpg differ diff --git a/data/CTR-TDB/data.yml b/data/CTR-TDB/data.yml new file mode 100644 index 0000000..0ee7011 --- /dev/null +++ b/data/CTR-TDB/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DF100 + name: ナッツ&ミルク + updates: [] diff --git a/data/CTR-TDB/icon.jpg b/data/CTR-TDB/icon.jpg new file mode 100644 index 0000000..e66099c Binary files /dev/null and b/data/CTR-TDB/icon.jpg differ diff --git a/data/CTR-TDC/art.jpg b/data/CTR-TDC/art.jpg new file mode 100644 index 0000000..48c008f Binary files /dev/null and b/data/CTR-TDC/art.jpg differ diff --git a/data/CTR-TDC/data.yml b/data/CTR-TDC/data.yml new file mode 100644 index 0000000..4d680cb --- /dev/null +++ b/data/CTR-TDC/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DF200 + name: けっきょく南極大冒険 + updates: [] diff --git a/data/CTR-TDC/icon.jpg b/data/CTR-TDC/icon.jpg new file mode 100644 index 0000000..1a10819 Binary files /dev/null and b/data/CTR-TDC/icon.jpg differ diff --git a/data/CTR-TDD/art.jpg b/data/CTR-TDD/art.jpg new file mode 100644 index 0000000..5be265b Binary files /dev/null and b/data/CTR-TDD/art.jpg differ diff --git a/data/CTR-TDD/data.yml b/data/CTR-TDD/data.yml new file mode 100644 index 0000000..1e9d4c4 --- /dev/null +++ b/data/CTR-TDD/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DF300 + name: ワルキューレの冒険 時の鍵伝説 + updates: [] diff --git a/data/CTR-TDD/icon.jpg b/data/CTR-TDD/icon.jpg new file mode 100644 index 0000000..d93b258 Binary files /dev/null and b/data/CTR-TDD/icon.jpg differ diff --git a/data/CTR-TDE/art.jpg b/data/CTR-TDE/art.jpg new file mode 100644 index 0000000..02cfd10 Binary files /dev/null and b/data/CTR-TDE/art.jpg differ diff --git a/data/CTR-TDE/data.yml b/data/CTR-TDE/data.yml new file mode 100644 index 0000000..86bb4bc --- /dev/null +++ b/data/CTR-TDE/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DF400 + name: スターラスター + updates: [] diff --git a/data/CTR-TDE/icon.jpg b/data/CTR-TDE/icon.jpg new file mode 100644 index 0000000..ba00137 Binary files /dev/null and b/data/CTR-TDE/icon.jpg differ diff --git a/data/CTR-TDF/art.jpg b/data/CTR-TDF/art.jpg new file mode 100644 index 0000000..4d582fa Binary files /dev/null and b/data/CTR-TDF/art.jpg differ diff --git a/data/CTR-TDF/data.yml b/data/CTR-TDF/data.yml new file mode 100644 index 0000000..879f38c --- /dev/null +++ b/data/CTR-TDF/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000DF500 + name: バトルシティー + updates: [] diff --git a/data/CTR-TDF/icon.jpg b/data/CTR-TDF/icon.jpg new file mode 100644 index 0000000..4f80c5e Binary files /dev/null and b/data/CTR-TDF/icon.jpg differ diff --git a/data/CTR-TDG/art.jpg b/data/CTR-TDG/art.jpg new file mode 100644 index 0000000..5993374 Binary files /dev/null and b/data/CTR-TDG/art.jpg differ diff --git a/data/CTR-TDG/data.yml b/data/CTR-TDG/data.yml new file mode 100644 index 0000000..75d0b2e --- /dev/null +++ b/data/CTR-TDG/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000E9E00 + name: ジョイメカファイト + updates: [] diff --git a/data/CTR-TDG/icon.jpg b/data/CTR-TDG/icon.jpg new file mode 100644 index 0000000..6f29e41 Binary files /dev/null and b/data/CTR-TDG/icon.jpg differ diff --git a/data/CTR-TDH/art.jpg b/data/CTR-TDH/art.jpg new file mode 100644 index 0000000..47192eb Binary files /dev/null and b/data/CTR-TDH/art.jpg differ diff --git a/data/CTR-TDH/data.yml b/data/CTR-TDH/data.yml new file mode 100644 index 0000000..167c148 --- /dev/null +++ b/data/CTR-TDH/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000E9F00 + name: SDガンダムワールド ガチャポン 戦士 スクランブルウォーズ + updates: [] diff --git a/data/CTR-TDH/icon.jpg b/data/CTR-TDH/icon.jpg new file mode 100644 index 0000000..82a1873 Binary files /dev/null and b/data/CTR-TDH/icon.jpg differ diff --git a/data/CTR-TDJ/art.jpg b/data/CTR-TDJ/art.jpg new file mode 100644 index 0000000..10a9d22 Binary files /dev/null and b/data/CTR-TDJ/art.jpg differ diff --git a/data/CTR-TDJ/data.yml b/data/CTR-TDJ/data.yml new file mode 100644 index 0000000..70b0b99 --- /dev/null +++ b/data/CTR-TDJ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000EA000 + name: マッピー + updates: [] diff --git a/data/CTR-TDJ/icon.jpg b/data/CTR-TDJ/icon.jpg new file mode 100644 index 0000000..13060f1 Binary files /dev/null and b/data/CTR-TDJ/icon.jpg differ diff --git a/data/CTR-TDK/art.jpg b/data/CTR-TDK/art.jpg new file mode 100644 index 0000000..708e8a9 Binary files /dev/null and b/data/CTR-TDK/art.jpg differ diff --git a/data/CTR-TDK/data.yml b/data/CTR-TDK/data.yml new file mode 100644 index 0000000..f2eb938 --- /dev/null +++ b/data/CTR-TDK/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000EA100 + name: かんしゃく玉なげカン太郎の 東海道五十三次 + updates: [] diff --git a/data/CTR-TDK/icon.jpg b/data/CTR-TDK/icon.jpg new file mode 100644 index 0000000..b8e524d Binary files /dev/null and b/data/CTR-TDK/icon.jpg differ diff --git a/data/CTR-TDL/art.jpg b/data/CTR-TDL/art.jpg new file mode 100644 index 0000000..c1d5a1c Binary files /dev/null and b/data/CTR-TDL/art.jpg differ diff --git a/data/CTR-TDL/data.yml b/data/CTR-TDL/data.yml new file mode 100644 index 0000000..43fecf4 --- /dev/null +++ b/data/CTR-TDL/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000EA200 + name: アトランチスの謎 + updates: [] diff --git a/data/CTR-TDL/icon.jpg b/data/CTR-TDL/icon.jpg new file mode 100644 index 0000000..af97872 Binary files /dev/null and b/data/CTR-TDL/icon.jpg differ diff --git a/data/CTR-TDM/art.jpg b/data/CTR-TDM/art.jpg new file mode 100644 index 0000000..8276fab Binary files /dev/null and b/data/CTR-TDM/art.jpg differ diff --git a/data/CTR-TDM/data.yml b/data/CTR-TDM/data.yml new file mode 100644 index 0000000..7c584cd --- /dev/null +++ b/data/CTR-TDM/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000F8700 + name: Mighty Final Fight + updates: [] +- regions: + - JP + id: 00040000000F8500 + name: マイティファイナルファイト + updates: [] +- regions: + - US + id: 00040000000F8600 + name: Mighty Final Fight® + updates: [] diff --git a/data/CTR-TDM/icon.jpg b/data/CTR-TDM/icon.jpg new file mode 100644 index 0000000..377670a Binary files /dev/null and b/data/CTR-TDM/icon.jpg differ diff --git a/data/CTR-TDN/art.jpg b/data/CTR-TDN/art.jpg new file mode 100644 index 0000000..b1927dd Binary files /dev/null and b/data/CTR-TDN/art.jpg differ diff --git a/data/CTR-TDN/data.yml b/data/CTR-TDN/data.yml new file mode 100644 index 0000000..3625a26 --- /dev/null +++ b/data/CTR-TDN/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000F8A00 + name: "Gargoyle's Quest II: The Demon Darkness" + updates: [] +- regions: + - JP + id: 00040000000F8800 + name: レッドアリーマーⅡ + updates: [] +- regions: + - US + id: 00040000000F8900 + name: "Gargoyle's Quest™ II: The Demon Darkness" + updates: [] diff --git a/data/CTR-TDN/icon.jpg b/data/CTR-TDN/icon.jpg new file mode 100644 index 0000000..4bebcfa Binary files /dev/null and b/data/CTR-TDN/icon.jpg differ diff --git a/data/CTR-TDP/art.jpg b/data/CTR-TDP/art.jpg new file mode 100644 index 0000000..e7ff179 Binary files /dev/null and b/data/CTR-TDP/art.jpg differ diff --git a/data/CTR-TDP/data.yml b/data/CTR-TDP/data.yml new file mode 100644 index 0000000..c8b864a --- /dev/null +++ b/data/CTR-TDP/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000F8B00 + name: ファイナルファンタジー + updates: [] diff --git a/data/CTR-TDP/icon.jpg b/data/CTR-TDP/icon.jpg new file mode 100644 index 0000000..12ae43d Binary files /dev/null and b/data/CTR-TDP/icon.jpg differ diff --git a/data/CTR-TDQ/art.jpg b/data/CTR-TDQ/art.jpg new file mode 100644 index 0000000..97ae762 Binary files /dev/null and b/data/CTR-TDQ/art.jpg differ diff --git a/data/CTR-TDQ/data.yml b/data/CTR-TDQ/data.yml new file mode 100644 index 0000000..ba3d28f --- /dev/null +++ b/data/CTR-TDQ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000F8E00 + name: ファイナルファンタジーII + updates: [] diff --git a/data/CTR-TDQ/icon.jpg b/data/CTR-TDQ/icon.jpg new file mode 100644 index 0000000..2e43f6f Binary files /dev/null and b/data/CTR-TDQ/icon.jpg differ diff --git a/data/CTR-TDR/art.jpg b/data/CTR-TDR/art.jpg new file mode 100644 index 0000000..2e5a3eb Binary files /dev/null and b/data/CTR-TDR/art.jpg differ diff --git a/data/CTR-TDR/data.yml b/data/CTR-TDR/data.yml new file mode 100644 index 0000000..8b333d9 --- /dev/null +++ b/data/CTR-TDR/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000F8F00 + name: 半熟英雄 + updates: [] diff --git a/data/CTR-TDR/icon.jpg b/data/CTR-TDR/icon.jpg new file mode 100644 index 0000000..40aaa73 Binary files /dev/null and b/data/CTR-TDR/icon.jpg differ diff --git a/data/CTR-TDS/art.jpg b/data/CTR-TDS/art.jpg new file mode 100644 index 0000000..d48c6a3 Binary files /dev/null and b/data/CTR-TDS/art.jpg differ diff --git a/data/CTR-TDS/data.yml b/data/CTR-TDS/data.yml new file mode 100644 index 0000000..3db53d1 --- /dev/null +++ b/data/CTR-TDS/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000F9000 + name: ELEVATOR ACTION + updates: [] diff --git a/data/CTR-TDS/icon.jpg b/data/CTR-TDS/icon.jpg new file mode 100644 index 0000000..0e2965a Binary files /dev/null and b/data/CTR-TDS/icon.jpg differ diff --git a/data/CTR-TDT/art.jpg b/data/CTR-TDT/art.jpg new file mode 100644 index 0000000..b7d1382 Binary files /dev/null and b/data/CTR-TDT/art.jpg differ diff --git a/data/CTR-TDT/data.yml b/data/CTR-TDT/data.yml new file mode 100644 index 0000000..bee416e --- /dev/null +++ b/data/CTR-TDT/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000F9300 + name: BUBBLE BOBBLE + updates: [] diff --git a/data/CTR-TDT/icon.jpg b/data/CTR-TDT/icon.jpg new file mode 100644 index 0000000..f1e5405 Binary files /dev/null and b/data/CTR-TDT/icon.jpg differ diff --git a/data/CTR-TDU/art.jpg b/data/CTR-TDU/art.jpg new file mode 100644 index 0000000..a15d3e2 Binary files /dev/null and b/data/CTR-TDU/art.jpg differ diff --git a/data/CTR-TDU/data.yml b/data/CTR-TDU/data.yml new file mode 100644 index 0000000..0db7e4c --- /dev/null +++ b/data/CTR-TDU/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000F9600 + name: FRONT LINE + updates: [] diff --git a/data/CTR-TDU/icon.jpg b/data/CTR-TDU/icon.jpg new file mode 100644 index 0000000..486d65c Binary files /dev/null and b/data/CTR-TDU/icon.jpg differ diff --git a/data/CTR-TDV/art.jpg b/data/CTR-TDV/art.jpg new file mode 100644 index 0000000..c769672 Binary files /dev/null and b/data/CTR-TDV/art.jpg differ diff --git a/data/CTR-TDV/data.yml b/data/CTR-TDV/data.yml new file mode 100644 index 0000000..c943848 --- /dev/null +++ b/data/CTR-TDV/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000FEC00 + name: ファイナルファンタジーIII + updates: [] diff --git a/data/CTR-TDV/icon.jpg b/data/CTR-TDV/icon.jpg new file mode 100644 index 0000000..2b4bcce Binary files /dev/null and b/data/CTR-TDV/icon.jpg differ diff --git a/data/CTR-TDW/art.jpg b/data/CTR-TDW/art.jpg new file mode 100644 index 0000000..9d1a79f Binary files /dev/null and b/data/CTR-TDW/art.jpg differ diff --git a/data/CTR-TDW/data.yml b/data/CTR-TDW/data.yml new file mode 100644 index 0000000..76ed29a --- /dev/null +++ b/data/CTR-TDW/data.yml @@ -0,0 +1,17 @@ +platform: NES +releases: +- regions: + - EU + id: 00040000000FF400 + name: 'Street Fighter 2010: The Final Fight' + updates: [] +- regions: + - JP + id: 00040000000FF200 + name: 2010 ストリートファイター + updates: [] +- regions: + - US + id: 00040000000FF300 + name: 'Street Fighter 2010: The Final Fight' + updates: [] diff --git a/data/CTR-TDW/icon.jpg b/data/CTR-TDW/icon.jpg new file mode 100644 index 0000000..57739d0 Binary files /dev/null and b/data/CTR-TDW/icon.jpg differ diff --git a/data/CTR-TDX/art.jpg b/data/CTR-TDX/art.jpg new file mode 100644 index 0000000..d73cbe6 Binary files /dev/null and b/data/CTR-TDX/art.jpg differ diff --git a/data/CTR-TDX/data.yml b/data/CTR-TDX/data.yml new file mode 100644 index 0000000..d3033fd --- /dev/null +++ b/data/CTR-TDX/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000FFD00 + name: バイオミラクル ぼくってウパ + updates: [] diff --git a/data/CTR-TDX/icon.jpg b/data/CTR-TDX/icon.jpg new file mode 100644 index 0000000..27bd83b Binary files /dev/null and b/data/CTR-TDX/icon.jpg differ diff --git a/data/CTR-TDY/art.jpg b/data/CTR-TDY/art.jpg new file mode 100644 index 0000000..c362ced Binary files /dev/null and b/data/CTR-TDY/art.jpg differ diff --git a/data/CTR-TDY/data.yml b/data/CTR-TDY/data.yml new file mode 100644 index 0000000..3705b4d --- /dev/null +++ b/data/CTR-TDY/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 00040000000FFE00 + name: キングスナイト + updates: [] diff --git a/data/CTR-TDY/icon.jpg b/data/CTR-TDY/icon.jpg new file mode 100644 index 0000000..5d0161f Binary files /dev/null and b/data/CTR-TDY/icon.jpg differ diff --git a/data/CTR-TDZ/art.jpg b/data/CTR-TDZ/art.jpg new file mode 100644 index 0000000..0948cd4 Binary files /dev/null and b/data/CTR-TDZ/art.jpg differ diff --git a/data/CTR-TDZ/data.yml b/data/CTR-TDZ/data.yml new file mode 100644 index 0000000..9c90825 --- /dev/null +++ b/data/CTR-TDZ/data.yml @@ -0,0 +1,7 @@ +platform: NES +releases: +- regions: + - JP + id: 0004000000100100 + name: 影の伝説 + updates: [] diff --git a/data/CTR-TDZ/icon.jpg b/data/CTR-TDZ/icon.jpg new file mode 100644 index 0000000..c250c15 Binary files /dev/null and b/data/CTR-TDZ/icon.jpg differ diff --git a/data/KTR-BD3/art.jpg b/data/KTR-BD3/art.jpg new file mode 100644 index 0000000..a7464fc Binary files /dev/null and b/data/KTR-BD3/art.jpg differ diff --git a/data/KTR-BD3/data.yml b/data/KTR-BD3/data.yml new file mode 100644 index 0000000..0b7bf26 --- /dev/null +++ b/data/KTR-BD3/data.yml @@ -0,0 +1,23 @@ +platform: New3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000017CA00 + name: 'Minecraft: New Nintendo 3DS Edition' + updates: + - id: 0004000E0017CA00 + name: 'Minecraft: New Nintendo 3DS Edition Update Ver. 1.9' +- regions: + - JP + id: 000400000017FD00 + name: 'Minecraft: New Nintendo 3DS Edition' + updates: + - id: 0004000E0017FD00 + name: '更新データ Ver. 1.9 Minecraft: New Nintendo 3DS Edition' +- regions: + - US + id: 00040000001B8700 + name: 'Minecraft: New Nintendo 3DS Edition' + updates: + - id: 0004000E001B8700 + name: 'Minecraft: New Nintendo 3DS Edition Update Ver. 1.9' diff --git a/data/KTR-BD3/icon.jpg b/data/KTR-BD3/icon.jpg new file mode 100644 index 0000000..d4381de Binary files /dev/null and b/data/KTR-BD3/icon.jpg differ diff --git a/data/KTR-CA3/art.jpg b/data/KTR-CA3/art.jpg new file mode 100644 index 0000000..bfb52ca Binary files /dev/null and b/data/KTR-CA3/art.jpg differ diff --git a/data/KTR-CA3/data.yml b/data/KTR-CA3/data.yml new file mode 100644 index 0000000..781813d --- /dev/null +++ b/data/KTR-CA3/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F711F00 + name: RTO 3 + updates: [] +- regions: + - US + id: 000400000F712000 + name: RTO 3 + updates: [] diff --git a/data/KTR-CA3/icon.jpg b/data/KTR-CA3/icon.jpg new file mode 100644 index 0000000..121ba97 Binary files /dev/null and b/data/KTR-CA3/icon.jpg differ diff --git a/data/KTR-CA7/art.jpg b/data/KTR-CA7/art.jpg new file mode 100644 index 0000000..8e4b8ff Binary files /dev/null and b/data/KTR-CA7/art.jpg differ diff --git a/data/KTR-CA7/data.yml b/data/KTR-CA7/data.yml new file mode 100644 index 0000000..e34cef5 --- /dev/null +++ b/data/KTR-CA7/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F713600 + name: Slime Slayer + updates: [] diff --git a/data/KTR-CA7/icon.jpg b/data/KTR-CA7/icon.jpg new file mode 100644 index 0000000..592cd50 Binary files /dev/null and b/data/KTR-CA7/icon.jpg differ diff --git a/data/KTR-CA9/art.jpg b/data/KTR-CA9/art.jpg new file mode 100644 index 0000000..c91172a Binary files /dev/null and b/data/KTR-CA9/art.jpg differ diff --git a/data/KTR-CA9/data.yml b/data/KTR-CA9/data.yml new file mode 100644 index 0000000..050ca0b --- /dev/null +++ b/data/KTR-CA9/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70F500 + name: Halloween Night Archery + updates: [] +- regions: + - US + id: 000400000F70F400 + name: Halloween Night Archery + updates: [] diff --git a/data/KTR-CA9/icon.jpg b/data/KTR-CA9/icon.jpg new file mode 100644 index 0000000..703a3e0 Binary files /dev/null and b/data/KTR-CA9/icon.jpg differ diff --git a/data/KTR-CAC/art.jpg b/data/KTR-CAC/art.jpg new file mode 100644 index 0000000..1f11ba2 Binary files /dev/null and b/data/KTR-CAC/art.jpg differ diff --git a/data/KTR-CAC/data.yml b/data/KTR-CAC/data.yml new file mode 100644 index 0000000..4d26c36 --- /dev/null +++ b/data/KTR-CAC/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70C300 + name: SWIPE + updates: [] +- regions: + - US + id: 000400000F70C200 + name: SWIPE + updates: [] diff --git a/data/KTR-CAC/icon.jpg b/data/KTR-CAC/icon.jpg new file mode 100644 index 0000000..989f52e Binary files /dev/null and b/data/KTR-CAC/icon.jpg differ diff --git a/data/KTR-CAD/art.jpg b/data/KTR-CAD/art.jpg new file mode 100644 index 0000000..687fb6c Binary files /dev/null and b/data/KTR-CAD/art.jpg differ diff --git a/data/KTR-CAD/data.yml b/data/KTR-CAD/data.yml new file mode 100644 index 0000000..67dfe59 --- /dev/null +++ b/data/KTR-CAD/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70C500 + name: TABLE TENNIS INFINITY + updates: [] +- regions: + - US + id: 000400000F70C400 + name: TABLE TENNIS INFINITY + updates: [] diff --git a/data/KTR-CAD/icon.jpg b/data/KTR-CAD/icon.jpg new file mode 100644 index 0000000..70c0c9c Binary files /dev/null and b/data/KTR-CAD/icon.jpg differ diff --git a/data/KTR-CAF/art.jpg b/data/KTR-CAF/art.jpg new file mode 100644 index 0000000..51ab124 Binary files /dev/null and b/data/KTR-CAF/art.jpg differ diff --git a/data/KTR-CAF/data.yml b/data/KTR-CAF/data.yml new file mode 100644 index 0000000..d5b30be --- /dev/null +++ b/data/KTR-CAF/data.yml @@ -0,0 +1,33 @@ +platform: New3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000F700200 + name: Xenoblade Chronicles 3D + updates: + - id: 0004000E0F700200 + name: 'Xenoblade Chronicles 3D: Update' +- regions: + - JP + id: 000400000F700000 + name: Newニンテンドー3DS専用 Xenoblade ゼノブレイド + updates: + - id: 0004000E0F700000 + name: 更新データ Ver. 1.1 New 3DS専用 Xenoblade ゼノブレイド +- regions: + - KR + id: 000400000F700700 + name: Xenoblade (일본어) + updates: [] +- regions: + - KR + id: 000400000F700400 + name: Xenoblade (영어) + updates: [] +- regions: + - US + id: 000400000F700100 + name: Xenoblade Chronicles™ 3D + updates: + - id: 0004000E0F700100 + name: Xenoblade Chronicles™ 3D Update Ver. 1.0 diff --git a/data/KTR-CAF/icon.jpg b/data/KTR-CAF/icon.jpg new file mode 100644 index 0000000..11679e5 Binary files /dev/null and b/data/KTR-CAF/icon.jpg differ diff --git a/data/KTR-CAH/art.jpg b/data/KTR-CAH/art.jpg new file mode 100644 index 0000000..5257268 Binary files /dev/null and b/data/KTR-CAH/art.jpg differ diff --git a/data/KTR-CAH/data.yml b/data/KTR-CAH/data.yml new file mode 100644 index 0000000..d9eda95 --- /dev/null +++ b/data/KTR-CAH/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F704400 + name: ひよこまみれ + updates: [] diff --git a/data/KTR-CAH/icon.jpg b/data/KTR-CAH/icon.jpg new file mode 100644 index 0000000..4fd73aa Binary files /dev/null and b/data/KTR-CAH/icon.jpg differ diff --git a/data/KTR-CAJ/art.jpg b/data/KTR-CAJ/art.jpg new file mode 100644 index 0000000..5b7bf0a Binary files /dev/null and b/data/KTR-CAJ/art.jpg differ diff --git a/data/KTR-CAJ/data.yml b/data/KTR-CAJ/data.yml new file mode 100644 index 0000000..fe05ba2 --- /dev/null +++ b/data/KTR-CAJ/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F711C00 + name: Small World Z + updates: [] diff --git a/data/KTR-CAJ/icon.jpg b/data/KTR-CAJ/icon.jpg new file mode 100644 index 0000000..9b1e271 Binary files /dev/null and b/data/KTR-CAJ/icon.jpg differ diff --git a/data/KTR-CAL/art.jpg b/data/KTR-CAL/art.jpg new file mode 100644 index 0000000..e970ac1 Binary files /dev/null and b/data/KTR-CAL/art.jpg differ diff --git a/data/KTR-CAL/data.yml b/data/KTR-CAL/data.yml new file mode 100644 index 0000000..ab12210 --- /dev/null +++ b/data/KTR-CAL/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F706A00 + name: Lifespeed + updates: [] +- regions: + - US + id: 000400000F706900 + name: Lifespeed + updates: [] diff --git a/data/KTR-CAL/icon.jpg b/data/KTR-CAL/icon.jpg new file mode 100644 index 0000000..6a76936 Binary files /dev/null and b/data/KTR-CAL/icon.jpg differ diff --git a/data/KTR-CAM/art.jpg b/data/KTR-CAM/art.jpg new file mode 100644 index 0000000..3bbd3e4 Binary files /dev/null and b/data/KTR-CAM/art.jpg differ diff --git a/data/KTR-CAM/data.yml b/data/KTR-CAM/data.yml new file mode 100644 index 0000000..e238f57 --- /dev/null +++ b/data/KTR-CAM/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70BF00 + name: Ascent of Kings + updates: [] +- regions: + - US + id: 000400000F70BC00 + name: Ascent of Kings + updates: [] diff --git a/data/KTR-CAM/icon.jpg b/data/KTR-CAM/icon.jpg new file mode 100644 index 0000000..9819c0b Binary files /dev/null and b/data/KTR-CAM/icon.jpg differ diff --git a/data/KTR-CAN/art.jpg b/data/KTR-CAN/art.jpg new file mode 100644 index 0000000..2619c90 Binary files /dev/null and b/data/KTR-CAN/art.jpg differ diff --git a/data/KTR-CAN/data.yml b/data/KTR-CAN/data.yml new file mode 100644 index 0000000..bed7ac5 --- /dev/null +++ b/data/KTR-CAN/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F701C00 + name: ねじ巻きナイト2 + updates: [] diff --git a/data/KTR-CAN/icon.jpg b/data/KTR-CAN/icon.jpg new file mode 100644 index 0000000..573cb2b Binary files /dev/null and b/data/KTR-CAN/icon.jpg differ diff --git a/data/KTR-CAQ/art.jpg b/data/KTR-CAQ/art.jpg new file mode 100644 index 0000000..8466d03 Binary files /dev/null and b/data/KTR-CAQ/art.jpg differ diff --git a/data/KTR-CAQ/data.yml b/data/KTR-CAQ/data.yml new file mode 100644 index 0000000..6b03439 --- /dev/null +++ b/data/KTR-CAQ/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F711D00 + name: 'Phasmophobia: Hall of Specters 3D' + updates: [] diff --git a/data/KTR-CAQ/icon.jpg b/data/KTR-CAQ/icon.jpg new file mode 100644 index 0000000..078ca3e Binary files /dev/null and b/data/KTR-CAQ/icon.jpg differ diff --git a/data/KTR-CAV/art.jpg b/data/KTR-CAV/art.jpg new file mode 100644 index 0000000..8dcd4dc Binary files /dev/null and b/data/KTR-CAV/art.jpg differ diff --git a/data/KTR-CAV/data.yml b/data/KTR-CAV/data.yml new file mode 100644 index 0000000..49919ea --- /dev/null +++ b/data/KTR-CAV/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F70E700 + name: 密着対戦スピード + updates: [] diff --git a/data/KTR-CAV/icon.jpg b/data/KTR-CAV/icon.jpg new file mode 100644 index 0000000..17b8b3d Binary files /dev/null and b/data/KTR-CAV/icon.jpg differ diff --git a/data/KTR-CAX/art.jpg b/data/KTR-CAX/art.jpg new file mode 100644 index 0000000..d427238 Binary files /dev/null and b/data/KTR-CAX/art.jpg differ diff --git a/data/KTR-CAX/data.yml b/data/KTR-CAX/data.yml new file mode 100644 index 0000000..ff25f59 --- /dev/null +++ b/data/KTR-CAX/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F709F00 + name: Pixel Hunter + updates: [] +- regions: + - US + id: 000400000F707800 + name: Pixel Hunter + updates: [] diff --git a/data/KTR-CAX/icon.jpg b/data/KTR-CAX/icon.jpg new file mode 100644 index 0000000..1791b9e Binary files /dev/null and b/data/KTR-CAX/icon.jpg differ diff --git a/data/KTR-CAY/art.jpg b/data/KTR-CAY/art.jpg new file mode 100644 index 0000000..72abfd2 Binary files /dev/null and b/data/KTR-CAY/art.jpg differ diff --git a/data/KTR-CAY/data.yml b/data/KTR-CAY/data.yml new file mode 100644 index 0000000..3a07da2 --- /dev/null +++ b/data/KTR-CAY/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F70F300 + name: Alter World + updates: [] diff --git a/data/KTR-CAY/icon.jpg b/data/KTR-CAY/icon.jpg new file mode 100644 index 0000000..04ac53c Binary files /dev/null and b/data/KTR-CAY/icon.jpg differ diff --git a/data/KTR-CAZ/art.jpg b/data/KTR-CAZ/art.jpg new file mode 100644 index 0000000..52e29f9 Binary files /dev/null and b/data/KTR-CAZ/art.jpg differ diff --git a/data/KTR-CAZ/data.yml b/data/KTR-CAZ/data.yml new file mode 100644 index 0000000..0e9ce9f --- /dev/null +++ b/data/KTR-CAZ/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F710400 + name: ZIG ZAG GO + updates: [] +- regions: + - US + id: 000400000F710500 + name: ZIG ZAG GO + updates: [] diff --git a/data/KTR-CAZ/icon.jpg b/data/KTR-CAZ/icon.jpg new file mode 100644 index 0000000..5c8a51a Binary files /dev/null and b/data/KTR-CAZ/icon.jpg differ diff --git a/data/KTR-CB2/art.jpg b/data/KTR-CB2/art.jpg new file mode 100644 index 0000000..0310a87 Binary files /dev/null and b/data/KTR-CB2/art.jpg differ diff --git a/data/KTR-CB2/data.yml b/data/KTR-CB2/data.yml new file mode 100644 index 0000000..2da226b --- /dev/null +++ b/data/KTR-CB2/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70D100 + name: GALAXY BLASTER CODE RED + updates: [] +- regions: + - US + id: 000400000F70D500 + name: GALAXY BLASTER CODE RED + updates: [] diff --git a/data/KTR-CB2/icon.jpg b/data/KTR-CB2/icon.jpg new file mode 100644 index 0000000..b4f01a6 Binary files /dev/null and b/data/KTR-CB2/icon.jpg differ diff --git a/data/KTR-CB3/art.jpg b/data/KTR-CB3/art.jpg new file mode 100644 index 0000000..df1bffc Binary files /dev/null and b/data/KTR-CB3/art.jpg differ diff --git a/data/KTR-CB3/data.yml b/data/KTR-CB3/data.yml new file mode 100644 index 0000000..213eaf6 --- /dev/null +++ b/data/KTR-CB3/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F710300 + name: BRICK THRU + updates: [] +- regions: + - US + id: 000400000F710600 + name: BRICK THRU + updates: [] diff --git a/data/KTR-CB3/icon.jpg b/data/KTR-CB3/icon.jpg new file mode 100644 index 0000000..d98956c Binary files /dev/null and b/data/KTR-CB3/icon.jpg differ diff --git a/data/KTR-CB4/art.jpg b/data/KTR-CB4/art.jpg new file mode 100644 index 0000000..efdc30a Binary files /dev/null and b/data/KTR-CB4/art.jpg differ diff --git a/data/KTR-CB4/data.yml b/data/KTR-CB4/data.yml new file mode 100644 index 0000000..5f6f57c --- /dev/null +++ b/data/KTR-CB4/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F710900 + name: Back in 199564 + updates: [] diff --git a/data/KTR-CB4/icon.jpg b/data/KTR-CB4/icon.jpg new file mode 100644 index 0000000..5b03865 Binary files /dev/null and b/data/KTR-CB4/icon.jpg differ diff --git a/data/KTR-CB6/art.jpg b/data/KTR-CB6/art.jpg new file mode 100644 index 0000000..22cc2dd Binary files /dev/null and b/data/KTR-CB6/art.jpg differ diff --git a/data/KTR-CB6/data.yml b/data/KTR-CB6/data.yml new file mode 100644 index 0000000..d6148d6 --- /dev/null +++ b/data/KTR-CB6/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70A200 + name: 6180 the moon + updates: [] +- regions: + - JP + id: 000400000F70A300 + name: 6180 the moon + updates: [] +- regions: + - US + id: 000400000F70A500 + name: 6180 the moon + updates: [] diff --git a/data/KTR-CB6/icon.jpg b/data/KTR-CB6/icon.jpg new file mode 100644 index 0000000..9e29ddd Binary files /dev/null and b/data/KTR-CB6/icon.jpg differ diff --git a/data/KTR-CBA/art.jpg b/data/KTR-CBA/art.jpg new file mode 100644 index 0000000..0ca6bc5 Binary files /dev/null and b/data/KTR-CBA/art.jpg differ diff --git a/data/KTR-CBA/data.yml b/data/KTR-CBA/data.yml new file mode 100644 index 0000000..fadc78b --- /dev/null +++ b/data/KTR-CBA/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F708B00 + name: SHOOT THE BALL + updates: [] +- regions: + - JP + id: 000400000F709900 + name: SHOOT THE BALL + updates: [] +- regions: + - US + id: 000400000F708800 + name: SHOOT THE BALL + updates: [] diff --git a/data/KTR-CBA/icon.jpg b/data/KTR-CBA/icon.jpg new file mode 100644 index 0000000..561afb3 Binary files /dev/null and b/data/KTR-CBA/icon.jpg differ diff --git a/data/KTR-CBE/art.jpg b/data/KTR-CBE/art.jpg new file mode 100644 index 0000000..4c17c14 Binary files /dev/null and b/data/KTR-CBE/art.jpg differ diff --git a/data/KTR-CBE/data.yml b/data/KTR-CBE/data.yml new file mode 100644 index 0000000..1b8c9ab --- /dev/null +++ b/data/KTR-CBE/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F707300 + name: BRICK RACE + updates: [] +- regions: + - JP + id: 000400000F709700 + name: BRICK RACE + updates: [] +- regions: + - US + id: 000400000F707200 + name: BRICK RACE + updates: [] diff --git a/data/KTR-CBE/icon.jpg b/data/KTR-CBE/icon.jpg new file mode 100644 index 0000000..72625b9 Binary files /dev/null and b/data/KTR-CBE/icon.jpg differ diff --git a/data/KTR-CBF/art.jpg b/data/KTR-CBF/art.jpg new file mode 100644 index 0000000..05f87ec Binary files /dev/null and b/data/KTR-CBF/art.jpg differ diff --git a/data/KTR-CBF/data.yml b/data/KTR-CBF/data.yml new file mode 100644 index 0000000..0ba12ca --- /dev/null +++ b/data/KTR-CBF/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F707100 + name: BlockForm + updates: [] +- regions: + - US + id: 000400000F707000 + name: BlockForm + updates: [] diff --git a/data/KTR-CBF/icon.jpg b/data/KTR-CBF/icon.jpg new file mode 100644 index 0000000..3beb4ff Binary files /dev/null and b/data/KTR-CBF/icon.jpg differ diff --git a/data/KTR-CBG/art.jpg b/data/KTR-CBG/art.jpg new file mode 100644 index 0000000..8e83408 Binary files /dev/null and b/data/KTR-CBG/art.jpg differ diff --git a/data/KTR-CBG/data.yml b/data/KTR-CBG/data.yml new file mode 100644 index 0000000..e5816d2 --- /dev/null +++ b/data/KTR-CBG/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F709300 + name: GALAXY BLASTER + updates: [] +- regions: + - JP + id: 000400000F709B00 + name: Galaxy Blaster + updates: [] +- regions: + - US + id: 000400000F709400 + name: GALAXY BLASTER + updates: [] diff --git a/data/KTR-CBG/icon.jpg b/data/KTR-CBG/icon.jpg new file mode 100644 index 0000000..e7b18c6 Binary files /dev/null and b/data/KTR-CBG/icon.jpg differ diff --git a/data/KTR-CBJ/art.jpg b/data/KTR-CBJ/art.jpg new file mode 100644 index 0000000..c71ffc6 Binary files /dev/null and b/data/KTR-CBJ/art.jpg differ diff --git a/data/KTR-CBJ/data.yml b/data/KTR-CBJ/data.yml new file mode 100644 index 0000000..a366391 --- /dev/null +++ b/data/KTR-CBJ/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F711900 + name: PENGUIN HOP + updates: [] diff --git a/data/KTR-CBJ/icon.jpg b/data/KTR-CBJ/icon.jpg new file mode 100644 index 0000000..171ef7d Binary files /dev/null and b/data/KTR-CBJ/icon.jpg differ diff --git a/data/KTR-CBM/art.jpg b/data/KTR-CBM/art.jpg new file mode 100644 index 0000000..c9c93bc Binary files /dev/null and b/data/KTR-CBM/art.jpg differ diff --git a/data/KTR-CBM/data.yml b/data/KTR-CBM/data.yml new file mode 100644 index 0000000..504b451 --- /dev/null +++ b/data/KTR-CBM/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70E100 + name: Mom Hid My Game! + updates: [] +- regions: + - JP + id: 000400000F70C700 + name: ママにゲーム隠された + updates: [] +- regions: + - US + id: 000400000F70E000 + name: Mom Hid My Game! + updates: [] diff --git a/data/KTR-CBM/icon.jpg b/data/KTR-CBM/icon.jpg new file mode 100644 index 0000000..4935ce4 Binary files /dev/null and b/data/KTR-CBM/icon.jpg differ diff --git a/data/KTR-CBN/art.jpg b/data/KTR-CBN/art.jpg new file mode 100644 index 0000000..f528b94 Binary files /dev/null and b/data/KTR-CBN/art.jpg differ diff --git a/data/KTR-CBN/data.yml b/data/KTR-CBN/data.yml new file mode 100644 index 0000000..cb7ad9c --- /dev/null +++ b/data/KTR-CBN/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F713500 + name: Cazzarion + updates: [] +- regions: + - US + id: 000400000F713E00 + name: Cazzarion + updates: [] diff --git a/data/KTR-CBN/icon.jpg b/data/KTR-CBN/icon.jpg new file mode 100644 index 0000000..8afdb02 Binary files /dev/null and b/data/KTR-CBN/icon.jpg differ diff --git a/data/KTR-CBP/art.jpg b/data/KTR-CBP/art.jpg new file mode 100644 index 0000000..2043a0a Binary files /dev/null and b/data/KTR-CBP/art.jpg differ diff --git a/data/KTR-CBP/data.yml b/data/KTR-CBP/data.yml new file mode 100644 index 0000000..7c88f1f --- /dev/null +++ b/data/KTR-CBP/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F708500 + name: Pirate Pop Plus + updates: [] +- regions: + - JP + id: 000400000F70A100 + name: かいぞくポップ + updates: [] +- regions: + - US + id: 000400000F708600 + name: Pirate Pop Plus + updates: [] diff --git a/data/KTR-CBP/icon.jpg b/data/KTR-CBP/icon.jpg new file mode 100644 index 0000000..8d7bdd9 Binary files /dev/null and b/data/KTR-CBP/icon.jpg differ diff --git a/data/KTR-CBQ/art.jpg b/data/KTR-CBQ/art.jpg new file mode 100644 index 0000000..fe30ba3 Binary files /dev/null and b/data/KTR-CBQ/art.jpg differ diff --git a/data/KTR-CBQ/data.yml b/data/KTR-CBQ/data.yml new file mode 100644 index 0000000..feb4c4e --- /dev/null +++ b/data/KTR-CBQ/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F710D00 + name: UP UP BOT + updates: [] +- regions: + - US + id: 000400000F711000 + name: UP UP BOT + updates: [] diff --git a/data/KTR-CBQ/icon.jpg b/data/KTR-CBQ/icon.jpg new file mode 100644 index 0000000..19781af Binary files /dev/null and b/data/KTR-CBQ/icon.jpg differ diff --git a/data/KTR-CBR/art.jpg b/data/KTR-CBR/art.jpg new file mode 100644 index 0000000..ef9f1db Binary files /dev/null and b/data/KTR-CBR/art.jpg differ diff --git a/data/KTR-CBR/data.yml b/data/KTR-CBR/data.yml new file mode 100644 index 0000000..ff83b21 --- /dev/null +++ b/data/KTR-CBR/data.yml @@ -0,0 +1,22 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F700900 + name: 'The Binding of Isaac: Rebirth' + updates: [] +- regions: + - JP + id: 000400000F701700 + name: ザ バインディング オブ アイザック:リバース + updates: [] +- regions: + - KR + id: 000400000F703900 + name: '아이작의 번제: 리버스' + updates: [] +- regions: + - US + id: 000400000F700800 + name: 'The Binding of Isaac: Rebirth' + updates: [] diff --git a/data/KTR-CBR/icon.jpg b/data/KTR-CBR/icon.jpg new file mode 100644 index 0000000..0ad3eef Binary files /dev/null and b/data/KTR-CBR/icon.jpg differ diff --git a/data/KTR-CBS/art.jpg b/data/KTR-CBS/art.jpg new file mode 100644 index 0000000..c57623e Binary files /dev/null and b/data/KTR-CBS/art.jpg differ diff --git a/data/KTR-CBS/data.yml b/data/KTR-CBS/data.yml new file mode 100644 index 0000000..de5ab86 --- /dev/null +++ b/data/KTR-CBS/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F708400 + name: Scoop'n Birds + updates: [] diff --git a/data/KTR-CBS/icon.jpg b/data/KTR-CBS/icon.jpg new file mode 100644 index 0000000..28b955d Binary files /dev/null and b/data/KTR-CBS/icon.jpg differ diff --git a/data/KTR-CBX/art.jpg b/data/KTR-CBX/art.jpg new file mode 100644 index 0000000..09a8894 Binary files /dev/null and b/data/KTR-CBX/art.jpg differ diff --git a/data/KTR-CBX/data.yml b/data/KTR-CBX/data.yml new file mode 100644 index 0000000..95cfe20 --- /dev/null +++ b/data/KTR-CBX/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F708A00 + name: BOX UP + updates: [] +- regions: + - JP + id: 000400000F709600 + name: BOX UP + updates: [] +- regions: + - US + id: 000400000F708900 + name: BOX UP + updates: [] diff --git a/data/KTR-CBX/icon.jpg b/data/KTR-CBX/icon.jpg new file mode 100644 index 0000000..ff0dcd2 Binary files /dev/null and b/data/KTR-CBX/icon.jpg differ diff --git a/data/KTR-CBY/art.jpg b/data/KTR-CBY/art.jpg new file mode 100644 index 0000000..17f4ff5 Binary files /dev/null and b/data/KTR-CBY/art.jpg differ diff --git a/data/KTR-CBY/data.yml b/data/KTR-CBY/data.yml new file mode 100644 index 0000000..db03811 --- /dev/null +++ b/data/KTR-CBY/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F709C00 + name: 限界!山積みバトル + updates: [] +- regions: + - US + id: 000400000F70C000 + name: Stack 'em High + updates: [] diff --git a/data/KTR-CBY/icon.jpg b/data/KTR-CBY/icon.jpg new file mode 100644 index 0000000..d0193f2 Binary files /dev/null and b/data/KTR-CBY/icon.jpg differ diff --git a/data/KTR-CC2/art.jpg b/data/KTR-CC2/art.jpg new file mode 100644 index 0000000..10bbb95 Binary files /dev/null and b/data/KTR-CC2/art.jpg differ diff --git a/data/KTR-CC2/data.yml b/data/KTR-CC2/data.yml new file mode 100644 index 0000000..7b47efa --- /dev/null +++ b/data/KTR-CC2/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70FC00 + name: RTO 2 + updates: [] +- regions: + - US + id: 000400000F70FD00 + name: RTO 2 + updates: [] diff --git a/data/KTR-CC2/icon.jpg b/data/KTR-CC2/icon.jpg new file mode 100644 index 0000000..4000c01 Binary files /dev/null and b/data/KTR-CC2/icon.jpg differ diff --git a/data/KTR-CCA/art.jpg b/data/KTR-CCA/art.jpg new file mode 100644 index 0000000..479a4a4 Binary files /dev/null and b/data/KTR-CCA/art.jpg differ diff --git a/data/KTR-CCA/data.yml b/data/KTR-CCA/data.yml new file mode 100644 index 0000000..72dc673 --- /dev/null +++ b/data/KTR-CCA/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70F700 + name: Christmas Night Archery + updates: [] +- regions: + - US + id: 000400000F70FE00 + name: Christmas Night Archery + updates: [] diff --git a/data/KTR-CCA/icon.jpg b/data/KTR-CCA/icon.jpg new file mode 100644 index 0000000..648ccb0 Binary files /dev/null and b/data/KTR-CCA/icon.jpg differ diff --git a/data/KTR-CCB/art.jpg b/data/KTR-CCB/art.jpg new file mode 100644 index 0000000..3d0dad2 Binary files /dev/null and b/data/KTR-CCB/art.jpg differ diff --git a/data/KTR-CCB/data.yml b/data/KTR-CCB/data.yml new file mode 100644 index 0000000..8461c33 --- /dev/null +++ b/data/KTR-CCB/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F70C600 + name: Operation COBRA + updates: [] diff --git a/data/KTR-CCB/icon.jpg b/data/KTR-CCB/icon.jpg new file mode 100644 index 0000000..ea88bc4 Binary files /dev/null and b/data/KTR-CCB/icon.jpg differ diff --git a/data/KTR-CCC/art.jpg b/data/KTR-CCC/art.jpg new file mode 100644 index 0000000..39893b1 Binary files /dev/null and b/data/KTR-CCC/art.jpg differ diff --git a/data/KTR-CCC/data.yml b/data/KTR-CCC/data.yml new file mode 100644 index 0000000..f3b865b --- /dev/null +++ b/data/KTR-CCC/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70DB00 + name: Raining Coins + updates: [] +- regions: + - US + id: 000400000F70CB00 + name: Raining Coins + updates: [] diff --git a/data/KTR-CCC/icon.jpg b/data/KTR-CCC/icon.jpg new file mode 100644 index 0000000..386255e Binary files /dev/null and b/data/KTR-CCC/icon.jpg differ diff --git a/data/KTR-CCH/art.jpg b/data/KTR-CCH/art.jpg new file mode 100644 index 0000000..0ead68a Binary files /dev/null and b/data/KTR-CCH/art.jpg differ diff --git a/data/KTR-CCH/data.yml b/data/KTR-CCH/data.yml new file mode 100644 index 0000000..3cca155 --- /dev/null +++ b/data/KTR-CCH/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70A000 + name: Hit Ninja + updates: [] +- regions: + - US + id: 000400000F709500 + name: Hit Ninja + updates: [] diff --git a/data/KTR-CCH/icon.jpg b/data/KTR-CCH/icon.jpg new file mode 100644 index 0000000..1203dca Binary files /dev/null and b/data/KTR-CCH/icon.jpg differ diff --git a/data/KTR-CCL/art.jpg b/data/KTR-CCL/art.jpg new file mode 100644 index 0000000..2fb0e4b Binary files /dev/null and b/data/KTR-CCL/art.jpg differ diff --git a/data/KTR-CCL/data.yml b/data/KTR-CCL/data.yml new file mode 100644 index 0000000..a5b7fb7 --- /dev/null +++ b/data/KTR-CCL/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F711400 + name: Storm Chaser - Tornado Alley + updates: [] diff --git a/data/KTR-CCL/icon.jpg b/data/KTR-CCL/icon.jpg new file mode 100644 index 0000000..f48fa9e Binary files /dev/null and b/data/KTR-CCL/icon.jpg differ diff --git a/data/KTR-CCP/art.jpg b/data/KTR-CCP/art.jpg new file mode 100644 index 0000000..49515bd Binary files /dev/null and b/data/KTR-CCP/art.jpg differ diff --git a/data/KTR-CCP/data.yml b/data/KTR-CCP/data.yml new file mode 100644 index 0000000..c44172c --- /dev/null +++ b/data/KTR-CCP/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70E800 + name: 'Physical Contact: SPEED' + updates: [] +- regions: + - US + id: 000400000F70E900 + name: 'Physical Contact: SPEED' + updates: [] diff --git a/data/KTR-CCP/icon.jpg b/data/KTR-CCP/icon.jpg new file mode 100644 index 0000000..2394fe2 Binary files /dev/null and b/data/KTR-CCP/icon.jpg differ diff --git a/data/KTR-CCR/art.jpg b/data/KTR-CCR/art.jpg new file mode 100644 index 0000000..8e38fb5 Binary files /dev/null and b/data/KTR-CCR/art.jpg differ diff --git a/data/KTR-CCR/data.yml b/data/KTR-CCR/data.yml new file mode 100644 index 0000000..b4c5164 --- /dev/null +++ b/data/KTR-CCR/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F708E00 + name: CUP CRITTERS + updates: [] +- regions: + - JP + id: 000400000F709800 + name: CUP CRITTERS + updates: [] +- regions: + - US + id: 000400000F709000 + name: CUP CRITTERS + updates: [] diff --git a/data/KTR-CCR/icon.jpg b/data/KTR-CCR/icon.jpg new file mode 100644 index 0000000..42ce1b3 Binary files /dev/null and b/data/KTR-CCR/icon.jpg differ diff --git a/data/KTR-CCS/art.jpg b/data/KTR-CCS/art.jpg new file mode 100644 index 0000000..2a3593c Binary files /dev/null and b/data/KTR-CCS/art.jpg differ diff --git a/data/KTR-CCS/data.yml b/data/KTR-CCS/data.yml new file mode 100644 index 0000000..498f638 --- /dev/null +++ b/data/KTR-CCS/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F709D00 + name: COLOR CUBES + updates: [] +- regions: + - US + id: 000400000F709A00 + name: COLOR CUBES + updates: [] diff --git a/data/KTR-CCS/icon.jpg b/data/KTR-CCS/icon.jpg new file mode 100644 index 0000000..b578436 Binary files /dev/null and b/data/KTR-CCS/icon.jpg differ diff --git a/data/KTR-CCT/art.jpg b/data/KTR-CCT/art.jpg new file mode 100644 index 0000000..439a144 Binary files /dev/null and b/data/KTR-CCT/art.jpg differ diff --git a/data/KTR-CCT/data.yml b/data/KTR-CCT/data.yml new file mode 100644 index 0000000..6816927 --- /dev/null +++ b/data/KTR-CCT/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70D700 + name: RTO + updates: [] +- regions: + - US + id: 000400000F70D600 + name: RTO + updates: [] diff --git a/data/KTR-CCT/icon.jpg b/data/KTR-CCT/icon.jpg new file mode 100644 index 0000000..1623a4f Binary files /dev/null and b/data/KTR-CCT/icon.jpg differ diff --git a/data/KTR-CD3/art.jpg b/data/KTR-CD3/art.jpg new file mode 100644 index 0000000..69b038a Binary files /dev/null and b/data/KTR-CD3/art.jpg differ diff --git a/data/KTR-CD3/data.yml b/data/KTR-CD3/data.yml new file mode 100644 index 0000000..617715c --- /dev/null +++ b/data/KTR-CD3/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70A700 + name: Super Destronaut 3D + updates: [] +- regions: + - US + id: 000400000F70A600 + name: Super Destronaut 3D + updates: [] diff --git a/data/KTR-CD3/icon.jpg b/data/KTR-CD3/icon.jpg new file mode 100644 index 0000000..37f5af6 Binary files /dev/null and b/data/KTR-CD3/icon.jpg differ diff --git a/data/KTR-CDA/art.jpg b/data/KTR-CDA/art.jpg new file mode 100644 index 0000000..59f5c14 Binary files /dev/null and b/data/KTR-CDA/art.jpg differ diff --git a/data/KTR-CDA/data.yml b/data/KTR-CDA/data.yml new file mode 100644 index 0000000..d698a24 --- /dev/null +++ b/data/KTR-CDA/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F70BB00 + name: DodgeBox + updates: [] diff --git a/data/KTR-CDA/icon.jpg b/data/KTR-CDA/icon.jpg new file mode 100644 index 0000000..a2f8b4f Binary files /dev/null and b/data/KTR-CDA/icon.jpg differ diff --git a/data/KTR-CDB/art.jpg b/data/KTR-CDB/art.jpg new file mode 100644 index 0000000..6dd19cd Binary files /dev/null and b/data/KTR-CDB/art.jpg differ diff --git a/data/KTR-CDB/data.yml b/data/KTR-CDB/data.yml new file mode 100644 index 0000000..dccb3db --- /dev/null +++ b/data/KTR-CDB/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70A400 + name: PINK DOT BLUE DOT + updates: [] +- regions: + - US + id: 000400000F709E00 + name: PINK DOT BLUE DOT + updates: [] diff --git a/data/KTR-CDB/icon.jpg b/data/KTR-CDB/icon.jpg new file mode 100644 index 0000000..7d0d962 Binary files /dev/null and b/data/KTR-CDB/icon.jpg differ diff --git a/data/KTR-CDC/art.jpg b/data/KTR-CDC/art.jpg new file mode 100644 index 0000000..6acae13 Binary files /dev/null and b/data/KTR-CDC/art.jpg differ diff --git a/data/KTR-CDC/data.yml b/data/KTR-CDC/data.yml new file mode 100644 index 0000000..c6f90d8 --- /dev/null +++ b/data/KTR-CDC/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70F800 + name: BLOK DROP CHAOS + updates: [] +- regions: + - US + id: 000400000F70FB00 + name: BLOK DROP CHAOS + updates: [] diff --git a/data/KTR-CDC/icon.jpg b/data/KTR-CDC/icon.jpg new file mode 100644 index 0000000..92b660c Binary files /dev/null and b/data/KTR-CDC/icon.jpg differ diff --git a/data/KTR-CDE/art.jpg b/data/KTR-CDE/art.jpg new file mode 100644 index 0000000..64481e7 Binary files /dev/null and b/data/KTR-CDE/art.jpg differ diff --git a/data/KTR-CDE/data.yml b/data/KTR-CDE/data.yml new file mode 100644 index 0000000..c837406 --- /dev/null +++ b/data/KTR-CDE/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F710100 + name: Now I know my ABCs 2 + updates: [] diff --git a/data/KTR-CDE/icon.jpg b/data/KTR-CDE/icon.jpg new file mode 100644 index 0000000..3e5ad0a Binary files /dev/null and b/data/KTR-CDE/icon.jpg differ diff --git a/data/KTR-CDF/art.jpg b/data/KTR-CDF/art.jpg new file mode 100644 index 0000000..847fff6 Binary files /dev/null and b/data/KTR-CDF/art.jpg differ diff --git a/data/KTR-CDF/data.yml b/data/KTR-CDF/data.yml new file mode 100644 index 0000000..ff97b16 --- /dev/null +++ b/data/KTR-CDF/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F705900 + name: ドラゴンファング + updates: [] diff --git a/data/KTR-CDF/icon.jpg b/data/KTR-CDF/icon.jpg new file mode 100644 index 0000000..67a261d Binary files /dev/null and b/data/KTR-CDF/icon.jpg differ diff --git a/data/KTR-CDG/art.jpg b/data/KTR-CDG/art.jpg new file mode 100644 index 0000000..c0da6f0 Binary files /dev/null and b/data/KTR-CDG/art.jpg differ diff --git a/data/KTR-CDG/data.yml b/data/KTR-CDG/data.yml new file mode 100644 index 0000000..572542a --- /dev/null +++ b/data/KTR-CDG/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70AC00 + name: DON'T CRASH GO + updates: [] +- regions: + - US + id: 000400000F70A900 + name: DON'T CRASH GO + updates: [] diff --git a/data/KTR-CDG/icon.jpg b/data/KTR-CDG/icon.jpg new file mode 100644 index 0000000..848561d Binary files /dev/null and b/data/KTR-CDG/icon.jpg differ diff --git a/data/KTR-CDP/art.jpg b/data/KTR-CDP/art.jpg new file mode 100644 index 0000000..43a45b2 Binary files /dev/null and b/data/KTR-CDP/art.jpg differ diff --git a/data/KTR-CDP/data.yml b/data/KTR-CDP/data.yml new file mode 100644 index 0000000..7691e9a --- /dev/null +++ b/data/KTR-CDP/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F710A00 + name: 3D Retro Dungeon Puzzle Challenge + updates: [] diff --git a/data/KTR-CDP/icon.jpg b/data/KTR-CDP/icon.jpg new file mode 100644 index 0000000..7b1e054 Binary files /dev/null and b/data/KTR-CDP/icon.jpg differ diff --git a/data/KTR-CDR/art.jpg b/data/KTR-CDR/art.jpg new file mode 100644 index 0000000..e8702e7 Binary files /dev/null and b/data/KTR-CDR/art.jpg differ diff --git a/data/KTR-CDR/data.yml b/data/KTR-CDR/data.yml new file mode 100644 index 0000000..1786d55 --- /dev/null +++ b/data/KTR-CDR/data.yml @@ -0,0 +1,12 @@ +platform: New3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000F708D00 + name: Runbow Pocket + updates: [] +- regions: + - US + id: 000400000F708700 + name: Runbow Pocket + updates: [] diff --git a/data/KTR-CDR/icon.jpg b/data/KTR-CDR/icon.jpg new file mode 100644 index 0000000..9ebb154 Binary files /dev/null and b/data/KTR-CDR/icon.jpg differ diff --git a/data/KTR-CDT/art.jpg b/data/KTR-CDT/art.jpg new file mode 100644 index 0000000..4cf8cd6 Binary files /dev/null and b/data/KTR-CDT/art.jpg differ diff --git a/data/KTR-CDT/data.yml b/data/KTR-CDT/data.yml new file mode 100644 index 0000000..a589164 --- /dev/null +++ b/data/KTR-CDT/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70ED00 + name: 'Physical Contact: Picture Place' + updates: [] +- regions: + - JP + id: 000400000F70E500 + name: 密着対戦ピクプレ + updates: [] +- regions: + - US + id: 000400000F70EB00 + name: 'Physical Contact: Picture Place' + updates: [] diff --git a/data/KTR-CDT/icon.jpg b/data/KTR-CDT/icon.jpg new file mode 100644 index 0000000..f16ccc1 Binary files /dev/null and b/data/KTR-CDT/icon.jpg differ diff --git a/data/KTR-CDX/art.jpg b/data/KTR-CDX/art.jpg new file mode 100644 index 0000000..a611025 Binary files /dev/null and b/data/KTR-CDX/art.jpg differ diff --git a/data/KTR-CDX/data.yml b/data/KTR-CDX/data.yml new file mode 100644 index 0000000..dc083b7 --- /dev/null +++ b/data/KTR-CDX/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F704600 + name: Percy's Predicament Deluxe + updates: [] diff --git a/data/KTR-CDX/icon.jpg b/data/KTR-CDX/icon.jpg new file mode 100644 index 0000000..23791c0 Binary files /dev/null and b/data/KTR-CDX/icon.jpg differ diff --git a/data/KTR-CEG/art.jpg b/data/KTR-CEG/art.jpg new file mode 100644 index 0000000..e7d3a84 Binary files /dev/null and b/data/KTR-CEG/art.jpg differ diff --git a/data/KTR-CEG/data.yml b/data/KTR-CEG/data.yml new file mode 100644 index 0000000..b2273b2 --- /dev/null +++ b/data/KTR-CEG/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70D200 + name: GUIDE THE GHOST + updates: [] +- regions: + - US + id: 000400000F70D400 + name: GUIDE THE GHOST + updates: [] diff --git a/data/KTR-CEG/icon.jpg b/data/KTR-CEG/icon.jpg new file mode 100644 index 0000000..6c4f81a Binary files /dev/null and b/data/KTR-CEG/icon.jpg differ diff --git a/data/KTR-CEH/art.jpg b/data/KTR-CEH/art.jpg new file mode 100644 index 0000000..c90b5e7 Binary files /dev/null and b/data/KTR-CEH/art.jpg differ diff --git a/data/KTR-CEH/data.yml b/data/KTR-CEH/data.yml new file mode 100644 index 0000000..f0835b8 --- /dev/null +++ b/data/KTR-CEH/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F712A00 + name: Love Hero + updates: [] diff --git a/data/KTR-CEH/icon.jpg b/data/KTR-CEH/icon.jpg new file mode 100644 index 0000000..0d54940 Binary files /dev/null and b/data/KTR-CEH/icon.jpg differ diff --git a/data/KTR-CEL/art.jpg b/data/KTR-CEL/art.jpg new file mode 100644 index 0000000..de4f2d9 Binary files /dev/null and b/data/KTR-CEL/art.jpg differ diff --git a/data/KTR-CEL/data.yml b/data/KTR-CEL/data.yml new file mode 100644 index 0000000..26f02c2 --- /dev/null +++ b/data/KTR-CEL/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F712500 + name: Love Hero + updates: [] diff --git a/data/KTR-CEL/icon.jpg b/data/KTR-CEL/icon.jpg new file mode 100644 index 0000000..23d0ebc Binary files /dev/null and b/data/KTR-CEL/icon.jpg differ diff --git a/data/KTR-CEP/art.jpg b/data/KTR-CEP/art.jpg new file mode 100644 index 0000000..68e158b Binary files /dev/null and b/data/KTR-CEP/art.jpg differ diff --git a/data/KTR-CEP/data.yml b/data/KTR-CEP/data.yml new file mode 100644 index 0000000..0294825 --- /dev/null +++ b/data/KTR-CEP/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F713300 + name: Without Escape + updates: [] +- regions: + - US + id: 000400000F713400 + name: Without Escape + updates: [] diff --git a/data/KTR-CEP/icon.jpg b/data/KTR-CEP/icon.jpg new file mode 100644 index 0000000..e4a4b71 Binary files /dev/null and b/data/KTR-CEP/icon.jpg differ diff --git a/data/KTR-CES/art.jpg b/data/KTR-CES/art.jpg new file mode 100644 index 0000000..dc4f855 Binary files /dev/null and b/data/KTR-CES/art.jpg differ diff --git a/data/KTR-CES/data.yml b/data/KTR-CES/data.yml new file mode 100644 index 0000000..2a73872 --- /dev/null +++ b/data/KTR-CES/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F710000 + name: Cycle of Eternity + updates: [] diff --git a/data/KTR-CES/icon.jpg b/data/KTR-CES/icon.jpg new file mode 100644 index 0000000..a191aa4 Binary files /dev/null and b/data/KTR-CES/icon.jpg differ diff --git a/data/KTR-CET/art.jpg b/data/KTR-CET/art.jpg new file mode 100644 index 0000000..211fc04 Binary files /dev/null and b/data/KTR-CET/art.jpg differ diff --git a/data/KTR-CET/data.yml b/data/KTR-CET/data.yml new file mode 100644 index 0000000..c7677fc --- /dev/null +++ b/data/KTR-CET/data.yml @@ -0,0 +1,17 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70EC00 + name: 'Physical contact: 2048' + updates: [] +- regions: + - JP + id: 000400000F70E600 + name: 密着対戦2048 + updates: [] +- regions: + - US + id: 000400000F70EA00 + name: 'Physical contact: 2048' + updates: [] diff --git a/data/KTR-CET/icon.jpg b/data/KTR-CET/icon.jpg new file mode 100644 index 0000000..4d0600f Binary files /dev/null and b/data/KTR-CET/icon.jpg differ diff --git a/data/KTR-CEV/art.jpg b/data/KTR-CEV/art.jpg new file mode 100644 index 0000000..f19df23 Binary files /dev/null and b/data/KTR-CEV/art.jpg differ diff --git a/data/KTR-CEV/data.yml b/data/KTR-CEV/data.yml new file mode 100644 index 0000000..28994f2 --- /dev/null +++ b/data/KTR-CEV/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F710B00 + name: Vera Swings + updates: [] diff --git a/data/KTR-CEV/icon.jpg b/data/KTR-CEV/icon.jpg new file mode 100644 index 0000000..40d0f7f Binary files /dev/null and b/data/KTR-CEV/icon.jpg differ diff --git a/data/KTR-CEX/art.jpg b/data/KTR-CEX/art.jpg new file mode 100644 index 0000000..625cfa6 Binary files /dev/null and b/data/KTR-CEX/art.jpg differ diff --git a/data/KTR-CEX/data.yml b/data/KTR-CEX/data.yml new file mode 100644 index 0000000..400a19e --- /dev/null +++ b/data/KTR-CEX/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F708100 + name: Hyperlight EX + updates: [] +- regions: + - US + id: 000400000F707F00 + name: Hyperlight EX + updates: [] diff --git a/data/KTR-CEX/icon.jpg b/data/KTR-CEX/icon.jpg new file mode 100644 index 0000000..658e7f7 Binary files /dev/null and b/data/KTR-CEX/icon.jpg differ diff --git a/data/KTR-CF3/art.jpg b/data/KTR-CF3/art.jpg new file mode 100644 index 0000000..6aa7921 Binary files /dev/null and b/data/KTR-CF3/art.jpg differ diff --git a/data/KTR-CF3/data.yml b/data/KTR-CF3/data.yml new file mode 100644 index 0000000..227cb2b --- /dev/null +++ b/data/KTR-CF3/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70F000 + name: 36 Fragments of Midnight + updates: [] +- regions: + - US + id: 000400000F70E300 + name: 36 Fragments of Midnight + updates: [] diff --git a/data/KTR-CF3/icon.jpg b/data/KTR-CF3/icon.jpg new file mode 100644 index 0000000..cc3a8e2 Binary files /dev/null and b/data/KTR-CF3/icon.jpg differ diff --git a/data/KTR-CFA/art.jpg b/data/KTR-CFA/art.jpg new file mode 100644 index 0000000..34a3dc3 Binary files /dev/null and b/data/KTR-CFA/art.jpg differ diff --git a/data/KTR-CFA/data.yml b/data/KTR-CFA/data.yml new file mode 100644 index 0000000..86038a1 --- /dev/null +++ b/data/KTR-CFA/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F712800 + name: Silver Falls - 3 Down Stars + updates: [] +- regions: + - US + id: 000400000F712200 + name: Silver Falls - 3 Down Stars + updates: [] diff --git a/data/KTR-CFA/icon.jpg b/data/KTR-CFA/icon.jpg new file mode 100644 index 0000000..852f79a Binary files /dev/null and b/data/KTR-CFA/icon.jpg differ diff --git a/data/KTR-CFB/art.jpg b/data/KTR-CFB/art.jpg new file mode 100644 index 0000000..86a78cf Binary files /dev/null and b/data/KTR-CFB/art.jpg differ diff --git a/data/KTR-CFB/data.yml b/data/KTR-CFB/data.yml new file mode 100644 index 0000000..cd4ad56 --- /dev/null +++ b/data/KTR-CFB/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70AD00 + name: FOUR BOMBS + updates: [] +- regions: + - US + id: 000400000F70AA00 + name: FOUR BOMBS + updates: [] diff --git a/data/KTR-CFB/icon.jpg b/data/KTR-CFB/icon.jpg new file mode 100644 index 0000000..b027072 Binary files /dev/null and b/data/KTR-CFB/icon.jpg differ diff --git a/data/KTR-CFC/art.jpg b/data/KTR-CFC/art.jpg new file mode 100644 index 0000000..8dfdc7f Binary files /dev/null and b/data/KTR-CFC/art.jpg differ diff --git a/data/KTR-CFC/data.yml b/data/KTR-CFC/data.yml new file mode 100644 index 0000000..fb4eae4 --- /dev/null +++ b/data/KTR-CFC/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F713000 + name: Sketchy Snowboarding + updates: [] diff --git a/data/KTR-CFC/icon.jpg b/data/KTR-CFC/icon.jpg new file mode 100644 index 0000000..dd6e769 Binary files /dev/null and b/data/KTR-CFC/icon.jpg differ diff --git a/data/KTR-CFF/art.jpg b/data/KTR-CFF/art.jpg new file mode 100644 index 0000000..994090f Binary files /dev/null and b/data/KTR-CFF/art.jpg differ diff --git a/data/KTR-CFF/data.yml b/data/KTR-CFF/data.yml new file mode 100644 index 0000000..83a6441 --- /dev/null +++ b/data/KTR-CFF/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F710E00 + name: I.F.O + updates: [] +- regions: + - US + id: 000400000F710C00 + name: I.F.O + updates: [] diff --git a/data/KTR-CFF/icon.jpg b/data/KTR-CFF/icon.jpg new file mode 100644 index 0000000..49d5685 Binary files /dev/null and b/data/KTR-CFF/icon.jpg differ diff --git a/data/KTR-CFG/art.jpg b/data/KTR-CFG/art.jpg new file mode 100644 index 0000000..d3fb87b Binary files /dev/null and b/data/KTR-CFG/art.jpg differ diff --git a/data/KTR-CFG/data.yml b/data/KTR-CFG/data.yml new file mode 100644 index 0000000..b26c397 --- /dev/null +++ b/data/KTR-CFG/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70B600 + name: Infinite Golf + updates: [] +- regions: + - US + id: 000400000F70B500 + name: Infinite Golf + updates: [] diff --git a/data/KTR-CFG/icon.jpg b/data/KTR-CFG/icon.jpg new file mode 100644 index 0000000..b777da8 Binary files /dev/null and b/data/KTR-CFG/icon.jpg differ diff --git a/data/KTR-CFJ/art.jpg b/data/KTR-CFJ/art.jpg new file mode 100644 index 0000000..f8612b8 Binary files /dev/null and b/data/KTR-CFJ/art.jpg differ diff --git a/data/KTR-CFJ/data.yml b/data/KTR-CFJ/data.yml new file mode 100644 index 0000000..283290b --- /dev/null +++ b/data/KTR-CFJ/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F712E00 + name: ZARA the Fastest Fairy + updates: [] +- regions: + - US + id: 000400000F712F00 + name: ZARA the Fastest Fairy + updates: [] diff --git a/data/KTR-CFJ/icon.jpg b/data/KTR-CFJ/icon.jpg new file mode 100644 index 0000000..9862192 Binary files /dev/null and b/data/KTR-CFJ/icon.jpg differ diff --git a/data/KTR-CFK/art.jpg b/data/KTR-CFK/art.jpg new file mode 100644 index 0000000..69176c8 Binary files /dev/null and b/data/KTR-CFK/art.jpg differ diff --git a/data/KTR-CFK/data.yml b/data/KTR-CFK/data.yml new file mode 100644 index 0000000..0ad9ac8 --- /dev/null +++ b/data/KTR-CFK/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70D900 + name: Frutakia 2 + updates: [] +- regions: + - US + id: 000400000F70C800 + name: Frutakia 2 + updates: [] diff --git a/data/KTR-CFK/icon.jpg b/data/KTR-CFK/icon.jpg new file mode 100644 index 0000000..8ad06a9 Binary files /dev/null and b/data/KTR-CFK/icon.jpg differ diff --git a/data/KTR-CFM/art.jpg b/data/KTR-CFM/art.jpg new file mode 100644 index 0000000..6f18708 Binary files /dev/null and b/data/KTR-CFM/art.jpg differ diff --git a/data/KTR-CFM/data.yml b/data/KTR-CFM/data.yml new file mode 100644 index 0000000..af0357a --- /dev/null +++ b/data/KTR-CFM/data.yml @@ -0,0 +1,37 @@ +platform: New3dsRetailOrDownload +releases: +- regions: + - EU + id: 000400000F70CD00 + name: Fire Emblem Warriors™ + updates: + - id: 0004000E0F70CD00 + name: 'Fire Emblem Warriors™: Update' +- regions: + - JP + id: 000400000F70C100 + name: ファイアーエムブレム無双 + updates: + - id: 0004000E0F70C100 + name: 更新データ Ver. 1.5.0 ファイアーエムブレム無双 +- regions: + - KR + id: 000400000F70CF00 + name: Fire Emblem Warriors (영어) + updates: + - id: 0004000E0F70DE00 + name: 업데이트 데이터 Ver1.5.0 Fire Emblem Warriors (일본어) + - id: 0004000E0F70CF00 + name: 업데이트 데이터 Ver1.5.0 Fire Emblem Warriors(영어) +- regions: + - KR + id: 000400000F70DE00 + name: Fire Emblem Warriors (일본어) + updates: [] +- regions: + - US + id: 000400000F70CC00 + name: Fire Emblem Warriors + updates: + - id: 0004000E0F70CC00 + name: Fire Emblem Warriors Update Ver. 1.5.0 diff --git a/data/KTR-CFM/icon.jpg b/data/KTR-CFM/icon.jpg new file mode 100644 index 0000000..db180dd Binary files /dev/null and b/data/KTR-CFM/icon.jpg differ diff --git a/data/KTR-CFN/art.jpg b/data/KTR-CFN/art.jpg new file mode 100644 index 0000000..cb05d2b Binary files /dev/null and b/data/KTR-CFN/art.jpg differ diff --git a/data/KTR-CFN/data.yml b/data/KTR-CFN/data.yml new file mode 100644 index 0000000..2a05b43 --- /dev/null +++ b/data/KTR-CFN/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70B000 + name: FIFTEEN + updates: [] +- regions: + - US + id: 000400000F70B900 + name: FIFTEEN + updates: [] diff --git a/data/KTR-CFN/icon.jpg b/data/KTR-CFN/icon.jpg new file mode 100644 index 0000000..0884d67 Binary files /dev/null and b/data/KTR-CFN/icon.jpg differ diff --git a/data/KTR-CFR/art.jpg b/data/KTR-CFR/art.jpg new file mode 100644 index 0000000..83cfc2f Binary files /dev/null and b/data/KTR-CFR/art.jpg differ diff --git a/data/KTR-CFR/data.yml b/data/KTR-CFR/data.yml new file mode 100644 index 0000000..56d3962 --- /dev/null +++ b/data/KTR-CFR/data.yml @@ -0,0 +1,12 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F70DC00 + name: Zeus Quests Remastered Anagenissis of Gaia + updates: [] +- regions: + - US + id: 000400000F70CA00 + name: Zeus Quest Remastered + updates: [] diff --git a/data/KTR-CFR/icon.jpg b/data/KTR-CFR/icon.jpg new file mode 100644 index 0000000..1dc2b65 Binary files /dev/null and b/data/KTR-CFR/icon.jpg differ diff --git a/data/KTR-CFT/art.jpg b/data/KTR-CFT/art.jpg new file mode 100644 index 0000000..4ece385 Binary files /dev/null and b/data/KTR-CFT/art.jpg differ diff --git a/data/KTR-CFT/data.yml b/data/KTR-CFT/data.yml new file mode 100644 index 0000000..7aa9c76 --- /dev/null +++ b/data/KTR-CFT/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - US + id: 000400000F711300 + name: Games for Toddlers 2 + updates: [] diff --git a/data/KTR-CFT/icon.jpg b/data/KTR-CFT/icon.jpg new file mode 100644 index 0000000..62f1d3b Binary files /dev/null and b/data/KTR-CFT/icon.jpg differ diff --git a/data/KTR-CFY/art.jpg b/data/KTR-CFY/art.jpg new file mode 100644 index 0000000..7c456a0 Binary files /dev/null and b/data/KTR-CFY/art.jpg differ diff --git a/data/KTR-CFY/data.yml b/data/KTR-CFY/data.yml new file mode 100644 index 0000000..9921bfc --- /dev/null +++ b/data/KTR-CFY/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - EU + id: 000400000F713800 + name: War & Romance Visual Novel + updates: [] diff --git a/data/KTR-CFY/icon.jpg b/data/KTR-CFY/icon.jpg new file mode 100644 index 0000000..2e5fb02 Binary files /dev/null and b/data/KTR-CFY/icon.jpg differ diff --git a/data/KTR-CFZ/art.jpg b/data/KTR-CFZ/art.jpg new file mode 100644 index 0000000..770f7b6 Binary files /dev/null and b/data/KTR-CFZ/art.jpg differ diff --git a/data/KTR-CFZ/data.yml b/data/KTR-CFZ/data.yml new file mode 100644 index 0000000..941cbf2 --- /dev/null +++ b/data/KTR-CFZ/data.yml @@ -0,0 +1,7 @@ +platform: New3dsDownloadOnly +releases: +- regions: + - JP + id: 000400000F712900 + name: ドラゴンファングZ 竜者ロゼと宿り木の迷宮 + updates: [] diff --git a/data/KTR-CFZ/icon.jpg b/data/KTR-CFZ/icon.jpg new file mode 100644 index 0000000..aee9bc3 Binary files /dev/null and b/data/KTR-CFZ/icon.jpg differ diff --git a/data/KTR-UA2/art.jpg b/data/KTR-UA2/art.jpg new file mode 100644 index 0000000..5ac38d1 Binary files /dev/null and b/data/KTR-UA2/art.jpg differ diff --git a/data/KTR-UA2/data.yml b/data/KTR-UA2/data.yml new file mode 100644 index 0000000..353e034 --- /dev/null +++ b/data/KTR-UA2/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F704300 + name: Street Fighter™ Alpha 2 + updates: [] +- regions: + - JP + id: 000400000F704200 + name: ストリートファイターZERO2 + updates: [] diff --git a/data/KTR-UA2/icon.jpg b/data/KTR-UA2/icon.jpg new file mode 100644 index 0000000..e4139c9 Binary files /dev/null and b/data/KTR-UA2/icon.jpg differ diff --git a/data/KTR-UA3/art.jpg b/data/KTR-UA3/art.jpg new file mode 100644 index 0000000..4293129 Binary files /dev/null and b/data/KTR-UA3/art.jpg differ diff --git a/data/KTR-UA3/data.yml b/data/KTR-UA3/data.yml new file mode 100644 index 0000000..ae3e412 --- /dev/null +++ b/data/KTR-UA3/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F704700 + name: パネルでポン + updates: [] diff --git a/data/KTR-UA3/icon.jpg b/data/KTR-UA3/icon.jpg new file mode 100644 index 0000000..ac760b3 Binary files /dev/null and b/data/KTR-UA3/icon.jpg differ diff --git a/data/KTR-UA4/art.jpg b/data/KTR-UA4/art.jpg new file mode 100644 index 0000000..1847ffa Binary files /dev/null and b/data/KTR-UA4/art.jpg differ diff --git a/data/KTR-UA4/data.yml b/data/KTR-UA4/data.yml new file mode 100644 index 0000000..72a9f0a --- /dev/null +++ b/data/KTR-UA4/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F704800 + name: ファイアーエムブレム 聖戦の系譜 + updates: [] diff --git a/data/KTR-UA4/icon.jpg b/data/KTR-UA4/icon.jpg new file mode 100644 index 0000000..cba9615 Binary files /dev/null and b/data/KTR-UA4/icon.jpg differ diff --git a/data/KTR-UA5/art.jpg b/data/KTR-UA5/art.jpg new file mode 100644 index 0000000..db8c649 Binary files /dev/null and b/data/KTR-UA5/art.jpg differ diff --git a/data/KTR-UA5/data.yml b/data/KTR-UA5/data.yml new file mode 100644 index 0000000..ac18b83 --- /dev/null +++ b/data/KTR-UA5/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F704A00 + name: MEGA MAN X3 + updates: [] +- regions: + - JP + id: 000400000F704900 + name: ロックマンX3 + updates: [] diff --git a/data/KTR-UA5/icon.jpg b/data/KTR-UA5/icon.jpg new file mode 100644 index 0000000..6b944d0 Binary files /dev/null and b/data/KTR-UA5/icon.jpg differ diff --git a/data/KTR-UA6/art.jpg b/data/KTR-UA6/art.jpg new file mode 100644 index 0000000..3babc7c Binary files /dev/null and b/data/KTR-UA6/art.jpg differ diff --git a/data/KTR-UA6/data.yml b/data/KTR-UA6/data.yml new file mode 100644 index 0000000..b2abe75 --- /dev/null +++ b/data/KTR-UA6/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F704C00 + name: Final Fight 2™ + updates: [] +- regions: + - JP + id: 000400000F704B00 + name: ファイナルファイト2 + updates: [] diff --git a/data/KTR-UA6/icon.jpg b/data/KTR-UA6/icon.jpg new file mode 100644 index 0000000..dcd864a Binary files /dev/null and b/data/KTR-UA6/icon.jpg differ diff --git a/data/KTR-UA7/art.jpg b/data/KTR-UA7/art.jpg new file mode 100644 index 0000000..e750bb4 Binary files /dev/null and b/data/KTR-UA7/art.jpg differ diff --git a/data/KTR-UA7/data.yml b/data/KTR-UA7/data.yml new file mode 100644 index 0000000..e2a4458 --- /dev/null +++ b/data/KTR-UA7/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F704E00 + name: Final Fight 3™ + updates: [] +- regions: + - JP + id: 000400000F704D00 + name: ファイナルファイト タフ + updates: [] diff --git a/data/KTR-UA7/icon.jpg b/data/KTR-UA7/icon.jpg new file mode 100644 index 0000000..544394a Binary files /dev/null and b/data/KTR-UA7/icon.jpg differ diff --git a/data/KTR-UA8/art.jpg b/data/KTR-UA8/art.jpg new file mode 100644 index 0000000..124c59b Binary files /dev/null and b/data/KTR-UA8/art.jpg differ diff --git a/data/KTR-UA8/data.yml b/data/KTR-UA8/data.yml new file mode 100644 index 0000000..b504ff8 --- /dev/null +++ b/data/KTR-UA8/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F705100 + name: ロマンシング サ・ガ + updates: [] diff --git a/data/KTR-UA8/icon.jpg b/data/KTR-UA8/icon.jpg new file mode 100644 index 0000000..fcf274b Binary files /dev/null and b/data/KTR-UA8/icon.jpg differ diff --git a/data/KTR-UA9/art.jpg b/data/KTR-UA9/art.jpg new file mode 100644 index 0000000..1290b9e Binary files /dev/null and b/data/KTR-UA9/art.jpg differ diff --git a/data/KTR-UA9/data.yml b/data/KTR-UA9/data.yml new file mode 100644 index 0000000..13af958 --- /dev/null +++ b/data/KTR-UA9/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F705200 + name: タクティクスオウガ + updates: [] diff --git a/data/KTR-UA9/icon.jpg b/data/KTR-UA9/icon.jpg new file mode 100644 index 0000000..681af51 Binary files /dev/null and b/data/KTR-UA9/icon.jpg differ diff --git a/data/KTR-UAA/art.jpg b/data/KTR-UAA/art.jpg new file mode 100644 index 0000000..8e37718 Binary files /dev/null and b/data/KTR-UAA/art.jpg differ diff --git a/data/KTR-UAA/data.yml b/data/KTR-UAA/data.yml new file mode 100644 index 0000000..2ba0693 --- /dev/null +++ b/data/KTR-UAA/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F700E00 + name: Super Mario World™ + updates: [] +- regions: + - JP + id: 000400000F700D00 + name: スーパーマリオワールド + updates: [] diff --git a/data/KTR-UAA/icon.jpg b/data/KTR-UAA/icon.jpg new file mode 100644 index 0000000..3bf1832 Binary files /dev/null and b/data/KTR-UAA/icon.jpg differ diff --git a/data/KTR-UAB/art.jpg b/data/KTR-UAB/art.jpg new file mode 100644 index 0000000..3d11b96 Binary files /dev/null and b/data/KTR-UAB/art.jpg differ diff --git a/data/KTR-UAB/data.yml b/data/KTR-UAB/data.yml new file mode 100644 index 0000000..eaf22be --- /dev/null +++ b/data/KTR-UAB/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F701000 + name: 'The Legend of Zelda™: A Link to the Past™' + updates: [] +- regions: + - JP + id: 000400000F700F00 + name: ゼルダの伝説 神々のトライフォース + updates: [] diff --git a/data/KTR-UAB/icon.jpg b/data/KTR-UAB/icon.jpg new file mode 100644 index 0000000..1b3c8f5 Binary files /dev/null and b/data/KTR-UAB/icon.jpg differ diff --git a/data/KTR-UAC/art.jpg b/data/KTR-UAC/art.jpg new file mode 100644 index 0000000..469a237 Binary files /dev/null and b/data/KTR-UAC/art.jpg differ diff --git a/data/KTR-UAC/data.yml b/data/KTR-UAC/data.yml new file mode 100644 index 0000000..bcbedcc --- /dev/null +++ b/data/KTR-UAC/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F701200 + name: Super Metroid™ + updates: [] +- regions: + - JP + id: 000400000F701100 + name: スーパーメトロイド + updates: [] diff --git a/data/KTR-UAC/icon.jpg b/data/KTR-UAC/icon.jpg new file mode 100644 index 0000000..7d3798f Binary files /dev/null and b/data/KTR-UAC/icon.jpg differ diff --git a/data/KTR-UAD/art.jpg b/data/KTR-UAD/art.jpg new file mode 100644 index 0000000..97eebbf Binary files /dev/null and b/data/KTR-UAD/art.jpg differ diff --git a/data/KTR-UAD/data.yml b/data/KTR-UAD/data.yml new file mode 100644 index 0000000..beb2983 --- /dev/null +++ b/data/KTR-UAD/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F701400 + name: Super Mario Kart™ + updates: [] +- regions: + - JP + id: 000400000F701300 + name: スーパーマリオカート + updates: [] diff --git a/data/KTR-UAD/icon.jpg b/data/KTR-UAD/icon.jpg new file mode 100644 index 0000000..f9bdd73 Binary files /dev/null and b/data/KTR-UAD/icon.jpg differ diff --git a/data/KTR-UAE/art.jpg b/data/KTR-UAE/art.jpg new file mode 100644 index 0000000..46b7cbf Binary files /dev/null and b/data/KTR-UAE/art.jpg differ diff --git a/data/KTR-UAE/data.yml b/data/KTR-UAE/data.yml new file mode 100644 index 0000000..78429eb --- /dev/null +++ b/data/KTR-UAE/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F701600 + name: EarthBound™ + updates: [] +- regions: + - JP + id: 000400000F701500 + name: MOTHER2 ギーグの逆襲 + updates: [] diff --git a/data/KTR-UAE/icon.jpg b/data/KTR-UAE/icon.jpg new file mode 100644 index 0000000..ab083ba Binary files /dev/null and b/data/KTR-UAE/icon.jpg differ diff --git a/data/KTR-UAF/art.jpg b/data/KTR-UAF/art.jpg new file mode 100644 index 0000000..f94e46b Binary files /dev/null and b/data/KTR-UAF/art.jpg differ diff --git a/data/KTR-UAF/data.yml b/data/KTR-UAF/data.yml new file mode 100644 index 0000000..1a97365 --- /dev/null +++ b/data/KTR-UAF/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F701900 + name: F-Zero™ + updates: [] +- regions: + - JP + id: 000400000F701800 + name: F-ZERO + updates: [] diff --git a/data/KTR-UAF/icon.jpg b/data/KTR-UAF/icon.jpg new file mode 100644 index 0000000..e9d1f4b Binary files /dev/null and b/data/KTR-UAF/icon.jpg differ diff --git a/data/KTR-UAG/art.jpg b/data/KTR-UAG/art.jpg new file mode 100644 index 0000000..4d661f9 Binary files /dev/null and b/data/KTR-UAG/art.jpg differ diff --git a/data/KTR-UAG/data.yml b/data/KTR-UAG/data.yml new file mode 100644 index 0000000..d006d8b --- /dev/null +++ b/data/KTR-UAG/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F701B00 + name: Donkey Kong Country™ + updates: [] +- regions: + - JP + id: 000400000F701A00 + name: スーパードンキーコング + updates: [] diff --git a/data/KTR-UAG/icon.jpg b/data/KTR-UAG/icon.jpg new file mode 100644 index 0000000..de764dc Binary files /dev/null and b/data/KTR-UAG/icon.jpg differ diff --git a/data/KTR-UAJ/art.jpg b/data/KTR-UAJ/art.jpg new file mode 100644 index 0000000..84123d6 Binary files /dev/null and b/data/KTR-UAJ/art.jpg differ diff --git a/data/KTR-UAJ/data.yml b/data/KTR-UAJ/data.yml new file mode 100644 index 0000000..64b4e94 --- /dev/null +++ b/data/KTR-UAJ/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702000 + name: "Donkey Kong Country 2: Diddy's Kong Quest™" + updates: [] +- regions: + - JP + id: 000400000F701F00 + name: スーパードンキーコング2 ディクシー&ディディー + updates: [] diff --git a/data/KTR-UAJ/icon.jpg b/data/KTR-UAJ/icon.jpg new file mode 100644 index 0000000..e6ce7b4 Binary files /dev/null and b/data/KTR-UAJ/icon.jpg differ diff --git a/data/KTR-UAK/art.jpg b/data/KTR-UAK/art.jpg new file mode 100644 index 0000000..7865620 Binary files /dev/null and b/data/KTR-UAK/art.jpg differ diff --git a/data/KTR-UAK/data.yml b/data/KTR-UAK/data.yml new file mode 100644 index 0000000..6b143d2 --- /dev/null +++ b/data/KTR-UAK/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702200 + name: Pilotwings™ + updates: [] +- regions: + - JP + id: 000400000F702100 + name: パイロットウイングス + updates: [] diff --git a/data/KTR-UAK/icon.jpg b/data/KTR-UAK/icon.jpg new file mode 100644 index 0000000..175c5bc Binary files /dev/null and b/data/KTR-UAK/icon.jpg differ diff --git a/data/KTR-UAL/art.jpg b/data/KTR-UAL/art.jpg new file mode 100644 index 0000000..50ad604 Binary files /dev/null and b/data/KTR-UAL/art.jpg differ diff --git a/data/KTR-UAL/data.yml b/data/KTR-UAL/data.yml new file mode 100644 index 0000000..dc05b51 --- /dev/null +++ b/data/KTR-UAL/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702400 + name: Super Punch-Out!!™ + updates: [] +- regions: + - JP + id: 000400000F702300 + name: スーパーパンチアウト!! + updates: [] diff --git a/data/KTR-UAL/icon.jpg b/data/KTR-UAL/icon.jpg new file mode 100644 index 0000000..c8c7303 Binary files /dev/null and b/data/KTR-UAL/icon.jpg differ diff --git a/data/KTR-UAM/art.jpg b/data/KTR-UAM/art.jpg new file mode 100644 index 0000000..dd0ef91 Binary files /dev/null and b/data/KTR-UAM/art.jpg differ diff --git a/data/KTR-UAM/data.yml b/data/KTR-UAM/data.yml new file mode 100644 index 0000000..0775248 --- /dev/null +++ b/data/KTR-UAM/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702600 + name: Mega Man™ X + updates: [] +- regions: + - JP + id: 000400000F702500 + name: ロックマンX + updates: [] diff --git a/data/KTR-UAM/icon.jpg b/data/KTR-UAM/icon.jpg new file mode 100644 index 0000000..616acc4 Binary files /dev/null and b/data/KTR-UAM/icon.jpg differ diff --git a/data/KTR-UAN/art.jpg b/data/KTR-UAN/art.jpg new file mode 100644 index 0000000..b01f0e1 Binary files /dev/null and b/data/KTR-UAN/art.jpg differ diff --git a/data/KTR-UAN/data.yml b/data/KTR-UAN/data.yml new file mode 100644 index 0000000..5e1f805 --- /dev/null +++ b/data/KTR-UAN/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702800 + name: MEGA MAN™ 7 + updates: [] +- regions: + - JP + id: 000400000F702700 + name: ロックマン7 宿命の対決! + updates: [] diff --git a/data/KTR-UAN/icon.jpg b/data/KTR-UAN/icon.jpg new file mode 100644 index 0000000..2737fc3 Binary files /dev/null and b/data/KTR-UAN/icon.jpg differ diff --git a/data/KTR-UAP/art.jpg b/data/KTR-UAP/art.jpg new file mode 100644 index 0000000..fc9e77c Binary files /dev/null and b/data/KTR-UAP/art.jpg differ diff --git a/data/KTR-UAP/data.yml b/data/KTR-UAP/data.yml new file mode 100644 index 0000000..8a629db --- /dev/null +++ b/data/KTR-UAP/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702A00 + name: Super Ghouls'n Ghosts™ + updates: [] +- regions: + - JP + id: 000400000F702900 + name: 超魔界村 + updates: [] diff --git a/data/KTR-UAP/icon.jpg b/data/KTR-UAP/icon.jpg new file mode 100644 index 0000000..edc967e Binary files /dev/null and b/data/KTR-UAP/icon.jpg differ diff --git a/data/KTR-UAQ/art.jpg b/data/KTR-UAQ/art.jpg new file mode 100644 index 0000000..0f195bd Binary files /dev/null and b/data/KTR-UAQ/art.jpg differ diff --git a/data/KTR-UAQ/data.yml b/data/KTR-UAQ/data.yml new file mode 100644 index 0000000..2a0eb71 --- /dev/null +++ b/data/KTR-UAQ/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702C00 + name: 'Contra® III: The Alien Wars™' + updates: [] +- regions: + - JP + id: 000400000F702B00 + name: 魂斗羅スピリッツ + updates: [] diff --git a/data/KTR-UAQ/icon.jpg b/data/KTR-UAQ/icon.jpg new file mode 100644 index 0000000..79c0349 Binary files /dev/null and b/data/KTR-UAQ/icon.jpg differ diff --git a/data/KTR-UAR/art.jpg b/data/KTR-UAR/art.jpg new file mode 100644 index 0000000..53dc301 Binary files /dev/null and b/data/KTR-UAR/art.jpg differ diff --git a/data/KTR-UAR/data.yml b/data/KTR-UAR/data.yml new file mode 100644 index 0000000..ebc8257 --- /dev/null +++ b/data/KTR-UAR/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F702F00 + name: "Donkey Kong Country 3: Dixie Kong's Double Trouble™" + updates: [] +- regions: + - JP + id: 000400000F702E00 + name: スーパードンキーコング3 謎のクレミス島 + updates: [] diff --git a/data/KTR-UAR/icon.jpg b/data/KTR-UAR/icon.jpg new file mode 100644 index 0000000..0ee96fa Binary files /dev/null and b/data/KTR-UAR/icon.jpg differ diff --git a/data/KTR-UAS/art.jpg b/data/KTR-UAS/art.jpg new file mode 100644 index 0000000..e68ec3d Binary files /dev/null and b/data/KTR-UAS/art.jpg differ diff --git a/data/KTR-UAS/data.yml b/data/KTR-UAS/data.yml new file mode 100644 index 0000000..3802a39 --- /dev/null +++ b/data/KTR-UAS/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F703100 + name: 'Super Street Fighter™ II: The New Challengers' + updates: [] +- regions: + - JP + id: 000400000F703000 + name: スーパーストリートファイターⅡ ザ ニューチャレンジャーズ + updates: [] diff --git a/data/KTR-UAS/icon.jpg b/data/KTR-UAS/icon.jpg new file mode 100644 index 0000000..a5883b5 Binary files /dev/null and b/data/KTR-UAS/icon.jpg differ diff --git a/data/KTR-UAT/art.jpg b/data/KTR-UAT/art.jpg new file mode 100644 index 0000000..f3c072d Binary files /dev/null and b/data/KTR-UAT/art.jpg differ diff --git a/data/KTR-UAT/data.yml b/data/KTR-UAT/data.yml new file mode 100644 index 0000000..08c95d7 --- /dev/null +++ b/data/KTR-UAT/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F703300 + name: Mega Man X2 + updates: [] +- regions: + - JP + id: 000400000F703200 + name: ロックマンX2 + updates: [] diff --git a/data/KTR-UAT/icon.jpg b/data/KTR-UAT/icon.jpg new file mode 100644 index 0000000..d3a5a09 Binary files /dev/null and b/data/KTR-UAT/icon.jpg differ diff --git a/data/KTR-UAU/art.jpg b/data/KTR-UAU/art.jpg new file mode 100644 index 0000000..21b87bc Binary files /dev/null and b/data/KTR-UAU/art.jpg differ diff --git a/data/KTR-UAU/data.yml b/data/KTR-UAU/data.yml new file mode 100644 index 0000000..ee3f98f --- /dev/null +++ b/data/KTR-UAU/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F703500 + name: Super Castlevania IV + updates: [] +- regions: + - JP + id: 000400000F703400 + name: 悪魔城ドラキュラ + updates: [] diff --git a/data/KTR-UAU/icon.jpg b/data/KTR-UAU/icon.jpg new file mode 100644 index 0000000..d53933f Binary files /dev/null and b/data/KTR-UAU/icon.jpg differ diff --git a/data/KTR-UAV/art.jpg b/data/KTR-UAV/art.jpg new file mode 100644 index 0000000..963f592 Binary files /dev/null and b/data/KTR-UAV/art.jpg differ diff --git a/data/KTR-UAV/data.yml b/data/KTR-UAV/data.yml new file mode 100644 index 0000000..719d1aa --- /dev/null +++ b/data/KTR-UAV/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F703700 + name: The Legend of The Mystical Ninja + updates: [] +- regions: + - JP + id: 000400000F703600 + name: がんばれゴエモン ゆき姫救出絵巻 + updates: [] diff --git a/data/KTR-UAV/icon.jpg b/data/KTR-UAV/icon.jpg new file mode 100644 index 0000000..eea09c1 Binary files /dev/null and b/data/KTR-UAV/icon.jpg differ diff --git a/data/KTR-UAW/art.jpg b/data/KTR-UAW/art.jpg new file mode 100644 index 0000000..c08da42 Binary files /dev/null and b/data/KTR-UAW/art.jpg differ diff --git a/data/KTR-UAW/data.yml b/data/KTR-UAW/data.yml new file mode 100644 index 0000000..1a671e7 --- /dev/null +++ b/data/KTR-UAW/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F703B00 + name: Kirby's Dream Course™ + updates: [] +- regions: + - JP + id: 000400000F703A00 + name: カービィボウル + updates: [] diff --git a/data/KTR-UAW/icon.jpg b/data/KTR-UAW/icon.jpg new file mode 100644 index 0000000..d5d91db Binary files /dev/null and b/data/KTR-UAW/icon.jpg differ diff --git a/data/KTR-UAX/art.jpg b/data/KTR-UAX/art.jpg new file mode 100644 index 0000000..3883282 Binary files /dev/null and b/data/KTR-UAX/art.jpg differ diff --git a/data/KTR-UAX/data.yml b/data/KTR-UAX/data.yml new file mode 100644 index 0000000..dd9dbed --- /dev/null +++ b/data/KTR-UAX/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F703D00 + name: ファイアーエムブレム 紋章の謎 + updates: [] diff --git a/data/KTR-UAX/icon.jpg b/data/KTR-UAX/icon.jpg new file mode 100644 index 0000000..cd14543 Binary files /dev/null and b/data/KTR-UAX/icon.jpg differ diff --git a/data/KTR-UAY/art.jpg b/data/KTR-UAY/art.jpg new file mode 100644 index 0000000..1f94737 Binary files /dev/null and b/data/KTR-UAY/art.jpg differ diff --git a/data/KTR-UAY/data.yml b/data/KTR-UAY/data.yml new file mode 100644 index 0000000..617d35d --- /dev/null +++ b/data/KTR-UAY/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F703F00 + name: Final Fight + updates: [] +- regions: + - JP + id: 000400000F703E00 + name: ファイナルファイト + updates: [] diff --git a/data/KTR-UAY/icon.jpg b/data/KTR-UAY/icon.jpg new file mode 100644 index 0000000..370fa5c Binary files /dev/null and b/data/KTR-UAY/icon.jpg differ diff --git a/data/KTR-UAZ/art.jpg b/data/KTR-UAZ/art.jpg new file mode 100644 index 0000000..f53a7d8 Binary files /dev/null and b/data/KTR-UAZ/art.jpg differ diff --git a/data/KTR-UAZ/data.yml b/data/KTR-UAZ/data.yml new file mode 100644 index 0000000..9297615 --- /dev/null +++ b/data/KTR-UAZ/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F704100 + name: 'Street Fighter™ II Turbo: Hyper Fighting' + updates: [] +- regions: + - JP + id: 000400000F704000 + name: ストリートファイターⅡ ターボ ハイパー ファイティング + updates: [] diff --git a/data/KTR-UAZ/icon.jpg b/data/KTR-UAZ/icon.jpg new file mode 100644 index 0000000..0765cca Binary files /dev/null and b/data/KTR-UAZ/icon.jpg differ diff --git a/data/KTR-UBA/art.jpg b/data/KTR-UBA/art.jpg new file mode 100644 index 0000000..2e83202 Binary files /dev/null and b/data/KTR-UBA/art.jpg differ diff --git a/data/KTR-UBA/data.yml b/data/KTR-UBA/data.yml new file mode 100644 index 0000000..647811f --- /dev/null +++ b/data/KTR-UBA/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F705400 + name: BREATH OF FIRE + updates: [] +- regions: + - JP + id: 000400000F705300 + name: ブレス オブ ファイア 竜の戦士 + updates: [] diff --git a/data/KTR-UBA/icon.jpg b/data/KTR-UBA/icon.jpg new file mode 100644 index 0000000..5887e5e Binary files /dev/null and b/data/KTR-UBA/icon.jpg differ diff --git a/data/KTR-UBB/art.jpg b/data/KTR-UBB/art.jpg new file mode 100644 index 0000000..caa86a9 Binary files /dev/null and b/data/KTR-UBB/art.jpg differ diff --git a/data/KTR-UBB/data.yml b/data/KTR-UBB/data.yml new file mode 100644 index 0000000..7ad9bbc --- /dev/null +++ b/data/KTR-UBB/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F705600 + name: Breath of Fire II + updates: [] +- regions: + - JP + id: 000400000F705500 + name: ブレス オブ ファイアⅡ 使命の子 + updates: [] diff --git a/data/KTR-UBB/icon.jpg b/data/KTR-UBB/icon.jpg new file mode 100644 index 0000000..cd72534 Binary files /dev/null and b/data/KTR-UBB/icon.jpg differ diff --git a/data/KTR-UBC/art.jpg b/data/KTR-UBC/art.jpg new file mode 100644 index 0000000..bb0452e Binary files /dev/null and b/data/KTR-UBC/art.jpg differ diff --git a/data/KTR-UBC/data.yml b/data/KTR-UBC/data.yml new file mode 100644 index 0000000..e00586b --- /dev/null +++ b/data/KTR-UBC/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F705700 + name: Pop'nツインビー + updates: [] diff --git a/data/KTR-UBC/icon.jpg b/data/KTR-UBC/icon.jpg new file mode 100644 index 0000000..d765fcf Binary files /dev/null and b/data/KTR-UBC/icon.jpg differ diff --git a/data/KTR-UBD/art.jpg b/data/KTR-UBD/art.jpg new file mode 100644 index 0000000..0cf0d46 Binary files /dev/null and b/data/KTR-UBD/art.jpg differ diff --git a/data/KTR-UBD/data.yml b/data/KTR-UBD/data.yml new file mode 100644 index 0000000..451a68e --- /dev/null +++ b/data/KTR-UBD/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F706200 + name: カービィのきらきらきっず + updates: [] diff --git a/data/KTR-UBD/icon.jpg b/data/KTR-UBD/icon.jpg new file mode 100644 index 0000000..b5b1a3b Binary files /dev/null and b/data/KTR-UBD/icon.jpg differ diff --git a/data/KTR-UBE/art.jpg b/data/KTR-UBE/art.jpg new file mode 100644 index 0000000..6817265 Binary files /dev/null and b/data/KTR-UBE/art.jpg differ diff --git a/data/KTR-UBE/data.yml b/data/KTR-UBE/data.yml new file mode 100644 index 0000000..80ff5a6 --- /dev/null +++ b/data/KTR-UBE/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F706300 + name: ファイアーエムブレム トラキア776 + updates: [] diff --git a/data/KTR-UBE/icon.jpg b/data/KTR-UBE/icon.jpg new file mode 100644 index 0000000..5f031b7 Binary files /dev/null and b/data/KTR-UBE/icon.jpg differ diff --git a/data/KTR-UBF/art.jpg b/data/KTR-UBF/art.jpg new file mode 100644 index 0000000..9c22701 Binary files /dev/null and b/data/KTR-UBF/art.jpg differ diff --git a/data/KTR-UBF/data.yml b/data/KTR-UBF/data.yml new file mode 100644 index 0000000..8c1a80e --- /dev/null +++ b/data/KTR-UBF/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F706400 + name: スーパーファミコンウォーズ + updates: [] diff --git a/data/KTR-UBF/icon.jpg b/data/KTR-UBF/icon.jpg new file mode 100644 index 0000000..9dacb96 Binary files /dev/null and b/data/KTR-UBF/icon.jpg differ diff --git a/data/KTR-UBG/art.jpg b/data/KTR-UBG/art.jpg new file mode 100644 index 0000000..ba49428 Binary files /dev/null and b/data/KTR-UBG/art.jpg differ diff --git a/data/KTR-UBG/data.yml b/data/KTR-UBG/data.yml new file mode 100644 index 0000000..bc4b58d --- /dev/null +++ b/data/KTR-UBG/data.yml @@ -0,0 +1,12 @@ +platform: SuperNES +releases: +- regions: + - EU + id: 000400000F706600 + name: Mario’s Super Picross™ + updates: [] +- regions: + - JP + id: 000400000F706500 + name: マリオのスーパーピクロス + updates: [] diff --git a/data/KTR-UBG/icon.jpg b/data/KTR-UBG/icon.jpg new file mode 100644 index 0000000..325acc5 Binary files /dev/null and b/data/KTR-UBG/icon.jpg differ diff --git a/data/KTR-UBH/art.jpg b/data/KTR-UBH/art.jpg new file mode 100644 index 0000000..eccb6b1 Binary files /dev/null and b/data/KTR-UBH/art.jpg differ diff --git a/data/KTR-UBH/data.yml b/data/KTR-UBH/data.yml new file mode 100644 index 0000000..420ac28 --- /dev/null +++ b/data/KTR-UBH/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F706800 + name: DEMON'S CREST™ + updates: [] +- regions: + - JP + id: 000400000F706700 + name: デモンズブレイゾン 魔界村 紋章編 + updates: [] diff --git a/data/KTR-UBH/icon.jpg b/data/KTR-UBH/icon.jpg new file mode 100644 index 0000000..9100e3a Binary files /dev/null and b/data/KTR-UBH/icon.jpg differ diff --git a/data/KTR-UBJ/art.jpg b/data/KTR-UBJ/art.jpg new file mode 100644 index 0000000..09db0a5 Binary files /dev/null and b/data/KTR-UBJ/art.jpg differ diff --git a/data/KTR-UBJ/data.yml b/data/KTR-UBJ/data.yml new file mode 100644 index 0000000..34ea451 --- /dev/null +++ b/data/KTR-UBJ/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F706B00 + name: ライブ・ア・ライブ + updates: [] diff --git a/data/KTR-UBJ/icon.jpg b/data/KTR-UBJ/icon.jpg new file mode 100644 index 0000000..b21911b Binary files /dev/null and b/data/KTR-UBJ/icon.jpg differ diff --git a/data/KTR-UBK/art.jpg b/data/KTR-UBK/art.jpg new file mode 100644 index 0000000..f4a7437 Binary files /dev/null and b/data/KTR-UBK/art.jpg differ diff --git a/data/KTR-UBK/data.yml b/data/KTR-UBK/data.yml new file mode 100644 index 0000000..e5eb31f --- /dev/null +++ b/data/KTR-UBK/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F707400 + name: がんばれゴエモン2 奇天烈将軍マッギネス + updates: [] diff --git a/data/KTR-UBK/icon.jpg b/data/KTR-UBK/icon.jpg new file mode 100644 index 0000000..e3631d7 Binary files /dev/null and b/data/KTR-UBK/icon.jpg differ diff --git a/data/KTR-UBL/art.jpg b/data/KTR-UBL/art.jpg new file mode 100644 index 0000000..5b3eaac Binary files /dev/null and b/data/KTR-UBL/art.jpg differ diff --git a/data/KTR-UBL/data.yml b/data/KTR-UBL/data.yml new file mode 100644 index 0000000..af0cfa2 --- /dev/null +++ b/data/KTR-UBL/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F707500 + name: ファイナルファンタジーIV + updates: [] diff --git a/data/KTR-UBL/icon.jpg b/data/KTR-UBL/icon.jpg new file mode 100644 index 0000000..97dc1ef Binary files /dev/null and b/data/KTR-UBL/icon.jpg differ diff --git a/data/KTR-UBM/art.jpg b/data/KTR-UBM/art.jpg new file mode 100644 index 0000000..a09c877 Binary files /dev/null and b/data/KTR-UBM/art.jpg differ diff --git a/data/KTR-UBM/data.yml b/data/KTR-UBM/data.yml new file mode 100644 index 0000000..58cf929 --- /dev/null +++ b/data/KTR-UBM/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F707600 + name: ファイナルファンタジーV + updates: [] diff --git a/data/KTR-UBM/icon.jpg b/data/KTR-UBM/icon.jpg new file mode 100644 index 0000000..5561e34 Binary files /dev/null and b/data/KTR-UBM/icon.jpg differ diff --git a/data/KTR-UBN/art.jpg b/data/KTR-UBN/art.jpg new file mode 100644 index 0000000..58ed65c Binary files /dev/null and b/data/KTR-UBN/art.jpg differ diff --git a/data/KTR-UBN/data.yml b/data/KTR-UBN/data.yml new file mode 100644 index 0000000..a291f4b --- /dev/null +++ b/data/KTR-UBN/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F707700 + name: ファイナルファンタジーVI + updates: [] diff --git a/data/KTR-UBN/icon.jpg b/data/KTR-UBN/icon.jpg new file mode 100644 index 0000000..99dca90 Binary files /dev/null and b/data/KTR-UBN/icon.jpg differ diff --git a/data/KTR-UBP/art.jpg b/data/KTR-UBP/art.jpg new file mode 100644 index 0000000..a665ff7 Binary files /dev/null and b/data/KTR-UBP/art.jpg differ diff --git a/data/KTR-UBP/data.yml b/data/KTR-UBP/data.yml new file mode 100644 index 0000000..aff85c7 --- /dev/null +++ b/data/KTR-UBP/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F707900 + name: ロマンシング サ・ガ2 + updates: [] diff --git a/data/KTR-UBP/icon.jpg b/data/KTR-UBP/icon.jpg new file mode 100644 index 0000000..6128ec2 Binary files /dev/null and b/data/KTR-UBP/icon.jpg differ diff --git a/data/KTR-UBQ/art.jpg b/data/KTR-UBQ/art.jpg new file mode 100644 index 0000000..bfb847a Binary files /dev/null and b/data/KTR-UBQ/art.jpg differ diff --git a/data/KTR-UBQ/data.yml b/data/KTR-UBQ/data.yml new file mode 100644 index 0000000..de0661c --- /dev/null +++ b/data/KTR-UBQ/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F707A00 + name: がんばれゴエモン3 獅子重禄兵衛のからくり卍固め + updates: [] diff --git a/data/KTR-UBQ/icon.jpg b/data/KTR-UBQ/icon.jpg new file mode 100644 index 0000000..ba51a8c Binary files /dev/null and b/data/KTR-UBQ/icon.jpg differ diff --git a/data/KTR-UBR/art.jpg b/data/KTR-UBR/art.jpg new file mode 100644 index 0000000..b9f4bb7 Binary files /dev/null and b/data/KTR-UBR/art.jpg differ diff --git a/data/KTR-UBR/data.yml b/data/KTR-UBR/data.yml new file mode 100644 index 0000000..b8780ca --- /dev/null +++ b/data/KTR-UBR/data.yml @@ -0,0 +1,13 @@ +platform: SuperNES +releases: +- regions: + - EU + - US + id: 000400000F707D00 + name: Castlevania Dracula X + updates: [] +- regions: + - JP + id: 000400000F707B00 + name: 悪魔城ドラキュラXX + updates: [] diff --git a/data/KTR-UBR/icon.jpg b/data/KTR-UBR/icon.jpg new file mode 100644 index 0000000..5fb1db4 Binary files /dev/null and b/data/KTR-UBR/icon.jpg differ diff --git a/data/KTR-UBS/art.jpg b/data/KTR-UBS/art.jpg new file mode 100644 index 0000000..3547fef Binary files /dev/null and b/data/KTR-UBS/art.jpg differ diff --git a/data/KTR-UBS/data.yml b/data/KTR-UBS/data.yml new file mode 100644 index 0000000..5d41a2b --- /dev/null +++ b/data/KTR-UBS/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F708200 + name: ファミコン探偵倶楽部 PARTⅡ うしろに立つ少女 + updates: [] diff --git a/data/KTR-UBS/icon.jpg b/data/KTR-UBS/icon.jpg new file mode 100644 index 0000000..aaf1706 Binary files /dev/null and b/data/KTR-UBS/icon.jpg differ diff --git a/data/KTR-UBT/art.jpg b/data/KTR-UBT/art.jpg new file mode 100644 index 0000000..be4eb30 Binary files /dev/null and b/data/KTR-UBT/art.jpg differ diff --git a/data/KTR-UBT/data.yml b/data/KTR-UBT/data.yml new file mode 100644 index 0000000..895ab6f --- /dev/null +++ b/data/KTR-UBT/data.yml @@ -0,0 +1,7 @@ +platform: SuperNES +releases: +- regions: + - JP + id: 000400000F708300 + name: 伝説のオウガバトル + updates: [] diff --git a/data/KTR-UBT/icon.jpg b/data/KTR-UBT/icon.jpg new file mode 100644 index 0000000..3a0f872 Binary files /dev/null and b/data/KTR-UBT/icon.jpg differ diff --git a/games/2048/boxart.png b/games/2048/boxart.png new file mode 100644 index 0000000..eecfac2 Binary files /dev/null and b/games/2048/boxart.png differ diff --git a/games/2048/game.dat b/games/2048/game.dat new file mode 100644 index 0000000..9f03d94 --- /dev/null +++ b/games/2048/game.dat @@ -0,0 +1,20 @@ +title = "2048" +description = "2048 is a single-player sliding block puzzle game developed and published by Cosmigo. It was originally designed by Italian web developer Gabriele Cirulli. The game's objective is to slide numbered tiles on a grid to combine them to create a tile with the number 2048; however, you can keep playing the game, creating tiles with larger numbers. 2048 was originally written in JavaScript and CSS during a weekend, and released as free and open-source software subject to the MIT license." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000139000" +region = "usa" +release_date = "2014-06-19" + +[[releases]] +title = "0004000000143D00" +region = "eur" +release_date = "2014-07-31" + +[[releases]] +title = "000400000014AF00" +region = "jpn" +release_date = "2014-09-10" diff --git a/games/2048/icon.png b/games/2048/icon.png new file mode 100644 index 0000000..f691446 Binary files /dev/null and b/games/2048/icon.png differ diff --git a/games/2048/screenshots/ingame-1.png b/games/2048/screenshots/ingame-1.png new file mode 100644 index 0000000..c8248a9 Binary files /dev/null and b/games/2048/screenshots/ingame-1.png differ diff --git a/games/2048/screenshots/ingame-2.png b/games/2048/screenshots/ingame-2.png new file mode 100644 index 0000000..245bea0 Binary files /dev/null and b/games/2048/screenshots/ingame-2.png differ diff --git a/games/2048/screenshots/start-screen.png b/games/2048/screenshots/start-screen.png new file mode 100644 index 0000000..b7664cd Binary files /dev/null and b/games/2048/screenshots/start-screen.png differ diff --git a/games/3d-ecco-the-dolphin/boxart.png b/games/3d-ecco-the-dolphin/boxart.png new file mode 100644 index 0000000..3688acb Binary files /dev/null and b/games/3d-ecco-the-dolphin/boxart.png differ diff --git a/games/3d-ecco-the-dolphin/game.dat b/games/3d-ecco-the-dolphin/game.dat new file mode 100644 index 0000000..9e486f0 --- /dev/null +++ b/games/3d-ecco-the-dolphin/game.dat @@ -0,0 +1,15 @@ +title = "3D Ecco the Dolphin" +description = "Ecco the Dolphin is an action-adventure game originally developed by Ed Annunziata and Novotrade International for the Sega Genesis and published by Sega in 1992. It was republished digitally multiple times and was eventually put onto the 3DS eShop with the name 3D Ecco the Dolphin" +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000D9E00" +region = "usa" +release_date = "2013-12-12" + +[[releases]] +title = "00040000000DE300" +region = "eur" +release_date = "2013-12-12" diff --git a/games/3d-ecco-the-dolphin/icon.png b/games/3d-ecco-the-dolphin/icon.png new file mode 100644 index 0000000..b181b00 Binary files /dev/null and b/games/3d-ecco-the-dolphin/icon.png differ diff --git a/games/3d-ecco-the-dolphin/screenshots/ecco-the-in-the-air.png b/games/3d-ecco-the-dolphin/screenshots/ecco-the-in-the-air.png new file mode 100644 index 0000000..c924360 Binary files /dev/null and b/games/3d-ecco-the-dolphin/screenshots/ecco-the-in-the-air.png differ diff --git a/games/3d-ecco-the-dolphin/screenshots/ecco-the-titlescreen.png b/games/3d-ecco-the-dolphin/screenshots/ecco-the-titlescreen.png new file mode 100644 index 0000000..81f99a2 Binary files /dev/null and b/games/3d-ecco-the-dolphin/screenshots/ecco-the-titlescreen.png differ diff --git a/games/3d-ecco-the-dolphin/screenshots/ecco-the-underwater.png b/games/3d-ecco-the-dolphin/screenshots/ecco-the-underwater.png new file mode 100644 index 0000000..d8affdf Binary files /dev/null and b/games/3d-ecco-the-dolphin/screenshots/ecco-the-underwater.png differ diff --git a/games/3d-kirbys-adventure/boxart.png b/games/3d-kirbys-adventure/boxart.png new file mode 100644 index 0000000..af55272 Binary files /dev/null and b/games/3d-kirbys-adventure/boxart.png differ diff --git a/games/3d-kirbys-adventure/game.dat b/games/3d-kirbys-adventure/game.dat new file mode 100644 index 0000000..416700d --- /dev/null +++ b/games/3d-kirbys-adventure/game.dat @@ -0,0 +1,30 @@ +title = "3D Classics: Kirby's Adventure" +description = "Kirby's Adventure is a 1993 action-platform video game developed by HAL Laboratory and published by Nintendo for the Nintendo Entertainment System video game console. A 3D Classics version was released for the Nintendo 3DS eShop in November 2011." +needs_system_files = false +needs_shared_font = true +game_type = "eshop" + +[[ releases ]] +title = "0004000000054600" +region = "usa" +release_date = "2011-11-17" + +[[ releases ]] +title = "0004000000055000" +region = "eur" +release_date = "2011-11-17" + +[[ releases ]] +title = "000400000004E800" +region = "jpn" +release_date = "2012-04-25" + +[[ testcases ]] +title = "0004000000054600" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/3d-kirbys-adventure/icon.png b/games/3d-kirbys-adventure/icon.png new file mode 100644 index 0000000..db7ae32 Binary files /dev/null and b/games/3d-kirbys-adventure/icon.png differ diff --git a/games/3d-kirbys-adventure/screenshots/HAL-Room.png b/games/3d-kirbys-adventure/screenshots/HAL-Room.png new file mode 100644 index 0000000..cce800b Binary files /dev/null and b/games/3d-kirbys-adventure/screenshots/HAL-Room.png differ diff --git a/games/3d-kirbys-adventure/screenshots/Level-Cutscene.png b/games/3d-kirbys-adventure/screenshots/Level-Cutscene.png new file mode 100644 index 0000000..d53c417 Binary files /dev/null and b/games/3d-kirbys-adventure/screenshots/Level-Cutscene.png differ diff --git a/games/3d-kirbys-adventure/screenshots/Title-Screen.png b/games/3d-kirbys-adventure/screenshots/Title-Screen.png new file mode 100644 index 0000000..31aad14 Binary files /dev/null and b/games/3d-kirbys-adventure/screenshots/Title-Screen.png differ diff --git a/games/3d-kirbys-adventure/screenshots/UFO-Room.png b/games/3d-kirbys-adventure/screenshots/UFO-Room.png new file mode 100644 index 0000000..fc919f3 Binary files /dev/null and b/games/3d-kirbys-adventure/screenshots/UFO-Room.png differ diff --git a/games/61unlimited/boxart.png b/games/61unlimited/boxart.png new file mode 100644 index 0000000..785fd1b Binary files /dev/null and b/games/61unlimited/boxart.png differ diff --git a/games/61unlimited/game.dat b/games/61unlimited/game.dat new file mode 100644 index 0000000..d7914c8 --- /dev/null +++ b/games/61unlimited/game.dat @@ -0,0 +1,11 @@ +title = "6×1≠UNLIMITED?" +description = "6×1≠UNLIMITED? is a strategy game that plays like a 360 degree shoot ’em up with visual novel elements, developed and published by A+ Games." +github_issues = [4149] +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "000400000015A800" +region = "jpn" +release_date = "2015-01-07" diff --git a/games/61unlimited/icon.png b/games/61unlimited/icon.png new file mode 100644 index 0000000..37f6a4d Binary files /dev/null and b/games/61unlimited/icon.png differ diff --git a/games/61unlimited/screenshots/Dialogue.png b/games/61unlimited/screenshots/Dialogue.png new file mode 100644 index 0000000..e403821 Binary files /dev/null and b/games/61unlimited/screenshots/Dialogue.png differ diff --git a/games/61unlimited/screenshots/Ingame.png b/games/61unlimited/screenshots/Ingame.png new file mode 100644 index 0000000..5da5e91 Binary files /dev/null and b/games/61unlimited/screenshots/Ingame.png differ diff --git a/games/61unlimited/screenshots/Title.png b/games/61unlimited/screenshots/Title.png new file mode 100644 index 0000000..bea2462 Binary files /dev/null and b/games/61unlimited/screenshots/Title.png differ diff --git a/games/7th-dragon-iii-code-vfd/boxart.png b/games/7th-dragon-iii-code-vfd/boxart.png new file mode 100644 index 0000000..73733d8 Binary files /dev/null and b/games/7th-dragon-iii-code-vfd/boxart.png differ diff --git a/games/7th-dragon-iii-code-vfd/game.dat b/games/7th-dragon-iii-code-vfd/game.dat new file mode 100644 index 0000000..24e1bfe --- /dev/null +++ b/games/7th-dragon-iii-code-vfd/game.dat @@ -0,0 +1,29 @@ +title = "7th Dragon III Code: VFD" +description = "7th Dragon III Code: VFD is a JRPG developed and published by Sega. It is the third and final installment in the 7th Dragon series, previously unreleased outside Japan." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "000400000018F800" +region = "usa" +release_date = "2016-07-12" + +[[releases]] +title = "00040000001A6C00" +region = "eur" +release_date = "2016-12-02" + +[[releases]] +title = "0004000000115400" +region = "jpn" +release_date = "2015-10-15" + +[[testcases]] +title = "00040000001A6C00" +compatibility = "1" +date = "2017-11-01" +version = "HEAD-8ba2de1" +author = "jdenm8" +cpu = "Intel i5 2500K" +gpu = "AMD Radeon R9 380" +os = "Windows 10 Build 14393" diff --git a/games/7th-dragon-iii-code-vfd/icon.png b/games/7th-dragon-iii-code-vfd/icon.png new file mode 100644 index 0000000..3a9d1c2 Binary files /dev/null and b/games/7th-dragon-iii-code-vfd/icon.png differ diff --git a/games/7th-dragon-iii-code-vfd/screenshots/battle.png b/games/7th-dragon-iii-code-vfd/screenshots/battle.png new file mode 100644 index 0000000..b105821 Binary files /dev/null and b/games/7th-dragon-iii-code-vfd/screenshots/battle.png differ diff --git a/games/7th-dragon-iii-code-vfd/screenshots/dungeon.png b/games/7th-dragon-iii-code-vfd/screenshots/dungeon.png new file mode 100644 index 0000000..40164b7 Binary files /dev/null and b/games/7th-dragon-iii-code-vfd/screenshots/dungeon.png differ diff --git a/games/7th-dragon-iii-code-vfd/screenshots/in-game_menu.png b/games/7th-dragon-iii-code-vfd/screenshots/in-game_menu.png new file mode 100644 index 0000000..f1233f7 Binary files /dev/null and b/games/7th-dragon-iii-code-vfd/screenshots/in-game_menu.png differ diff --git a/games/7th-dragon-iii-code-vfd/screenshots/main_menu.png b/games/7th-dragon-iii-code-vfd/screenshots/main_menu.png new file mode 100644 index 0000000..72b207a Binary files /dev/null and b/games/7th-dragon-iii-code-vfd/screenshots/main_menu.png differ diff --git a/games/adventure-labyrinth-story/boxart.png b/games/adventure-labyrinth-story/boxart.png new file mode 100644 index 0000000..6d0e2e5 Binary files /dev/null and b/games/adventure-labyrinth-story/boxart.png differ diff --git a/games/adventure-labyrinth-story/game.dat b/games/adventure-labyrinth-story/game.dat new file mode 100644 index 0000000..adcc681 --- /dev/null +++ b/games/adventure-labyrinth-story/game.dat @@ -0,0 +1,20 @@ +title = "Adventure Labyrinth Story" +description = "Adventure Labyrinth Story, also known as \"Fushigi no Kuni no Labyrinth\" in Japan, is a dungeon crawler game with RPG elements developed by Rideon Japan. It was self-published in Japan and published by CIRCLE Entertainment in North America and Europe." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000194300" +region = "usa" +release_date = "2016-09-01" + +[[releases]] +title = "0004000000194100" +region = "eur" +release_date = "2016-07-21" + +[[releases]] +title = "0004000000185200" +region = "jpn" +release_date = "2016-02-10" diff --git a/games/adventure-labyrinth-story/icon.png b/games/adventure-labyrinth-story/icon.png new file mode 100644 index 0000000..6264825 Binary files /dev/null and b/games/adventure-labyrinth-story/icon.png differ diff --git a/games/adventure-labyrinth-story/screenshots/Labyrinth.png b/games/adventure-labyrinth-story/screenshots/Labyrinth.png new file mode 100644 index 0000000..59ea12d Binary files /dev/null and b/games/adventure-labyrinth-story/screenshots/Labyrinth.png differ diff --git a/games/adventure-labyrinth-story/screenshots/Monsters-Lair.png b/games/adventure-labyrinth-story/screenshots/Monsters-Lair.png new file mode 100644 index 0000000..db28468 Binary files /dev/null and b/games/adventure-labyrinth-story/screenshots/Monsters-Lair.png differ diff --git a/games/adventure-labyrinth-story/screenshots/Storehouse.png b/games/adventure-labyrinth-story/screenshots/Storehouse.png new file mode 100644 index 0000000..2cdb3d0 Binary files /dev/null and b/games/adventure-labyrinth-story/screenshots/Storehouse.png differ diff --git a/games/adventure-labyrinth-story/screenshots/Talk.png b/games/adventure-labyrinth-story/screenshots/Talk.png new file mode 100644 index 0000000..0ac0859 Binary files /dev/null and b/games/adventure-labyrinth-story/screenshots/Talk.png differ diff --git a/games/adventure-time-hey-ice-king/boxart.png b/games/adventure-time-hey-ice-king/boxart.png new file mode 100644 index 0000000..fd0599d Binary files /dev/null and b/games/adventure-time-hey-ice-king/boxart.png differ diff --git a/games/adventure-time-hey-ice-king/game.dat b/games/adventure-time-hey-ice-king/game.dat new file mode 100644 index 0000000..fd5be37 --- /dev/null +++ b/games/adventure-time-hey-ice-king/game.dat @@ -0,0 +1,26 @@ +title = "Adventure Time: Hey Ice King! Why'd You Steal Our Garbage?!!" +description = "Adventure Time: Hey Ice King! Why'd You Steal Our Garbage?!! is a 2D side-scrolling action-adventure video game developed by WayForward Technologies and published by Bandai Namco Games and D3 Publisher for the Nintendo 3DS and Nintendo DS. It is based on Pendleton Ward's animated television series Adventure Time." +needs_system_files = false +needs_shared_font = false +game_type = "3ds" +incomplete = true + +[[ releases ]] +title = "000400000009F200" +region = "usa" +release_date = "2012-11-20" + +[[ releases ]] +title = "0004000000112400" +region = "eur" +release_date = "2014-02-13" + +[[ testcases ]] +title = "000400000009F200" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/adventure-time-hey-ice-king/icon.png b/games/adventure-time-hey-ice-king/icon.png new file mode 100644 index 0000000..9e8f4e0 Binary files /dev/null and b/games/adventure-time-hey-ice-king/icon.png differ diff --git a/games/aero-porter/boxart.png b/games/aero-porter/boxart.png new file mode 100644 index 0000000..f40f7d7 Binary files /dev/null and b/games/aero-porter/boxart.png differ diff --git a/games/aero-porter/game.dat b/games/aero-porter/game.dat new file mode 100644 index 0000000..9972ea7 --- /dev/null +++ b/games/aero-porter/game.dat @@ -0,0 +1,25 @@ +title = "Aero Porter" +description = "Aero Porter is a Simulation Game developed by Vivarium Inc. and published by Level-5. Aero Porter was originally released at Retail as part of the Guild01 compilation in Japan. This page concerns itself with the separate eShop release. For information on the Japanese Retail release it was a part of, please see the page for Guild01." +needs_system_files = true +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "00040000000BC000" +region = "usa" +release_date = "2012-10-25" + +[[releases]] +title = "00040000000BC200" +region = "eur" +release_date = "2012-10-04" + +[[ testcases ]] +title = "00040000000BC200" +compatibility = "1" +date = "2017-07-10" +version = "HEAD-c017065" +author = "jdenm8" +cpu = "Intel Core i5 2500K" +gpu = "AMD Radeon R9 380" +os = "Windows 10 14393" diff --git a/games/aero-porter/icon.png b/games/aero-porter/icon.png new file mode 100644 index 0000000..523a539 Binary files /dev/null and b/games/aero-porter/icon.png differ diff --git a/games/aero-porter/screenshots/aeroporter-gameplay.png b/games/aero-porter/screenshots/aeroporter-gameplay.png new file mode 100644 index 0000000..e1f06cf Binary files /dev/null and b/games/aero-porter/screenshots/aeroporter-gameplay.png differ diff --git a/games/aero-porter/screenshots/aeroporter-mainmenu.png b/games/aero-porter/screenshots/aeroporter-mainmenu.png new file mode 100644 index 0000000..110521b Binary files /dev/null and b/games/aero-porter/screenshots/aeroporter-mainmenu.png differ diff --git a/games/aikatsu-365-idol-days/boxart.png b/games/aikatsu-365-idol-days/boxart.png new file mode 100644 index 0000000..62fb20b Binary files /dev/null and b/games/aikatsu-365-idol-days/boxart.png differ diff --git a/games/aikatsu-365-idol-days/game.dat b/games/aikatsu-365-idol-days/game.dat new file mode 100644 index 0000000..8526b3a --- /dev/null +++ b/games/aikatsu-365-idol-days/game.dat @@ -0,0 +1,9 @@ +title = "Aikatsu! 365 Idol Days" +description = "Aikatsu! 365 Idol Days is the third Aikatsu! game. It was developed by h.a.n.d. and published by Bandai Namco Games. The theme of the game is \"Real Idol Adventure.\" The game also includes characters from the season of the show that started airing earlier that Fall." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000014E000" +region = "jpn" +release_date = "2014-12-04" diff --git a/games/aikatsu-365-idol-days/icon.png b/games/aikatsu-365-idol-days/icon.png new file mode 100644 index 0000000..d72e659 Binary files /dev/null and b/games/aikatsu-365-idol-days/icon.png differ diff --git a/games/aikatsu-365-idol-days/screenshots/during-live.png b/games/aikatsu-365-idol-days/screenshots/during-live.png new file mode 100644 index 0000000..b34e65e Binary files /dev/null and b/games/aikatsu-365-idol-days/screenshots/during-live.png differ diff --git a/games/aikatsu-365-idol-days/screenshots/live-menu.png b/games/aikatsu-365-idol-days/screenshots/live-menu.png new file mode 100644 index 0000000..75f8017 Binary files /dev/null and b/games/aikatsu-365-idol-days/screenshots/live-menu.png differ diff --git a/games/aikatsu-365-idol-days/screenshots/title-sceen.png b/games/aikatsu-365-idol-days/screenshots/title-sceen.png new file mode 100644 index 0000000..d48bd9e Binary files /dev/null and b/games/aikatsu-365-idol-days/screenshots/title-sceen.png differ diff --git a/games/animal-crossing-happy-home-designer/boxart.png b/games/animal-crossing-happy-home-designer/boxart.png new file mode 100644 index 0000000..c7787b4 Binary files /dev/null and b/games/animal-crossing-happy-home-designer/boxart.png differ diff --git a/games/animal-crossing-happy-home-designer/game.dat b/games/animal-crossing-happy-home-designer/game.dat new file mode 100644 index 0000000..5abd2b0 --- /dev/null +++ b/games/animal-crossing-happy-home-designer/game.dat @@ -0,0 +1,19 @@ +title = "Animal Crossing: Happy Home Designer" +description = "Animal Crossing: Happy Home Designer is a sandbox video game developed and published by Nintendo, with assistance from Monolith Soft, for the Nintendo 3DS. The game is a spin-off of the Animal Crossing series where the player has to design homes for various anthropomorphic animal characters." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000014F100" +region = "usa" +release_date = "2015-09-25" + +[[releases]] +title = "000400000014F200" +region = "eur" +release_date = "2015-10-02" + +[[releases]] +title = "000400000014F000" +region = "jpn" +release_date = "2015-07-30" diff --git a/games/animal-crossing-happy-home-designer/icon.png b/games/animal-crossing-happy-home-designer/icon.png new file mode 100644 index 0000000..0e6050c Binary files /dev/null and b/games/animal-crossing-happy-home-designer/icon.png differ diff --git a/games/animal-crossing-happy-home-designer/screenshots/conversation.png b/games/animal-crossing-happy-home-designer/screenshots/conversation.png new file mode 100644 index 0000000..bb6ab9b Binary files /dev/null and b/games/animal-crossing-happy-home-designer/screenshots/conversation.png differ diff --git a/games/animal-crossing-happy-home-designer/screenshots/design.png b/games/animal-crossing-happy-home-designer/screenshots/design.png new file mode 100644 index 0000000..f53f1ae Binary files /dev/null and b/games/animal-crossing-happy-home-designer/screenshots/design.png differ diff --git a/games/animal-crossing-happy-home-designer/screenshots/title-screen.png b/games/animal-crossing-happy-home-designer/screenshots/title-screen.png new file mode 100644 index 0000000..29e1f2a Binary files /dev/null and b/games/animal-crossing-happy-home-designer/screenshots/title-screen.png differ diff --git a/games/animal-crossing-new-leaf-update-ver-15/boxart.png b/games/animal-crossing-new-leaf-update-ver-15/boxart.png new file mode 100644 index 0000000..6428ef3 Binary files /dev/null and b/games/animal-crossing-new-leaf-update-ver-15/boxart.png differ diff --git a/games/animal-crossing-new-leaf-update-ver-15/game.dat b/games/animal-crossing-new-leaf-update-ver-15/game.dat new file mode 100644 index 0000000..bfd3d26 --- /dev/null +++ b/games/animal-crossing-new-leaf-update-ver-15/game.dat @@ -0,0 +1,45 @@ +title = "Animal Crossing: New Leaf" +description = "Animal Crossing: New Leaf is a life simulation video game developed and published by Nintendo for the Nintendo 3DS console. In the game, the player character takes on the role of mayor in a town populated with anthropomorphic animals. An updated version was released as \"Animal Crossing: New Leaf - Welcome Amiibo\"." +github_issues = [3438] +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "0004000000086300" +region = "usa" +release_date = "2013-06-09" + +[[ releases ]] +title = "0004000000086400" +region = "eur" +release_date = "2013-06-14" + +[[ releases ]] +title = "0004000000086200" +region = "jpn" +release_date = "2012-11-08" + +[[releases]] +title = "0004000000198E00" +region = "usa" +release_date = "2016-12-05" + +[[releases]] +title = "0004000000198F00" +region = "eur" +release_date = "2016-11-25" + +[[releases]] +title = "0004000000198D00" +region = "jpn" +release_date = "2016-11-23" + +[[ testcases ]] +title = "0004000000086300" +compatibility = "3" +date = "2017-05-31" +version = "HEAD-4857eb4" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/animal-crossing-new-leaf-update-ver-15/icon.png b/games/animal-crossing-new-leaf-update-ver-15/icon.png new file mode 100644 index 0000000..5b7aaef Binary files /dev/null and b/games/animal-crossing-new-leaf-update-ver-15/icon.png differ diff --git a/games/animal-crossing-new-leaf-update-ver-15/screenshots/continue-screen.png b/games/animal-crossing-new-leaf-update-ver-15/screenshots/continue-screen.png new file mode 100644 index 0000000..df1cbfd Binary files /dev/null and b/games/animal-crossing-new-leaf-update-ver-15/screenshots/continue-screen.png differ diff --git a/games/animal-crossing-new-leaf-update-ver-15/screenshots/in-game.png b/games/animal-crossing-new-leaf-update-ver-15/screenshots/in-game.png new file mode 100644 index 0000000..8ed9254 Binary files /dev/null and b/games/animal-crossing-new-leaf-update-ver-15/screenshots/in-game.png differ diff --git a/games/animal-crossing-new-leaf-update-ver-15/screenshots/welcome-amiibo-start-screen.png b/games/animal-crossing-new-leaf-update-ver-15/screenshots/welcome-amiibo-start-screen.png new file mode 100644 index 0000000..e90ac34 Binary files /dev/null and b/games/animal-crossing-new-leaf-update-ver-15/screenshots/welcome-amiibo-start-screen.png differ diff --git a/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/boxart.png b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/boxart.png new file mode 100644 index 0000000..32d929e Binary files /dev/null and b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/boxart.png differ diff --git a/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/game.dat b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/game.dat new file mode 100644 index 0000000..89dd3a3 --- /dev/null +++ b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/game.dat @@ -0,0 +1,9 @@ +title = "Ansatsu Kyoushitsu - Koro-sensei Daihouimou!!" +description = "A video game based on the series, Assassination Classroom: Koro-sensei's Great Besiegement!! (暗殺教室 殺せんせー大包囲網!! Ansatsu Kyōshitsu: Koro-sensei Dai Hōimō), was developed by Bandai Namco Games and released on Nintendo 3DS in Japan." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000152900" +region = "jpn" +release_date = "2015-03-12" diff --git a/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/icon.png b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/icon.png new file mode 100644 index 0000000..d7833da Binary files /dev/null and b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/icon.png differ diff --git a/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/charactercreation.png b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/charactercreation.png new file mode 100644 index 0000000..db09092 Binary files /dev/null and b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/charactercreation.png differ diff --git a/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/ingame.png b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/ingame.png new file mode 100644 index 0000000..6244c4e Binary files /dev/null and b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/ingame.png differ diff --git a/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/titlescreen.png b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/titlescreen.png new file mode 100644 index 0000000..407e320 Binary files /dev/null and b/games/ansatsu-kyoushitsu-koro-sensei-daihouimou/screenshots/titlescreen.png differ diff --git a/games/asphalt-3d/boxart.png b/games/asphalt-3d/boxart.png new file mode 100644 index 0000000..1f20c4c Binary files /dev/null and b/games/asphalt-3d/boxart.png differ diff --git a/games/asphalt-3d/game.dat b/games/asphalt-3d/game.dat new file mode 100644 index 0000000..4c8282b --- /dev/null +++ b/games/asphalt-3d/game.dat @@ -0,0 +1,29 @@ +title = "Asphalt 3D" +description = "Asphalt 3D, released in Japan as Asphalt 3D: Nitro Racing (アスファルト 3ディー: ニトロ レーシング), is a racing game published by Ubisoft (Konami in Japan) and developed by Gameloft, in which the player must maneuver an automobile to compete against computer-controlled drivers on various race tracks. Players earn rewards such as car upgrades and XP points for winning races throughout the game, and reaching higher levels allows them to use better sports cars to unlock." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000034C00" +region = "usa" +release_date = "2011-03-27" + +[[releases]] +title = "0004000000037600" +region = "eur" +release_date = "2011-03-25" + +[[releases]] +title = "0004000000033300" +region = "jpn" +release_date = "2011-03-10" + +[[testcases]] +title = "0004000000037600" +compatibility = "1" +date = "2017-10-13" +version = "HEAD-e1bb198" +cpu = "Intel Core i7-4710HQ" +gpu = "NVIDIA GeForce GTX 970M" +os = "Windows 10 15063" +author = "danzel" diff --git a/games/asphalt-3d/icon.png b/games/asphalt-3d/icon.png new file mode 100644 index 0000000..f68b8e0 Binary files /dev/null and b/games/asphalt-3d/icon.png differ diff --git a/games/asphalt-3d/screenshots/in-game-screenshot-2.png b/games/asphalt-3d/screenshots/in-game-screenshot-2.png new file mode 100644 index 0000000..65324c3 Binary files /dev/null and b/games/asphalt-3d/screenshots/in-game-screenshot-2.png differ diff --git a/games/asphalt-3d/screenshots/in-game-screenshot-3.png b/games/asphalt-3d/screenshots/in-game-screenshot-3.png new file mode 100644 index 0000000..84e9b27 Binary files /dev/null and b/games/asphalt-3d/screenshots/in-game-screenshot-3.png differ diff --git a/games/asphalt-3d/screenshots/in-game-screenshot.png b/games/asphalt-3d/screenshots/in-game-screenshot.png new file mode 100644 index 0000000..6bfebaa Binary files /dev/null and b/games/asphalt-3d/screenshots/in-game-screenshot.png differ diff --git a/games/attack-of-the-friday-monsters-a-tokyo-tale/boxart.png b/games/attack-of-the-friday-monsters-a-tokyo-tale/boxart.png new file mode 100644 index 0000000..3bc889d Binary files /dev/null and b/games/attack-of-the-friday-monsters-a-tokyo-tale/boxart.png differ diff --git a/games/attack-of-the-friday-monsters-a-tokyo-tale/game.dat b/games/attack-of-the-friday-monsters-a-tokyo-tale/game.dat new file mode 100644 index 0000000..e97ee3a --- /dev/null +++ b/games/attack-of-the-friday-monsters-a-tokyo-tale/game.dat @@ -0,0 +1,20 @@ +title = "Attack of the Friday Monsters! A Tokyo Tale" +description = "Attack of the Friday Monsters! A Tokyo Tale is a life simulation game developed by Millennium Kitchen and published by Level-5. The game follows a boy named Sohta who lives in a town where monsters and superheroes from 1970s tokusatsu shows appear every Friday. It is part of the Guild02 series which is a compilation of three games designed by Keiji Inafune, Kazuya Asano, Takemaru Abiko and Kaz Ayabe." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000E7600" +region = "usa" +release_date = "2013-07-18" + +[[ releases ]] +title = "00040000000E7500" +region = "eur" +release_date = "2013-07-18" + +[[ releases ]] +title = "00040000000D0D00" +region = "jpn" +release_date = "2013-03-13" diff --git a/games/attack-of-the-friday-monsters-a-tokyo-tale/icon.png b/games/attack-of-the-friday-monsters-a-tokyo-tale/icon.png new file mode 100644 index 0000000..eda9237 Binary files /dev/null and b/games/attack-of-the-friday-monsters-a-tokyo-tale/icon.png differ diff --git a/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/monster-cards.png b/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/monster-cards.png new file mode 100644 index 0000000..41915b8 Binary files /dev/null and b/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/monster-cards.png differ diff --git a/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/starting.png b/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/starting.png new file mode 100644 index 0000000..5a67cf3 Binary files /dev/null and b/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/starting.png differ diff --git a/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/tv-station.png b/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/tv-station.png new file mode 100644 index 0000000..e920b97 Binary files /dev/null and b/games/attack-of-the-friday-monsters-a-tokyo-tale/screenshots/tv-station.png differ diff --git a/games/attack-on-titan-humanity-in-chains/boxart.png b/games/attack-on-titan-humanity-in-chains/boxart.png new file mode 100644 index 0000000..b7bc806 Binary files /dev/null and b/games/attack-on-titan-humanity-in-chains/boxart.png differ diff --git a/games/attack-on-titan-humanity-in-chains/game.dat b/games/attack-on-titan-humanity-in-chains/game.dat new file mode 100644 index 0000000..fd55337 --- /dev/null +++ b/games/attack-on-titan-humanity-in-chains/game.dat @@ -0,0 +1,25 @@ +title = "Attack on Titan: Humanity in Chains" +description = "Attack on Titan: Humanity in Chains , known as \"Shingeki no Kyojin: Humanity in Chains\" in Europe and \"Shingeki no Kyojin: Jinrui Saigo no Tsubasa CHAIN\" in Japan, is an action game developed by Spike Chunsoft. It was published by Atlus in North America and Europe, and Spike Chunsoft in Japan. The game was originally released in Japan as \"Shingeki no Kyojin: Jinrui Saigo no Tsubasa\"." +github_issues = [1744] +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000131E00" +region = "usa" +release_date = "2015-05-12" + +[[ releases ]] +title = "0004000000152000" +region = "eur" +release_date = "2015-07-02" + +[[ releases ]] +title = "0004000000134500" +region = "jpn" +release_date = "2014-12-04" + +[[ releases ]] +title = "00040000000DF800" +region = "jpn" +release_date = "2013-12-05" \ No newline at end of file diff --git a/games/attack-on-titan-humanity-in-chains/icon.png b/games/attack-on-titan-humanity-in-chains/icon.png new file mode 100644 index 0000000..676049b Binary files /dev/null and b/games/attack-on-titan-humanity-in-chains/icon.png differ diff --git a/games/attack-on-titan-humanity-in-chains/screenshots/first-level.png b/games/attack-on-titan-humanity-in-chains/screenshots/first-level.png new file mode 100644 index 0000000..978325d Binary files /dev/null and b/games/attack-on-titan-humanity-in-chains/screenshots/first-level.png differ diff --git a/games/attack-on-titan-humanity-in-chains/screenshots/intro-cutscene.png b/games/attack-on-titan-humanity-in-chains/screenshots/intro-cutscene.png new file mode 100644 index 0000000..45375a6 Binary files /dev/null and b/games/attack-on-titan-humanity-in-chains/screenshots/intro-cutscene.png differ diff --git a/games/attack-on-titan-humanity-in-chains/screenshots/title-screen.png b/games/attack-on-titan-humanity-in-chains/screenshots/title-screen.png new file mode 100644 index 0000000..2ba1a71 Binary files /dev/null and b/games/attack-on-titan-humanity-in-chains/screenshots/title-screen.png differ diff --git a/games/attack-on-titan-humanity-in-chains/screenshots/tutorial.png b/games/attack-on-titan-humanity-in-chains/screenshots/tutorial.png new file mode 100644 index 0000000..217b2ff Binary files /dev/null and b/games/attack-on-titan-humanity-in-chains/screenshots/tutorial.png differ diff --git a/games/azure-striker-gunvolt-striker-pack-update-ver-12/boxart.png b/games/azure-striker-gunvolt-striker-pack-update-ver-12/boxart.png new file mode 100644 index 0000000..a9f2eda Binary files /dev/null and b/games/azure-striker-gunvolt-striker-pack-update-ver-12/boxart.png differ diff --git a/games/azure-striker-gunvolt-striker-pack-update-ver-12/game.dat b/games/azure-striker-gunvolt-striker-pack-update-ver-12/game.dat new file mode 100644 index 0000000..e69c774 --- /dev/null +++ b/games/azure-striker-gunvolt-striker-pack-update-ver-12/game.dat @@ -0,0 +1,20 @@ +title = "Azure Striker Gunvolt - Striker Pack" +description = "Azure Striker Gunvolt, is an action-platform game. In addition to utilizing gameplay similar to Mega Man Zero, Azure Striker Gunvolt also introduced new gameplay elements such as Gunvolt's ability to 'tag' enemies and target many at once, adding an additional layer of complexity to the genre." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000001A5600" +region = "usa" +release_date = "2016-10-04" + +[[ testcases ]] +compatibility = "1" +date = "2017-06-19" +title = "00040000001A5600" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/azure-striker-gunvolt-striker-pack-update-ver-12/icon.png b/games/azure-striker-gunvolt-striker-pack-update-ver-12/icon.png new file mode 100644 index 0000000..1dbb554 Binary files /dev/null and b/games/azure-striker-gunvolt-striker-pack-update-ver-12/icon.png differ diff --git a/games/barbie-and-her-sisters-puppy-rescue/boxart.png b/games/barbie-and-her-sisters-puppy-rescue/boxart.png new file mode 100644 index 0000000..05a98f1 Binary files /dev/null and b/games/barbie-and-her-sisters-puppy-rescue/boxart.png differ diff --git a/games/barbie-and-her-sisters-puppy-rescue/game.dat b/games/barbie-and-her-sisters-puppy-rescue/game.dat new file mode 100644 index 0000000..c03811f --- /dev/null +++ b/games/barbie-and-her-sisters-puppy-rescue/game.dat @@ -0,0 +1,14 @@ +title = "Barbie and Her Sisters: Puppy Rescue" +description = "Barbie and Her Sisters: Puppy Rescue is an open-world simulation game developed by Torus Games and published by Little Orbit. As the title implies, players take the role of Barbie as she runs a dog rescue shelter where she and her sisters seek out and aid missing and distressed puppies." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000176000" +region = "usa" +release_date = "2015-11-03" + +[[releases]] +title = "000400000017B000" +region = "eur" +release_date = "2015-11-19" diff --git a/games/barbie-and-her-sisters-puppy-rescue/icon.png b/games/barbie-and-her-sisters-puppy-rescue/icon.png new file mode 100644 index 0000000..99c788f Binary files /dev/null and b/games/barbie-and-her-sisters-puppy-rescue/icon.png differ diff --git a/games/barbie-and-her-sisters-puppy-rescue/screenshots/gameplay.png b/games/barbie-and-her-sisters-puppy-rescue/screenshots/gameplay.png new file mode 100644 index 0000000..aa8500f Binary files /dev/null and b/games/barbie-and-her-sisters-puppy-rescue/screenshots/gameplay.png differ diff --git a/games/barbie-and-her-sisters-puppy-rescue/screenshots/title-screen.png b/games/barbie-and-her-sisters-puppy-rescue/screenshots/title-screen.png new file mode 100644 index 0000000..73f1c4c Binary files /dev/null and b/games/barbie-and-her-sisters-puppy-rescue/screenshots/title-screen.png differ diff --git a/games/batman-arkham-origins-blackgate/boxart.png b/games/batman-arkham-origins-blackgate/boxart.png new file mode 100644 index 0000000..d2e7f8a Binary files /dev/null and b/games/batman-arkham-origins-blackgate/boxart.png differ diff --git a/games/batman-arkham-origins-blackgate/game.dat b/games/batman-arkham-origins-blackgate/game.dat new file mode 100644 index 0000000..41017bb --- /dev/null +++ b/games/batman-arkham-origins-blackgate/game.dat @@ -0,0 +1,24 @@ +title = "Batman: Arkham Origins Blackgate" +description = "Batman: Arkham Origins Blackgate is a 2.5-D Metroid-style exploration action game, developed by Armature Studio. This is a spin-off to Batman: Arkham Origins. Alongside its console-counterpart, Batman: Arkham Origins Blackgate adapts the proven Rocksteady formula into a portable setting." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000D6B00" +region = "usa" +release_date = "2013-10-25" + +[[releases]] +title = "00040000000D7000" +region = "eur" +release_date = "2013-10-25" + +[[testcases]] +title = "00040000000D7000" +compatibility = "1" +date = "2017-10-08" +version = "HEAD-20e19a3" +cpu = "Intel Core i5-3570HQ" +gpu = "Nvidia Geforce GTX 650M" +os = "Windows 10 15063" +author = "eclenaeu" diff --git a/games/batman-arkham-origins-blackgate/icon.png b/games/batman-arkham-origins-blackgate/icon.png new file mode 100644 index 0000000..c9b0ac6 Binary files /dev/null and b/games/batman-arkham-origins-blackgate/icon.png differ diff --git a/games/batman-arkham-origins-blackgate/screenshots/f.png b/games/batman-arkham-origins-blackgate/screenshots/f.png new file mode 100644 index 0000000..3cf9291 Binary files /dev/null and b/games/batman-arkham-origins-blackgate/screenshots/f.png differ diff --git a/games/batman-arkham-origins-blackgate/screenshots/ms.png b/games/batman-arkham-origins-blackgate/screenshots/ms.png new file mode 100644 index 0000000..209d14d Binary files /dev/null and b/games/batman-arkham-origins-blackgate/screenshots/ms.png differ diff --git a/games/batman-arkham-origins-blackgate/screenshots/twcw.png b/games/batman-arkham-origins-blackgate/screenshots/twcw.png new file mode 100644 index 0000000..8123979 Binary files /dev/null and b/games/batman-arkham-origins-blackgate/screenshots/twcw.png differ diff --git a/games/bike-rider-dx/boxart.png b/games/bike-rider-dx/boxart.png new file mode 100644 index 0000000..5b19392 Binary files /dev/null and b/games/bike-rider-dx/boxart.png differ diff --git a/games/bike-rider-dx/game.dat b/games/bike-rider-dx/game.dat new file mode 100644 index 0000000..fa0b332 --- /dev/null +++ b/games/bike-rider-dx/game.dat @@ -0,0 +1,26 @@ +title = "Bike Rider DX" +description = "Enjoy a new kind of jump 'n run action, riding your bike on bumpy roads, crossing deep valleys and dodging all kinds of obstacles. Travel the globe to be the champion of the WORLD TOUR mode, or break the highscore in the endless GRAND PRIX mode and see how far you can go. Will you be able to collect all gold coins and unlock the special bonus stages? Just jump!" +incomplete = true +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "00040000000FC000" +region = "usa" +release_date = "2013-08-01" + +[[ releases ]] +title = "00040000000F8400" +region = "eur" +release_date = "2013-08-15" + +[[ testcases ]] +compatibility = "1" +date = "2017-06-09" +title = "00040000000F8400" +version = "HEAD-9a8a90b" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/bike-rider-dx/icon.png b/games/bike-rider-dx/icon.png new file mode 100644 index 0000000..2692c44 Binary files /dev/null and b/games/bike-rider-dx/icon.png differ diff --git a/games/bloody-vampire/boxart.png b/games/bloody-vampire/boxart.png new file mode 100644 index 0000000..cd5b6d9 Binary files /dev/null and b/games/bloody-vampire/boxart.png differ diff --git a/games/bloody-vampire/game.dat b/games/bloody-vampire/game.dat new file mode 100644 index 0000000..9ff3797 --- /dev/null +++ b/games/bloody-vampire/game.dat @@ -0,0 +1,20 @@ +title = "Bloody Vampire" +description = "Bloody Vampire is a action-adventure platform game developed by Silver Star Japan. It was self-published in Japan and published by Agetec in North America and Europe." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000BA400" +region = "usa" +release_date = "2013-01-31" + +[[releases]] +title = "00040000000D1800" +region = "eur" +release_date = "2013-05-09" + +[[releases]] +title = "0004000000088B00" +region = "jpn" +release_date = "2012-04-25" diff --git a/games/bloody-vampire/icon.png b/games/bloody-vampire/icon.png new file mode 100644 index 0000000..838d365 Binary files /dev/null and b/games/bloody-vampire/icon.png differ diff --git a/games/bloody-vampire/screenshots/History.png b/games/bloody-vampire/screenshots/History.png new file mode 100644 index 0000000..1166701 Binary files /dev/null and b/games/bloody-vampire/screenshots/History.png differ diff --git a/games/bloody-vampire/screenshots/Ingame.png b/games/bloody-vampire/screenshots/Ingame.png new file mode 100644 index 0000000..4fbe727 Binary files /dev/null and b/games/bloody-vampire/screenshots/Ingame.png differ diff --git a/games/bloody-vampire/screenshots/Shop.png b/games/bloody-vampire/screenshots/Shop.png new file mode 100644 index 0000000..b1573dc Binary files /dev/null and b/games/bloody-vampire/screenshots/Shop.png differ diff --git a/games/bloody-vampire/screenshots/Status.png b/games/bloody-vampire/screenshots/Status.png new file mode 100644 index 0000000..1f54e37 Binary files /dev/null and b/games/bloody-vampire/screenshots/Status.png differ diff --git a/games/boxboy/boxart.png b/games/boxboy/boxart.png new file mode 100644 index 0000000..831f4fc Binary files /dev/null and b/games/boxboy/boxart.png differ diff --git a/games/boxboy/game.dat b/games/boxboy/game.dat new file mode 100644 index 0000000..2b8f33b --- /dev/null +++ b/games/boxboy/game.dat @@ -0,0 +1,20 @@ +title = "BoxBoy!" +description = "BoxBoy! is a puzzle platformer video game developed by HAL Laboratory and published by Nintendo for the Nintendo 3DS console. Players control Qbby, a square-shaped character who can produce a string of connected boxes. The boxes are used to overcome obstacles in stages that Qbby must be guided through." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000154500" +region = "usa" +release_date = "2015-04-02" + +[[releases]] +title = "0004000000154600" +region = "eur" +release_date = "2015-04-02" + +[[releases]] +title = "0004000000126800" +region = "jpn" +release_date = "2015-01-15" diff --git a/games/boxboy/icon.png b/games/boxboy/icon.png new file mode 100644 index 0000000..b7f064e Binary files /dev/null and b/games/boxboy/icon.png differ diff --git a/games/boxboy/screenshots/in-game.png b/games/boxboy/screenshots/in-game.png new file mode 100644 index 0000000..df068b6 Binary files /dev/null and b/games/boxboy/screenshots/in-game.png differ diff --git a/games/boxboy/screenshots/menu.png b/games/boxboy/screenshots/menu.png new file mode 100644 index 0000000..462d8e4 Binary files /dev/null and b/games/boxboy/screenshots/menu.png differ diff --git a/games/boxboy/screenshots/shop.png b/games/boxboy/screenshots/shop.png new file mode 100644 index 0000000..b6f30a2 Binary files /dev/null and b/games/boxboy/screenshots/shop.png differ diff --git a/games/brain-age-concentration-training/boxart.png b/games/brain-age-concentration-training/boxart.png new file mode 100644 index 0000000..ad04b8e Binary files /dev/null and b/games/brain-age-concentration-training/boxart.png differ diff --git a/games/brain-age-concentration-training/game.dat b/games/brain-age-concentration-training/game.dat new file mode 100644 index 0000000..b6832f8 --- /dev/null +++ b/games/brain-age-concentration-training/game.dat @@ -0,0 +1,24 @@ +title = "Brain Age: Concentration Training" +description = "Brain Age: Concentration Training, known in Europe and Australia as \"Dr. Kawashima's Devilish Brain Training: Can You Stay Focused?\", is a puzzle video game developed and published by Nintendo, and is the fourth major entry in the Brain Age series. It features a selection of activities and minigames that are designed to stimulate and improve the player's concentration and working memory." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "00040000000B3C00" +region = "usa" +release_date = "2013-02-10" + +[[releases]] +title = "00040000000B3D00" +region = "eur" +release_date = "2017-07-28" + +[[releases]] +title = "0004000000043700" +region = "jpn" +release_date = "2012-07-28" + +[[releases]] +title = "00040000000CB100" +region = "kor" +release_date = "2013-09-05" diff --git a/games/brain-age-concentration-training/icon.png b/games/brain-age-concentration-training/icon.png new file mode 100644 index 0000000..50e427c Binary files /dev/null and b/games/brain-age-concentration-training/icon.png differ diff --git a/games/brain-age-concentration-training/screenshots/Main-Menu-Devilish-Training.png b/games/brain-age-concentration-training/screenshots/Main-Menu-Devilish-Training.png new file mode 100644 index 0000000..1606d92 Binary files /dev/null and b/games/brain-age-concentration-training/screenshots/Main-Menu-Devilish-Training.png differ diff --git a/games/brain-age-concentration-training/screenshots/calculations.png b/games/brain-age-concentration-training/screenshots/calculations.png new file mode 100644 index 0000000..90f2f06 Binary files /dev/null and b/games/brain-age-concentration-training/screenshots/calculations.png differ diff --git a/games/brain-age-concentration-training/screenshots/devilish-dr.png b/games/brain-age-concentration-training/screenshots/devilish-dr.png new file mode 100644 index 0000000..d2d1e31 Binary files /dev/null and b/games/brain-age-concentration-training/screenshots/devilish-dr.png differ diff --git a/games/brain-age-concentration-training/screenshots/klondike.png b/games/brain-age-concentration-training/screenshots/klondike.png new file mode 100644 index 0000000..b0d3410 Binary files /dev/null and b/games/brain-age-concentration-training/screenshots/klondike.png differ diff --git a/games/bravely-default/boxart.png b/games/bravely-default/boxart.png new file mode 100644 index 0000000..42a5871 Binary files /dev/null and b/games/bravely-default/boxart.png differ diff --git a/games/bravely-default/game.dat b/games/bravely-default/game.dat new file mode 100644 index 0000000..4798b28 --- /dev/null +++ b/games/bravely-default/game.dat @@ -0,0 +1,30 @@ +title = "Bravely Default" +description = "Bravely Default, known in Japan as Bravely Default: Flying Fairy, is a role-playing video game developed by Silicon Studio for the Nintendo 3DS handheld video game console." +github_issues = [2745] +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "00040000000FC500" +region = "usa" +release_date = "2014-02-07" + +[[ releases ]] +title = "00040000000FC600" +region = "eur" +release_date = "2013-12-06" + +[[ releases ]] +title = "000400000005E900" +region = "jpn" +release_date = "2012-10-11" + +[[ testcases ]] +title = "00040000000FC600" +compatibility = "1" +date = "2017-09-07" +version = "HEAD-e0cdaf7" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/bravely-default/icon.png b/games/bravely-default/icon.png new file mode 100644 index 0000000..8c32c14 Binary files /dev/null and b/games/bravely-default/icon.png differ diff --git a/games/bravely-default/savefiles/new-game-plus.dat b/games/bravely-default/savefiles/new-game-plus.dat new file mode 100644 index 0000000..12e9946 --- /dev/null +++ b/games/bravely-default/savefiles/new-game-plus.dat @@ -0,0 +1,4 @@ +title = "New Game Plus" +description = "New Game Plus enabled. Character & Job Levels Maxed." +author = "Kewlan" +title_id = "00040000000FC600" \ No newline at end of file diff --git a/games/bravely-default/savefiles/new-game-plus.zip b/games/bravely-default/savefiles/new-game-plus.zip new file mode 100644 index 0000000..e737ab5 Binary files /dev/null and b/games/bravely-default/savefiles/new-game-plus.zip differ diff --git a/games/bravely-default/screenshots/Battle.png b/games/bravely-default/screenshots/Battle.png new file mode 100644 index 0000000..7e9e85b Binary files /dev/null and b/games/bravely-default/screenshots/Battle.png differ diff --git a/games/bravely-default/screenshots/Dungeon.png b/games/bravely-default/screenshots/Dungeon.png new file mode 100644 index 0000000..5fb41fa Binary files /dev/null and b/games/bravely-default/screenshots/Dungeon.png differ diff --git a/games/bravely-default/screenshots/Title-Screen.png b/games/bravely-default/screenshots/Title-Screen.png new file mode 100644 index 0000000..83b8a45 Binary files /dev/null and b/games/bravely-default/screenshots/Title-Screen.png differ diff --git a/games/bravely-second-end-layer/boxart.png b/games/bravely-second-end-layer/boxart.png new file mode 100644 index 0000000..0d0e288 Binary files /dev/null and b/games/bravely-second-end-layer/boxart.png differ diff --git a/games/bravely-second-end-layer/game.dat b/games/bravely-second-end-layer/game.dat new file mode 100644 index 0000000..749c9ef --- /dev/null +++ b/games/bravely-second-end-layer/game.dat @@ -0,0 +1,29 @@ +title = "Bravely Second: End Layer" +description = "Bravely Second: End Layer is a Japanese role-playing video game developed by Silicon Studio and published by Square Enix for the Nintendo 3DS, and is the sequel to Bravely Default." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000017BA00" +region = "usa" +release_date = "2016-04-15" + +[[releases]] +title = "000400000017BB00" +region = "eur" +release_date = "2016-02-26" + +[[releases]] +title = "00040000000DC800" +region = "jpn" +release_date = "2015-04-23" + +[[testcases]] +title = "000400000017BA00" +compatibility = "1" +date = "2017-10-07" +version = "HEAD-84c344b" +cpu = "Intel Core i7-7700HQ" +gpu = "NVIDIA GeForce GTX 1060" +os = "Windows 10 15063" +author = "NeiBragwin" diff --git a/games/bravely-second-end-layer/icon.png b/games/bravely-second-end-layer/icon.png new file mode 100644 index 0000000..0322ab4 Binary files /dev/null and b/games/bravely-second-end-layer/icon.png differ diff --git a/games/bravely-second-end-layer/screenshots/In-battle.png b/games/bravely-second-end-layer/screenshots/In-battle.png new file mode 100644 index 0000000..3e6e10b Binary files /dev/null and b/games/bravely-second-end-layer/screenshots/In-battle.png differ diff --git a/games/bravely-second-end-layer/screenshots/In-dungeon.png b/games/bravely-second-end-layer/screenshots/In-dungeon.png new file mode 100644 index 0000000..0afcf12 Binary files /dev/null and b/games/bravely-second-end-layer/screenshots/In-dungeon.png differ diff --git a/games/bravely-second-end-layer/screenshots/Worldmap.png b/games/bravely-second-end-layer/screenshots/Worldmap.png new file mode 100644 index 0000000..c39669d Binary files /dev/null and b/games/bravely-second-end-layer/screenshots/Worldmap.png differ diff --git a/games/bust-a-move-universe/boxart.png b/games/bust-a-move-universe/boxart.png new file mode 100644 index 0000000..e8b4f7c Binary files /dev/null and b/games/bust-a-move-universe/boxart.png differ diff --git a/games/bust-a-move-universe/game.dat b/games/bust-a-move-universe/game.dat new file mode 100644 index 0000000..58535d7 --- /dev/null +++ b/games/bust-a-move-universe/game.dat @@ -0,0 +1,31 @@ +title = "Bust-a-Move Universe" +description = "Bust-a-Move Universe is a puzzle video game developed by Arika and published by Square Enix for the Nintendo 3DS." +needs_system_files = false +needs_shared_font = false +game_type = "3ds" +incomplete = true + +[[ releases ]] +title = "0004000000035E00" +region = "usa" +release_date = "2011-03-27" + +[[ releases ]] +title = "0004000000033800" +region = "eur" +release_date = "2011-04-22" + +[[ releases ]] +title = "0004000000032A00" +region = "jpn" +release_date = "2011-02-26" + +[[ testcases ]] +title = "0004000000035E00" +compatibility = "1" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5-6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/bust-a-move-universe/icon.png b/games/bust-a-move-universe/icon.png new file mode 100644 index 0000000..c382c06 Binary files /dev/null and b/games/bust-a-move-universe/icon.png differ diff --git a/games/captain-toad-treasure-tracker/boxart.png b/games/captain-toad-treasure-tracker/boxart.png new file mode 100644 index 0000000..04e6339 Binary files /dev/null and b/games/captain-toad-treasure-tracker/boxart.png differ diff --git a/games/captain-toad-treasure-tracker/game.dat b/games/captain-toad-treasure-tracker/game.dat new file mode 100644 index 0000000..d764a31 --- /dev/null +++ b/games/captain-toad-treasure-tracker/game.dat @@ -0,0 +1,20 @@ +title = "Captain Toad: Treasure Tracker" +description = "Captain Toad: Treasure Tracker is an action puzzle video game developed and published by Nintendo. It is a spin-off of the Super Mario series which builds upon an uncommon type of level in Super Mario 3D World." +github_issues = [3920] +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "00040000001CB100" +region = "usa" +release_date = "2018-07-13" + +[[releases]] +title = "00040000001CB200" +region = "eur" +release_date = "2018-07-13" + +[[releases]] +title = "00040000001CB000" +region = "jpn" +release_date = "2018-07-13" diff --git a/games/captain-toad-treasure-tracker/icon.png b/games/captain-toad-treasure-tracker/icon.png new file mode 100644 index 0000000..81d8329 Binary files /dev/null and b/games/captain-toad-treasure-tracker/icon.png differ diff --git a/games/captain-toad-treasure-tracker/screenshots/ingame.png b/games/captain-toad-treasure-tracker/screenshots/ingame.png new file mode 100644 index 0000000..ddd96f3 Binary files /dev/null and b/games/captain-toad-treasure-tracker/screenshots/ingame.png differ diff --git a/games/captain-toad-treasure-tracker/screenshots/levelmenu.png b/games/captain-toad-treasure-tracker/screenshots/levelmenu.png new file mode 100644 index 0000000..7c61b64 Binary files /dev/null and b/games/captain-toad-treasure-tracker/screenshots/levelmenu.png differ diff --git a/games/captain-toad-treasure-tracker/screenshots/main-menu.png b/games/captain-toad-treasure-tracker/screenshots/main-menu.png new file mode 100644 index 0000000..72525d7 Binary files /dev/null and b/games/captain-toad-treasure-tracker/screenshots/main-menu.png differ diff --git a/games/cardfight-vanguard-ride-to-victory/boxart.png b/games/cardfight-vanguard-ride-to-victory/boxart.png new file mode 100644 index 0000000..6783db1 Binary files /dev/null and b/games/cardfight-vanguard-ride-to-victory/boxart.png differ diff --git a/games/cardfight-vanguard-ride-to-victory/game.dat b/games/cardfight-vanguard-ride-to-victory/game.dat new file mode 100644 index 0000000..bf77c33 --- /dev/null +++ b/games/cardfight-vanguard-ride-to-victory/game.dat @@ -0,0 +1,9 @@ +title = "Cardfight!! Vanguard: Ride to Victory!!" +description = "Cardfight!! Vanguard: Ride to Victory!! is a collectible card game developed and published by FuRyu. It is the first game of Cardfight!! Vanguard for the Nintendo 3DS. The game features an original story which stars a new cardfighter protagonist who is aiming to win at a national tournament." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000AC700" +region = "jpn" +release_date = "2013-04-11" diff --git a/games/cardfight-vanguard-ride-to-victory/icon.png b/games/cardfight-vanguard-ride-to-victory/icon.png new file mode 100644 index 0000000..584b666 Binary files /dev/null and b/games/cardfight-vanguard-ride-to-victory/icon.png differ diff --git a/games/cardfight-vanguard-ride-to-victory/screenshots/battle.png b/games/cardfight-vanguard-ride-to-victory/screenshots/battle.png new file mode 100644 index 0000000..2bce9ee Binary files /dev/null and b/games/cardfight-vanguard-ride-to-victory/screenshots/battle.png differ diff --git a/games/cardfight-vanguard-ride-to-victory/screenshots/titlescreen.png b/games/cardfight-vanguard-ride-to-victory/screenshots/titlescreen.png new file mode 100644 index 0000000..326df1e Binary files /dev/null and b/games/cardfight-vanguard-ride-to-victory/screenshots/titlescreen.png differ diff --git a/games/cardfight-vanguard-ride-to-victory/screenshots/worldmap.png b/games/cardfight-vanguard-ride-to-victory/screenshots/worldmap.png new file mode 100644 index 0000000..b8e10e2 Binary files /dev/null and b/games/cardfight-vanguard-ride-to-victory/screenshots/worldmap.png differ diff --git a/games/castlevania-lords-of-shadow-mirror-of-fate/boxart.png b/games/castlevania-lords-of-shadow-mirror-of-fate/boxart.png new file mode 100644 index 0000000..30a8f33 Binary files /dev/null and b/games/castlevania-lords-of-shadow-mirror-of-fate/boxart.png differ diff --git a/games/castlevania-lords-of-shadow-mirror-of-fate/game.dat b/games/castlevania-lords-of-shadow-mirror-of-fate/game.dat new file mode 100644 index 0000000..09b94b1 --- /dev/null +++ b/games/castlevania-lords-of-shadow-mirror-of-fate/game.dat @@ -0,0 +1,30 @@ +title = "Castlevania Lords Of Shadow - Mirror of Fate" +description = "The player assumes the role of Gabriel Belmont, his son Trevor Belmont, grandson Simon Belmont (Trevor's son), and Alucard. Mirror of Fate is a side-scrolling action-adventure game." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000096600" +region = "usa" +release_date = "2013-03-05" + +[[ releases ]] +title = "000400000009E500" +region = "eur" +release_date = "2013-03-08" + +[[ releases ]] +title = "00040000000BAC00" +region = "jpn" +release_date = "2013-03-20" + +[[ testcases ]] +compatibility = "4" +date = "2017-06-19" +title = "000400000009E500" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/castlevania-lords-of-shadow-mirror-of-fate/icon.png b/games/castlevania-lords-of-shadow-mirror-of-fate/icon.png new file mode 100644 index 0000000..e34b1ef Binary files /dev/null and b/games/castlevania-lords-of-shadow-mirror-of-fate/icon.png differ diff --git a/games/cave-story-3d/boxart.png b/games/cave-story-3d/boxart.png new file mode 100644 index 0000000..27a804b Binary files /dev/null and b/games/cave-story-3d/boxart.png differ diff --git a/games/cave-story-3d/game.dat b/games/cave-story-3d/game.dat new file mode 100644 index 0000000..3a992ab --- /dev/null +++ b/games/cave-story-3d/game.dat @@ -0,0 +1,19 @@ +title = "Cave Story 3D" +description = "Cave Story 3D, known as \"Doukutsu Monogatari 3D\" in Japan, is a metroidvania platform-adventure video game developed by Nicalis and published by NIS America, and a 3D remake of Cave Story. It features updated 3D graphics, 3 game modes, and remastered music." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000004A100" +region = "usa" +release_date = "2011-11-08" + +[[releases]] +title = "000400000004D200" +region = "eur" +release_date = "2011-11-11" + +[[releases]] +title = "0004000000084C00" +region = "jpn" +release_date = "2012-07-26" diff --git a/games/cave-story-3d/icon.png b/games/cave-story-3d/icon.png new file mode 100644 index 0000000..c5920cd Binary files /dev/null and b/games/cave-story-3d/icon.png differ diff --git a/games/cave-story-3d/screenshots/gameplay-1.png b/games/cave-story-3d/screenshots/gameplay-1.png new file mode 100644 index 0000000..8b546ed Binary files /dev/null and b/games/cave-story-3d/screenshots/gameplay-1.png differ diff --git a/games/cave-story-3d/screenshots/gameplay-2.png b/games/cave-story-3d/screenshots/gameplay-2.png new file mode 100644 index 0000000..8ff1e5e Binary files /dev/null and b/games/cave-story-3d/screenshots/gameplay-2.png differ diff --git a/games/cave-story-3d/screenshots/open-intro.png b/games/cave-story-3d/screenshots/open-intro.png new file mode 100644 index 0000000..7eb2e71 Binary files /dev/null and b/games/cave-story-3d/screenshots/open-intro.png differ diff --git a/games/cave-story-3d/screenshots/title-menu.png b/games/cave-story-3d/screenshots/title-menu.png new file mode 100644 index 0000000..bd9989d Binary files /dev/null and b/games/cave-story-3d/screenshots/title-menu.png differ diff --git a/games/club-nintendo-picross-plus/boxart.png b/games/club-nintendo-picross-plus/boxart.png new file mode 100644 index 0000000..91221fa Binary files /dev/null and b/games/club-nintendo-picross-plus/boxart.png differ diff --git a/games/club-nintendo-picross-plus/game.dat b/games/club-nintendo-picross-plus/game.dat new file mode 100644 index 0000000..bd5ec63 --- /dev/null +++ b/games/club-nintendo-picross-plus/game.dat @@ -0,0 +1,20 @@ +title = "Club Nintendo Picross Plus" +description = "Club Nintendo Picross Plus is a Japan-only Nintendo 3DS eShop Picross title, sequel to Club Nintendo Picross. It is very similar to its predecessor, featuring all the original content from the first, as well as being packed with over 100 new puzzles." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "0004000000153400" +region = "jpn" +release_date = "2014-10-09" + +[[ testcases ]] +title = "0004000000153400" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/club-nintendo-picross-plus/icon.png b/games/club-nintendo-picross-plus/icon.png new file mode 100644 index 0000000..b5d2d5b Binary files /dev/null and b/games/club-nintendo-picross-plus/icon.png differ diff --git a/games/club-nintendo-picross-plus/screenshots/In-game.png b/games/club-nintendo-picross-plus/screenshots/In-game.png new file mode 100644 index 0000000..ce5698b Binary files /dev/null and b/games/club-nintendo-picross-plus/screenshots/In-game.png differ diff --git a/games/club-nintendo-picross-plus/screenshots/Puzzle-Select.png b/games/club-nintendo-picross-plus/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..a1c5109 Binary files /dev/null and b/games/club-nintendo-picross-plus/screenshots/Puzzle-Select.png differ diff --git a/games/club-nintendo-picross-plus/screenshots/Title-Screen.png b/games/club-nintendo-picross-plus/screenshots/Title-Screen.png new file mode 100644 index 0000000..24c02a6 Binary files /dev/null and b/games/club-nintendo-picross-plus/screenshots/Title-Screen.png differ diff --git a/games/club-nintendo-picross/boxart.png b/games/club-nintendo-picross/boxart.png new file mode 100644 index 0000000..abccc42 Binary files /dev/null and b/games/club-nintendo-picross/boxart.png differ diff --git a/games/club-nintendo-picross/game.dat b/games/club-nintendo-picross/game.dat new file mode 100644 index 0000000..73de4d2 --- /dev/null +++ b/games/club-nintendo-picross/game.dat @@ -0,0 +1,20 @@ +title = "Club Nintendo Picross" +description = "Club Nintendo Picross is a Japan and South Korea-only Nintendo 3DS eShop Picross title. The game is much similar in style to Mario's Picross, as its made by the same developer, Jupiter." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "00040000000BB500" +region = "jpn" +release_date = "2012-09-13" + +[[ testcases ]] +title = "00040000000BB500" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/club-nintendo-picross/icon.png b/games/club-nintendo-picross/icon.png new file mode 100644 index 0000000..4c06054 Binary files /dev/null and b/games/club-nintendo-picross/icon.png differ diff --git a/games/club-nintendo-picross/screenshots/In-game.png b/games/club-nintendo-picross/screenshots/In-game.png new file mode 100644 index 0000000..367bff2 Binary files /dev/null and b/games/club-nintendo-picross/screenshots/In-game.png differ diff --git a/games/club-nintendo-picross/screenshots/Puzzle-Select.png b/games/club-nintendo-picross/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..50079be Binary files /dev/null and b/games/club-nintendo-picross/screenshots/Puzzle-Select.png differ diff --git a/games/club-nintendo-picross/screenshots/Title-Screen.png b/games/club-nintendo-picross/screenshots/Title-Screen.png new file mode 100644 index 0000000..1901b36 Binary files /dev/null and b/games/club-nintendo-picross/screenshots/Title-Screen.png differ diff --git a/games/cn-punch-time-explosion/boxart.png b/games/cn-punch-time-explosion/boxart.png new file mode 100644 index 0000000..a5582f9 Binary files /dev/null and b/games/cn-punch-time-explosion/boxart.png differ diff --git a/games/cn-punch-time-explosion/game.dat b/games/cn-punch-time-explosion/game.dat new file mode 100644 index 0000000..3570327 --- /dev/null +++ b/games/cn-punch-time-explosion/game.dat @@ -0,0 +1,26 @@ +title = "Cartoon Network: Punch Time Explosion" +description = "Cartoon Network: Punch Time Explosion is a 2011 crossover fighting video game developed by Papaya Studio and published by Crave Entertainment, for the Nintendo 3DS." +incomplete = true +needs_system_files = false +needs_shared_font = false +game_type = "3ds" + +[[ releases ]] +title = "0004000000043900" +region = "usa" +release_date = "2011-06-02" + +[[ releases ]] +title = "0004000000061100" +region = "eur" +release_date = "2012-04-20" + +[[ testcases ]] +title = "0004000000043900" +compatibility = "1" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/cn-punch-time-explosion/icon.png b/games/cn-punch-time-explosion/icon.png new file mode 100644 index 0000000..560ccd2 Binary files /dev/null and b/games/cn-punch-time-explosion/icon.png differ diff --git a/games/code-of-princess/boxart.png b/games/code-of-princess/boxart.png new file mode 100644 index 0000000..7f3f92c Binary files /dev/null and b/games/code-of-princess/boxart.png differ diff --git a/games/code-of-princess/game.dat b/games/code-of-princess/game.dat new file mode 100644 index 0000000..dae2c14 --- /dev/null +++ b/games/code-of-princess/game.dat @@ -0,0 +1,25 @@ +title = "Code of Princess" +description = "Code of Princess is a Hack and slash video game that features several game modes and over 50 playable characters. In single player mode there are available a story-driven campaign mode with several scenarios where only 4 characters (Solange, Ali, Zozo and Allegro) are playable, a 'free play' mode that allows to play any campaign scenario with any available character, and a 'Bonus Quests' mode where additional scenarios are unlocked and must be beaten with specific requirements." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000A2C00" +region = "usa" +release_date = "2012-10-09" + +[[ releases ]] +title = "0004000000068000" +region = "jpn" +release_date = "2012-04-19" + +[[ testcases ]] +compatibility = "1" +date = "2017-06-19" +title = "00040000000A2C00" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/code-of-princess/icon.png b/games/code-of-princess/icon.png new file mode 100644 index 0000000..85ed1af Binary files /dev/null and b/games/code-of-princess/icon.png differ diff --git a/games/corpse-party/boxart.png b/games/corpse-party/boxart.png new file mode 100644 index 0000000..070f2e3 Binary files /dev/null and b/games/corpse-party/boxart.png differ diff --git a/games/corpse-party/game.dat b/games/corpse-party/game.dat new file mode 100644 index 0000000..6048241 --- /dev/null +++ b/games/corpse-party/game.dat @@ -0,0 +1,19 @@ +title = "Corpse Party" +description = "Corpse Party is a survival horror adventure game created by Team GrisGris and published by xSeed Games. It tells the story of a group of Kisaragi Academy High School students who are trapped in a haunted elementary school filled with the decaying corpses and tormented souls of countless children who mysteriously vanished from the Japanese countryside years ago." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000194200" +region = "usa" +release_date = "2016-10-25" + +[[ releases ]] +title = "0004000000198300" +region = "eur" +release_date = "2016-10-26" + +[[ releases ]] +title = "000400000015D500" +region = "jpn" +release_date = "2015-07-30" diff --git a/games/corpse-party/icon.png b/games/corpse-party/icon.png new file mode 100644 index 0000000..e027489 Binary files /dev/null and b/games/corpse-party/icon.png differ diff --git a/games/corpse-party/screenshots/Intro.png b/games/corpse-party/screenshots/Intro.png new file mode 100644 index 0000000..914c97c Binary files /dev/null and b/games/corpse-party/screenshots/Intro.png differ diff --git a/games/corpse-party/screenshots/School.png b/games/corpse-party/screenshots/School.png new file mode 100644 index 0000000..be8ca2f Binary files /dev/null and b/games/corpse-party/screenshots/School.png differ diff --git a/games/corpse-party/screenshots/Start.png b/games/corpse-party/screenshots/Start.png new file mode 100644 index 0000000..ef408e6 Binary files /dev/null and b/games/corpse-party/screenshots/Start.png differ diff --git a/games/cubit-the-hardcore-platformer-robot/boxart.png b/games/cubit-the-hardcore-platformer-robot/boxart.png new file mode 100644 index 0000000..06fb201 Binary files /dev/null and b/games/cubit-the-hardcore-platformer-robot/boxart.png differ diff --git a/games/cubit-the-hardcore-platformer-robot/game.dat b/games/cubit-the-hardcore-platformer-robot/game.dat new file mode 100644 index 0000000..947ea05 --- /dev/null +++ b/games/cubit-the-hardcore-platformer-robot/game.dat @@ -0,0 +1,20 @@ +title = "Cubit The Hardcore Platformer Robot" +description = "Cubit The Hardcore Platformer Robot, known in Japan as Cubit: One Button Running Action, is a platform video game developed and published by CoderChild." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000112300" +region = "usa" +release_date = "2013-12-26" + +[[releases]] +title = "0004000000124300" +region = "eur" +release_date = "2014-03-13" + +[[releases]] +title = "0004000000144900" +region = "jpn" +release_date = "2014-08-06" diff --git a/games/cubit-the-hardcore-platformer-robot/icon.png b/games/cubit-the-hardcore-platformer-robot/icon.png new file mode 100644 index 0000000..42e3d79 Binary files /dev/null and b/games/cubit-the-hardcore-platformer-robot/icon.png differ diff --git a/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-doublejump.png b/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-doublejump.png new file mode 100644 index 0000000..9d4b619 Binary files /dev/null and b/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-doublejump.png differ diff --git a/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-enemies.png b/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-enemies.png new file mode 100644 index 0000000..5782b2b Binary files /dev/null and b/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-enemies.png differ diff --git a/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-run.png b/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-run.png new file mode 100644 index 0000000..d079014 Binary files /dev/null and b/games/cubit-the-hardcore-platformer-robot/screenshots/cubit-run.png differ diff --git a/games/culdcept-revolt/boxart.png b/games/culdcept-revolt/boxart.png new file mode 100644 index 0000000..4567747 Binary files /dev/null and b/games/culdcept-revolt/boxart.png differ diff --git a/games/culdcept-revolt/game.dat b/games/culdcept-revolt/game.dat new file mode 100644 index 0000000..379256c --- /dev/null +++ b/games/culdcept-revolt/game.dat @@ -0,0 +1,19 @@ +title = "Culdcept Revolt" +description = "Culdcept Revolt is a turn-based strategy video game developed by OmiyaSoft and published by NIS America in North America and Europe, and Nintendo in Japan. It is the sequel of Culdcept, though the two games have different plotlines." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000001BCA00" +region = "eur" +release_date = "2017-10-06" + +[[releases]] +title = "00040000001BEC00" +region = "usa" +release_date = "2017-10-03" + +[[releases]] +title = "00040000000F5700" +region = "jpn" +release_date = "2016-07-07" diff --git a/games/culdcept-revolt/icon.png b/games/culdcept-revolt/icon.png new file mode 100644 index 0000000..b5c04fd Binary files /dev/null and b/games/culdcept-revolt/icon.png differ diff --git a/games/culdcept-revolt/screenshots/book-selection.png b/games/culdcept-revolt/screenshots/book-selection.png new file mode 100644 index 0000000..5f0c3ea Binary files /dev/null and b/games/culdcept-revolt/screenshots/book-selection.png differ diff --git a/games/culdcept-revolt/screenshots/card-view-in-the-match.png b/games/culdcept-revolt/screenshots/card-view-in-the-match.png new file mode 100644 index 0000000..4d607db Binary files /dev/null and b/games/culdcept-revolt/screenshots/card-view-in-the-match.png differ diff --git a/games/culdcept-revolt/screenshots/character-speak-in-the-match.png b/games/culdcept-revolt/screenshots/character-speak-in-the-match.png new file mode 100644 index 0000000..ac4bcb9 Binary files /dev/null and b/games/culdcept-revolt/screenshots/character-speak-in-the-match.png differ diff --git a/games/culdcept-revolt/screenshots/general-menu.png b/games/culdcept-revolt/screenshots/general-menu.png new file mode 100644 index 0000000..188f2c3 Binary files /dev/null and b/games/culdcept-revolt/screenshots/general-menu.png differ diff --git a/games/culdcept-revolt/screenshots/introduction-before-the-match.png b/games/culdcept-revolt/screenshots/introduction-before-the-match.png new file mode 100644 index 0000000..66e4211 Binary files /dev/null and b/games/culdcept-revolt/screenshots/introduction-before-the-match.png differ diff --git a/games/culdcept-revolt/screenshots/quests.png b/games/culdcept-revolt/screenshots/quests.png new file mode 100644 index 0000000..0ceaa58 Binary files /dev/null and b/games/culdcept-revolt/screenshots/quests.png differ diff --git a/games/culdcept-revolt/screenshots/spell-selection-in-the-match.png b/games/culdcept-revolt/screenshots/spell-selection-in-the-match.png new file mode 100644 index 0000000..c533e4e Binary files /dev/null and b/games/culdcept-revolt/screenshots/spell-selection-in-the-match.png differ diff --git a/games/culdcept-revolt/screenshots/start-screen.png b/games/culdcept-revolt/screenshots/start-screen.png new file mode 100644 index 0000000..1868a64 Binary files /dev/null and b/games/culdcept-revolt/screenshots/start-screen.png differ diff --git a/games/cursed-castilla/boxart.png b/games/cursed-castilla/boxart.png new file mode 100644 index 0000000..7378877 Binary files /dev/null and b/games/cursed-castilla/boxart.png differ diff --git a/games/cursed-castilla/game.dat b/games/cursed-castilla/game.dat new file mode 100644 index 0000000..7d5dcd5 --- /dev/null +++ b/games/cursed-castilla/game.dat @@ -0,0 +1,31 @@ +title = "Cursed Castilla EX" +description = "Cursed Castilla EX (Originally released as Maldita Castilla in 2012) is an arcade action video game developed by Locomalito. (Assisted by Abylight on 3DS) The game is primarily based on myths from Spain and other parts of Europe. Maldita Castilla was developed as a tribute to the video games of the late 1980s, such as Ghosts'n Goblins, Tiger Road, Black Tiger, and Shinobi. The game was inspired by Amadis of Gaul, a sixteenth-century Spanish chivalric romance." +github_issues = [3021] +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000001BF000" +region = "usa" +release_date = "2017-07-13" + +[[releases]] +title = "00040000001BF100" +region = "eur" +release_date = "2017-07-13" + +[[releases]] +title = "00040000001C4800" +region = "jpn" +release_date = "2017-07-12" + +[[testcases]] +title = "00040000001BF000" +compatibility = "4" +date = "2017-10-18" +version = "HEAD-e9d1e8c" +cpu = "Intel Xeon E31240" +gpu = "NVIDIA GTX 750" +os = "Windows 7 7601" +author = "AuraOfTheDawn" diff --git a/games/cursed-castilla/icon.png b/games/cursed-castilla/icon.png new file mode 100644 index 0000000..a307ee4 Binary files /dev/null and b/games/cursed-castilla/icon.png differ diff --git a/games/cursed-castilla/screenshots/Intro-CompanyLogo.png b/games/cursed-castilla/screenshots/Intro-CompanyLogo.png new file mode 100644 index 0000000..e821167 Binary files /dev/null and b/games/cursed-castilla/screenshots/Intro-CompanyLogo.png differ diff --git a/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/boxart.png b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/boxart.png new file mode 100644 index 0000000..b0b53ed Binary files /dev/null and b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/boxart.png differ diff --git a/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/game.dat b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/game.dat new file mode 100644 index 0000000..ca8ef79 --- /dev/null +++ b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/game.dat @@ -0,0 +1,12 @@ +title = "Dai Gyakuten Saiban - Naruhodou Ryuunosuke no Bouken" + +description = "Dai Gyakuten Saiban: Naruhodō Ryūnosuke no Bōken (The Great Ace Attorney) is an adventure game in the Ace Attorney series, developed and published by Capcom. It was directed and produced by Shu Takumi and Shintaro Kojima, respectively. Set near the end of the 19th century, Dai Gyakuten Saiban focuses on Ryūnosuke Naruhodō – an ancestor of Phoenix Wright, the primary protagonist of the Ace Attorney series – who seeks to become a full-fledged defence attorney. Joined by his assistant, Susato Mikotoba, Ryūnosuke travels to England to further his studies, where he encounters world-famous detective Sherlock Holmes and works alongside him in solving mysterious cases." + +needs_system_files = true +needs_shared_font = false + +[[releases]] + +title = "000400000014AD00" +region = "jpn" +release_date = "2015-07-19" diff --git a/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/icon.png b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/icon.png new file mode 100644 index 0000000..45b7eb5 Binary files /dev/null and b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/icon.png differ diff --git a/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/2d-section.png b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/2d-section.png new file mode 100644 index 0000000..7bf576f Binary files /dev/null and b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/2d-section.png differ diff --git a/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/3d-trial.png b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/3d-trial.png new file mode 100644 index 0000000..ee090bb Binary files /dev/null and b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/3d-trial.png differ diff --git a/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/start-screen.png b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/start-screen.png new file mode 100644 index 0000000..8d40a74 Binary files /dev/null and b/games/dai-gyakuten-saiban-naruhodou-ryuunosuke-no-bouken/screenshots/start-screen.png differ diff --git a/games/dead-or-alive-dimensions/boxart.png b/games/dead-or-alive-dimensions/boxart.png new file mode 100644 index 0000000..a96dd7e Binary files /dev/null and b/games/dead-or-alive-dimensions/boxart.png differ diff --git a/games/dead-or-alive-dimensions/game.dat b/games/dead-or-alive-dimensions/game.dat new file mode 100644 index 0000000..6bb241e --- /dev/null +++ b/games/dead-or-alive-dimensions/game.dat @@ -0,0 +1,19 @@ +title = "Dead or Alive: Dimensions" +description = "Dead or Alive: Dimensions (DOAD) is a fighting game developed by Team Ninja and released by Tecmo Koei and in some regions by Nintendo. This made it the first Dead or Alive title for a Nintendo system, and the series's first fighting game for any handheld." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000034F00" +region = "usa" +release_date = "2011-05-24" + +[[releases]] +title = "0004000000038A00" +region = "eur" +release_date = "2011-05-20" + +[[releases]] +title = "0004000000032000" +region = "jpn" +release_date = "2011-05-19" diff --git a/games/dead-or-alive-dimensions/icon.png b/games/dead-or-alive-dimensions/icon.png new file mode 100644 index 0000000..f30f818 Binary files /dev/null and b/games/dead-or-alive-dimensions/icon.png differ diff --git a/games/dead-or-alive-dimensions/screenshots/character-select.png b/games/dead-or-alive-dimensions/screenshots/character-select.png new file mode 100644 index 0000000..4daa8ba Binary files /dev/null and b/games/dead-or-alive-dimensions/screenshots/character-select.png differ diff --git a/games/dead-or-alive-dimensions/screenshots/fighting-gameplay.png b/games/dead-or-alive-dimensions/screenshots/fighting-gameplay.png new file mode 100644 index 0000000..16eb302 Binary files /dev/null and b/games/dead-or-alive-dimensions/screenshots/fighting-gameplay.png differ diff --git a/games/dead-or-alive-dimensions/screenshots/title-screen.png b/games/dead-or-alive-dimensions/screenshots/title-screen.png new file mode 100644 index 0000000..f5d692a Binary files /dev/null and b/games/dead-or-alive-dimensions/screenshots/title-screen.png differ diff --git a/games/dededes-drum-dash-deluxe/boxart.png b/games/dededes-drum-dash-deluxe/boxart.png new file mode 100644 index 0000000..8dcbcb8 Binary files /dev/null and b/games/dededes-drum-dash-deluxe/boxart.png differ diff --git a/games/dededes-drum-dash-deluxe/game.dat b/games/dededes-drum-dash-deluxe/game.dat new file mode 100644 index 0000000..96546ba --- /dev/null +++ b/games/dededes-drum-dash-deluxe/game.dat @@ -0,0 +1,25 @@ +title = "Dedede's Drum Dash Deluxe" +description = "Dedede's Drum Dash Deluxe is a stand-alone Nintendo eShop software developed by Nintendo and is a sequel/successor to the Kirby: Triple Deluxe sub-game, Dedede's Drum Dash. Like the original, Dedede's Drum Dash Deluxe features King Dedede as the main character and has him bouncing on drums to the rhythm of a song. New songs are added, including secret levels to challenge the player." +needs_system_files = false +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "0004000000147A00" +region = "usa" +release_date = "2014-08-29" + +[[releases]] +title = "0004000000147B00" +region = "eur" +release_date = "2015-02-13" + +[[testcases]] +title = "0004000000147B00" +compatibility = "0" +date = "2017-10-31" +version = "HEAD-ed17c54" +cpu = "Intel Core i5-6400" +gpu = "nVidia GeForce GTX 750TI" +os = "Windows 10 15063" +author = "Sedhaild" diff --git a/games/dededes-drum-dash-deluxe/icon.png b/games/dededes-drum-dash-deluxe/icon.png new file mode 100644 index 0000000..a105429 Binary files /dev/null and b/games/dededes-drum-dash-deluxe/icon.png differ diff --git a/games/dededes-drum-dash-deluxe/screenshots/menu.png b/games/dededes-drum-dash-deluxe/screenshots/menu.png new file mode 100644 index 0000000..15bfa36 Binary files /dev/null and b/games/dededes-drum-dash-deluxe/screenshots/menu.png differ diff --git a/games/dededes-drum-dash-deluxe/screenshots/playing-b.png b/games/dededes-drum-dash-deluxe/screenshots/playing-b.png new file mode 100644 index 0000000..2762653 Binary files /dev/null and b/games/dededes-drum-dash-deluxe/screenshots/playing-b.png differ diff --git a/games/dededes-drum-dash-deluxe/screenshots/playing.png b/games/dededes-drum-dash-deluxe/screenshots/playing.png new file mode 100644 index 0000000..0c107d6 Binary files /dev/null and b/games/dededes-drum-dash-deluxe/screenshots/playing.png differ diff --git a/games/detective-pikachu/boxart.png b/games/detective-pikachu/boxart.png new file mode 100644 index 0000000..2607f49 Binary files /dev/null and b/games/detective-pikachu/boxart.png differ diff --git a/games/detective-pikachu/game.dat b/games/detective-pikachu/game.dat new file mode 100644 index 0000000..f954a34 --- /dev/null +++ b/games/detective-pikachu/game.dat @@ -0,0 +1,15 @@ +title = "Detective Pikachu" +description = "Detective Pikachu (名探偵ピカチュウ ~新コンビ誕生~) is an adventure game developed by Creatures Inc., published by The Pokémon Company, and distributed by Nintendo. The game is a spin-off of the Pokémon franchise, in which players work with a talking Pikachu to solve mysteries." +github_issues = [3612] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001C1E00" +region = "all" +release_date = "2018-03-23" + +[[releases]] +title = "000400000018CA00" +region = "jpn" +release_date = "2016-02-03" diff --git a/games/detective-pikachu/icon.png b/games/detective-pikachu/icon.png new file mode 100644 index 0000000..5a42ab5 Binary files /dev/null and b/games/detective-pikachu/icon.png differ diff --git a/games/detective-pikachu/screenshots/in-game-2.png b/games/detective-pikachu/screenshots/in-game-2.png new file mode 100644 index 0000000..f044042 Binary files /dev/null and b/games/detective-pikachu/screenshots/in-game-2.png differ diff --git a/games/detective-pikachu/screenshots/in-game-3.png b/games/detective-pikachu/screenshots/in-game-3.png new file mode 100644 index 0000000..a1d81c9 Binary files /dev/null and b/games/detective-pikachu/screenshots/in-game-3.png differ diff --git a/games/detective-pikachu/screenshots/in-game.png b/games/detective-pikachu/screenshots/in-game.png new file mode 100644 index 0000000..dc02655 Binary files /dev/null and b/games/detective-pikachu/screenshots/in-game.png differ diff --git a/games/detective-pikachu/screenshots/title-screen.png b/games/detective-pikachu/screenshots/title-screen.png new file mode 100644 index 0000000..6abd19d Binary files /dev/null and b/games/detective-pikachu/screenshots/title-screen.png differ diff --git a/games/digimon-world-re-digitize-decode/boxart.png b/games/digimon-world-re-digitize-decode/boxart.png new file mode 100644 index 0000000..da30222 Binary files /dev/null and b/games/digimon-world-re-digitize-decode/boxart.png differ diff --git a/games/digimon-world-re-digitize-decode/game.dat b/games/digimon-world-re-digitize-decode/game.dat new file mode 100644 index 0000000..d35caae --- /dev/null +++ b/games/digimon-world-re-digitize-decode/game.dat @@ -0,0 +1,21 @@ +title = "Digimon World Re: Digitize Decode" +description = "The player follows and controls 'Taiga', a 16-year-old male protagonist who is transported to the digital world of Digimon, which in his universe is merely an online game; similar in concept to Digimon World." +incomplete = true +github_issues = [2554] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000AFC00" +region = "jpn" +release_date = "2013-06-27" + +[[ testcases ]] +compatibility = "3" +date = "2017-06-19" +title = "00040000000AFC00" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/digimon-world-re-digitize-decode/icon.png b/games/digimon-world-re-digitize-decode/icon.png new file mode 100644 index 0000000..b419ac3 Binary files /dev/null and b/games/digimon-world-re-digitize-decode/icon.png differ diff --git a/games/dillons-dead-heat-breakers/boxart.png b/games/dillons-dead-heat-breakers/boxart.png new file mode 100644 index 0000000..8061c08 Binary files /dev/null and b/games/dillons-dead-heat-breakers/boxart.png differ diff --git a/games/dillons-dead-heat-breakers/game.dat b/games/dillons-dead-heat-breakers/game.dat new file mode 100644 index 0000000..4d49172 --- /dev/null +++ b/games/dillons-dead-heat-breakers/game.dat @@ -0,0 +1,19 @@ +title = "Dillon's Dead-Heat Breakers" +description = "Dillon's Dead-Heat Breakers is an action strategy game developed by Vanpool and published by Nintendo. It is the sequel to Dillon's Rolling Western: The Last Ranger and the third entry in the Dillon series. The setting is more post-apacolyptic futuristic than the previous titles. In addition to playing as Dillon, you also play as your Mii character as an animal." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "00040000001CF300" +region = "usa" +release_date = "2018-05-24" + +[[releases]] +title = "00040000001CF400" +region = "eur" +release_date = "2018-05-25" + +[[releases]] +title = "00040000001C4900" +region = "jpn" +release_date = "2018-04-26" diff --git a/games/dillons-dead-heat-breakers/icon.png b/games/dillons-dead-heat-breakers/icon.png new file mode 100644 index 0000000..08c8a32 Binary files /dev/null and b/games/dillons-dead-heat-breakers/icon.png differ diff --git a/games/dillons-dead-heat-breakers/screenshots/Titlescreen.png b/games/dillons-dead-heat-breakers/screenshots/Titlescreen.png new file mode 100644 index 0000000..1bfae86 Binary files /dev/null and b/games/dillons-dead-heat-breakers/screenshots/Titlescreen.png differ diff --git a/games/dillons-dead-heat-breakers/screenshots/battle_cropped.png b/games/dillons-dead-heat-breakers/screenshots/battle_cropped.png new file mode 100644 index 0000000..b2d0e65 Binary files /dev/null and b/games/dillons-dead-heat-breakers/screenshots/battle_cropped.png differ diff --git a/games/dillons-dead-heat-breakers/screenshots/hotelmercenary_cropped.png b/games/dillons-dead-heat-breakers/screenshots/hotelmercenary_cropped.png new file mode 100644 index 0000000..9007d80 Binary files /dev/null and b/games/dillons-dead-heat-breakers/screenshots/hotelmercenary_cropped.png differ diff --git a/games/dillons-dead-heat-breakers/screenshots/quite-a-mart_cropped.png b/games/dillons-dead-heat-breakers/screenshots/quite-a-mart_cropped.png new file mode 100644 index 0000000..740008b Binary files /dev/null and b/games/dillons-dead-heat-breakers/screenshots/quite-a-mart_cropped.png differ diff --git a/games/donkey-kong-country-returns-3d/boxart.png b/games/donkey-kong-country-returns-3d/boxart.png new file mode 100755 index 0000000..6cedba7 Binary files /dev/null and b/games/donkey-kong-country-returns-3d/boxart.png differ diff --git a/games/donkey-kong-country-returns-3d/game.dat b/games/donkey-kong-country-returns-3d/game.dat new file mode 100755 index 0000000..3e3fcc0 --- /dev/null +++ b/games/donkey-kong-country-returns-3d/game.dat @@ -0,0 +1,29 @@ +title = "Donkey Kong Country Returns 3D" +description = "Donkey Kong Country Returns 3D is a side-scrolling platformer developed by Monster Studios and published by Nintendo. It is a port of the Wii title Donkey Kong Country Returns, with some additional content." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000CCE00" +region = "usa" +release_date = "2013-05-24" + +[[ releases ]] +title = "00040000000CCF00" +region = "eur" +release_date = "2013-05-24" + +[[ releases ]] +title = "00040000000CC000" +region = "jpn" +release_date = "2013-06-13" + +[[ testcases ]] +title = "00040000000CCE00" +compatibility = "5" +date = "2017-06-18" +version = "HEAD-5fe5cca" +author = "Anadian" +cpu = "Intel Core i7-6500U" +gpu = "Intel HD Graphics 520" +os = "Windows 10 14393" diff --git a/games/donkey-kong-country-returns-3d/icon.png b/games/donkey-kong-country-returns-3d/icon.png new file mode 100755 index 0000000..ded646d Binary files /dev/null and b/games/donkey-kong-country-returns-3d/icon.png differ diff --git a/games/dr-mario-miracle-cure/boxart.png b/games/dr-mario-miracle-cure/boxart.png new file mode 100644 index 0000000..b41cbc8 Binary files /dev/null and b/games/dr-mario-miracle-cure/boxart.png differ diff --git a/games/dr-mario-miracle-cure/game.dat b/games/dr-mario-miracle-cure/game.dat new file mode 100644 index 0000000..49cee51 --- /dev/null +++ b/games/dr-mario-miracle-cure/game.dat @@ -0,0 +1,20 @@ +title = "Dr. Mario: Miracle Cure" +description = "Dr. Mario: Miracle Cure, released in Japan as Dr. Mario Gyakuten! Tokkōyaku & Saikin Bokumetsu (Dr. MARIO ギャクテン!特効薬 & 細菌撲滅 Dr. Mario Reverse! Wonder Drug and Bacteria Eradication), is a puzzle video game for the Nintendo 3DS." +needs_system_files = true +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "000400000013BB00" +region = "all" +release_date = "2015-05-31" + +[[ testcases ]] +title = "000400000013BB00" +compatibility = "1" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/dr-mario-miracle-cure/icon.png b/games/dr-mario-miracle-cure/icon.png new file mode 100644 index 0000000..9249c8b Binary files /dev/null and b/games/dr-mario-miracle-cure/icon.png differ diff --git a/games/dr-mario-miracle-cure/screenshots/Game-Over.png b/games/dr-mario-miracle-cure/screenshots/Game-Over.png new file mode 100644 index 0000000..d7b1bda Binary files /dev/null and b/games/dr-mario-miracle-cure/screenshots/Game-Over.png differ diff --git a/games/dr-mario-miracle-cure/screenshots/Laboratory-Luigi.png b/games/dr-mario-miracle-cure/screenshots/Laboratory-Luigi.png new file mode 100644 index 0000000..0a657fe Binary files /dev/null and b/games/dr-mario-miracle-cure/screenshots/Laboratory-Luigi.png differ diff --git a/games/dr-mario-miracle-cure/screenshots/Laboratory-Mario.png b/games/dr-mario-miracle-cure/screenshots/Laboratory-Mario.png new file mode 100644 index 0000000..397c6a0 Binary files /dev/null and b/games/dr-mario-miracle-cure/screenshots/Laboratory-Mario.png differ diff --git a/games/dr-mario-miracle-cure/screenshots/Title-Screen.png b/games/dr-mario-miracle-cure/screenshots/Title-Screen.png new file mode 100644 index 0000000..14dc5af Binary files /dev/null and b/games/dr-mario-miracle-cure/screenshots/Title-Screen.png differ diff --git a/games/dragon-ball-fusions/boxart.png b/games/dragon-ball-fusions/boxart.png new file mode 100644 index 0000000..31519e6 Binary files /dev/null and b/games/dragon-ball-fusions/boxart.png differ diff --git a/games/dragon-ball-fusions/game.dat b/games/dragon-ball-fusions/game.dat new file mode 100644 index 0000000..36c9875 --- /dev/null +++ b/games/dragon-ball-fusions/game.dat @@ -0,0 +1,29 @@ +title = "Dragon Ball Fusions" +description = "Dragon Ball Fusions is a platform-fighter videogame developed by Ganbarion.co and distributed by Bandai Namco, based on the Dragon Ball series." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000001AA900" +region = "usa" +release_date = "2016-11-22" + +[[ releases ]] +title = "00040000001AA000" +region = "eur" +release_date = "2017-02-17" + +[[ releases ]] +title = "0004000000196D00" +region = "jpn" +release_date = "2016-08-04" + +[[ testcases ]] +title = "0004000000196D00" +compatibility = "0" +date = "2017-06-16" +version = "HEAD-3146e95" +author = "Krikic" +cpu = "Intel Core i5-6400" +gpu = "GeForce GTX 1070M" +os = "Windows 10 14393" diff --git a/games/dragon-ball-fusions/icon.png b/games/dragon-ball-fusions/icon.png new file mode 100644 index 0000000..f203055 Binary files /dev/null and b/games/dragon-ball-fusions/icon.png differ diff --git a/games/dragon-ball-fusions/screenshots/Combat-Screen.png b/games/dragon-ball-fusions/screenshots/Combat-Screen.png new file mode 100644 index 0000000..e7b315f Binary files /dev/null and b/games/dragon-ball-fusions/screenshots/Combat-Screen.png differ diff --git a/games/dragon-ball-fusions/screenshots/Select-Character.png b/games/dragon-ball-fusions/screenshots/Select-Character.png new file mode 100644 index 0000000..b04c90f Binary files /dev/null and b/games/dragon-ball-fusions/screenshots/Select-Character.png differ diff --git a/games/dragon-ball-fusions/screenshots/Title-Start-Screen.png b/games/dragon-ball-fusions/screenshots/Title-Start-Screen.png new file mode 100644 index 0000000..95ecf5e Binary files /dev/null and b/games/dragon-ball-fusions/screenshots/Title-Start-Screen.png differ diff --git a/games/dragon-ball-heroes-ultimate-mission/boxart.png b/games/dragon-ball-heroes-ultimate-mission/boxart.png new file mode 100644 index 0000000..b323261 Binary files /dev/null and b/games/dragon-ball-heroes-ultimate-mission/boxart.png differ diff --git a/games/dragon-ball-heroes-ultimate-mission/game.dat b/games/dragon-ball-heroes-ultimate-mission/game.dat new file mode 100644 index 0000000..13afd62 --- /dev/null +++ b/games/dragon-ball-heroes-ultimate-mission/game.dat @@ -0,0 +1,9 @@ +title = "Dragon Ball Heroes: Ultimate Mission" +description = "Dragon Ball Heroes: Ultimate Mission is a port of the Japanese card-based fighting arcade game \"Dragon Ball Heroes\", in which the player can experience the different stories of the Dragon Ball series, including movies and spinoffs like Dragon Ball GT." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000AD900" +region = "jpn" +release_date = "2013-02-28" diff --git a/games/dragon-ball-heroes-ultimate-mission/icon.png b/games/dragon-ball-heroes-ultimate-mission/icon.png new file mode 100644 index 0000000..48165ea Binary files /dev/null and b/games/dragon-ball-heroes-ultimate-mission/icon.png differ diff --git a/games/dragon-ball-heroes-ultimate-mission/screenshots/Card-Selection.png b/games/dragon-ball-heroes-ultimate-mission/screenshots/Card-Selection.png new file mode 100644 index 0000000..ec09a43 Binary files /dev/null and b/games/dragon-ball-heroes-ultimate-mission/screenshots/Card-Selection.png differ diff --git a/games/dragon-ball-heroes-ultimate-mission/screenshots/In-Battle.png b/games/dragon-ball-heroes-ultimate-mission/screenshots/In-Battle.png new file mode 100644 index 0000000..1c18f60 Binary files /dev/null and b/games/dragon-ball-heroes-ultimate-mission/screenshots/In-Battle.png differ diff --git a/games/dragon-ball-heroes-ultimate-mission/screenshots/Story-Mode.png b/games/dragon-ball-heroes-ultimate-mission/screenshots/Story-Mode.png new file mode 100644 index 0000000..9207374 Binary files /dev/null and b/games/dragon-ball-heroes-ultimate-mission/screenshots/Story-Mode.png differ diff --git a/games/dragon-ball-heroes-ultimate-mission/screenshots/Titlescreen.png b/games/dragon-ball-heroes-ultimate-mission/screenshots/Titlescreen.png new file mode 100644 index 0000000..78d9b01 Binary files /dev/null and b/games/dragon-ball-heroes-ultimate-mission/screenshots/Titlescreen.png differ diff --git a/games/dragon-ball-z-extreme-butoden-update/boxart.png b/games/dragon-ball-z-extreme-butoden-update/boxart.png new file mode 100644 index 0000000..f73f3c9 Binary files /dev/null and b/games/dragon-ball-z-extreme-butoden-update/boxart.png differ diff --git a/games/dragon-ball-z-extreme-butoden-update/game.dat b/games/dragon-ball-z-extreme-butoden-update/game.dat new file mode 100644 index 0000000..a4019e0 --- /dev/null +++ b/games/dragon-ball-z-extreme-butoden-update/game.dat @@ -0,0 +1,29 @@ +title = "Dragon Ball Z: Extreme Butōden" +description = "Dragon Ball Z: Extreme Butōden is a 2D fighting game developed by Bandai Namco and is based on the popular anime, Dragon Ball." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000016CD00" +region = "usa" +release_date = "2015-10-20" + +[[releases]] +title = "0004000000169600" +region = "eur" +release_date = "2015-10-16" + +[[releases]] +title = "0004000000163C00" +region = "jpn" +release_date = "2015-06-11" + +[[testcases]] +title = "000400000016CD00" +compatibility = "0" +date = "2017-11-10" +version = "HEAD-7ef905e" +cpu = "Intel Core 2 Duo E6750" +gpu = "Nvidia Geforce GT 630" +os = "Windows 10 15063" +author = "MojoJojoDojo" diff --git a/games/dragon-ball-z-extreme-butoden-update/icon.png b/games/dragon-ball-z-extreme-butoden-update/icon.png new file mode 100644 index 0000000..9922a74 Binary files /dev/null and b/games/dragon-ball-z-extreme-butoden-update/icon.png differ diff --git a/games/dragon-ball-z-extreme-butoden-update/screenshots/Menu.png b/games/dragon-ball-z-extreme-butoden-update/screenshots/Menu.png new file mode 100644 index 0000000..0b4bed3 Binary files /dev/null and b/games/dragon-ball-z-extreme-butoden-update/screenshots/Menu.png differ diff --git a/games/dragon-ball-z-extreme-butoden-update/screenshots/gameplay1.png b/games/dragon-ball-z-extreme-butoden-update/screenshots/gameplay1.png new file mode 100644 index 0000000..9b69516 Binary files /dev/null and b/games/dragon-ball-z-extreme-butoden-update/screenshots/gameplay1.png differ diff --git a/games/dragon-ball-z-extreme-butoden-update/screenshots/gameplay2.png b/games/dragon-ball-z-extreme-butoden-update/screenshots/gameplay2.png new file mode 100644 index 0000000..917d85a Binary files /dev/null and b/games/dragon-ball-z-extreme-butoden-update/screenshots/gameplay2.png differ diff --git a/games/dragon-quest-monsters-joker-3/boxart.png b/games/dragon-quest-monsters-joker-3/boxart.png new file mode 100644 index 0000000..41da920 Binary files /dev/null and b/games/dragon-quest-monsters-joker-3/boxart.png differ diff --git a/games/dragon-quest-monsters-joker-3/game.dat b/games/dragon-quest-monsters-joker-3/game.dat new file mode 100644 index 0000000..95dc901 --- /dev/null +++ b/games/dragon-quest-monsters-joker-3/game.dat @@ -0,0 +1,15 @@ +title = "Dragon Quest Monsters: Joker 3" +description = "Dragon Quest Monsters: Joker 3 (DQMJ3) is a role-playing video game developed by Square Enix and Tose and published by Square Enix for the Nintendo 3DS. It is the sequel to Dragon Quest Monsters: Joker 2, and is the sixth game in the Dragon Quest Monsters series. As with the previous game, Square Enix released Joker 3 Professional, an expanded version of the game." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000016AD00" +region = "jpn" +release_date = "2016-03-24" + +[[releases]] +title = "00040000001ACB00" +region = "jpn" +release_date = "2017-02-09" diff --git a/games/dragon-quest-monsters-joker-3/icon.png b/games/dragon-quest-monsters-joker-3/icon.png new file mode 100644 index 0000000..f3419fc Binary files /dev/null and b/games/dragon-quest-monsters-joker-3/icon.png differ diff --git a/games/dragon-quest-monsters-joker-3/screenshots/World.png b/games/dragon-quest-monsters-joker-3/screenshots/World.png new file mode 100644 index 0000000..0968f5e Binary files /dev/null and b/games/dragon-quest-monsters-joker-3/screenshots/World.png differ diff --git a/games/dragon-quest-monsters-terry-no-wonderland-3d/boxart.png b/games/dragon-quest-monsters-terry-no-wonderland-3d/boxart.png new file mode 100644 index 0000000..636cece Binary files /dev/null and b/games/dragon-quest-monsters-terry-no-wonderland-3d/boxart.png differ diff --git a/games/dragon-quest-monsters-terry-no-wonderland-3d/game.dat b/games/dragon-quest-monsters-terry-no-wonderland-3d/game.dat new file mode 100644 index 0000000..4351215 --- /dev/null +++ b/games/dragon-quest-monsters-terry-no-wonderland-3d/game.dat @@ -0,0 +1,19 @@ +title = "Dragon Quest Monsters: Terry no Wonderland 3D" +description = "A 3D remake of the classic Dragon Quest Monsters: Terry no Wonderland, the first video game in the Dragon Quest Monsters series." +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "0004000000074600" +region = "jpn" +release_date = "2012-05-31" + +[[ testcases ]] +title = "0004000000074600" +compatibility = "0" +date = "2017-09-07" +version = "HEAD-e0cdaf7" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/dragon-quest-monsters-terry-no-wonderland-3d/icon.png b/games/dragon-quest-monsters-terry-no-wonderland-3d/icon.png new file mode 100644 index 0000000..0e7f5a0 Binary files /dev/null and b/games/dragon-quest-monsters-terry-no-wonderland-3d/icon.png differ diff --git a/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Battle.png b/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Battle.png new file mode 100644 index 0000000..0c595fb Binary files /dev/null and b/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Battle.png differ diff --git a/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Bazaar.png b/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Bazaar.png new file mode 100644 index 0000000..03e5e39 Binary files /dev/null and b/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Bazaar.png differ diff --git a/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Title-Screen.png b/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Title-Screen.png new file mode 100644 index 0000000..e8cb02f Binary files /dev/null and b/games/dragon-quest-monsters-terry-no-wonderland-3d/screenshots/Title-Screen.png differ diff --git a/games/dragon-quest-vii-fragments-of-the-forgotten-past/boxart.png b/games/dragon-quest-vii-fragments-of-the-forgotten-past/boxart.png new file mode 100644 index 0000000..eea5a20 Binary files /dev/null and b/games/dragon-quest-vii-fragments-of-the-forgotten-past/boxart.png differ diff --git a/games/dragon-quest-vii-fragments-of-the-forgotten-past/game.dat b/games/dragon-quest-vii-fragments-of-the-forgotten-past/game.dat new file mode 100644 index 0000000..848ca2b --- /dev/null +++ b/games/dragon-quest-vii-fragments-of-the-forgotten-past/game.dat @@ -0,0 +1,29 @@ +title = "Dragon Quest® VII Fragments of the Forgotten Past" +description = "Developed by ArtePiazza and published by Square Enix, Dragon Quest® VII Fragments of the Forgotten Past is a remake of the original game that came out in 2000 for the PS1. After discovering that the world he lives in was once composed of more continents than just the tiny island of Estard, the Hero goes on a journey back to the past to restore all the continents." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "000400000018EF00" +region = "usa" +release_date = "2016-09-16" + +[[releases]] +title = "000400000018F000" +region = "eur" +release_date = "2016-09-16" + +[[releases]] +title = "0004000000065E00" +region = "jpn" +release_date = "2013-02-07" + +[[testcases]] +title = "000400000018F000" +compatibility = "1" +date = "2017-08-26" +version = "HEAD-61442d6" +cpu = "Intel Core i3-6100" +gpu = "GeForce GTX 1050ti" +os = "Windows 10 14393" +author = "LCypher00" diff --git a/games/dragon-quest-vii-fragments-of-the-forgotten-past/icon.png b/games/dragon-quest-vii-fragments-of-the-forgotten-past/icon.png new file mode 100644 index 0000000..2ab7d39 Binary files /dev/null and b/games/dragon-quest-vii-fragments-of-the-forgotten-past/icon.png differ diff --git a/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/cutscene.png b/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/cutscene.png new file mode 100644 index 0000000..4456fe8 Binary files /dev/null and b/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/cutscene.png differ diff --git a/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/gameplay-town.png b/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/gameplay-town.png new file mode 100644 index 0000000..1ae770d Binary files /dev/null and b/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/gameplay-town.png differ diff --git a/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/title-screen.png b/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/title-screen.png new file mode 100644 index 0000000..821eeae Binary files /dev/null and b/games/dragon-quest-vii-fragments-of-the-forgotten-past/screenshots/title-screen.png differ diff --git a/games/dragon-quest-viii-journey-of-the-cursed-king/boxart.png b/games/dragon-quest-viii-journey-of-the-cursed-king/boxart.png new file mode 100644 index 0000000..58d1a6b Binary files /dev/null and b/games/dragon-quest-viii-journey-of-the-cursed-king/boxart.png differ diff --git a/games/dragon-quest-viii-journey-of-the-cursed-king/game.dat b/games/dragon-quest-viii-journey-of-the-cursed-king/game.dat new file mode 100644 index 0000000..a134da5 --- /dev/null +++ b/games/dragon-quest-viii-journey-of-the-cursed-king/game.dat @@ -0,0 +1,30 @@ +title = "Dragon Quest® VIII Journey of the Cursed King" +description = "Published by Square Enix, Dragon Quest® VIII Journey of the Cursed King is a remake of the original game for PS2. It's a JRPG set in a world full of weird looking monsters where you take control of an unnamed hero seeking to lift the curse cast by the evil Dhoulmagus, off of king Trode and the princess Medea, who both have been transformed respectively into a monster and a horse, and the castle of Trodain." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000018F100" +region = "usa" +release_date = "2017-01-20" + +[[releases]] +title = "000400000018F200" +region = "eur" +release_date = "2017-01-20" + +[[releases]] +title = "000400000015CD00" +region = "jpn" +release_date = "2015-08-27" + +[[testcases]] +title = "000400000018F200" +compatibility = "1" +date = "2017-08-18" +version = "HEAD-035716d" +cpu = "Intel Core i3-6100" +gpu = "GeForce GTX 1050ti" +os = "Winodows 10 14393" +author = "LCypher00" diff --git a/games/dragon-quest-viii-journey-of-the-cursed-king/icon.png b/games/dragon-quest-viii-journey-of-the-cursed-king/icon.png new file mode 100644 index 0000000..95d75f9 Binary files /dev/null and b/games/dragon-quest-viii-journey-of-the-cursed-king/icon.png differ diff --git a/games/dragon-quest-viii-journey-of-the-cursed-king/screenshots/starting-sequence.png b/games/dragon-quest-viii-journey-of-the-cursed-king/screenshots/starting-sequence.png new file mode 100644 index 0000000..959c2e2 Binary files /dev/null and b/games/dragon-quest-viii-journey-of-the-cursed-king/screenshots/starting-sequence.png differ diff --git a/games/etrian-mystery-dungeon/boxart.png b/games/etrian-mystery-dungeon/boxart.png new file mode 100644 index 0000000..d8d8062 Binary files /dev/null and b/games/etrian-mystery-dungeon/boxart.png differ diff --git a/games/etrian-mystery-dungeon/game.dat b/games/etrian-mystery-dungeon/game.dat new file mode 100644 index 0000000..1debcef --- /dev/null +++ b/games/etrian-mystery-dungeon/game.dat @@ -0,0 +1,29 @@ +title = "Etrian Mystery Dungeon" +description = "Etrian Mystery Dungeon is a role-playing video game for the Nintendo 3DS. It was developed by Spike Chunsoft and Atlus. The game features the character customization and character class system from the Etrian Odyssey series, and the dungeon crawling from the Mystery Dungeon series; the player's party, which is made up of custom-made characters, ventures into randomly generated multi-floor dungeons, with the objective to reach the end of each dungeon." +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "000400000015B200" +region = "usa" +release_date = "2015-04-07" + +[[ releases ]] +title = "000400000016EA00" +region = "eur" +release_date = "2015-09-11" + +[[ releases ]] +title = "0004000000118300" +region = "jpn" +release_date = "2015-03-05" + +[[ testcases ]] +title = "000400000015B200" +compatibility = "0" +date = "2017-09-01" +version = "HEAD-f251b88" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/etrian-mystery-dungeon/icon.png b/games/etrian-mystery-dungeon/icon.png new file mode 100644 index 0000000..6907839 Binary files /dev/null and b/games/etrian-mystery-dungeon/icon.png differ diff --git a/games/etrian-mystery-dungeon/screenshots/1.png b/games/etrian-mystery-dungeon/screenshots/1.png new file mode 100644 index 0000000..0e8c5dc Binary files /dev/null and b/games/etrian-mystery-dungeon/screenshots/1.png differ diff --git a/games/etrian-mystery-dungeon/screenshots/2.png b/games/etrian-mystery-dungeon/screenshots/2.png new file mode 100644 index 0000000..002055c Binary files /dev/null and b/games/etrian-mystery-dungeon/screenshots/2.png differ diff --git a/games/etrian-mystery-dungeon/screenshots/3.png b/games/etrian-mystery-dungeon/screenshots/3.png new file mode 100644 index 0000000..499e645 Binary files /dev/null and b/games/etrian-mystery-dungeon/screenshots/3.png differ diff --git a/games/etrian-odyssey-2-untold-the-fafnir-knight/boxart.png b/games/etrian-odyssey-2-untold-the-fafnir-knight/boxart.png new file mode 100644 index 0000000..a826002 Binary files /dev/null and b/games/etrian-odyssey-2-untold-the-fafnir-knight/boxart.png differ diff --git a/games/etrian-odyssey-2-untold-the-fafnir-knight/game.dat b/games/etrian-odyssey-2-untold-the-fafnir-knight/game.dat new file mode 100644 index 0000000..656e613 --- /dev/null +++ b/games/etrian-odyssey-2-untold-the-fafnir-knight/game.dat @@ -0,0 +1,19 @@ +title = "Etrian Odyssey 2 Untold - The Fafnir Knight" +description = "Etrian Odyssey 2 Untold: The Fafnir Knight[a] is a role-playing video game developed and published by Atlus. It is part of the Etrian Odyssey series, and is a remake of the Etrian Odyssey II: Heroes of Lagaard." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000015F200" +region = "usa" +release_date = "2015-07-04" + +[[releases]] +title = "000400000016E900" +region = "eur" +release_date = "2016-02-12" + +[[releases]] +title = "0004000000120500" +region = "jpn" +release_date = "2014-11-27" diff --git a/games/etrian-odyssey-2-untold-the-fafnir-knight/icon.png b/games/etrian-odyssey-2-untold-the-fafnir-knight/icon.png new file mode 100644 index 0000000..02e3eab Binary files /dev/null and b/games/etrian-odyssey-2-untold-the-fafnir-knight/icon.png differ diff --git a/games/etrian-odyssey-2-untold-the-fafnir-knight/screenshots/-.png b/games/etrian-odyssey-2-untold-the-fafnir-knight/screenshots/-.png new file mode 100644 index 0000000..f6917da Binary files /dev/null and b/games/etrian-odyssey-2-untold-the-fafnir-knight/screenshots/-.png differ diff --git a/games/etrian-odyssey-iv-legends-of-the-titan/boxart.png b/games/etrian-odyssey-iv-legends-of-the-titan/boxart.png new file mode 100644 index 0000000..067434e Binary files /dev/null and b/games/etrian-odyssey-iv-legends-of-the-titan/boxart.png differ diff --git a/games/etrian-odyssey-iv-legends-of-the-titan/game.dat b/games/etrian-odyssey-iv-legends-of-the-titan/game.dat new file mode 100644 index 0000000..ad62566 --- /dev/null +++ b/games/etrian-odyssey-iv-legends-of-the-titan/game.dat @@ -0,0 +1,29 @@ +title = "Etrian Odyssey IV: Legends of the Titan" +description = "Etrian Odyssey IV: Legends of the Titan is a dungeon crawler role playing video game developed and published by Atlus for the Nintendo 3DS. It is the sequel to Etrian Odyssey III: The Drowned City and the first in the Etrian Odyssey series to be released on the 3DS." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000000BD300" +region = "usa" +release_date = "2013-02-26" + +[[releases]] +title = "00040000000EA600" +region = "eur" +release_date = "2013-08-30" + +[[ releases ]] +title = "0004000000080100" +region = "jpn" +release_date = "2012-07-05" + +[[testcases]] +title = "00040000000BD300" +compatibility = "1" +date = "2017-07-13" +version = "HEAD-5137a19" +cpu = "Intel Core i7-6700HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 15063" +author = "findanother1" diff --git a/games/etrian-odyssey-iv-legends-of-the-titan/icon.png b/games/etrian-odyssey-iv-legends-of-the-titan/icon.png new file mode 100644 index 0000000..d7b79ca Binary files /dev/null and b/games/etrian-odyssey-iv-legends-of-the-titan/icon.png differ diff --git a/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Battle.png b/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Battle.png new file mode 100644 index 0000000..8cfd63e Binary files /dev/null and b/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Battle.png differ diff --git a/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Dungeon.png b/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Dungeon.png new file mode 100644 index 0000000..35a264a Binary files /dev/null and b/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Dungeon.png differ diff --git a/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Title-Screen.png b/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Title-Screen.png new file mode 100644 index 0000000..2c25bc7 Binary files /dev/null and b/games/etrian-odyssey-iv-legends-of-the-titan/screenshots/Title-Screen.png differ diff --git a/games/etrian-odyssey-untold-the-millennium-girl/boxart.png b/games/etrian-odyssey-untold-the-millennium-girl/boxart.png new file mode 100644 index 0000000..a4c1a53 Binary files /dev/null and b/games/etrian-odyssey-untold-the-millennium-girl/boxart.png differ diff --git a/games/etrian-odyssey-untold-the-millennium-girl/game.dat b/games/etrian-odyssey-untold-the-millennium-girl/game.dat new file mode 100644 index 0000000..056c18a --- /dev/null +++ b/games/etrian-odyssey-untold-the-millennium-girl/game.dat @@ -0,0 +1,19 @@ +title = "Etrian Odyssey Untold - The Millennium Girl" +description = "Etrian Odyssey Untold: The Millennium Girl is a 2013 role-playing video game for the Nintendo 3DS by Atlus. It is part of the Etrian Odyssey series, and is both a \"reimagining\" and a remake of the first entry." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000EC700" +region = "usa" +release_date = "2013-10-01" + +[[releases]] +title = "000400000010EB00" +region = "eur" +release_date = "2014-05-02" + +[[releases]] +title = "00040000000CF800" +region = "jpn" +release_date = "2013-06-27" diff --git a/games/etrian-odyssey-untold-the-millennium-girl/icon.png b/games/etrian-odyssey-untold-the-millennium-girl/icon.png new file mode 100644 index 0000000..0149377 Binary files /dev/null and b/games/etrian-odyssey-untold-the-millennium-girl/icon.png differ diff --git a/games/etrian-odyssey-untold-the-millennium-girl/screenshots/beginning-of-dungeon.png b/games/etrian-odyssey-untold-the-millennium-girl/screenshots/beginning-of-dungeon.png new file mode 100644 index 0000000..33ce13a Binary files /dev/null and b/games/etrian-odyssey-untold-the-millennium-girl/screenshots/beginning-of-dungeon.png differ diff --git a/games/etrian-odyssey-untold-the-millennium-girl/screenshots/beginning-of-the-adventure.png b/games/etrian-odyssey-untold-the-millennium-girl/screenshots/beginning-of-the-adventure.png new file mode 100644 index 0000000..78c5fba Binary files /dev/null and b/games/etrian-odyssey-untold-the-millennium-girl/screenshots/beginning-of-the-adventure.png differ diff --git a/games/etrian-odyssey-untold-the-millennium-girl/screenshots/map-selection.png b/games/etrian-odyssey-untold-the-millennium-girl/screenshots/map-selection.png new file mode 100644 index 0000000..af68a2e Binary files /dev/null and b/games/etrian-odyssey-untold-the-millennium-girl/screenshots/map-selection.png differ diff --git a/games/etrian-odyssey-v-beyond-the-myth/boxart.png b/games/etrian-odyssey-v-beyond-the-myth/boxart.png new file mode 100644 index 0000000..f60ee11 Binary files /dev/null and b/games/etrian-odyssey-v-beyond-the-myth/boxart.png differ diff --git a/games/etrian-odyssey-v-beyond-the-myth/game.dat b/games/etrian-odyssey-v-beyond-the-myth/game.dat new file mode 100644 index 0000000..5430cde --- /dev/null +++ b/games/etrian-odyssey-v-beyond-the-myth/game.dat @@ -0,0 +1,19 @@ +title = "Etrian Odyssey V: Beyond the Myth" +description = "Etrian Odyssey V: Beyond the Myth is a dungeon crawling, initiative-turn-based RPG where you map out the dungeons yourself as you progress. It was developed and published by Atlus and localized by their USA division later." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001C5100" +region = "usa" +release_date = "2017-10-17" + +[[releases]] +title = "00040000001C5300" +region = "eur" +release_date = "2017-11-03" + +[[ releases ]] +title = "000400000018D000" +region = "jpn" +release_date = "2016-08-04" diff --git a/games/etrian-odyssey-v-beyond-the-myth/icon.png b/games/etrian-odyssey-v-beyond-the-myth/icon.png new file mode 100644 index 0000000..87f1b8b Binary files /dev/null and b/games/etrian-odyssey-v-beyond-the-myth/icon.png differ diff --git a/games/etrian-odyssey-v-beyond-the-myth/screenshots/Combat.png b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Combat.png new file mode 100644 index 0000000..bc1475c Binary files /dev/null and b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Combat.png differ diff --git a/games/etrian-odyssey-v-beyond-the-myth/screenshots/Elites.png b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Elites.png new file mode 100644 index 0000000..e958e18 Binary files /dev/null and b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Elites.png differ diff --git a/games/etrian-odyssey-v-beyond-the-myth/screenshots/Home.png b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Home.png new file mode 100644 index 0000000..c177e5c Binary files /dev/null and b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Home.png differ diff --git a/games/etrian-odyssey-v-beyond-the-myth/screenshots/Mapping.png b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Mapping.png new file mode 100644 index 0000000..fad9724 Binary files /dev/null and b/games/etrian-odyssey-v-beyond-the-myth/screenshots/Mapping.png differ diff --git a/games/ever-oasis/boxart.png b/games/ever-oasis/boxart.png new file mode 100644 index 0000000..e577f9d Binary files /dev/null and b/games/ever-oasis/boxart.png differ diff --git a/games/ever-oasis/game.dat b/games/ever-oasis/game.dat new file mode 100644 index 0000000..ffeb8a3 --- /dev/null +++ b/games/ever-oasis/game.dat @@ -0,0 +1,30 @@ +title = "Ever Oasis" +description = "Ever Oasis is an action-adventure role-playing video game developed by Grezzo and published by Nintendo for the Nintendo 3DS video game console. Ever Oasis tells the story of Tethu/Tethi, a young seedling, who with the help of a water spirit named Esna creates an oasis after Tethu/Tethi's brother Nour's oasis falls to Chaos." +github_issues = [2802] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000001A4800" +region = "usa" +release_date = "2017-06-23" + +[[ releases ]] +title = "00040000001A4900" +region = "eur" +release_date = "2017-06-23" + +[[ releases ]] +title = "0004000000164A00" +region = "jpn" +release_date = "2017-07-13" + +[[ testcases ]] +title = "00040000001A4900" +compatibility = "4" +date = "2017-07-10" +version = "HEAD-669757a" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/ever-oasis/icon.png b/games/ever-oasis/icon.png new file mode 100644 index 0000000..4ea4440 Binary files /dev/null and b/games/ever-oasis/icon.png differ diff --git a/games/ever-oasis/screenshots/1.png b/games/ever-oasis/screenshots/1.png new file mode 100644 index 0000000..20fed79 Binary files /dev/null and b/games/ever-oasis/screenshots/1.png differ diff --git a/games/fairune/boxart.png b/games/fairune/boxart.png new file mode 100644 index 0000000..075e14d Binary files /dev/null and b/games/fairune/boxart.png differ diff --git a/games/fairune/game.dat b/games/fairune/game.dat new file mode 100644 index 0000000..1eb8c41 --- /dev/null +++ b/games/fairune/game.dat @@ -0,0 +1,25 @@ +title = "Fairune" +description = "Fairune is a retro-style puzzle action role-playing game (ARPG) developed by Skipmore and published by CIRCLE Entertainment for iOS, Android, and the Nintendo 3DS. The game is followed by a sequel, Fairune 2." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000158700" +region = "usa" +release_date = "2014-12-18" + +[[releases]] +title = "0004000000148B00" +region = "eur" +release_date = "2014-12-11" + +[[testcases]] +title = "0004000000158700" +compatibility = "2" +date = "2017-11-04" +version = "HEAD-c6b2cc2" +cpu = "Intel Xeon E31240" +gpu = "NVIDIA GeForce GTX 750" +os = "Windows 7 7601" +author = "AuraOfTheDawn" diff --git a/games/fairune/icon.png b/games/fairune/icon.png new file mode 100644 index 0000000..4650e08 Binary files /dev/null and b/games/fairune/icon.png differ diff --git a/games/fairune/screenshots/3DSExclusiveDungeon.png b/games/fairune/screenshots/3DSExclusiveDungeon.png new file mode 100644 index 0000000..ff93b26 Binary files /dev/null and b/games/fairune/screenshots/3DSExclusiveDungeon.png differ diff --git a/games/fairune/screenshots/Altar.png b/games/fairune/screenshots/Altar.png new file mode 100644 index 0000000..c970e30 Binary files /dev/null and b/games/fairune/screenshots/Altar.png differ diff --git a/games/fairune/screenshots/GraveSite.png b/games/fairune/screenshots/GraveSite.png new file mode 100644 index 0000000..eb09504 Binary files /dev/null and b/games/fairune/screenshots/GraveSite.png differ diff --git a/games/fairune/screenshots/LargeMode.png b/games/fairune/screenshots/LargeMode.png new file mode 100644 index 0000000..c455c6f Binary files /dev/null and b/games/fairune/screenshots/LargeMode.png differ diff --git a/games/fairune2/boxart.png b/games/fairune2/boxart.png new file mode 100644 index 0000000..59a8ec2 Binary files /dev/null and b/games/fairune2/boxart.png differ diff --git a/games/fairune2/game.dat b/games/fairune2/game.dat new file mode 100644 index 0000000..451e126 --- /dev/null +++ b/games/fairune2/game.dat @@ -0,0 +1,26 @@ +title = "Fairune 2" +description = "Fairune 2 is a fantasy puzzle-solving adventure RPG. Which has you explore the map by solving puzzles, tricks and beating monsters. You are requested by the mysterious book that can say where to find the lost fairy. In this adventure, you encounter the wonderful girl that may lead you to the truth of the world. With much greater content than the prequel game, the power-up 8-bit taste graphics and sounds will bring forth the new reminiscent game-play." +incomplete = true +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "000400000016D500" +region = "usa" +release_date = "2016-10-20" + +[[releases]] +title = "000400000016CF00" +region = "eur" +release_date = "2016-10-27" + +[[testcases]] +title = "000400000016CF00" +compatibility = "1" +date = "2017-08-09" +version = "HEAD-792dee4" +cpu = "Intel Core i7 2630QM" +gpu = "GeForce GT 540M" +os = "Windows 7 7601" +author = "flaviculpus" diff --git a/games/fairune2/icon.png b/games/fairune2/icon.png new file mode 100644 index 0000000..a90d8bf Binary files /dev/null and b/games/fairune2/icon.png differ diff --git a/games/fairune2/screenshots/ingame.png b/games/fairune2/screenshots/ingame.png new file mode 100644 index 0000000..26a4297 Binary files /dev/null and b/games/fairune2/screenshots/ingame.png differ diff --git a/games/fallblox/boxart.png b/games/fallblox/boxart.png new file mode 100644 index 0000000..0899796 Binary files /dev/null and b/games/fallblox/boxart.png differ diff --git a/games/fallblox/game.dat b/games/fallblox/game.dat new file mode 100644 index 0000000..c34e5b6 --- /dev/null +++ b/games/fallblox/game.dat @@ -0,0 +1,20 @@ +title = "Crashmo" +description = "Fallblox is a puzzle game about falling blocks. Similar gameplay to its predecessor, Pullblox. Known as Crashmo in the USA and Hiku Otsu in Japan" +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000B6E00" +region = "usa" +release_date = "2012-11-22" + +[[releases]] +title = "00040000000B4F00" +region = "eur" +release_date = "2012-11-15" + +[[releases]] +title = "00040000000AAD00" +region = "jpn" +release_date = "2012-10-31" diff --git a/games/fallblox/icon.png b/games/fallblox/icon.png new file mode 100644 index 0000000..f1edaad Binary files /dev/null and b/games/fallblox/icon.png differ diff --git a/games/fallblox/screenshots/Level-1.png b/games/fallblox/screenshots/Level-1.png new file mode 100644 index 0000000..6449fb7 Binary files /dev/null and b/games/fallblox/screenshots/Level-1.png differ diff --git a/games/fallblox/screenshots/Level-Clear.png b/games/fallblox/screenshots/Level-Clear.png new file mode 100644 index 0000000..d56428f Binary files /dev/null and b/games/fallblox/screenshots/Level-Clear.png differ diff --git a/games/fallblox/screenshots/Title-Screen.png b/games/fallblox/screenshots/Title-Screen.png new file mode 100644 index 0000000..9186368 Binary files /dev/null and b/games/fallblox/screenshots/Title-Screen.png differ diff --git a/games/fantasy-life/boxart.png b/games/fantasy-life/boxart.png new file mode 100644 index 0000000..6ae3513 Binary files /dev/null and b/games/fantasy-life/boxart.png differ diff --git a/games/fantasy-life/game.dat b/games/fantasy-life/game.dat new file mode 100644 index 0000000..a619d12 --- /dev/null +++ b/games/fantasy-life/game.dat @@ -0,0 +1,45 @@ +title = "Fantasy Life" +description = "Fantasy Life is a role-playing video game developed by Level-5, with production assistance from Brownie Brown and h.a.n.d. for the Nintendo 3DS. The game was previously being developed for the Nintendo DS. Fantasy Life Link! includes online play with friends, a rise in level cap, additional quests, and the ability to take screenshots, among others. The international version of Fantasy Life included all the additional content of Link!, with the exception of the Origin Island DLC." +github_issues = [2276] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000113200" +region = "usa" +release_date = "2014-10-24" + +[[releases]] +title = "0004000000113100" +region = "eur" +release_date = "2014-09-26" + +[[releases]] +title = "000400000006D200" +region = "jpn" +release_date = "2012-12-27" + +[[releases]] +title = "00040000000E9C00" +region = "jpn" +release_date = "2013-07-25" + +[[testcases]] +title = "0004000000113100" +compatibility = "3" +date = "2017-07-28" +version = "HEAD-05a38e3" +author = "Chiefirons" +cpu = "Intel Core i7-4790S" +gpu = "NVIDIA GeForce GTX 1050 Ti" +os = "Windows 10 15063" + +[[testcases]] +title = "0004000000113200" +compatibility = "1" +date = "2017-07-31" +version = "HEAD-60024ad" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/fantasy-life/icon.png b/games/fantasy-life/icon.png new file mode 100644 index 0000000..586ec8c Binary files /dev/null and b/games/fantasy-life/icon.png differ diff --git a/games/fantasy-life/screenshots/SlowPerformance.png b/games/fantasy-life/screenshots/SlowPerformance.png new file mode 100644 index 0000000..9c0997b Binary files /dev/null and b/games/fantasy-life/screenshots/SlowPerformance.png differ diff --git a/games/final-fantasy-explorers/boxart.png b/games/final-fantasy-explorers/boxart.png new file mode 100644 index 0000000..cae64db Binary files /dev/null and b/games/final-fantasy-explorers/boxart.png differ diff --git a/games/final-fantasy-explorers/game.dat b/games/final-fantasy-explorers/game.dat new file mode 100644 index 0000000..f3d8525 --- /dev/null +++ b/games/final-fantasy-explorers/game.dat @@ -0,0 +1,19 @@ +title = "Final Fantasy Explorers" +description = "Final Fantasy Explorers is an action role-playing video game developed by Racjin and published by Square Enix for the Nintendo 3DS. It features character job-oriented combat against classic Final Fantasy monsters and summons." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000016ED00" +region = "usa" +release_date = "2016-01-26" + +[[releases]] +title = "000400000016E700" +region = "eur" +release_date = "2016-01-29" + +[[releases]] +title = "000400000010E200" +region = "jpn" +release_date = "2014-12-18" diff --git a/games/final-fantasy-explorers/icon.png b/games/final-fantasy-explorers/icon.png new file mode 100644 index 0000000..8883b27 Binary files /dev/null and b/games/final-fantasy-explorers/icon.png differ diff --git a/games/final-fantasy-explorers/screenshots/bahamut.png b/games/final-fantasy-explorers/screenshots/bahamut.png new file mode 100644 index 0000000..ce4f5a2 Binary files /dev/null and b/games/final-fantasy-explorers/screenshots/bahamut.png differ diff --git a/games/final-fantasy-explorers/screenshots/town.png b/games/final-fantasy-explorers/screenshots/town.png new file mode 100644 index 0000000..d71131c Binary files /dev/null and b/games/final-fantasy-explorers/screenshots/town.png differ diff --git a/games/final-fantasy-explorers/screenshots/tutorialbattle.png b/games/final-fantasy-explorers/screenshots/tutorialbattle.png new file mode 100644 index 0000000..47ac7af Binary files /dev/null and b/games/final-fantasy-explorers/screenshots/tutorialbattle.png differ diff --git a/games/fire-emblem-awakening/boxart.png b/games/fire-emblem-awakening/boxart.png new file mode 100644 index 0000000..2f7a28a Binary files /dev/null and b/games/fire-emblem-awakening/boxart.png differ diff --git a/games/fire-emblem-awakening/game.dat b/games/fire-emblem-awakening/game.dat new file mode 100644 index 0000000..cc3ddbb --- /dev/null +++ b/games/fire-emblem-awakening/game.dat @@ -0,0 +1,31 @@ +title = "Fire Emblem Awakening" +description = "Fire Emblem Awakening is a tactical role-playing video game, developed by Intelligent Systems and Nintendo SPD and published by Nintendo for the Nintendo 3DS handheld. It is the eleventh entry in the Fire Emblem series, and the first to be developed for the Nintendo 3DS." +incomplete = true +github_issues = [2548] +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "00040000000A0500" +region = "usa" +release_date = "2013-02-04" + +[[ releases ]] +title = "000400000009F100" +region = "eur" +release_date = "2013-04-19" + +[[ releases ]] +title = "0004000000072000" +region = "jpn" +release_date = "2012-04-19" + +[[ testcases ]] +title = "00040000000A0500" +compatibility = "2" +date = "2017-05-31" +version = "HEAD-4857eb4" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/fire-emblem-awakening/icon.png b/games/fire-emblem-awakening/icon.png new file mode 100644 index 0000000..431ab25 Binary files /dev/null and b/games/fire-emblem-awakening/icon.png differ diff --git a/games/fire-emblem-echoes-shadows-of-valentia/boxart.png b/games/fire-emblem-echoes-shadows-of-valentia/boxart.png new file mode 100644 index 0000000..a0051c2 Binary files /dev/null and b/games/fire-emblem-echoes-shadows-of-valentia/boxart.png differ diff --git a/games/fire-emblem-echoes-shadows-of-valentia/game.dat b/games/fire-emblem-echoes-shadows-of-valentia/game.dat new file mode 100644 index 0000000..b4db636 --- /dev/null +++ b/games/fire-emblem-echoes-shadows-of-valentia/game.dat @@ -0,0 +1,20 @@ +title = "Fire Emblem Echoes: Shadows of Valentia" +description = "Fire Emblem Echoes: Shadows of Valentia is a tactical role-playing game developed by Intelligent Systems and published by Nintendo for the Nintendo 3DS handheld video game console." +github_issues = [3134] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001B4000" +region = "usa" +release_date = "2017-05-19" + +[[releases]] +title = "00040000001B4100" +region = "eur" +release_date = "2017-05-19" + +[[releases]] +title = "00040000001A2B00" +region = "jpn" +release_date = "2017-04-20" diff --git a/games/fire-emblem-echoes-shadows-of-valentia/icon.png b/games/fire-emblem-echoes-shadows-of-valentia/icon.png new file mode 100644 index 0000000..101e800 Binary files /dev/null and b/games/fire-emblem-echoes-shadows-of-valentia/icon.png differ diff --git a/games/fire-emblem-echoes-shadows-of-valentia/screenshots/crash-point.png b/games/fire-emblem-echoes-shadows-of-valentia/screenshots/crash-point.png new file mode 100644 index 0000000..a565bf8 Binary files /dev/null and b/games/fire-emblem-echoes-shadows-of-valentia/screenshots/crash-point.png differ diff --git a/games/fire-emblem-fates-special-edition/boxart.png b/games/fire-emblem-fates-special-edition/boxart.png new file mode 100644 index 0000000..13e7bba Binary files /dev/null and b/games/fire-emblem-fates-special-edition/boxart.png differ diff --git a/games/fire-emblem-fates-special-edition/game.dat b/games/fire-emblem-fates-special-edition/game.dat new file mode 100644 index 0000000..290ffeb --- /dev/null +++ b/games/fire-emblem-fates-special-edition/game.dat @@ -0,0 +1,26 @@ +title = "Fire Emblem: Fates - Special Edition" +description = "The overarching story follows the protagonist, a customizable Avatar created by the player, as they are unwillingly drawn into a war between the Kingdoms of Hoshido (their birthplace) and Nohr (their adopted home), and must choose which side to support." +incomplete = true +github_issues = [3443] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000179800" +region = "usa" +release_date = "2016-02-19" + +[[ releases ]] +title = "000400000017A800" +region = "eur" +release_date = "2016-05-20" + +[[ testcases ]] +compatibility = "2" +date = "2017-06-19" +title = "000400000017A800" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/fire-emblem-fates-special-edition/icon.png b/games/fire-emblem-fates-special-edition/icon.png new file mode 100644 index 0000000..f1e2033 Binary files /dev/null and b/games/fire-emblem-fates-special-edition/icon.png differ diff --git a/games/fire-emblem-warriors/boxart.png b/games/fire-emblem-warriors/boxart.png new file mode 100644 index 0000000..322347d Binary files /dev/null and b/games/fire-emblem-warriors/boxart.png differ diff --git a/games/fire-emblem-warriors/game.dat b/games/fire-emblem-warriors/game.dat new file mode 100644 index 0000000..0a16603 --- /dev/null +++ b/games/fire-emblem-warriors/game.dat @@ -0,0 +1,29 @@ +title = "Fire Emblem Warriors" +description = "Fire Emblem Warriors is a hack and slash role-playing game developed by Omega Force and Team Ninja, and published by Nintendo for the Nintendo 3DS and Nintendo Switch. The game is a collaboration between Koei Tecmo's Dynasty Warriors franchise and Intelligent Systems' Fire Emblem series." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000F70CC00" +region = "usa" +release_date = "2017-10-20" + +[[releases]] +title = "000400000F70CD00" +region = "eur" +release_date = "2017-10-20" + +[[releases]] +title = "000400000F70C100" +region = "jpn" +release_date = "2017-09-28" + +[[testcases]] +title = "000400000F70CD00" +compatibility = "5" +date = "2017-11-19" +version = "HEAD-c810a3f" +cpu = "Intel Core i7-4700HQ" +gpu = "Nvidia GeForce GTX 860M" +os = "Windows 7 6.1.7601" +author = "Rignak" diff --git a/games/fire-emblem-warriors/icon.png b/games/fire-emblem-warriors/icon.png new file mode 100644 index 0000000..d02780f Binary files /dev/null and b/games/fire-emblem-warriors/icon.png differ diff --git a/games/fire-emblem-warriors/screenshots/the-game-crash-after-launching.png b/games/fire-emblem-warriors/screenshots/the-game-crash-after-launching.png new file mode 100644 index 0000000..bce6167 Binary files /dev/null and b/games/fire-emblem-warriors/screenshots/the-game-crash-after-launching.png differ diff --git a/games/fluidity-spin-cycle/boxart.png b/games/fluidity-spin-cycle/boxart.png new file mode 100644 index 0000000..8683dcf Binary files /dev/null and b/games/fluidity-spin-cycle/boxart.png differ diff --git a/games/fluidity-spin-cycle/game.dat b/games/fluidity-spin-cycle/game.dat new file mode 100644 index 0000000..ecf4cc9 --- /dev/null +++ b/games/fluidity-spin-cycle/game.dat @@ -0,0 +1,20 @@ +title = "Fluidity: Spin Cycle" +description = "Fluidity: Spin Cycle, known as Hydroventure: Spin Cycle in Europe and Oceania, is a physics puzzle game developed by Curve Studios and published by Nintendo. The game is a sequel to the WiiWare game Fluidity, the latter of which focuses on controlling a small body of water that is utilized in its different states of matter to progress through the game's levels. The game is based around gyroscope controls and tilting the 3DS to move." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000AE000" +region = "usa" +release_date = "2012-12-27" + +[[releases]] +title = "00040000000AD300" +region = "eur" +release_date = "2012-12-13" + +[[releases]] +title = "00040000000AD400" +region = "jpn" +release_date = "2012-12-19" diff --git a/games/fluidity-spin-cycle/icon.png b/games/fluidity-spin-cycle/icon.png new file mode 100644 index 0000000..91da636 Binary files /dev/null and b/games/fluidity-spin-cycle/icon.png differ diff --git a/games/fluidity-spin-cycle/screenshots/ingame-door.png b/games/fluidity-spin-cycle/screenshots/ingame-door.png new file mode 100644 index 0000000..56b9ded Binary files /dev/null and b/games/fluidity-spin-cycle/screenshots/ingame-door.png differ diff --git a/games/fluidity-spin-cycle/screenshots/ingame-textbox.png b/games/fluidity-spin-cycle/screenshots/ingame-textbox.png new file mode 100644 index 0000000..e3d83aa Binary files /dev/null and b/games/fluidity-spin-cycle/screenshots/ingame-textbox.png differ diff --git a/games/fluidity-spin-cycle/screenshots/level-finished.png b/games/fluidity-spin-cycle/screenshots/level-finished.png new file mode 100644 index 0000000..9f5a71f Binary files /dev/null and b/games/fluidity-spin-cycle/screenshots/level-finished.png differ diff --git a/games/gaki-no-tsukai/boxart.png b/games/gaki-no-tsukai/boxart.png new file mode 100644 index 0000000..b1e5a69 Binary files /dev/null and b/games/gaki-no-tsukai/boxart.png differ diff --git a/games/gaki-no-tsukai/game.dat b/games/gaki-no-tsukai/game.dat new file mode 100644 index 0000000..4d14244 --- /dev/null +++ b/games/gaki-no-tsukai/game.dat @@ -0,0 +1,19 @@ +title = "Downtown no Gaki no Tsukai ya Arahende!! Zettai ni Tsukamatte ha Ikenai Gasu Kuropikari Land" +description = "Based off Gaki no Tsukai's New Years No-Laughing batsu games, in this 3D action game the challenge is 'Do not get caught.' Failing to do so will result in harsh punishments by black demons. Battle with up to 4 people, including appearances from many familiar characters." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "000400000017D800" +region = "jpn" +release_date = "2015-12-17" + +[[ testcases ]] +title = "000400000017D800" +compatibility = "0" +date = "2017-06-10" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/gaki-no-tsukai/icon.png b/games/gaki-no-tsukai/icon.png new file mode 100644 index 0000000..8ee52b9 Binary files /dev/null and b/games/gaki-no-tsukai/icon.png differ diff --git a/games/gaki-no-tsukai/screenshots/Batsu.png b/games/gaki-no-tsukai/screenshots/Batsu.png new file mode 100644 index 0000000..74e9962 Binary files /dev/null and b/games/gaki-no-tsukai/screenshots/Batsu.png differ diff --git a/games/gaki-no-tsukai/screenshots/In-game.png b/games/gaki-no-tsukai/screenshots/In-game.png new file mode 100644 index 0000000..eec87ed Binary files /dev/null and b/games/gaki-no-tsukai/screenshots/In-game.png differ diff --git a/games/gaki-no-tsukai/screenshots/Title-Screen.png b/games/gaki-no-tsukai/screenshots/Title-Screen.png new file mode 100644 index 0000000..ae8f276 Binary files /dev/null and b/games/gaki-no-tsukai/screenshots/Title-Screen.png differ diff --git a/games/harmoknight/boxart.png b/games/harmoknight/boxart.png new file mode 100644 index 0000000..9d8a637 Binary files /dev/null and b/games/harmoknight/boxart.png differ diff --git a/games/harmoknight/game.dat b/games/harmoknight/game.dat new file mode 100644 index 0000000..88702a5 --- /dev/null +++ b/games/harmoknight/game.dat @@ -0,0 +1,20 @@ +title = "HarmoKnight" +description = "HarmoKnight is a rhythm platformer developed by Game Freak and published by Nintendo, where players control a young boy named Tempo as he travels through automatically scrolling levels hitting enemies in the rhythm of the music in order to gather notes." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000C2D00" +region = "usa" +release_date = "2013-03-28" + +[[releases]] +title = "00040000000C2E00" +region = "eur" +release_date = "2013-04-10" + +[[releases]] +title = "0004000000092B00" +region = "jpn" +release_date = "2012-09-05" diff --git a/games/harmoknight/icon.png b/games/harmoknight/icon.png new file mode 100644 index 0000000..e4bbed6 Binary files /dev/null and b/games/harmoknight/icon.png differ diff --git a/games/harmoknight/screenshots/Battle-Action.png b/games/harmoknight/screenshots/Battle-Action.png new file mode 100644 index 0000000..8d8495e Binary files /dev/null and b/games/harmoknight/screenshots/Battle-Action.png differ diff --git a/games/harmoknight/screenshots/Game-Interface.png b/games/harmoknight/screenshots/Game-Interface.png new file mode 100644 index 0000000..1b681f6 Binary files /dev/null and b/games/harmoknight/screenshots/Game-Interface.png differ diff --git a/games/harmoknight/screenshots/Main-Menu.png b/games/harmoknight/screenshots/Main-Menu.png new file mode 100644 index 0000000..2b7eef2 Binary files /dev/null and b/games/harmoknight/screenshots/Main-Menu.png differ diff --git a/games/harvest-moon-3d-a-new-beginning/boxart.png b/games/harvest-moon-3d-a-new-beginning/boxart.png new file mode 100644 index 0000000..7bc60cf Binary files /dev/null and b/games/harvest-moon-3d-a-new-beginning/boxart.png differ diff --git a/games/harvest-moon-3d-a-new-beginning/game.dat b/games/harvest-moon-3d-a-new-beginning/game.dat new file mode 100644 index 0000000..1b2fcf4 --- /dev/null +++ b/games/harvest-moon-3d-a-new-beginning/game.dat @@ -0,0 +1,20 @@ +title = "Harvest Moon 3D: A New Beginning" +description = "Harvest Moon 3D: A New Beginning is a role playing game for the Nintendo 3DS. It was the last title in the Bokujō Monogatari/Story of Seasons series to be released under the \"Harvest Moon\" name. The game was published by Marvelous AQL in Japan, Marvelous AQL Europe in Europe, and Natsume in North America." +github_issues = [1583, 1980] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000A5900" +region = "usa" +release_date = "2012-10-19" + +[[releases]] +title = "00040000000EAE00" +region = "eur" +release_date = "2013-09-20" + +[[releases]] +title = "0004000000073700" +region = "jpn" +release_date = "2012-02-23" diff --git a/games/harvest-moon-3d-a-new-beginning/icon.png b/games/harvest-moon-3d-a-new-beginning/icon.png new file mode 100644 index 0000000..e302a61 Binary files /dev/null and b/games/harvest-moon-3d-a-new-beginning/icon.png differ diff --git a/games/harvest-moon-3d-a-new-beginning/screenshots/character-creation.png b/games/harvest-moon-3d-a-new-beginning/screenshots/character-creation.png new file mode 100644 index 0000000..0225c29 Binary files /dev/null and b/games/harvest-moon-3d-a-new-beginning/screenshots/character-creation.png differ diff --git a/games/harvest-moon-3d-the-tale-of-two-towns/boxart.png b/games/harvest-moon-3d-the-tale-of-two-towns/boxart.png new file mode 100644 index 0000000..93e6b9b Binary files /dev/null and b/games/harvest-moon-3d-the-tale-of-two-towns/boxart.png differ diff --git a/games/harvest-moon-3d-the-tale-of-two-towns/game.dat b/games/harvest-moon-3d-the-tale-of-two-towns/game.dat new file mode 100644 index 0000000..b815b0d --- /dev/null +++ b/games/harvest-moon-3d-the-tale-of-two-towns/game.dat @@ -0,0 +1,19 @@ +title = "Harvest Moon 3D: The Tale of Two Towns" +description = "Harvest Moon 3D: The Tale of Two Towns is a farming simulation video game developed by Marvelous Entertainment for the Nintendo 3DS as part of the Story of Seasons series. It was published by Marvelous Interactive in Japan, Natsume in North America, and Rising Star Games in Europe." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "0004000000047900" +region = "usa" +release_date = "2011-11-01" + +[[releases]] +title = "000400000007A300" +region = "eur" +release_date = "2012-06-29" + +[[releases]] +title = "00040000001CC400" +region = "jpn" +release_date = "2017-12-14" diff --git a/games/harvest-moon-3d-the-tale-of-two-towns/icon.png b/games/harvest-moon-3d-the-tale-of-two-towns/icon.png new file mode 100644 index 0000000..5a55ead Binary files /dev/null and b/games/harvest-moon-3d-the-tale-of-two-towns/icon.png differ diff --git a/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/home.png b/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/home.png new file mode 100644 index 0000000..5ac4b5d Binary files /dev/null and b/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/home.png differ diff --git a/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/load-game.png b/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/load-game.png new file mode 100644 index 0000000..530d8b0 Binary files /dev/null and b/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/load-game.png differ diff --git a/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/shipping.png b/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/shipping.png new file mode 100644 index 0000000..dfeca13 Binary files /dev/null and b/games/harvest-moon-3d-the-tale-of-two-towns/screenshots/shipping.png differ diff --git a/games/hatsune-miku-and-future-stars-project-mirai/boxart.png b/games/hatsune-miku-and-future-stars-project-mirai/boxart.png new file mode 100644 index 0000000..c0a1e4a Binary files /dev/null and b/games/hatsune-miku-and-future-stars-project-mirai/boxart.png differ diff --git a/games/hatsune-miku-and-future-stars-project-mirai/game.dat b/games/hatsune-miku-and-future-stars-project-mirai/game.dat new file mode 100644 index 0000000..89671f0 --- /dev/null +++ b/games/hatsune-miku-and-future-stars-project-mirai/game.dat @@ -0,0 +1,9 @@ +title = "Hatsune Miku and Future Stars: Project Mirai" +description = "Hatsune Miku and Future Stars: Project Mirai is a rhythm game created by Sega and Crypton Future Media. This game features the Chance Circle System. Buttons will appear around the border of a circle, and a pointer will appear from the center of the circle extending all the way outside the circle's border. It will then turn in a clockwise or counter-clockwise manner according to the song and when the pointer passes the button, the player has to press the face button on the 3DS." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "0004000000048000" +region = "jpn" +release_date = "2012-03-08" diff --git a/games/hatsune-miku-and-future-stars-project-mirai/icon.png b/games/hatsune-miku-and-future-stars-project-mirai/icon.png new file mode 100644 index 0000000..9f28360 Binary files /dev/null and b/games/hatsune-miku-and-future-stars-project-mirai/icon.png differ diff --git a/games/hatsune-miku-and-future-stars-project-mirai/screenshots/In-game.png b/games/hatsune-miku-and-future-stars-project-mirai/screenshots/In-game.png new file mode 100644 index 0000000..c749df5 Binary files /dev/null and b/games/hatsune-miku-and-future-stars-project-mirai/screenshots/In-game.png differ diff --git a/games/hatsune-miku-and-future-stars-project-mirai/screenshots/Main-menu.png b/games/hatsune-miku-and-future-stars-project-mirai/screenshots/Main-menu.png new file mode 100644 index 0000000..f874719 Binary files /dev/null and b/games/hatsune-miku-and-future-stars-project-mirai/screenshots/Main-menu.png differ diff --git a/games/hatsune-miku-and-future-stars-project-mirai/screenshots/Title-screen.png b/games/hatsune-miku-and-future-stars-project-mirai/screenshots/Title-screen.png new file mode 100644 index 0000000..1688a44 Binary files /dev/null and b/games/hatsune-miku-and-future-stars-project-mirai/screenshots/Title-screen.png differ diff --git a/games/hatsune-miku-project-mirai-dx/boxart.png b/games/hatsune-miku-project-mirai-dx/boxart.png new file mode 100644 index 0000000..2701fac Binary files /dev/null and b/games/hatsune-miku-project-mirai-dx/boxart.png differ diff --git a/games/hatsune-miku-project-mirai-dx/game.dat b/games/hatsune-miku-project-mirai-dx/game.dat new file mode 100644 index 0000000..cf51b17 --- /dev/null +++ b/games/hatsune-miku-project-mirai-dx/game.dat @@ -0,0 +1,29 @@ +title = "Hatsune Miku: Project Mirai DX" +description = "Hatsune Miku: Project Mirai DX is a 3D rhythm action game starring the world's most famous virtual singer Hatsune Miku. Join the Miku phenomenon by expressing yourself through fun creative tools, sharing your cute customizations, and experiencing some of the best music from the world's favorite digital diva!" +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000148C00" +region = "usa" +release_date = "2015-09-08" + +[[releases]] +title = "0004000000148900" +region = "eur" +release_date = "2015-09-11" + +[[releases]] +title = "000400000014A800" +region = "jpn" +release_date = "2013-10-03" + +[[testcases]] +title = "0004000000148C00" +compatibility = "1" +date = "2017-08-01" +version = "HEAD-60024ad" +cpu = "Intel Core i5-3210M" +gpu = "Radeon HD 8750M" +os = "Windows 10 15063" +author = "bronozoj" diff --git a/games/hatsune-miku-project-mirai-dx/icon.png b/games/hatsune-miku-project-mirai-dx/icon.png new file mode 100644 index 0000000..fe66e42 Binary files /dev/null and b/games/hatsune-miku-project-mirai-dx/icon.png differ diff --git a/games/hatsune-miku-project-mirai-dx/screenshots/DIVA-Room.png b/games/hatsune-miku-project-mirai-dx/screenshots/DIVA-Room.png new file mode 100644 index 0000000..c78d395 Binary files /dev/null and b/games/hatsune-miku-project-mirai-dx/screenshots/DIVA-Room.png differ diff --git a/games/hatsune-miku-project-mirai-dx/screenshots/Ingame.png b/games/hatsune-miku-project-mirai-dx/screenshots/Ingame.png new file mode 100644 index 0000000..6f54dcb Binary files /dev/null and b/games/hatsune-miku-project-mirai-dx/screenshots/Ingame.png differ diff --git a/games/hatsune-miku-project-mirai-dx/screenshots/Song-Select.png b/games/hatsune-miku-project-mirai-dx/screenshots/Song-Select.png new file mode 100644 index 0000000..9f3642d Binary files /dev/null and b/games/hatsune-miku-project-mirai-dx/screenshots/Song-Select.png differ diff --git a/games/health-and-safety-information/boxart.png b/games/health-and-safety-information/boxart.png new file mode 100644 index 0000000..387f595 Binary files /dev/null and b/games/health-and-safety-information/boxart.png differ diff --git a/games/health-and-safety-information/game.dat b/games/health-and-safety-information/game.dat new file mode 100644 index 0000000..3bda3e0 --- /dev/null +++ b/games/health-and-safety-information/game.dat @@ -0,0 +1,30 @@ +title = "Health and Safety Information" +description = "Health and Safety Information for the Nintendo 3DS is pre-installed on the 3DS as a system application." +incomplete = true +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004001000021300" +region = "usa" +release_date = "2011-03-27" + +[[releases]] +title = "0004001000022300" +region = "eur" +release_date = "2011-03-25" + +[[releases]] +title = "0004001000020300" +region = "jpn" +release_date = "2011-02-26" + +[[ testcases ]] + title = "0004001000021300" + compatibility = "0" + date = "2017-07-11" + version = "HEAD-c017065" + author = "Breadfish64" + cpu = "Intel Core i7-4700mq" + gpu = "Nvidia Geforce GT 740m" + os = "Windows 10 Home 1703" diff --git a/games/health-and-safety-information/icon.png b/games/health-and-safety-information/icon.png new file mode 100644 index 0000000..b03978c Binary files /dev/null and b/games/health-and-safety-information/icon.png differ diff --git a/games/heroes-of-ruin/boxart.png b/games/heroes-of-ruin/boxart.png new file mode 100644 index 0000000..463f883 Binary files /dev/null and b/games/heroes-of-ruin/boxart.png differ diff --git a/games/heroes-of-ruin/game.dat b/games/heroes-of-ruin/game.dat new file mode 100644 index 0000000..a09dc1f --- /dev/null +++ b/games/heroes-of-ruin/game.dat @@ -0,0 +1,25 @@ +title = "Heroes of Ruin" +description = "Heroes of Ruin is an action role-playing game in which the player battles various enemies such as snipers, beasts, and fencers." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000075100" +region = "usa" +release_date = "2012-07-17" + +[[ releases ]] +title = "0004000000074000" +region = "eur" +release_date = "2012-06-15" + +[[ testcases ]] +compatibility = "3" +date = "2017-06-19" +title = "0004000000074000" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/heroes-of-ruin/icon.png b/games/heroes-of-ruin/icon.png new file mode 100644 index 0000000..b10d923 Binary files /dev/null and b/games/heroes-of-ruin/icon.png differ diff --git a/games/hey-pikmin/boxart.png b/games/hey-pikmin/boxart.png new file mode 100644 index 0000000..fdeebff Binary files /dev/null and b/games/hey-pikmin/boxart.png differ diff --git a/games/hey-pikmin/game.dat b/games/hey-pikmin/game.dat new file mode 100644 index 0000000..daaa541 --- /dev/null +++ b/games/hey-pikmin/game.dat @@ -0,0 +1,29 @@ +title = "Hey! Pikmin" +description = "Hey! Pikmin is a Pikmin spin-off game for the Nintendo 3DS. Unlike the main games in the series, which are 3D real-time strategy and action games, this is a 2.5D puzzle platformer." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "00040000001AFA00" +region = "usa" +release_date = "2017-07-28" + +[[releases]] +title = "00040000001AF800" +region = "eur" +release_date = "2017-07-28" + +[[releases]] +title = "00040000001A9200" +region = "jpn" +release_date = "2017-07-13" + +[[testcases]] +title = "00040000001AF800" +compatibility = "1" +date = "2017-09-11" +version = "HEAD-5880771" +cpu = "Intel Core i3-4150" +gpu = "Intel HD Graphics 4400" +os = "Windows 7 7600" +author = "valentinvanelslande" diff --git a/games/hey-pikmin/icon.png b/games/hey-pikmin/icon.png new file mode 100644 index 0000000..d26bbf6 Binary files /dev/null and b/games/hey-pikmin/icon.png differ diff --git a/games/hey-pikmin/screenshots/touch.png b/games/hey-pikmin/screenshots/touch.png new file mode 100644 index 0000000..0ed1315 Binary files /dev/null and b/games/hey-pikmin/screenshots/touch.png differ diff --git a/games/hey-pikmin/screenshots/walking.png b/games/hey-pikmin/screenshots/walking.png new file mode 100644 index 0000000..9c1884a Binary files /dev/null and b/games/hey-pikmin/screenshots/walking.png differ diff --git a/games/hey-pikmin/screenshots/world.png b/games/hey-pikmin/screenshots/world.png new file mode 100644 index 0000000..b9d3e65 Binary files /dev/null and b/games/hey-pikmin/screenshots/world.png differ diff --git a/games/hyrule-warriors-legends/boxart.png b/games/hyrule-warriors-legends/boxart.png new file mode 100644 index 0000000..f7cc30c Binary files /dev/null and b/games/hyrule-warriors-legends/boxart.png differ diff --git a/games/hyrule-warriors-legends/game.dat b/games/hyrule-warriors-legends/game.dat new file mode 100644 index 0000000..0d3ba26 --- /dev/null +++ b/games/hyrule-warriors-legends/game.dat @@ -0,0 +1,30 @@ +title = "Hyrule Warriors Legends" +description = "Hyrule Warriors Legends is a Hack & Slash game with RPG elements set in the universe of The Legend of Zelda. It was developed by Omega Force the team behind Dynasty Warriors and Team Ninja responsible for Ninja gaiden." +github_issues = [2198] +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000017EA00" +region = "usa" +release_date = "2016-03-25" + +[[releases]] +title = "000400000017EB00" +region = "eur" +release_date = "2016-03-24" + +[[releases]] +title = "000400000017D500" +region = "jpn" +release_date = "2016-01-21" + +[[testcases]] +title = "000400000017EB00" +compatibility = "4" +date = "2017-08-25" +version = "HEAD-61442d6" +cpu = "Intel Core i3-6100" +gpu = "GeForce GTX 1050ti" +os = "Windows 10 14393" +author = "LCypher00" diff --git a/games/hyrule-warriors-legends/icon.png b/games/hyrule-warriors-legends/icon.png new file mode 100644 index 0000000..1dd57bd Binary files /dev/null and b/games/hyrule-warriors-legends/icon.png differ diff --git a/games/hyrule-warriors-legends/screenshots/cutscene.png b/games/hyrule-warriors-legends/screenshots/cutscene.png new file mode 100644 index 0000000..e719586 Binary files /dev/null and b/games/hyrule-warriors-legends/screenshots/cutscene.png differ diff --git a/games/hyrule-warriors-legends/screenshots/main-menu.png b/games/hyrule-warriors-legends/screenshots/main-menu.png new file mode 100644 index 0000000..3edd50b Binary files /dev/null and b/games/hyrule-warriors-legends/screenshots/main-menu.png differ diff --git a/games/hyrule-warriors-legends/screenshots/title-screen.png b/games/hyrule-warriors-legends/screenshots/title-screen.png new file mode 100644 index 0000000..8087fc5 Binary files /dev/null and b/games/hyrule-warriors-legends/screenshots/title-screen.png differ diff --git a/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/boxart.png b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/boxart.png new file mode 100644 index 0000000..2e2df2b Binary files /dev/null and b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/boxart.png differ diff --git a/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/game.dat b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/game.dat new file mode 100644 index 0000000..63edb55 --- /dev/null +++ b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/game.dat @@ -0,0 +1,39 @@ +title = "Inazuma Eleven 3: Lightning Bolt, Bomb Blast and Team Ogre Attacks!" +description = "Inazuma Eleven 3 is a role-playing and sports video game for the Nintendo 3DS, developed and published by Level-5. It's the third installment of the Inazuma Eleven games. There are three versions of the game, \"Lightning Bolt\", \"Bomb Blast\" and \"Team Ogre Attacks!\". All three versions of this game were included in an updated re-release compilation titled \"Inazuma Eleven 1-2-3: Endo Mamoru's Legend\"." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "00040000000F7D00" +region = "eur" +release_date = "2013-09-27" + +[[releases]] +title = "00040000000F7B00" +region = "eur" +release_date = "2013-09-27" + +[[releases]] +title = "00040000000F7F00" +region = "eur" +release_date = "2014-02-14" + +[[releases]] +title = "00040000000F7E00" +region = "eur" +release_date = "2013-09-27" + +[[releases]] +title = "00040000000F7C00" +region = "eur" +release_date = "2013-09-27" + +[[releases]] +title = "00040000000F8000" +region = "eur" +release_date = "2014-02-14" + +[[releases]] +title = "00040000000BB800" +region = "jpn" +release_date = "2012-12-27" diff --git a/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/icon.png b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/icon.png new file mode 100644 index 0000000..834b9e8 Binary files /dev/null and b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/icon.png differ diff --git a/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/dribble.png b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/dribble.png new file mode 100644 index 0000000..60e91f0 Binary files /dev/null and b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/dribble.png differ diff --git a/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/prologue.png b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/prologue.png new file mode 100644 index 0000000..c403e99 Binary files /dev/null and b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/prologue.png differ diff --git a/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/title-screen.png b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/title-screen.png new file mode 100644 index 0000000..25c58b0 Binary files /dev/null and b/games/inazuma-eleven-3-lightning-bolt-bomb-blast-and-team-ogre-attacks/screenshots/title-screen.png differ diff --git a/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/boxart.png b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/boxart.png new file mode 100644 index 0000000..6e0eb01 Binary files /dev/null and b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/boxart.png differ diff --git a/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/game.dat b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/game.dat new file mode 100644 index 0000000..674a9e3 --- /dev/null +++ b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/game.dat @@ -0,0 +1,25 @@ +title = "Inazuma Eleven GO Chrono Stones: Wildfire and Thunderflash" +description = "Inazuma Eleven GO Chrono Stones is a role-playing video game and sports video game for the Nintendo 3DS, developed and published by Level-5. It's the second game of the Inazuma Eleven GO series and the fifth installment of the Inazuma Eleven games. There are two versions of the game, Wildfire and Thunderflash." +incomplete = true +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000136C00" +region = "eur" +release_date = "2015-03-27" + +[[releases]] +title = "0004000000136D00" +region = "eur" +release_date = "2015-03-27" + +[[releases]] +title = "00040000000A1B00" +region = "jpn" +release_date = "2012-12-13" + +[[releases]] +title = "00040000000A1C00" +region = "jpn" +release_date = "2012-12-13" \ No newline at end of file diff --git a/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/icon.png b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/icon.png new file mode 100644 index 0000000..a206b56 Binary files /dev/null and b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/icon.png differ diff --git a/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Bus.png b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Bus.png new file mode 100644 index 0000000..aae5db1 Binary files /dev/null and b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Bus.png differ diff --git a/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Screen.png b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Screen.png new file mode 100644 index 0000000..1ed5087 Binary files /dev/null and b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Screen.png differ diff --git a/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Technique.png b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Technique.png new file mode 100644 index 0000000..e061470 Binary files /dev/null and b/games/inazuma-eleven-go-chrono-stones-wildfire-and-thunderflash/screenshots/Technique.png differ diff --git a/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/boxart.png b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/boxart.png new file mode 100644 index 0000000..ccca7ba Binary files /dev/null and b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/boxart.png differ diff --git a/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/game.dat b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/game.dat new file mode 100644 index 0000000..92abb15 --- /dev/null +++ b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/game.dat @@ -0,0 +1,14 @@ +title = "Inazuma Eleven Go Galaxy 3: Big Bang and Supernova" +description = "Inazuma Eleven Go 3: Galaxy is a role-playing and sports video game developed and published by Level-5. It's the third game of the Inazuma Eleven Go series and the sixth installment of the Inazuma Eleven games. There are two versions of the game, Big Bang and Supernova." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "000400000010BB00" +region = "jpn" +release_date = "2013-12-05" + +[[releases]] +title = "000400000010BA00" +region = "jpn" +release_date = "2013-12-05" diff --git a/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/icon.png b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/icon.png new file mode 100644 index 0000000..2fd7542 Binary files /dev/null and b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/icon.png differ diff --git a/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/In-game.png b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/In-game.png new file mode 100644 index 0000000..aa99a74 Binary files /dev/null and b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/In-game.png differ diff --git a/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/Main-Screen.png b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/Main-Screen.png new file mode 100644 index 0000000..cc6e22c Binary files /dev/null and b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/Main-Screen.png differ diff --git a/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/Player.png b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/Player.png new file mode 100644 index 0000000..6a35043 Binary files /dev/null and b/games/inazuma-eleven-go-galaxy-3-big-bang-and-supernova/screenshots/Player.png differ diff --git a/games/inazuma-eleven-go-light-and-shadow/boxart.png b/games/inazuma-eleven-go-light-and-shadow/boxart.png new file mode 100644 index 0000000..5e60afa Binary files /dev/null and b/games/inazuma-eleven-go-light-and-shadow/boxart.png differ diff --git a/games/inazuma-eleven-go-light-and-shadow/game.dat b/games/inazuma-eleven-go-light-and-shadow/game.dat new file mode 100644 index 0000000..eddb17d --- /dev/null +++ b/games/inazuma-eleven-go-light-and-shadow/game.dat @@ -0,0 +1,24 @@ +title = "Inazuma Eleven GO: Light and Shadow" +description = "Inazuma Eleven GO is a role-playing and sports video game for the Nintendo 3DS, developed and published by Level-5. It's the first game of the Inazuma Eleven GO series and the fourth installment of the Inazuma Eleven games. There are two versions of the game, Light and Shadow." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000112F00" +region = "eur" +release_date = "2014-06-13" + +[[releases]] +title = "0004000000113000" +region = "eur" +release_date = "2014-06-13" + +[[releases]] +title = "000400000006D400" +region = "jpn" +release_date = "2011-12-15" + +[[releases]] +title = "000400000006D300" +region = "jpn" +release_date = "2011-12-15" diff --git a/games/inazuma-eleven-go-light-and-shadow/icon.png b/games/inazuma-eleven-go-light-and-shadow/icon.png new file mode 100644 index 0000000..db42f2e Binary files /dev/null and b/games/inazuma-eleven-go-light-and-shadow/icon.png differ diff --git a/games/inazuma-eleven-go-light-and-shadow/screenshots/in-game-battle.png b/games/inazuma-eleven-go-light-and-shadow/screenshots/in-game-battle.png new file mode 100644 index 0000000..1fe66d4 Binary files /dev/null and b/games/inazuma-eleven-go-light-and-shadow/screenshots/in-game-battle.png differ diff --git a/games/inazuma-eleven-go-light-and-shadow/screenshots/in-game-menu.png b/games/inazuma-eleven-go-light-and-shadow/screenshots/in-game-menu.png new file mode 100644 index 0000000..d6562a5 Binary files /dev/null and b/games/inazuma-eleven-go-light-and-shadow/screenshots/in-game-menu.png differ diff --git a/games/inazuma-eleven-go-light-and-shadow/screenshots/title-screen.png b/games/inazuma-eleven-go-light-and-shadow/screenshots/title-screen.png new file mode 100644 index 0000000..1b503a6 Binary files /dev/null and b/games/inazuma-eleven-go-light-and-shadow/screenshots/title-screen.png differ diff --git a/games/kid-icarus-uprising/boxart.png b/games/kid-icarus-uprising/boxart.png new file mode 100644 index 0000000..19ef7c9 Binary files /dev/null and b/games/kid-icarus-uprising/boxart.png differ diff --git a/games/kid-icarus-uprising/game.dat b/games/kid-icarus-uprising/game.dat new file mode 100644 index 0000000..ff81722 --- /dev/null +++ b/games/kid-icarus-uprising/game.dat @@ -0,0 +1,31 @@ +title = "Kid Icarus Uprising" +description = "Kid Icarus: Uprising, known in Japan as New Light Mythology: Palutena's Mirror, is a third-person shooter developed by Project Sora and published by Nintendo for the Nintendo 3DS handheld video game console. Released worldwide in March 2012, it is the third installment in the Kid Icarus franchise and the first to be released since Kid Icarus: Of Myths and Monsters in 1991." +github_issues = [2238] +needs_system_files = false +needs_shared_font = true +incomplete = true + +[[ releases ]] +title = "0004000000030100" +region = "usa" +release_date = "2012-03-23" + +[[ releases ]] +title = "0004000000030200" +region = "eur" +release_date = "2012-03-23" + +[[ releases ]] +title = "0004000000030000" +region = "jpn" +release_date = "2012-03-22" + +[[ testcases ]] +title = "0004000000030100" +compatibility = "4" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/kid-icarus-uprising/icon.png b/games/kid-icarus-uprising/icon.png new file mode 100644 index 0000000..e738a70 Binary files /dev/null and b/games/kid-icarus-uprising/icon.png differ diff --git a/games/kingdom-hearts-3d-dream-drop-distance/boxart.png b/games/kingdom-hearts-3d-dream-drop-distance/boxart.png new file mode 100644 index 0000000..15c128a Binary files /dev/null and b/games/kingdom-hearts-3d-dream-drop-distance/boxart.png differ diff --git a/games/kingdom-hearts-3d-dream-drop-distance/game.dat b/games/kingdom-hearts-3d-dream-drop-distance/game.dat new file mode 100644 index 0000000..ae35ca8 --- /dev/null +++ b/games/kingdom-hearts-3d-dream-drop-distance/game.dat @@ -0,0 +1,40 @@ +title = "Kingdom Hearts 3D: Dream Drop Distance" +description = "Kingdom Hearts 3D: Dream Drop Distance is an action role-playing game developed and published by Square Enix. Taking place after the events of Kingdom Hearts Re:coded, the game focuses on Sora and Riku's Mark of Mastery exam in which they have to protect parallel worlds in preparation for the return of Master Xehanort. Besides controlling the two playable characters across a single scenario, the player is able to recruit creatures known as Dream Eaters that are able to assist in fights." +github_issues = [1830] +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "000400000004EE00" +region = "jpn" +release_date = "2012-03-29" + +[[ releases ]] +title = "000400000008D300" +region = "usa" +release_date = "2012-07-31" + +[[ releases ]] +title = "0004000000095500" +region = "eur" +release_date = "2012-07-20" + +[[ testcases ]] +title = "0004000000095500" +compatibility = "1" +date = "2017-07-06" +version = "HEAD-c017065" +author = "OrangSquid" +cpu = "Intel Core i7-6700HQ @ 2.60 GHz" +gpu = "GeForce GTX 965M" +os = "Windows 10 15063" + +[[ testcases ]] +title = "000400000008D300" +compatibility = "1" +date = "2017-09-07" +version = "HEAD-e0cdaf7" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/kingdom-hearts-3d-dream-drop-distance/icon.png b/games/kingdom-hearts-3d-dream-drop-distance/icon.png new file mode 100644 index 0000000..4610699 Binary files /dev/null and b/games/kingdom-hearts-3d-dream-drop-distance/icon.png differ diff --git a/games/kingdom-hearts-3d-dream-drop-distance/screenshots/Cutscene.png b/games/kingdom-hearts-3d-dream-drop-distance/screenshots/Cutscene.png new file mode 100644 index 0000000..bd1112e Binary files /dev/null and b/games/kingdom-hearts-3d-dream-drop-distance/screenshots/Cutscene.png differ diff --git a/games/kingdom-hearts-3d-dream-drop-distance/screenshots/In-game.png b/games/kingdom-hearts-3d-dream-drop-distance/screenshots/In-game.png new file mode 100644 index 0000000..94a2685 Binary files /dev/null and b/games/kingdom-hearts-3d-dream-drop-distance/screenshots/In-game.png differ diff --git a/games/kingdom-hearts-3d-dream-drop-distance/screenshots/Title-Screen.png b/games/kingdom-hearts-3d-dream-drop-distance/screenshots/Title-Screen.png new file mode 100644 index 0000000..48fbf3d Binary files /dev/null and b/games/kingdom-hearts-3d-dream-drop-distance/screenshots/Title-Screen.png differ diff --git a/games/kirby-battle-royale/boxart.png b/games/kirby-battle-royale/boxart.png new file mode 100644 index 0000000..10437c1 Binary files /dev/null and b/games/kirby-battle-royale/boxart.png differ diff --git a/games/kirby-battle-royale/game.dat b/games/kirby-battle-royale/game.dat new file mode 100644 index 0000000..ca45a32 --- /dev/null +++ b/games/kirby-battle-royale/game.dat @@ -0,0 +1,20 @@ +title = "Kirby Battle Royale" +description = "Kirby Battle Royale is a brawler video game part of the Kirby series. It was developed by HAL Laboratory and published by Nintendo." +github_issues = [3233] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001C2000" +region = "usa" +release_date = "2018-01-19" + +[[releases]] +title = "00040000001C2100" +region = "eur" +release_date = "2017-11-03" + +[[releases]] +title = "00040000001A8B00" +region = "jpn" +release_date = "2017-11-30" diff --git a/games/kirby-battle-royale/icon.png b/games/kirby-battle-royale/icon.png new file mode 100644 index 0000000..1635b2a Binary files /dev/null and b/games/kirby-battle-royale/icon.png differ diff --git a/games/kirby-battle-royale/screenshots/Title-Screen.png b/games/kirby-battle-royale/screenshots/Title-Screen.png new file mode 100644 index 0000000..f28f257 Binary files /dev/null and b/games/kirby-battle-royale/screenshots/Title-Screen.png differ diff --git a/games/kirby-battle-royale/screenshots/citra-qt_2018-01-28_15-47-23.png b/games/kirby-battle-royale/screenshots/citra-qt_2018-01-28_15-47-23.png new file mode 100644 index 0000000..9c6a1ce Binary files /dev/null and b/games/kirby-battle-royale/screenshots/citra-qt_2018-01-28_15-47-23.png differ diff --git a/games/kirby-battle-royale/screenshots/citra-qt_2018-01-28_15-48-19.png b/games/kirby-battle-royale/screenshots/citra-qt_2018-01-28_15-48-19.png new file mode 100644 index 0000000..142e065 Binary files /dev/null and b/games/kirby-battle-royale/screenshots/citra-qt_2018-01-28_15-48-19.png differ diff --git a/games/kirby-fighters-deluxe/boxart.png b/games/kirby-fighters-deluxe/boxart.png new file mode 100644 index 0000000..a86a4fa Binary files /dev/null and b/games/kirby-fighters-deluxe/boxart.png differ diff --git a/games/kirby-fighters-deluxe/game.dat b/games/kirby-fighters-deluxe/game.dat new file mode 100644 index 0000000..27e9277 --- /dev/null +++ b/games/kirby-fighters-deluxe/game.dat @@ -0,0 +1,25 @@ +title = "Kirby Fighters Deluxe" +description = "Kirby Fighters Deluxe is a battle-action game developed by HAL Laboratory, where the player can use Kirby's Copy Abilities. It is an upgraded version of the Kirby: Triple Deluxe sub-game, Kirby Fighters. It has improved single and multi-player modes, as well as new items and stages." +needs_system_files = false +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "0004000000147E00" +region = "usa" +release_date = "2014-08-29" + +[[releases]] +title = "0004000000147F00" +region = "eur" +release_date = "2015-02-13" + +[[testcases]] +title = "0004000000147F00" +compatibility = "0" +date = "2017-11-01" +version = "HEAD-ed17c54" +cpu = "Intel Core i5-6400" +gpu = "nVidia GeForce GTX 750TI" +os = "Windows 10 15063" +author = "Sedhaild" diff --git a/games/kirby-fighters-deluxe/icon.png b/games/kirby-fighters-deluxe/icon.png new file mode 100644 index 0000000..4242cee Binary files /dev/null and b/games/kirby-fighters-deluxe/icon.png differ diff --git a/games/kirby-fighters-deluxe/screenshots/menu.png b/games/kirby-fighters-deluxe/screenshots/menu.png new file mode 100644 index 0000000..d225079 Binary files /dev/null and b/games/kirby-fighters-deluxe/screenshots/menu.png differ diff --git a/games/kirby-fighters-deluxe/screenshots/playing.png b/games/kirby-fighters-deluxe/screenshots/playing.png new file mode 100644 index 0000000..eb6311d Binary files /dev/null and b/games/kirby-fighters-deluxe/screenshots/playing.png differ diff --git a/games/kirby-fighters-deluxe/screenshots/selecting-character.png b/games/kirby-fighters-deluxe/screenshots/selecting-character.png new file mode 100644 index 0000000..daa4173 Binary files /dev/null and b/games/kirby-fighters-deluxe/screenshots/selecting-character.png differ diff --git a/games/kirby-planet-robobot/boxart.png b/games/kirby-planet-robobot/boxart.png new file mode 100644 index 0000000..12c1ad6 Binary files /dev/null and b/games/kirby-planet-robobot/boxart.png differ diff --git a/games/kirby-planet-robobot/game.dat b/games/kirby-planet-robobot/game.dat new file mode 100644 index 0000000..f4b0ae5 --- /dev/null +++ b/games/kirby-planet-robobot/game.dat @@ -0,0 +1,20 @@ +title = "Kirby: Planet Robobot" +description = "Kirby: Planet Robobot (星のカービィ ロボボプラネット Hoshi no Kābi: Robobo Puranetto, \"Kirby of the Stars: Robobo Planet\") is an action platformer video game developed by HAL Laboratory and published by Nintendo for the Nintendo 3DS. It is the fifteenth main installment in Nintendo's Kirby franchise." +github_issues = [2453] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "0004000000183600" +region = "all" +release_date = "2016-04-28" + +[[ testcases ]] +title = "0004000000183600" +compatibility = "1" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/kirby-planet-robobot/icon.png b/games/kirby-planet-robobot/icon.png new file mode 100644 index 0000000..ea2b0f3 Binary files /dev/null and b/games/kirby-planet-robobot/icon.png differ diff --git a/games/kirby-planet-robobot/savefiles/Overload-Ocean-Door2.dat b/games/kirby-planet-robobot/savefiles/Overload-Ocean-Door2.dat new file mode 100644 index 0000000..c48bfae --- /dev/null +++ b/games/kirby-planet-robobot/savefiles/Overload-Ocean-Door2.dat @@ -0,0 +1,4 @@ +title = "Overload Ocean - Door 2" +description = "Only File 1 at 12% of completion, starts in Area 3 \"Overload Ocean\" at Door 2." +author = "Clector" +title_id = "0004000000183600" diff --git a/games/kirby-planet-robobot/savefiles/Overload-Ocean-Door2.zip b/games/kirby-planet-robobot/savefiles/Overload-Ocean-Door2.zip new file mode 100644 index 0000000..23a5fc9 Binary files /dev/null and b/games/kirby-planet-robobot/savefiles/Overload-Ocean-Door2.zip differ diff --git a/games/kirby-planet-robobot/screenshots/Beach-Level.png b/games/kirby-planet-robobot/screenshots/Beach-Level.png new file mode 100644 index 0000000..3e6ee55 Binary files /dev/null and b/games/kirby-planet-robobot/screenshots/Beach-Level.png differ diff --git a/games/kirby-planet-robobot/screenshots/Kirby-3D-Rumble.png b/games/kirby-planet-robobot/screenshots/Kirby-3D-Rumble.png new file mode 100644 index 0000000..4f0b2a9 Binary files /dev/null and b/games/kirby-planet-robobot/screenshots/Kirby-3D-Rumble.png differ diff --git a/games/kirby-planet-robobot/screenshots/Team-Kirby-Clash.png b/games/kirby-planet-robobot/screenshots/Team-Kirby-Clash.png new file mode 100644 index 0000000..c358b0b Binary files /dev/null and b/games/kirby-planet-robobot/screenshots/Team-Kirby-Clash.png differ diff --git a/games/kirby-planet-robobot/screenshots/Title-Screen.png b/games/kirby-planet-robobot/screenshots/Title-Screen.png new file mode 100644 index 0000000..183e0f5 Binary files /dev/null and b/games/kirby-planet-robobot/screenshots/Title-Screen.png differ diff --git a/games/kirby-triple-deluxe/boxart.png b/games/kirby-triple-deluxe/boxart.png new file mode 100644 index 0000000..8b451d4 Binary files /dev/null and b/games/kirby-triple-deluxe/boxart.png differ diff --git a/games/kirby-triple-deluxe/game.dat b/games/kirby-triple-deluxe/game.dat new file mode 100644 index 0000000..80a10e7 --- /dev/null +++ b/games/kirby-triple-deluxe/game.dat @@ -0,0 +1,29 @@ +title = "Kirby: Triple Deluxe" +description = "Kirby: Triple Deluxe is the thirteenth platform installment of the Kirby video game series, developed by HAL Laboratory and published by Nintendo for the Nintendo 3DS." +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "000400000010BE00" +region = "jpn" +release_date = "2014-01-11" + +[[ releases ]] +title = "000400000010BF00" +region = "usa" +release_date = "2014-05-02" + +[[ releases ]] +title = "000400000010C000" +region = "eur" +release_date = "2014-05-16" + +[[ testcases ]] +title = "000400000010BF00" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/kirby-triple-deluxe/icon.png b/games/kirby-triple-deluxe/icon.png new file mode 100644 index 0000000..5fa7143 Binary files /dev/null and b/games/kirby-triple-deluxe/icon.png differ diff --git a/games/kirby-triple-deluxe/savefiles/Endless-Explosions-Stage3.dat b/games/kirby-triple-deluxe/savefiles/Endless-Explosions-Stage3.dat new file mode 100644 index 0000000..ef3de3a --- /dev/null +++ b/games/kirby-triple-deluxe/savefiles/Endless-Explosions-Stage3.dat @@ -0,0 +1,4 @@ +title = "Endless Explosions - Stage 3" +description = "Only File 1 at 47% of completion, starts in Level 6 \"Endless Explosions\" at Stage 3, Dedede Drum Dash completed." +author = "Clector" +title_id = "000400000010BF00" diff --git a/games/kirby-triple-deluxe/savefiles/Endless-Explosions-Stage3.zip b/games/kirby-triple-deluxe/savefiles/Endless-Explosions-Stage3.zip new file mode 100644 index 0000000..17ce887 Binary files /dev/null and b/games/kirby-triple-deluxe/savefiles/Endless-Explosions-Stage3.zip differ diff --git a/games/kirby-triple-deluxe/screenshots/Circus-Level.png b/games/kirby-triple-deluxe/screenshots/Circus-Level.png new file mode 100644 index 0000000..9003796 Binary files /dev/null and b/games/kirby-triple-deluxe/screenshots/Circus-Level.png differ diff --git a/games/kirby-triple-deluxe/screenshots/Dedede-Drum-Drash.png b/games/kirby-triple-deluxe/screenshots/Dedede-Drum-Drash.png new file mode 100644 index 0000000..68dfac3 Binary files /dev/null and b/games/kirby-triple-deluxe/screenshots/Dedede-Drum-Drash.png differ diff --git a/games/kirby-triple-deluxe/screenshots/Kirby-Fighters-Deluxe.png b/games/kirby-triple-deluxe/screenshots/Kirby-Fighters-Deluxe.png new file mode 100644 index 0000000..9e928b7 Binary files /dev/null and b/games/kirby-triple-deluxe/screenshots/Kirby-Fighters-Deluxe.png differ diff --git a/games/kirby-triple-deluxe/screenshots/Title-Screen.png b/games/kirby-triple-deluxe/screenshots/Title-Screen.png new file mode 100644 index 0000000..978b779 Binary files /dev/null and b/games/kirby-triple-deluxe/screenshots/Title-Screen.png differ diff --git a/games/kirbys-blowout-blast/boxart.png b/games/kirbys-blowout-blast/boxart.png new file mode 100644 index 0000000..68adafa Binary files /dev/null and b/games/kirbys-blowout-blast/boxart.png differ diff --git a/games/kirbys-blowout-blast/game.dat b/games/kirbys-blowout-blast/game.dat new file mode 100644 index 0000000..e956e51 --- /dev/null +++ b/games/kirbys-blowout-blast/game.dat @@ -0,0 +1,21 @@ +title = "Kirby's Blowout Blast" +description = "Kirby's Blowout Blast, known as \"Kirby no Suikomi Daisakusen\" in Japan, is a 3D platforming game in the Kirby series, developed by HAL Laboratory and published by Nintendo. It is an expanded spin-off game of the Kirby 3D Rumble sub-game in Kirby: Planet Robobot." +incomplete = true +needs_system_files = false +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "0004000000196F00" +region = "usa" +release_date = "2016-07-06" + +[[releases]] +title = "0004000000196F00" +region = "jpn" +release_date = "2016-07-04" + +[[releases]] +title = "0004000000196F00" +region = "eur" +release_date = "2016-07-06" \ No newline at end of file diff --git a/games/kirbys-blowout-blast/icon.png b/games/kirbys-blowout-blast/icon.png new file mode 100644 index 0000000..4943a40 Binary files /dev/null and b/games/kirbys-blowout-blast/icon.png differ diff --git a/games/kirbys-blowout-blast/screenshots/Kirbys-Blowout-Blast-LevelOne.png b/games/kirbys-blowout-blast/screenshots/Kirbys-Blowout-Blast-LevelOne.png new file mode 100644 index 0000000..79dbc6b Binary files /dev/null and b/games/kirbys-blowout-blast/screenshots/Kirbys-Blowout-Blast-LevelOne.png differ diff --git a/games/kirbys-blowout-blast/screenshots/Kirbys-Blowout-Blast-Start.png b/games/kirbys-blowout-blast/screenshots/Kirbys-Blowout-Blast-Start.png new file mode 100644 index 0000000..75e8e9b Binary files /dev/null and b/games/kirbys-blowout-blast/screenshots/Kirbys-Blowout-Blast-Start.png differ diff --git a/games/langrisser-reincarnation-tensei-/boxart.png b/games/langrisser-reincarnation-tensei-/boxart.png new file mode 100644 index 0000000..6c6c3a7 Binary files /dev/null and b/games/langrisser-reincarnation-tensei-/boxart.png differ diff --git a/games/langrisser-reincarnation-tensei-/game.dat b/games/langrisser-reincarnation-tensei-/game.dat new file mode 100644 index 0000000..4076687 --- /dev/null +++ b/games/langrisser-reincarnation-tensei-/game.dat @@ -0,0 +1,25 @@ +title = "Langrisser Re: Incarnation Tensei" +description = "Langrisser Re: Incarnation Tensei is a Tactical role-playing game developed by Masaya Games. It was published in Japan by Extreme Games, and in North America by Aksys Games. The game takes place in a flooded world and the story's protagonist is a man with the Sacred Sword Langrisser, looking to reunite himself with a childhood friend, while fighting the empire's army." +needs_system_files = false +needs_shared_font = false +game_type = "3ds" + +[[releases]] +title = "0004000000187F00" +region = "usa" +release_date = "2016-04-19" + +[[releases]] +title = "000400000015E700" +region = "jpn" +release_date = "2015-07-23" + +[[testcases]] +title = "0004000000187F00" +compatibility = "3" +date = "2017-09-05" +version = "HEAD-b9126a6" +cpu = "Intel Xeon E5450" +gpu = "GeForce GTX 550 Ti" +os = "Windows 7 7601" +author = "dmiltso" diff --git a/games/langrisser-reincarnation-tensei-/icon.png b/games/langrisser-reincarnation-tensei-/icon.png new file mode 100644 index 0000000..6935fae Binary files /dev/null and b/games/langrisser-reincarnation-tensei-/icon.png differ diff --git a/games/langrisser-reincarnation-tensei-/screenshots/create-character.png b/games/langrisser-reincarnation-tensei-/screenshots/create-character.png new file mode 100644 index 0000000..22a2af5 Binary files /dev/null and b/games/langrisser-reincarnation-tensei-/screenshots/create-character.png differ diff --git a/games/langrisser-reincarnation-tensei-/screenshots/map.png b/games/langrisser-reincarnation-tensei-/screenshots/map.png new file mode 100644 index 0000000..59083ba Binary files /dev/null and b/games/langrisser-reincarnation-tensei-/screenshots/map.png differ diff --git a/games/langrisser-reincarnation-tensei-/screenshots/menu.png b/games/langrisser-reincarnation-tensei-/screenshots/menu.png new file mode 100644 index 0000000..a165252 Binary files /dev/null and b/games/langrisser-reincarnation-tensei-/screenshots/menu.png differ diff --git a/games/laytons-mystery-journey-update-ver-12/boxart.png b/games/laytons-mystery-journey-update-ver-12/boxart.png new file mode 100644 index 0000000..f6a0ff9 Binary files /dev/null and b/games/laytons-mystery-journey-update-ver-12/boxart.png differ diff --git a/games/laytons-mystery-journey-update-ver-12/game.dat b/games/laytons-mystery-journey-update-ver-12/game.dat new file mode 100644 index 0000000..6e0b2c2 --- /dev/null +++ b/games/laytons-mystery-journey-update-ver-12/game.dat @@ -0,0 +1,19 @@ +title = "Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy" +description = "Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy is a puzzle video game developed by Level-5. It is the seventh main entry in the Professor Layton series and follows a new protagonist, Katrielle Layton. Katrielle \"Kat\" Layton, who solves puzzles in her father's place alongside her talking dog Sherl and her friends Emiliana Perfetti and Ernest Greeves. When her father vanishes, Katrielle goes off in search of him, coming across various puzzles and mysteries along the way." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001CB400" +region = "usa" +release_date = "2017-10-06" + +[[releases]] +title = "00040000001CA800" +region = "eur" +release_date = "2017-10-06" + +[[releases]] +title = "00040000001C1900" +region = "jpn" +release_date = "2017-07-20" diff --git a/games/laytons-mystery-journey-update-ver-12/icon.png b/games/laytons-mystery-journey-update-ver-12/icon.png new file mode 100644 index 0000000..01f9d2c Binary files /dev/null and b/games/laytons-mystery-journey-update-ver-12/icon.png differ diff --git a/games/laytons-mystery-journey-update-ver-12/screenshots/first-conversation.png b/games/laytons-mystery-journey-update-ver-12/screenshots/first-conversation.png new file mode 100644 index 0000000..f9edcf4 Binary files /dev/null and b/games/laytons-mystery-journey-update-ver-12/screenshots/first-conversation.png differ diff --git a/games/laytons-mystery-journey-update-ver-12/screenshots/first-puzzle-complete.png b/games/laytons-mystery-journey-update-ver-12/screenshots/first-puzzle-complete.png new file mode 100644 index 0000000..1d033dd Binary files /dev/null and b/games/laytons-mystery-journey-update-ver-12/screenshots/first-puzzle-complete.png differ diff --git a/games/laytons-mystery-journey-update-ver-12/screenshots/first-puzzle.png b/games/laytons-mystery-journey-update-ver-12/screenshots/first-puzzle.png new file mode 100644 index 0000000..d80d2ea Binary files /dev/null and b/games/laytons-mystery-journey-update-ver-12/screenshots/first-puzzle.png differ diff --git a/games/laytons-mystery-journey-update-ver-12/screenshots/start-game.png b/games/laytons-mystery-journey-update-ver-12/screenshots/start-game.png new file mode 100644 index 0000000..bd0b913 Binary files /dev/null and b/games/laytons-mystery-journey-update-ver-12/screenshots/start-game.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/boxart.png b/games/legend-of-dark-witch-2-the-price-of-desire/boxart.png new file mode 100644 index 0000000..17db04c Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/boxart.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/game.dat b/games/legend-of-dark-witch-2-the-price-of-desire/game.dat new file mode 100644 index 0000000..4b09d56 --- /dev/null +++ b/games/legend-of-dark-witch-2-the-price-of-desire/game.dat @@ -0,0 +1,20 @@ +title = "The Legend of Dark Witch 2: The Price of Desire" +description = "Created by indie games company INSIDE SYSTEM, The Legend of Dark Witch 2 is a 2D action story sequel to \"The Legend of Dark Witch\". True to its predecessor, Legend of the Dark Witch 2 retains its simple controls and enough challenges to satisfy the completist. Players have 8 stages to choose from and must use SHOTs to make their way through a variety of obstacles to reach the boss enemy. Within each stage there are hidden \"Pura Syega\" which are helpful to power up player characters." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000186600" +region = "usa" +release_date = "2015-12-17" + +[[testcases]] +title = "0004000000186600" +compatibility = "1" +date = "2017-10-29" +version = "HEAD-f75dd34" +cpu = "Intel Xeon E31240" +gpu = "NVIDIA GeForce GTX 750" +os = "Windows 7 7601" +author = "AuraOfTheDawn" diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/icon.png b/games/legend-of-dark-witch-2-the-price-of-desire/icon.png new file mode 100644 index 0000000..abf7a18 Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/icon.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/BossConversation.png b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/BossConversation.png new file mode 100644 index 0000000..cfa7711 Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/BossConversation.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/MidStageGameplay.png b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/MidStageGameplay.png new file mode 100644 index 0000000..cdaf1d2 Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/MidStageGameplay.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageDescription.png b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageDescription.png new file mode 100644 index 0000000..47f3f66 Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageDescription.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageSelection.png b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageSelection.png new file mode 100644 index 0000000..e249ac6 Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageSelection.png differ diff --git a/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageStart.png b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageStart.png new file mode 100644 index 0000000..d6562ef Binary files /dev/null and b/games/legend-of-dark-witch-2-the-price-of-desire/screenshots/StageStart.png differ diff --git a/games/legend-of-dark-witch/boxart.png b/games/legend-of-dark-witch/boxart.png new file mode 100644 index 0000000..7017704 Binary files /dev/null and b/games/legend-of-dark-witch/boxart.png differ diff --git a/games/legend-of-dark-witch/game.dat b/games/legend-of-dark-witch/game.dat new file mode 100644 index 0000000..c2cae4f --- /dev/null +++ b/games/legend-of-dark-witch/game.dat @@ -0,0 +1,30 @@ +title = "The Legend of Dark Witch" +description = "The Legend of Dark Witch is a 2D platform action game developed by Inside System / Flyhigh Works for the Nintendo 3DS." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "0004000000145300" +region = "jpn" +release_date = "2014-08-06" + +[[ releases ]] +title = "000400000014EE00" +region = "usa" +release_date = "2014-10-16" + +[[ releases ]] +title = "0004000000148500" +region = "eur" +release_date = "2014-12-04" + +[[ testcases ]] +title = "000400000014EE00" +compatibility = "0" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/legend-of-dark-witch/icon.png b/games/legend-of-dark-witch/icon.png new file mode 100644 index 0000000..b924943 Binary files /dev/null and b/games/legend-of-dark-witch/icon.png differ diff --git a/games/legend-of-dark-witch/screenshots/Initial-Stage.png b/games/legend-of-dark-witch/screenshots/Initial-Stage.png new file mode 100644 index 0000000..43d345e Binary files /dev/null and b/games/legend-of-dark-witch/screenshots/Initial-Stage.png differ diff --git a/games/legend-of-dark-witch/screenshots/Klinsy-Stage.png b/games/legend-of-dark-witch/screenshots/Klinsy-Stage.png new file mode 100644 index 0000000..b386b70 Binary files /dev/null and b/games/legend-of-dark-witch/screenshots/Klinsy-Stage.png differ diff --git a/games/legend-of-dark-witch/screenshots/Sola-Stage.png b/games/legend-of-dark-witch/screenshots/Sola-Stage.png new file mode 100644 index 0000000..f8c60d7 Binary files /dev/null and b/games/legend-of-dark-witch/screenshots/Sola-Stage.png differ diff --git a/games/legend-of-dark-witch/screenshots/Title-Screen.png b/games/legend-of-dark-witch/screenshots/Title-Screen.png new file mode 100644 index 0000000..993e9a7 Binary files /dev/null and b/games/legend-of-dark-witch/screenshots/Title-Screen.png differ diff --git a/games/legend-of-legacy/boxart.png b/games/legend-of-legacy/boxart.png new file mode 100644 index 0000000..d2cc62c Binary files /dev/null and b/games/legend-of-legacy/boxart.png differ diff --git a/games/legend-of-legacy/game.dat b/games/legend-of-legacy/game.dat new file mode 100644 index 0000000..c3f6f49 --- /dev/null +++ b/games/legend-of-legacy/game.dat @@ -0,0 +1,31 @@ +title = "The Legend of Legacy" +description = "The game is a spiritual sequel to the SaGa series, and plays as a Japanese role-playing video game. However, while many games in the genre are rather linear in their progression, the game allows the player to freely progress through the game. The player is given a vague main goal in the beginning, and otherwise, it is up to the player to explore the game and figure out where to go from there." +github_issues = [3056] +incomplete = true +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "000400000017C800" +region = "eur" +release_date = "2016-02-05" + +[[ releases ]] +title = "000400000016DB00" +region = "usa" +release_date = "2015-10-13" + +[[ releases ]] +title = "0004000000131C00" +region = "jpn" +release_date = "2015-01-22" + +[[ testcases ]] +compatibility = "1" +date = "2017-06-19" +title = "000400000017C800" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/legend-of-legacy/icon.png b/games/legend-of-legacy/icon.png new file mode 100644 index 0000000..418adeb Binary files /dev/null and b/games/legend-of-legacy/icon.png differ diff --git a/games/legend-of-zelda-a-link-between-worlds/boxart.png b/games/legend-of-zelda-a-link-between-worlds/boxart.png new file mode 100644 index 0000000..1785472 Binary files /dev/null and b/games/legend-of-zelda-a-link-between-worlds/boxart.png differ diff --git a/games/legend-of-zelda-a-link-between-worlds/game.dat b/games/legend-of-zelda-a-link-between-worlds/game.dat new file mode 100644 index 0000000..22e94e2 --- /dev/null +++ b/games/legend-of-zelda-a-link-between-worlds/game.dat @@ -0,0 +1,40 @@ +title = "The Legend of Zelda: A Link Between Worlds" +description = "The Legend of Zelda: A Link Between Worlds is an action-adventure game developed and published by Nintendo for the Nintendo 3DS handheld game console. It is the seventeenth installment in The Legend of Zelda series and a successor to the 1991 Super Nintendo Entertainment System title The Legend of Zelda: A Link to the Past." +github_issues = [2731] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000EC300" +region = "usa" +release_date = "2013-11-22" + +[[ releases ]] +title = "00040000000EC400" +region = "eur" +release_date = "2013-11-22" + +[[ releases ]] +title = "00040000000EC200" +region = "jpn" +release_date = "2013-12-26" + +[[ testcases ]] +title = "00040000000EC300" +compatibility = "1" +date = "2017-06-03" +version = "HEAD-e46ec64" +author = "Leo121" +cpu = "Intel i5 4670k" +gpu = "Nvidia GTX 970" +os = "Windows 10 10.0.15063" + +[[ testcases ]] +title = "00040000000EC300" +compatibility = "1" +date = "2017-06-18" +version = "HEAD-5fe5cca" +author = "Anadian" +cpu = "Intel Core i7-6500U" +gpu = "Intel HD Graphics 520" +os = "Windows 10 14393" diff --git a/games/legend-of-zelda-a-link-between-worlds/icon.png b/games/legend-of-zelda-a-link-between-worlds/icon.png new file mode 100644 index 0000000..8919f9a Binary files /dev/null and b/games/legend-of-zelda-a-link-between-worlds/icon.png differ diff --git a/games/legend-of-zelda-a-link-between-worlds/screenshots/a.png b/games/legend-of-zelda-a-link-between-worlds/screenshots/a.png new file mode 100644 index 0000000..086b278 Binary files /dev/null and b/games/legend-of-zelda-a-link-between-worlds/screenshots/a.png differ diff --git a/games/legend-of-zelda-a-link-between-worlds/screenshots/b.png b/games/legend-of-zelda-a-link-between-worlds/screenshots/b.png new file mode 100644 index 0000000..3dea86e Binary files /dev/null and b/games/legend-of-zelda-a-link-between-worlds/screenshots/b.png differ diff --git a/games/legend-of-zelda-a-link-between-worlds/screenshots/c.png b/games/legend-of-zelda-a-link-between-worlds/screenshots/c.png new file mode 100644 index 0000000..70c926a Binary files /dev/null and b/games/legend-of-zelda-a-link-between-worlds/screenshots/c.png differ diff --git a/games/legend-of-zelda-majoras-mask/boxart.png b/games/legend-of-zelda-majoras-mask/boxart.png new file mode 100644 index 0000000..a1e811c Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/boxart.png differ diff --git a/games/legend-of-zelda-majoras-mask/game.dat b/games/legend-of-zelda-majoras-mask/game.dat new file mode 100644 index 0000000..dbaf6c1 --- /dev/null +++ b/games/legend-of-zelda-majoras-mask/game.dat @@ -0,0 +1,30 @@ +title = "The Legend of Zelda: Majora's Mask 3D" +description = "The Legend of Zelda: Majora's Mask 3D is an action-adventure video game co-developed by Grezzo and Nintendo for the Nintendo 3DS handheld game console. The game is an enhanced remake of The Legend of Zelda: Majora's Mask, which was originally released for the Nintendo 64 home console in 2000." +github_issues = [2517] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000125500" +region = "usa" +release_date = "2015-02-13" + +[[ releases ]] +title = "0004000000125600" +region = "eur" +release_date = "2015-02-13" + +[[ releases ]] +title = "00040000000D6E00" +region = "jpn" +release_date = "2015-02-14" + +[[ testcases ]] +title = "0004000000125500" +compatibility = "1" +date = "2017-06-03" +version = "HEAD-a7ddec8" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/legend-of-zelda-majoras-mask/icon.png b/games/legend-of-zelda-majoras-mask/icon.png new file mode 100644 index 0000000..dcc592d Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/icon.png differ diff --git a/games/legend-of-zelda-majoras-mask/savefiles/3-masks.dat b/games/legend-of-zelda-majoras-mask/savefiles/3-masks.dat new file mode 100644 index 0000000..cd75d0e --- /dev/null +++ b/games/legend-of-zelda-majoras-mask/savefiles/3-masks.dat @@ -0,0 +1,4 @@ +title = "Link - 50% Completion" +description = "Has 3 Boss Masks and 2 stray faries powers (deku and goron shrines)." +author = "robzombie91" +title_id = "0004000000125500" diff --git a/games/legend-of-zelda-majoras-mask/savefiles/3-masks.zip b/games/legend-of-zelda-majoras-mask/savefiles/3-masks.zip new file mode 100644 index 0000000..b717539 Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/savefiles/3-masks.zip differ diff --git a/games/legend-of-zelda-majoras-mask/savefiles/link-deku-scrub-mask.dat b/games/legend-of-zelda-majoras-mask/savefiles/link-deku-scrub-mask.dat new file mode 100644 index 0000000..21715e4 --- /dev/null +++ b/games/legend-of-zelda-majoras-mask/savefiles/link-deku-scrub-mask.dat @@ -0,0 +1,4 @@ +title = "Link - Deku Scrub Mask" +description = "Starts off right when you exit the clock tower, after removing deku scrub curse; skips the opening." +author = "anodium" +title_id = "0004000000125500" diff --git a/games/legend-of-zelda-majoras-mask/savefiles/link-deku-scrub-mask.zip b/games/legend-of-zelda-majoras-mask/savefiles/link-deku-scrub-mask.zip new file mode 100644 index 0000000..2023abe Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/savefiles/link-deku-scrub-mask.zip differ diff --git a/games/legend-of-zelda-majoras-mask/screenshots/Defeating-Enemy.png b/games/legend-of-zelda-majoras-mask/screenshots/Defeating-Enemy.png new file mode 100644 index 0000000..6c300b4 Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/screenshots/Defeating-Enemy.png differ diff --git a/games/legend-of-zelda-majoras-mask/screenshots/Intro.png b/games/legend-of-zelda-majoras-mask/screenshots/Intro.png new file mode 100644 index 0000000..6bcc526 Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/screenshots/Intro.png differ diff --git a/games/legend-of-zelda-majoras-mask/screenshots/Menu-Demo.png b/games/legend-of-zelda-majoras-mask/screenshots/Menu-Demo.png new file mode 100644 index 0000000..a0ef162 Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/screenshots/Menu-Demo.png differ diff --git a/games/legend-of-zelda-majoras-mask/screenshots/Termina-Field.png b/games/legend-of-zelda-majoras-mask/screenshots/Termina-Field.png new file mode 100644 index 0000000..e3164a6 Binary files /dev/null and b/games/legend-of-zelda-majoras-mask/screenshots/Termina-Field.png differ diff --git a/games/legend-of-zelda-tri-force-heroes/boxart.png b/games/legend-of-zelda-tri-force-heroes/boxart.png new file mode 100644 index 0000000..72a42e1 Binary files /dev/null and b/games/legend-of-zelda-tri-force-heroes/boxart.png differ diff --git a/games/legend-of-zelda-tri-force-heroes/game.dat b/games/legend-of-zelda-tri-force-heroes/game.dat new file mode 100644 index 0000000..478135e --- /dev/null +++ b/games/legend-of-zelda-tri-force-heroes/game.dat @@ -0,0 +1,31 @@ +title = "The Legend of Zelda: Tri Force Heroes" +description = "The Legend of Zelda: Tri Force Heroes is an action-adventure game developed and published by Nintendo, with assistance from Grezzo, for the Nintendo 3DS handheld game console. The eighteenth installment in Nintendo's The Legend of Zelda series and a direct sequel to A Link Between Worlds." +incomplete = true +needs_system_files = false +needs_shared_font = false +game_type = "3ds" + +[[ releases ]] +title = "0004000000176F00" +region = "usa" +release_date = "2015-10-23" + +[[ releases ]] +title = "0004000000177000" +region = "eur" +release_date = "2015-10-23" + +[[ releases ]] +title = "0004000000176E00" +region = "jpn" +release_date = "2015-10-22" + +[[ testcases ]] +title = "0004000000176F00" +compatibility = "1" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/legend-of-zelda-tri-force-heroes/icon.png b/games/legend-of-zelda-tri-force-heroes/icon.png new file mode 100644 index 0000000..e15aa07 Binary files /dev/null and b/games/legend-of-zelda-tri-force-heroes/icon.png differ diff --git a/games/legend-of-zelda/boxart.png b/games/legend-of-zelda/boxart.png new file mode 100644 index 0000000..17e3575 Binary files /dev/null and b/games/legend-of-zelda/boxart.png differ diff --git a/games/legend-of-zelda/game.dat b/games/legend-of-zelda/game.dat new file mode 100644 index 0000000..f49e78e --- /dev/null +++ b/games/legend-of-zelda/game.dat @@ -0,0 +1,22 @@ +title = "The Legend of Zelda" +description = "The Legend of Zelda is an action-adventure video game developed and published by Nintendo and designed by Shigeru Miyamoto and Takashi Tezuka. Set in the fantasy land of Hyrule, the plot centers on a boy named Link, the playable protagonist, who aims to collect the eight fragments of the Triforce of Wisdom in order to rescue Princess Zelda from the antagonist, Ganon. During the course of the game, the player sees Link from a top-down perspective and must navigate him through the overworld and several dungeons, defeating enemies and finding secrets along the way." +github_issues = [2552] +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "nes" + +[[ releases ]] +title = "000400000006F100" +region = "usa" +release_date = "2012-07-05" + +[[ testcases ]] +title = "000400000006F100" +compatibility = "1" +date = "2017-06-04" +version = "HEAD-8f0a23b" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/legend-of-zelda/icon.png b/games/legend-of-zelda/icon.png new file mode 100644 index 0000000..4eb042b Binary files /dev/null and b/games/legend-of-zelda/icon.png differ diff --git a/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-18-12.png b/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-18-12.png new file mode 100644 index 0000000..9d9446e Binary files /dev/null and b/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-18-12.png differ diff --git a/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-18-53.png b/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-18-53.png new file mode 100644 index 0000000..d9ec58a Binary files /dev/null and b/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-18-53.png differ diff --git a/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-19-31.png b/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-19-31.png new file mode 100644 index 0000000..309be61 Binary files /dev/null and b/games/legend-of-zelda/screenshots/citra-qt_2017-06-04_23-19-31.png differ diff --git a/games/lego-city-undercover-the-chase-begins/boxart.png b/games/lego-city-undercover-the-chase-begins/boxart.png new file mode 100644 index 0000000..d135b2a Binary files /dev/null and b/games/lego-city-undercover-the-chase-begins/boxart.png differ diff --git a/games/lego-city-undercover-the-chase-begins/game.dat b/games/lego-city-undercover-the-chase-begins/game.dat new file mode 100644 index 0000000..0390a7d --- /dev/null +++ b/games/lego-city-undercover-the-chase-begins/game.dat @@ -0,0 +1,29 @@ +title = "LEGO City Undercover: The Chase Begins" +description = "LEGO City Undercover: The Chase Begins is an \"open world\" game developed by TT Fusion. While the game is technically open world, it is split into various city districts and needs to load each new district when traveling from one part of the city to another. The game is based on the LEGO City brand and was published by Nintendo. It serves as a prequel to Lego City Undercover." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000AD500" +region = "usa" +release_date = "2013-04-21" + +[[releases]] +title = "00040000000AD600" +region = "eur" +release_date = "2013-04-26" + +[[releases]] +title = "0004000000154700" +region = "jpn" +release_date = "2013-04-27" + +[[testcases]] +title = "00040000000AD500" +compatibility = "3" +date = "2017-11-08" +version = "HEAD-ddee442" +cpu = "AMD FX 5600" +gpu = "AMD R9 270" +os = "Windows 10 15063" +author = "EzekielRage" diff --git a/games/lego-city-undercover-the-chase-begins/icon.png b/games/lego-city-undercover-the-chase-begins/icon.png new file mode 100644 index 0000000..b75d140 Binary files /dev/null and b/games/lego-city-undercover-the-chase-begins/icon.png differ diff --git a/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen1.png b/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen1.png new file mode 100644 index 0000000..49a449f Binary files /dev/null and b/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen1.png differ diff --git a/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen2.png b/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen2.png new file mode 100644 index 0000000..c4af5f1 Binary files /dev/null and b/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen2.png differ diff --git a/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen3.png b/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen3.png new file mode 100644 index 0000000..7616060 Binary files /dev/null and b/games/lego-city-undercover-the-chase-begins/screenshots/LEGOCityScreen3.png differ diff --git a/games/lord-of-magna-maiden-heaven/boxart.png b/games/lord-of-magna-maiden-heaven/boxart.png new file mode 100644 index 0000000..4d0ae2f Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/boxart.png differ diff --git a/games/lord-of-magna-maiden-heaven/game.dat b/games/lord-of-magna-maiden-heaven/game.dat new file mode 100644 index 0000000..19f1c13 --- /dev/null +++ b/games/lord-of-magna-maiden-heaven/game.dat @@ -0,0 +1,19 @@ +title = "Lord Of Magna: Maiden Heaven" +description = "Lord of Magna: Maiden Heaven, known as \"Forbidden Magna\" in Japan, is a tactical role-playing life simulation published by Marvelous. with localization by XSEED for the West. It shares several similarities with the Rune Factory series." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "0004000000164300" +region = "usa" +release_date = "2015-06-02" + +[[releases]] +title = "0004000000165500" +region = "eur" +release_date = "2015-06-04" + +[[releases]] +title = "0004000000120900" +region = "jpn" +release_date = "2014-10-02" \ No newline at end of file diff --git a/games/lord-of-magna-maiden-heaven/icon.png b/games/lord-of-magna-maiden-heaven/icon.png new file mode 100644 index 0000000..a7d9f4b Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/icon.png differ diff --git a/games/lord-of-magna-maiden-heaven/screenshots/CG.png b/games/lord-of-magna-maiden-heaven/screenshots/CG.png new file mode 100644 index 0000000..9b50b0f Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/screenshots/CG.png differ diff --git a/games/lord-of-magna-maiden-heaven/screenshots/battle.png b/games/lord-of-magna-maiden-heaven/screenshots/battle.png new file mode 100644 index 0000000..b1ce8fe Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/screenshots/battle.png differ diff --git a/games/lord-of-magna-maiden-heaven/screenshots/cutscene.png b/games/lord-of-magna-maiden-heaven/screenshots/cutscene.png new file mode 100644 index 0000000..1f0bbf4 Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/screenshots/cutscene.png differ diff --git a/games/lord-of-magna-maiden-heaven/screenshots/dialogue.png b/games/lord-of-magna-maiden-heaven/screenshots/dialogue.png new file mode 100644 index 0000000..c282c6f Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/screenshots/dialogue.png differ diff --git a/games/lord-of-magna-maiden-heaven/screenshots/gameplay.png b/games/lord-of-magna-maiden-heaven/screenshots/gameplay.png new file mode 100644 index 0000000..6a68987 Binary files /dev/null and b/games/lord-of-magna-maiden-heaven/screenshots/gameplay.png differ diff --git a/games/luigis-mansion-dark-moon/boxart.png b/games/luigis-mansion-dark-moon/boxart.png new file mode 100644 index 0000000..549a159 Binary files /dev/null and b/games/luigis-mansion-dark-moon/boxart.png differ diff --git a/games/luigis-mansion-dark-moon/game.dat b/games/luigis-mansion-dark-moon/game.dat new file mode 100644 index 0000000..2bb1426 --- /dev/null +++ b/games/luigis-mansion-dark-moon/game.dat @@ -0,0 +1,35 @@ +title = "Luigi's Mansion: Dark Moon" +description = "Luigi's Mansion: Dark Moon, known in Japan as Luigi Mansion 2 (ルイージマンション2 Ruīji Manshon Tsū), and in Europe and Australia as Luigi's Mansion 2, is an action-adventure video game developed by Next Level Games and published by Nintendo for the Nintendo 3DS, and is the sequel to the 2001 game Luigi's Mansion for the GameCube." +github_issues = [1779, 2514, 3313] +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "0004000000055F00" +region = "usa" +release_date = "2013-03-24" + +[[ releases ]] +title = "0004000000076500" +region = "eur" +release_date = "2013-03-28" + +[[ releases ]] +title = "0004000000076400" +region = "jpn" +release_date = "2013-03-20" + +[[ releases ]] +title = "00040000000D0000" +region = "twn" +release_date = "2013-12-06" + +[[ testcases ]] +title = "0004000000055F00" +compatibility = "3" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/luigis-mansion-dark-moon/icon.png b/games/luigis-mansion-dark-moon/icon.png new file mode 100644 index 0000000..24a26a6 Binary files /dev/null and b/games/luigis-mansion-dark-moon/icon.png differ diff --git a/games/luigis-mansion-dark-moon/screenshots/Eggad-Laboratory.png b/games/luigis-mansion-dark-moon/screenshots/Eggad-Laboratory.png new file mode 100644 index 0000000..0d2c853 Binary files /dev/null and b/games/luigis-mansion-dark-moon/screenshots/Eggad-Laboratory.png differ diff --git a/games/luigis-mansion-dark-moon/screenshots/Manor-DS-Call.png b/games/luigis-mansion-dark-moon/screenshots/Manor-DS-Call.png new file mode 100644 index 0000000..3054350 Binary files /dev/null and b/games/luigis-mansion-dark-moon/screenshots/Manor-DS-Call.png differ diff --git a/games/luigis-mansion-dark-moon/screenshots/Manor-Door.png b/games/luigis-mansion-dark-moon/screenshots/Manor-Door.png new file mode 100644 index 0000000..139200d Binary files /dev/null and b/games/luigis-mansion-dark-moon/screenshots/Manor-Door.png differ diff --git a/games/luigis-mansion-dark-moon/screenshots/Title-Screen.png b/games/luigis-mansion-dark-moon/screenshots/Title-Screen.png new file mode 100644 index 0000000..b13d7fa Binary files /dev/null and b/games/luigis-mansion-dark-moon/screenshots/Title-Screen.png differ diff --git a/games/luigis-mansion/boxart.png b/games/luigis-mansion/boxart.png new file mode 100644 index 0000000..df27d08 Binary files /dev/null and b/games/luigis-mansion/boxart.png differ diff --git a/games/luigis-mansion/game.dat b/games/luigis-mansion/game.dat new file mode 100644 index 0000000..44fb270 --- /dev/null +++ b/games/luigis-mansion/game.dat @@ -0,0 +1,9 @@ +title = "Luigi's Mansion" +description = "Luigi's Mansion is an action-adventure game developed and published by Nintendo for the GameCube and then Re-Released on the Nintendo 3DS codevelopped by Grezzo." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "00040000001D1900" +region = "usa" +release_date = "2018-10-12" \ No newline at end of file diff --git a/games/luigis-mansion/icon.png b/games/luigis-mansion/icon.png new file mode 100644 index 0000000..7f24716 Binary files /dev/null and b/games/luigis-mansion/icon.png differ diff --git a/games/luigis-mansion/screenshots/Foyer.png b/games/luigis-mansion/screenshots/Foyer.png new file mode 100644 index 0000000..d242aa3 Binary files /dev/null and b/games/luigis-mansion/screenshots/Foyer.png differ diff --git a/games/luigis-mansion/screenshots/file-select.png b/games/luigis-mansion/screenshots/file-select.png new file mode 100644 index 0000000..7973350 Binary files /dev/null and b/games/luigis-mansion/screenshots/file-select.png differ diff --git a/games/luigis-mansion/screenshots/title-screen.png b/games/luigis-mansion/screenshots/title-screen.png new file mode 100644 index 0000000..30a14b0 Binary files /dev/null and b/games/luigis-mansion/screenshots/title-screen.png differ diff --git a/games/mario-and-donkey-kong-minis-on-the-move/boxart.png b/games/mario-and-donkey-kong-minis-on-the-move/boxart.png new file mode 100644 index 0000000..bfef8ef Binary files /dev/null and b/games/mario-and-donkey-kong-minis-on-the-move/boxart.png differ diff --git a/games/mario-and-donkey-kong-minis-on-the-move/game.dat b/games/mario-and-donkey-kong-minis-on-the-move/game.dat new file mode 100644 index 0000000..8295919 --- /dev/null +++ b/games/mario-and-donkey-kong-minis-on-the-move/game.dat @@ -0,0 +1,21 @@ +title = "Mario and Donkey Kong: Minis on the Move" +description = "Mario and Donkey Kong: Minis on the Move is a puzzle video game and is the fifth game in the Mario vs. Donkey Kong series published and edited by Nintendo." +github_issues = [3182] +needs_system_files = true +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "00040000000C9D00" +region = "usa" +release_date = "2013-05-09" + +[[testcases]] +title = "00040000000C9D00" +compatibility = "1" +date = "2017-12-03" +version = "HEAD-b2a9904" +cpu = "AMD FX-6300" +gpu = "Nvidia GeForce GTX 960" +os = "Windows 7 6.1.7601" +author = "greggameplayer" diff --git a/games/mario-and-donkey-kong-minis-on-the-move/icon.png b/games/mario-and-donkey-kong-minis-on-the-move/icon.png new file mode 100644 index 0000000..11ae755 Binary files /dev/null and b/games/mario-and-donkey-kong-minis-on-the-move/icon.png differ diff --git a/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen1.png b/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen1.png new file mode 100644 index 0000000..8012f9d Binary files /dev/null and b/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen1.png differ diff --git a/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen2.png b/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen2.png new file mode 100644 index 0000000..ba6f590 Binary files /dev/null and b/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen2.png differ diff --git a/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen3.png b/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen3.png new file mode 100644 index 0000000..19acd5b Binary files /dev/null and b/games/mario-and-donkey-kong-minis-on-the-move/screenshots/screen3.png differ diff --git a/games/mario-and-luigi-dream-team-update/boxart.png b/games/mario-and-luigi-dream-team-update/boxart.png new file mode 100644 index 0000000..c65aee5 Binary files /dev/null and b/games/mario-and-luigi-dream-team-update/boxart.png differ diff --git a/games/mario-and-luigi-dream-team-update/game.dat b/games/mario-and-luigi-dream-team-update/game.dat new file mode 100644 index 0000000..e0475bf --- /dev/null +++ b/games/mario-and-luigi-dream-team-update/game.dat @@ -0,0 +1,30 @@ +title = "Mario & Luigi: Dream Team" +description = "Mario & Luigi: Dream Team, known in Europe and Australia as Mario & Luigi: Dream Team Bros. and in Japan as Mario & Luigi RPG 4: Dream Adventure (マリオ&ルイージRPG4 ドリームアドベンチャー Mario ando Ruīji Aru Pī Jī Fō: Dorīmu Adobenchā), is a role-playing video game developed by AlphaDream for the Nintendo 3DS." +github_issues = [2617] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000D5A00" +region = "usa" +release_date = "2013-08-11" + +[[ releases ]] +title = "00040000000D9000" +region = "eur" +release_date = "2013-07-12" + +[[ releases ]] +title = "0004000000060600" +region = "jpn" +release_date = "2013-07-18" + +[[ testcases ]] +title = "00040000000D5A00" +compatibility = "1" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/mario-and-luigi-dream-team-update/icon.png b/games/mario-and-luigi-dream-team-update/icon.png new file mode 100644 index 0000000..775aefc Binary files /dev/null and b/games/mario-and-luigi-dream-team-update/icon.png differ diff --git a/games/mario-and-luigi-dream-team-update/screenshots/Beggining.png b/games/mario-and-luigi-dream-team-update/screenshots/Beggining.png new file mode 100644 index 0000000..3c6db1d Binary files /dev/null and b/games/mario-and-luigi-dream-team-update/screenshots/Beggining.png differ diff --git a/games/mario-and-luigi-dream-team-update/screenshots/File-Select.png b/games/mario-and-luigi-dream-team-update/screenshots/File-Select.png new file mode 100644 index 0000000..3ed801a Binary files /dev/null and b/games/mario-and-luigi-dream-team-update/screenshots/File-Select.png differ diff --git a/games/mario-and-luigi-dream-team-update/screenshots/Gyro-Attack.png b/games/mario-and-luigi-dream-team-update/screenshots/Gyro-Attack.png new file mode 100644 index 0000000..3aadd3b Binary files /dev/null and b/games/mario-and-luigi-dream-team-update/screenshots/Gyro-Attack.png differ diff --git a/games/mario-and-luigi-dream-team-update/screenshots/Title-Screen.png b/games/mario-and-luigi-dream-team-update/screenshots/Title-Screen.png new file mode 100644 index 0000000..a0bad3a Binary files /dev/null and b/games/mario-and-luigi-dream-team-update/screenshots/Title-Screen.png differ diff --git a/games/mario-and-luigi-paper-jam/boxart.png b/games/mario-and-luigi-paper-jam/boxart.png new file mode 100644 index 0000000..009fd8b Binary files /dev/null and b/games/mario-and-luigi-paper-jam/boxart.png differ diff --git a/games/mario-and-luigi-paper-jam/game.dat b/games/mario-and-luigi-paper-jam/game.dat new file mode 100644 index 0000000..d5c106a --- /dev/null +++ b/games/mario-and-luigi-paper-jam/game.dat @@ -0,0 +1,41 @@ +title = "Mario & Luigi: Paper Jam" +description = "Mario & Luigi: Paper Jam, known in Europe and Australia as Mario & Luigi: Paper Jam Bros. and in Japan as Mario & Luigi RPG Paper Mario MIX, is a role-playing video game developed by AlphaDream and published by Nintendo for the Nintendo 3DS. The game is the fifth title in the Mario & Luigi series (and a Paper Mario spin-off game title), crossing over with elements and style of characters from the Paper Mario series." +incomplete = true +github_issues = [2910] +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "0004000000132700" +region = "usa" +release_date = "2016-01-22" + +[[ releases ]] +title = "0004000000132800" +region = "eur" +release_date = "2015-12-04" + +[[ releases ]] +title = "0004000000132600" +region = "jpn" +release_date = "2015-12-03" + +[[ testcases ]] +title = "0004000000132700" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" + +[[ testcases ]] +title = "0004000000132800" +compatibility = "3" +date = "2017-08-31" +version = "HEAD-ecd332b" +author = "Avoltance" +cpu = "Intel Core i5 4200U" +gpu = "NVIDIA GeForce GT 720M" +os = "Windows 10" diff --git a/games/mario-and-luigi-paper-jam/icon.png b/games/mario-and-luigi-paper-jam/icon.png new file mode 100644 index 0000000..012cb28 Binary files /dev/null and b/games/mario-and-luigi-paper-jam/icon.png differ diff --git a/games/mario-and-luigi-paper-jam/savefiles/PaperJam-NearCrash-EUR.dat b/games/mario-and-luigi-paper-jam/savefiles/PaperJam-NearCrash-EUR.dat new file mode 100644 index 0000000..5388c48 --- /dev/null +++ b/games/mario-and-luigi-paper-jam/savefiles/PaperJam-NearCrash-EUR.dat @@ -0,0 +1,4 @@ +title = "Near Issue #2910 - Sunbeam Plains" +description = "Game crash if go to your right after loading save 1, after the cutscene" +author = "Avoltance" +title_id = "0004000000132800" diff --git a/games/mario-and-luigi-paper-jam/savefiles/PaperJam-NearCrash-EUR.zip b/games/mario-and-luigi-paper-jam/savefiles/PaperJam-NearCrash-EUR.zip new file mode 100644 index 0000000..99cef05 Binary files /dev/null and b/games/mario-and-luigi-paper-jam/savefiles/PaperJam-NearCrash-EUR.zip differ diff --git a/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-31-45.png b/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-31-45.png new file mode 100644 index 0000000..f97f7b2 Binary files /dev/null and b/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-31-45.png differ diff --git a/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-33-14.png b/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-33-14.png new file mode 100644 index 0000000..c45c0e0 Binary files /dev/null and b/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-33-14.png differ diff --git a/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-33-58.png b/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-33-58.png new file mode 100644 index 0000000..7bc1cdd Binary files /dev/null and b/games/mario-and-luigi-paper-jam/screenshots/citra-qt_2017-08-31_20-33-58.png differ diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/boxart.png b/games/mario-and-luigi-superstar-saga-bowsers-minions/boxart.png new file mode 100644 index 0000000..02b6643 Binary files /dev/null and b/games/mario-and-luigi-superstar-saga-bowsers-minions/boxart.png differ diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/game.dat b/games/mario-and-luigi-superstar-saga-bowsers-minions/game.dat new file mode 100644 index 0000000..347256c --- /dev/null +++ b/games/mario-and-luigi-superstar-saga-bowsers-minions/game.dat @@ -0,0 +1,29 @@ +title = "Mario & Luigi Superstar Saga + Bowser's Minions" +description = "Mario & Luigi: Superstar Saga + Bowser's Minions is a game for the Nintendo 3DS, developed by AlphaDream and published by Nintendo. It is an enhanced remake of the 2003 Game Boy Advance game, Mario & Luigi: Superstar Saga. The game has an added story called Minion Quest: The Search for Bowser." +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "00040000001B8F00" +region = "usa" +release_date = "2017-10-06" + +[[ releases ]] +title = "00040000001B9000" +region = "eur" +release_date = "2017-10-06" + +[[ releases ]] +title = "0004000000194B00" +region = "jpn" +release_date = "2017-10-05" + +[[testcases]] +title = "00040000001B9000" +compatibility = "0" +date = "2017-10-30" +version = "HEAD-1f6da9f" +cpu = "Intel Core i5-6400" +gpu = "nVidia GeForce GTX 750TI" +os = "Windows 10 15063" +author = "Sedhaild" diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/icon.png b/games/mario-and-luigi-superstar-saga-bowsers-minions/icon.png new file mode 100644 index 0000000..891af82 Binary files /dev/null and b/games/mario-and-luigi-superstar-saga-bowsers-minions/icon.png differ diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/bowsers-minions.png b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/bowsers-minions.png new file mode 100644 index 0000000..e5b25cf Binary files /dev/null and b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/bowsers-minions.png differ diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/fighting.png b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/fighting.png new file mode 100644 index 0000000..ab18129 Binary files /dev/null and b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/fighting.png differ diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/menu.png b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/menu.png new file mode 100644 index 0000000..6778100 Binary files /dev/null and b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/menu.png differ diff --git a/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/playing.png b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/playing.png new file mode 100644 index 0000000..fd3be52 Binary files /dev/null and b/games/mario-and-luigi-superstar-saga-bowsers-minions/screenshots/playing.png differ diff --git a/games/mario-golf-world-tour/boxart.png b/games/mario-golf-world-tour/boxart.png new file mode 100644 index 0000000..197f1e5 Binary files /dev/null and b/games/mario-golf-world-tour/boxart.png differ diff --git a/games/mario-golf-world-tour/game.dat b/games/mario-golf-world-tour/game.dat new file mode 100644 index 0000000..04eff64 --- /dev/null +++ b/games/mario-golf-world-tour/game.dat @@ -0,0 +1,31 @@ +title = "Mario Golf: World Tour" +description = "Mario Golf: World Tour is a golf video game developed by Camelot Software Planning and published by Nintendo for the Nintendo 3DS." +incomplete = true +needs_system_files = true +needs_shared_font = true +game_type = "3ds" + +[[ releases ]] +title = "00040000000DCD00" +region = "usa" +release_date = "2014-05-02" + +[[ releases ]] +title = "00040000000DCE00" +region = "eur" +release_date = "2014-05-02" + +[[ releases ]] +title = "00040000000A5300" +region = "jpn" +release_date = "2014-05-01" + +[[ testcases ]] +title = "00040000000DCD00" +compatibility = "5" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/mario-golf-world-tour/icon.png b/games/mario-golf-world-tour/icon.png new file mode 100644 index 0000000..9e20f43 Binary files /dev/null and b/games/mario-golf-world-tour/icon.png differ diff --git a/games/mario-kart-7/boxart.png b/games/mario-kart-7/boxart.png new file mode 100644 index 0000000..acd6eb7 Binary files /dev/null and b/games/mario-kart-7/boxart.png differ diff --git a/games/mario-kart-7/game.dat b/games/mario-kart-7/game.dat new file mode 100644 index 0000000..627ceb2 --- /dev/null +++ b/games/mario-kart-7/game.dat @@ -0,0 +1,36 @@ +title = "Mario Kart 7" +description = "Mario Kart 7 is a racing video game developed and published by Nintendo. It is the seventh major installment in the Mario Kart series and the third to be released for handheld consoles." +incomplete = true +github_issues = [2443, 1887, 2093, 1749] +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "0004000000030800" +region = "usa" +release_date = "2011-12-04" + +[[ releases ]] +title = "0004000000030700" +region = "eur" +release_date = "2011-12-02" + +[[ releases ]] +title = "0004000000030600" +region = "jpn" +release_date = "2011-12-01" + +[[ releases ]] +title = "000400000008B400" +region = "twn" +release_date = "2012-09-28" + +[[ testcases ]] +title = "0004000000030800" +compatibility = "3" +date = "2017-06-03" +version = "HEAD-a7ddec8" +author = "TheKoopaKingdom" +cpu = "?" +gpu = "?" +os = "?" diff --git a/games/mario-kart-7/icon.png b/games/mario-kart-7/icon.png new file mode 100644 index 0000000..8b60bde Binary files /dev/null and b/games/mario-kart-7/icon.png differ diff --git a/games/mario-kart-7/screenshots/Character-Selection.png b/games/mario-kart-7/screenshots/Character-Selection.png new file mode 100644 index 0000000..f18a521 Binary files /dev/null and b/games/mario-kart-7/screenshots/Character-Selection.png differ diff --git a/games/mario-kart-7/screenshots/Grand-Prix.png b/games/mario-kart-7/screenshots/Grand-Prix.png new file mode 100644 index 0000000..36454dc Binary files /dev/null and b/games/mario-kart-7/screenshots/Grand-Prix.png differ diff --git a/games/mario-kart-7/screenshots/Time-Trial.png b/games/mario-kart-7/screenshots/Time-Trial.png new file mode 100644 index 0000000..d764667 Binary files /dev/null and b/games/mario-kart-7/screenshots/Time-Trial.png differ diff --git a/games/mario-kart-7/screenshots/Title-Screen.png b/games/mario-kart-7/screenshots/Title-Screen.png new file mode 100644 index 0000000..a4d7694 Binary files /dev/null and b/games/mario-kart-7/screenshots/Title-Screen.png differ diff --git a/games/mario-party-island-tour/boxart.png b/games/mario-party-island-tour/boxart.png new file mode 100644 index 0000000..7e7a70f Binary files /dev/null and b/games/mario-party-island-tour/boxart.png differ diff --git a/games/mario-party-island-tour/game.dat b/games/mario-party-island-tour/game.dat new file mode 100644 index 0000000..f5c4632 --- /dev/null +++ b/games/mario-party-island-tour/game.dat @@ -0,0 +1,19 @@ +title = "Mario Party: Island Tour" +description = "Mario Party: Island Tour is a party video game developed by Nd Cube and published by Nintendo. It is the first Mario Party game to be on the Nintendo 3DS and features 7 boards, each with their own special features, and 81 new minigames." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "00040000000F8100" +region = "usa" +release_date = "2013-11-22" + +[[releases]] +title = "00040000000F8200" +region = "eur" +release_date = "2014-01-17" + +[[releases]] +title = "00040000000DD400" +region = "jpn" +release_date = "2014-03-20" \ No newline at end of file diff --git a/games/mario-party-island-tour/icon.png b/games/mario-party-island-tour/icon.png new file mode 100644 index 0000000..2208144 Binary files /dev/null and b/games/mario-party-island-tour/icon.png differ diff --git a/games/mario-party-island-tour/screenshots/cube-minigame.png b/games/mario-party-island-tour/screenshots/cube-minigame.png new file mode 100644 index 0000000..b2a322a Binary files /dev/null and b/games/mario-party-island-tour/screenshots/cube-minigame.png differ diff --git a/games/mario-party-island-tour/screenshots/game-menu.png b/games/mario-party-island-tour/screenshots/game-menu.png new file mode 100644 index 0000000..0e93096 Binary files /dev/null and b/games/mario-party-island-tour/screenshots/game-menu.png differ diff --git a/games/mario-party-island-tour/screenshots/main-menu.png b/games/mario-party-island-tour/screenshots/main-menu.png new file mode 100644 index 0000000..41b544d Binary files /dev/null and b/games/mario-party-island-tour/screenshots/main-menu.png differ diff --git a/games/mario-party-island-tour/screenshots/party-game-mode.png b/games/mario-party-island-tour/screenshots/party-game-mode.png new file mode 100644 index 0000000..6a169b8 Binary files /dev/null and b/games/mario-party-island-tour/screenshots/party-game-mode.png differ diff --git a/games/mario-party-star-rush/boxart.png b/games/mario-party-star-rush/boxart.png new file mode 100644 index 0000000..b3a8cf4 Binary files /dev/null and b/games/mario-party-star-rush/boxart.png differ diff --git a/games/mario-party-star-rush/game.dat b/games/mario-party-star-rush/game.dat new file mode 100644 index 0000000..c35066a --- /dev/null +++ b/games/mario-party-star-rush/game.dat @@ -0,0 +1,19 @@ +title = "Mario Party: Star Rush" +description = "Mario Party: Star Rush is a party video game developed by Nd Cube and published by Nintendo for the Nintendo 3DS. It deviates from the normal Mario Party series in its removal of turn-based gameplay in favor of the ability to move at will, simultaneous with other players, and without set paths on the game board." +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "000400000019BD00" +region = "usa" +release_date = "2016-11-04" + +[[releases]] +title = "000400000019BE00" +region = "eur" +release_date = "2016-10-07" + +[[ releases ]] +title = "0004000000193900" +region = "jpn" +release_date = "2016-10-20" diff --git a/games/mario-party-star-rush/icon.png b/games/mario-party-star-rush/icon.png new file mode 100644 index 0000000..0a201d3 Binary files /dev/null and b/games/mario-party-star-rush/icon.png differ diff --git a/games/mario-party-star-rush/screenshots/acorn-minigame.png b/games/mario-party-star-rush/screenshots/acorn-minigame.png new file mode 100644 index 0000000..e7bcc6e Binary files /dev/null and b/games/mario-party-star-rush/screenshots/acorn-minigame.png differ diff --git a/games/mario-party-star-rush/screenshots/overworld.png b/games/mario-party-star-rush/screenshots/overworld.png new file mode 100644 index 0000000..c91eb6b Binary files /dev/null and b/games/mario-party-star-rush/screenshots/overworld.png differ diff --git a/games/mario-party-star-rush/screenshots/toad-tour.png b/games/mario-party-star-rush/screenshots/toad-tour.png new file mode 100644 index 0000000..961fca8 Binary files /dev/null and b/games/mario-party-star-rush/screenshots/toad-tour.png differ diff --git a/games/mario-party-the-top-100/boxart.png b/games/mario-party-the-top-100/boxart.png new file mode 100644 index 0000000..5e2752b Binary files /dev/null and b/games/mario-party-the-top-100/boxart.png differ diff --git a/games/mario-party-the-top-100/game.dat b/games/mario-party-the-top-100/game.dat new file mode 100644 index 0000000..307fda3 --- /dev/null +++ b/games/mario-party-the-top-100/game.dat @@ -0,0 +1,29 @@ +title = "Mario Party: The Top 100" +description = "Mario Party: The Top 100 is a party video game developed by Nd Cube and published by Nintendo. It is a compilation of the 100 best minigames throughout the Mario Party series." +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "00040000001C4E00" +region = "usa" +release_date = "2017-11-10" + +[[ releases ]] +title = "00040000001C4D00" +region = "eur" +release_date = "2017-12-22" + +[[ releases ]] +title = "00040000001C0A00" +region = "jpn" +release_date = "2017-12-28" + +[[testcases]] +title = "00040000001C4E00" +compatibility = "1" +date = "2017-11-19" +version = "HEAD-e9a95b2" +cpu = "AMD FX-6300" +gpu = "Nvidia GeForce GTX 960" +os = "Windows 7 6.1.7601" +author = "greggameplayer" diff --git a/games/mario-party-the-top-100/icon.png b/games/mario-party-the-top-100/icon.png new file mode 100644 index 0000000..5489c23 Binary files /dev/null and b/games/mario-party-the-top-100/icon.png differ diff --git a/games/mario-party-the-top-100/screenshots/123-Minigame.png b/games/mario-party-the-top-100/screenshots/123-Minigame.png new file mode 100644 index 0000000..6110436 Binary files /dev/null and b/games/mario-party-the-top-100/screenshots/123-Minigame.png differ diff --git a/games/mario-party-the-top-100/screenshots/Game-Menu.png b/games/mario-party-the-top-100/screenshots/Game-Menu.png new file mode 100644 index 0000000..d00b321 Binary files /dev/null and b/games/mario-party-the-top-100/screenshots/Game-Menu.png differ diff --git a/games/mario-party-the-top-100/screenshots/Push-Balloon-Minigame.png b/games/mario-party-the-top-100/screenshots/Push-Balloon-Minigame.png new file mode 100644 index 0000000..ac92e16 Binary files /dev/null and b/games/mario-party-the-top-100/screenshots/Push-Balloon-Minigame.png differ diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/boxart.png b/games/mario-sonic-at-the-london-2012-olympic-games/boxart.png new file mode 100644 index 0000000..e84bda9 Binary files /dev/null and b/games/mario-sonic-at-the-london-2012-olympic-games/boxart.png differ diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/game.dat b/games/mario-sonic-at-the-london-2012-olympic-games/game.dat new file mode 100644 index 0000000..859cd50 --- /dev/null +++ b/games/mario-sonic-at-the-london-2012-olympic-games/game.dat @@ -0,0 +1,24 @@ +title = "Mario & Sonic at the London 2012 Olympic Games" +description = "Mario & Sonic at the London 2012 Olympic Games is a sports and party game developed by Sega Japan. As with the previous two Mario & Sonic titles, it was published by Nintendo in Japan and by Sega in all other regions. The game is officially licensed by the International Olympic Committee (IOC) through exclusive licensee International Sports Multimedia. It is the third installment in the Mario & Sonic series after the commercial success of its predecessors." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "0004000000054800" +region = "usa" +release_date = "2012-02-14" + +[[releases]] +title = "0004000000054900" +region = "eur" +release_date = "2012-02-09" + +[[releases]] +title = "0004000000032500" +region = "jpn" +release_date = "2012-03-01" + +[[releases]] +title= "0004000000053500" +region = "kor" +release_date = "2012-06-21" diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/icon.png b/games/mario-sonic-at-the-london-2012-olympic-games/icon.png new file mode 100644 index 0000000..2387358 Binary files /dev/null and b/games/mario-sonic-at-the-london-2012-olympic-games/icon.png differ diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/in-game.png b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/in-game.png new file mode 100644 index 0000000..79b49d9 Binary files /dev/null and b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/in-game.png differ diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/menu.png b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/menu.png new file mode 100644 index 0000000..4826eaf Binary files /dev/null and b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/menu.png differ diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/playing.png b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/playing.png new file mode 100644 index 0000000..8cad819 Binary files /dev/null and b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/playing.png differ diff --git a/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/save-slots.png b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/save-slots.png new file mode 100644 index 0000000..2c7a6aa Binary files /dev/null and b/games/mario-sonic-at-the-london-2012-olympic-games/screenshots/save-slots.png differ diff --git a/games/mario-sonic-at-the-rio-2016-olympic-games/boxart.png b/games/mario-sonic-at-the-rio-2016-olympic-games/boxart.png new file mode 100644 index 0000000..802e865 Binary files /dev/null and b/games/mario-sonic-at-the-rio-2016-olympic-games/boxart.png differ diff --git a/games/mario-sonic-at-the-rio-2016-olympic-games/game.dat b/games/mario-sonic-at-the-rio-2016-olympic-games/game.dat new file mode 100644 index 0000000..203fac6 --- /dev/null +++ b/games/mario-sonic-at-the-rio-2016-olympic-games/game.dat @@ -0,0 +1,24 @@ +title = "Mario & Sonic at the Rio 2016 Olympic Games" +description = "Mario & Sonic at the Rio 2016 Olympic Games is a crossover sports and party game in the Mario & Sonic at the Olympic Games series. It was developed by Sega Sports R&D, with assistance from Arzest and Spike Chunsoft, and published by Nintendo. It is the fifth title in the Mario & Sonic at the Olympic Games series." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000017E200" +region = "usa" +release_date = "2016-03-18" + +[[releases]] +title = "000400000017E300" +region = "eur" +release_date = "2016-04-08" + +[[releases]] +title = "000400000014A400" +region = "jpn" +release_date = "2016-02-18" + +[[releases]] +title = "0004000000191D00" +region = "kor" +release_date = "2016-06-23" diff --git a/games/mario-sonic-at-the-rio-2016-olympic-games/icon.png b/games/mario-sonic-at-the-rio-2016-olympic-games/icon.png new file mode 100644 index 0000000..15a5d9e Binary files /dev/null and b/games/mario-sonic-at-the-rio-2016-olympic-games/icon.png differ diff --git a/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/character-select.png b/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/character-select.png new file mode 100644 index 0000000..40a0039 Binary files /dev/null and b/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/character-select.png differ diff --git a/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/ingame.png b/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/ingame.png new file mode 100644 index 0000000..2531ab3 Binary files /dev/null and b/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/ingame.png differ diff --git a/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/menu.png b/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/menu.png new file mode 100644 index 0000000..f2e7871 Binary files /dev/null and b/games/mario-sonic-at-the-rio-2016-olympic-games/screenshots/menu.png differ diff --git a/games/mario-sports-superstars/boxart.png b/games/mario-sports-superstars/boxart.png new file mode 100644 index 0000000..bac3db6 Binary files /dev/null and b/games/mario-sports-superstars/boxart.png differ diff --git a/games/mario-sports-superstars/game.dat b/games/mario-sports-superstars/game.dat new file mode 100644 index 0000000..091da48 --- /dev/null +++ b/games/mario-sports-superstars/game.dat @@ -0,0 +1,28 @@ +title = "Mario Sports Superstars" +description = "Mario Sports Superstars is a sports video game developed by Bandai Namco Studios and Camelot Software Planning and published by Nintendo for the Nintendo 3DS handheld video game console. The game contains five sports minigames, soccer, baseball, tennis, golf and horse racing." +github_issues = [2660] + +[[ releases ]] +title = "0004000000188C00" +region = "usa" +release_date = "2017-03-06" + +[[ releases ]] +title = "0004000000188D00" +region = "eur" +release_date = "2017-03-10" + +[[ releases ]] +title = "0004000000188B00" +region = "jpn" +release_date = "2017-03-30" + +[[ testcases ]] +title = "0004000000188C00" +compatibility = "5" +date = "2017-06-03" +version = "HEAD-a7ddec8" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/mario-sports-superstars/icon.png b/games/mario-sports-superstars/icon.png new file mode 100644 index 0000000..3e8ec92 Binary files /dev/null and b/games/mario-sports-superstars/icon.png differ diff --git a/games/mario-tennis-open/boxart.png b/games/mario-tennis-open/boxart.png new file mode 100644 index 0000000..9362178 Binary files /dev/null and b/games/mario-tennis-open/boxart.png differ diff --git a/games/mario-tennis-open/game.dat b/games/mario-tennis-open/game.dat new file mode 100644 index 0000000..5907357 --- /dev/null +++ b/games/mario-tennis-open/game.dat @@ -0,0 +1,30 @@ +title = "Mario Tennis Open" +description = "Mario Tennis Open is a Mario sports game developed by Camelot Software Planning and published by Nintendo for the Nintendo 3DS. The game was developed by Camelot, which has produced most of the previous Mario Tennis titles." +needs_system_files = true +needs_shared_font = false +game_type = "3ds" + +[[ releases ]] +title = "000400000007C700" +region = "usa" +release_date = "2012-05-20" + +[[ releases ]] +title = "000400000007C800" +region = "eur" +release_date = "2012-05-24" + +[[ releases ]] +title = "0004000000064D00" +region = "jpn" +release_date = "2012-05-25" + +[[ testcases ]] +title = "000400000007C700" +compatibility = "5" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/mario-tennis-open/icon.png b/games/mario-tennis-open/icon.png new file mode 100644 index 0000000..d0a916d Binary files /dev/null and b/games/mario-tennis-open/icon.png differ diff --git a/games/mario-vs-donkey-kong-tipping-stars/boxart.png b/games/mario-vs-donkey-kong-tipping-stars/boxart.png new file mode 100644 index 0000000..54a2627 Binary files /dev/null and b/games/mario-vs-donkey-kong-tipping-stars/boxart.png differ diff --git a/games/mario-vs-donkey-kong-tipping-stars/game.dat b/games/mario-vs-donkey-kong-tipping-stars/game.dat new file mode 100644 index 0000000..f2311ea --- /dev/null +++ b/games/mario-vs-donkey-kong-tipping-stars/game.dat @@ -0,0 +1,21 @@ +title = "Mario vs. Donkey Kong: Tipping Stars" +description = "Mario vs. Donkey Kong: Tipping Stars is a puzzle video game developed by Nintendo Software Technology and published by Nintendo. It is the sixth game in the Mario vs. Donkey Kong series." +github_issues = [3183] +needs_system_files = true +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "000400000012C800" +region = "usa" +release_date = "2015-03-05" + +[[testcases]] +title = "000400000012C800" +compatibility = "3" +date = "2017-12-03" +version = "HEAD-b2a9904" +cpu = "AMD FX-6300" +gpu = "Nvidia GeForce GTX 960" +os = "Windows 7 6.1.7601" +author = "greggameplayer" diff --git a/games/mario-vs-donkey-kong-tipping-stars/icon.png b/games/mario-vs-donkey-kong-tipping-stars/icon.png new file mode 100644 index 0000000..2201b64 Binary files /dev/null and b/games/mario-vs-donkey-kong-tipping-stars/icon.png differ diff --git a/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen1.png b/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen1.png new file mode 100644 index 0000000..04d30c0 Binary files /dev/null and b/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen1.png differ diff --git a/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen2.png b/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen2.png new file mode 100644 index 0000000..4a31df1 Binary files /dev/null and b/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen2.png differ diff --git a/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen3.png b/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen3.png new file mode 100644 index 0000000..f41d2a1 Binary files /dev/null and b/games/mario-vs-donkey-kong-tipping-stars/screenshots/screen3.png differ diff --git a/games/medarot-9/boxart.png b/games/medarot-9/boxart.png new file mode 100644 index 0000000..ac4b9b8 Binary files /dev/null and b/games/medarot-9/boxart.png differ diff --git a/games/medarot-9/game.dat b/games/medarot-9/game.dat new file mode 100644 index 0000000..e9b7108 --- /dev/null +++ b/games/medarot-9/game.dat @@ -0,0 +1,14 @@ +title = "Medarot 9" +description = "Medarot 9 is a role-playing video game developed by Delta Arts and published by Rocket Company, and the ninth installment in the Medarot series. Like previous games, it was released in Kabuto and Kuwagata versions." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "0004000000174E00" +region = "jpn" +release_date = "2015-12-24" + +[[releases]] +title = "0004000000174F00" +region = "jpn" +release_date = "2015-12-24" diff --git a/games/medarot-9/icon.png b/games/medarot-9/icon.png new file mode 100644 index 0000000..cb0daaa Binary files /dev/null and b/games/medarot-9/icon.png differ diff --git a/games/medarot-9/screenshots/Customization.png b/games/medarot-9/screenshots/Customization.png new file mode 100644 index 0000000..3685aef Binary files /dev/null and b/games/medarot-9/screenshots/Customization.png differ diff --git a/games/medarot-9/screenshots/Menu.png b/games/medarot-9/screenshots/Menu.png new file mode 100644 index 0000000..d2a87fc Binary files /dev/null and b/games/medarot-9/screenshots/Menu.png differ diff --git a/games/medarot-9/screenshots/Overworld.png b/games/medarot-9/screenshots/Overworld.png new file mode 100644 index 0000000..8e9eba6 Binary files /dev/null and b/games/medarot-9/screenshots/Overworld.png differ diff --git a/games/mega-man-legacy-collection/boxart.png b/games/mega-man-legacy-collection/boxart.png new file mode 100644 index 0000000..92aad06 Binary files /dev/null and b/games/mega-man-legacy-collection/boxart.png differ diff --git a/games/mega-man-legacy-collection/game.dat b/games/mega-man-legacy-collection/game.dat new file mode 100644 index 0000000..d715343 --- /dev/null +++ b/games/mega-man-legacy-collection/game.dat @@ -0,0 +1,20 @@ +title = "Megaman Legacy Collection" +description = "Mega Man Legacy Collection, known as Rockman Classics Collection (ロックマン クラシックス コレクション?) in Japan, is a game collection from the classic Mega Man series produced by Capcom and Digital Eclipse. It contains the first six Mega Man games with high definition 8-bit graphics and additional content." +github_issues = [2526] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000174100" +region = "usa" +release_date = "2016-02-23" + +[[testcases]] +title = "0004000000174100" +compatibility = "4" +date = "2017-10-24" +version = "HEAD-b36f748" +cpu = "Intel Xeon E31240" +gpu = "NVIDIA GeForce GTX 750" +os = "Windows 7 7601" +author = "AuraOfTheDawn" diff --git a/games/mega-man-legacy-collection/icon.png b/games/mega-man-legacy-collection/icon.png new file mode 100644 index 0000000..23b8c25 Binary files /dev/null and b/games/mega-man-legacy-collection/icon.png differ diff --git a/games/mega-man-legacy-collection/screenshots/LoadingScreen.png b/games/mega-man-legacy-collection/screenshots/LoadingScreen.png new file mode 100644 index 0000000..78d115a Binary files /dev/null and b/games/mega-man-legacy-collection/screenshots/LoadingScreen.png differ diff --git a/games/mercenaries-saga-2/boxart.png b/games/mercenaries-saga-2/boxart.png new file mode 100644 index 0000000..195fb66 Binary files /dev/null and b/games/mercenaries-saga-2/boxart.png differ diff --git a/games/mercenaries-saga-2/game.dat b/games/mercenaries-saga-2/game.dat new file mode 100644 index 0000000..f44d6b0 --- /dev/null +++ b/games/mercenaries-saga-2/game.dat @@ -0,0 +1,15 @@ +title = "Mercenaries Saga 2: Order of the Silver Eagle" +description = "Mercenaries Saga 2 is a Tactical Strategy RPG based on a fantasy world’s stage. Battles engage in quarter view map and tactics vary from different terrain." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "000400000016CC00" +region = "usa" +release_date = "2015-07-02" + +[[releases]] +title = "000400000016B100" +region = "eur" +release_date = "2015-07-23" diff --git a/games/mercenaries-saga-2/icon.png b/games/mercenaries-saga-2/icon.png new file mode 100644 index 0000000..a791b20 Binary files /dev/null and b/games/mercenaries-saga-2/icon.png differ diff --git a/games/mercenaries-saga-2/screenshots/Battle-Selection-Screen.png b/games/mercenaries-saga-2/screenshots/Battle-Selection-Screen.png new file mode 100644 index 0000000..a60da12 Binary files /dev/null and b/games/mercenaries-saga-2/screenshots/Battle-Selection-Screen.png differ diff --git a/games/mercenaries-saga-2/screenshots/Character-Class-Screen.png b/games/mercenaries-saga-2/screenshots/Character-Class-Screen.png new file mode 100644 index 0000000..c6a8d63 Binary files /dev/null and b/games/mercenaries-saga-2/screenshots/Character-Class-Screen.png differ diff --git a/games/mercenaries-saga-2/screenshots/Character-Screen.png b/games/mercenaries-saga-2/screenshots/Character-Screen.png new file mode 100644 index 0000000..faade69 Binary files /dev/null and b/games/mercenaries-saga-2/screenshots/Character-Screen.png differ diff --git a/games/mercenaries-saga-2/screenshots/Title-Screen.png b/games/mercenaries-saga-2/screenshots/Title-Screen.png new file mode 100644 index 0000000..058d092 Binary files /dev/null and b/games/mercenaries-saga-2/screenshots/Title-Screen.png differ diff --git a/games/metal-gear-solid-snake-eater-3d/boxart.png b/games/metal-gear-solid-snake-eater-3d/boxart.png new file mode 100755 index 0000000..696667b Binary files /dev/null and b/games/metal-gear-solid-snake-eater-3d/boxart.png differ diff --git a/games/metal-gear-solid-snake-eater-3d/game.dat b/games/metal-gear-solid-snake-eater-3d/game.dat new file mode 100644 index 0000000..8c1dd77 --- /dev/null +++ b/games/metal-gear-solid-snake-eater-3d/game.dat @@ -0,0 +1,30 @@ +title = "Metal Gear Solid: Snake Eater 3D" +description = "Metal Gear Solid 3: Snake Eater is an action-adventure stealth videogame produced by Konami Computer Entertainment Japan for the PlayStation 2. In 2010, Konami announced a full Metal Gear title for release on the 3DS, which was revealed at Nintendo World 2011 to be Metal Gear Solid: Snake Eater 3D." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000081E00" +region = "usa" +release_date = "2012-02-21" + +[[ releases ]] +title = "0004000000082400" +region = "eur" +release_date = "2012-03-08" + +[[ releases ]] +title = "000400000007A000" +region = "jpn" +release_date = "2012-03-08" + +[[ testcases ]] +title = "0004000000081E00" +compatibility = "4" +date = "2017-06-18" +version = "HEAD-5fe5cca" +author = "Anadian" +cpu = "Intel Core i7-6500U" +gpu = "Intel HD Graphics 520" +os = "Windows 10 14393" diff --git a/games/metal-gear-solid-snake-eater-3d/icon.png b/games/metal-gear-solid-snake-eater-3d/icon.png new file mode 100755 index 0000000..a2aa63a Binary files /dev/null and b/games/metal-gear-solid-snake-eater-3d/icon.png differ diff --git a/games/metroid-ii-return-of-samus/boxart.png b/games/metroid-ii-return-of-samus/boxart.png new file mode 100644 index 0000000..f8599a8 Binary files /dev/null and b/games/metroid-ii-return-of-samus/boxart.png differ diff --git a/games/metroid-ii-return-of-samus/game.dat b/games/metroid-ii-return-of-samus/game.dat new file mode 100644 index 0000000..ffa8188 --- /dev/null +++ b/games/metroid-ii-return-of-samus/game.dat @@ -0,0 +1,21 @@ +title = "Metroid II: Return of Samus" +description = "Metroid II: Return of Samus is an action adventure game developed by Nintendo and initial published for the Game Boy." +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "gb" + +[[releases]] +title = "0004000000050500" +region = "eur" +release_date = "2011-11-24" + +[[testcases]] +title = "0004000000050500" +compatibility = "2" +date = "2017-10-03" +version = "HEAD-30fabc4" +cpu = "Intel Core i5-4590" +gpu = "Nvidia GeForce GTX 1080" +os = "Arch Linux" +author = "SuperNascher" diff --git a/games/metroid-ii-return-of-samus/icon.png b/games/metroid-ii-return-of-samus/icon.png new file mode 100644 index 0000000..a727e3c Binary files /dev/null and b/games/metroid-ii-return-of-samus/icon.png differ diff --git a/games/metroid-ii-return-of-samus/screenshots/save-station.png b/games/metroid-ii-return-of-samus/screenshots/save-station.png new file mode 100644 index 0000000..fc953af Binary files /dev/null and b/games/metroid-ii-return-of-samus/screenshots/save-station.png differ diff --git a/games/metroid-ii-return-of-samus/screenshots/start-area.png b/games/metroid-ii-return-of-samus/screenshots/start-area.png new file mode 100644 index 0000000..36a1966 Binary files /dev/null and b/games/metroid-ii-return-of-samus/screenshots/start-area.png differ diff --git a/games/metroid-ii-return-of-samus/screenshots/the-first-metroid.png b/games/metroid-ii-return-of-samus/screenshots/the-first-metroid.png new file mode 100644 index 0000000..3fadee9 Binary files /dev/null and b/games/metroid-ii-return-of-samus/screenshots/the-first-metroid.png differ diff --git a/games/metroid-ii-return-of-samus/screenshots/the-second-enemy.png b/games/metroid-ii-return-of-samus/screenshots/the-second-enemy.png new file mode 100644 index 0000000..5655267 Binary files /dev/null and b/games/metroid-ii-return-of-samus/screenshots/the-second-enemy.png differ diff --git a/games/metroid-prime-federation-force-blast-ball-update/boxart.png b/games/metroid-prime-federation-force-blast-ball-update/boxart.png new file mode 100644 index 0000000..afa2013 Binary files /dev/null and b/games/metroid-prime-federation-force-blast-ball-update/boxart.png differ diff --git a/games/metroid-prime-federation-force-blast-ball-update/game.dat b/games/metroid-prime-federation-force-blast-ball-update/game.dat new file mode 100644 index 0000000..efdea2c --- /dev/null +++ b/games/metroid-prime-federation-force-blast-ball-update/game.dat @@ -0,0 +1,21 @@ +title = "Metroid Prime Blast Ball" +description = "Metroid Prime Blast Ball is a demo of the soccer minigame seen in Metroid Prime: Federation Force. It was developed by Next Level Games and features single and local multiplayer (online features have been 'discontinued'). It is a First Person Shooter, where the goal of the game is to shoot a large ball using weapons attached to mechs into the opposing team's goal." +github_issues = [3679] +needs_system_files = false +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "000400000016F600" +region = "usa" +release_date = "2016-07-21" + +[[releases]] +title = "0004000000175300" +region = "eur" +release_date = "2016-07-21" + +[[releases]] +title = "000400000016E400" +region = "jpn" +release_date = "2016-07-22" diff --git a/games/metroid-prime-federation-force-blast-ball-update/icon.png b/games/metroid-prime-federation-force-blast-ball-update/icon.png new file mode 100644 index 0000000..2713793 Binary files /dev/null and b/games/metroid-prime-federation-force-blast-ball-update/icon.png differ diff --git a/games/metroid-prime-federation-force-blast-ball-update/screenshots/Customization-Menu.png b/games/metroid-prime-federation-force-blast-ball-update/screenshots/Customization-Menu.png new file mode 100644 index 0000000..ea64dc0 Binary files /dev/null and b/games/metroid-prime-federation-force-blast-ball-update/screenshots/Customization-Menu.png differ diff --git a/games/metroid-prime-federation-force-blast-ball-update/screenshots/Main-Menu.png b/games/metroid-prime-federation-force-blast-ball-update/screenshots/Main-Menu.png new file mode 100644 index 0000000..f2ddee9 Binary files /dev/null and b/games/metroid-prime-federation-force-blast-ball-update/screenshots/Main-Menu.png differ diff --git a/games/metroid-prime-federation-force-blast-ball-update/screenshots/charged-shot.png b/games/metroid-prime-federation-force-blast-ball-update/screenshots/charged-shot.png new file mode 100644 index 0000000..4b7b0f7 Binary files /dev/null and b/games/metroid-prime-federation-force-blast-ball-update/screenshots/charged-shot.png differ diff --git a/games/metroid-prime-federation-force-blast-ball-update/screenshots/ready-set.png b/games/metroid-prime-federation-force-blast-ball-update/screenshots/ready-set.png new file mode 100644 index 0000000..3942226 Binary files /dev/null and b/games/metroid-prime-federation-force-blast-ball-update/screenshots/ready-set.png differ diff --git a/games/metroid-prime-federation-force/boxart.png b/games/metroid-prime-federation-force/boxart.png new file mode 100644 index 0000000..93685a7 Binary files /dev/null and b/games/metroid-prime-federation-force/boxart.png differ diff --git a/games/metroid-prime-federation-force/game.dat b/games/metroid-prime-federation-force/game.dat new file mode 100644 index 0000000..e5bcda8 --- /dev/null +++ b/games/metroid-prime-federation-force/game.dat @@ -0,0 +1,29 @@ +title = "Metroid Prime: Federation Force" +description = "Metroid Prime: Federation Force is a first-person shooter developed by Next Level Games and published by Nintendo. A spin-off of the Metroid Prime series where the player assumes the role of a Galactic Federation Marine sent on missions to defeat the Space Pirates. It includes a multiplayer soccer-based game mode known as Metroid Prime: Blast Ball." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "000400000016E300" +region = "usa" +release_date = "2016-08-19" + +[[ releases ]] +title = "0004000000175200" +region = "eur" +release_date = "2016-09-02" + +[[ releases ]] +title = "000400000016CE00" +region = "jpn" +release_date = "2016-08-25" + +[[testcases]] +title = "000400000016E300" +compatibility = "3" +date = "2017-11-08" +version = "HEAD-ddee442" +cpu = "AMD FX 5600" +gpu = "AMD R9 270" +os = "Windows 10 15063" +author = "EzekielRage" diff --git a/games/metroid-prime-federation-force/icon.png b/games/metroid-prime-federation-force/icon.png new file mode 100644 index 0000000..69e4560 Binary files /dev/null and b/games/metroid-prime-federation-force/icon.png differ diff --git a/games/metroid-prime-federation-force/screenshots/MPFFScreen1.png b/games/metroid-prime-federation-force/screenshots/MPFFScreen1.png new file mode 100644 index 0000000..4906dd4 Binary files /dev/null and b/games/metroid-prime-federation-force/screenshots/MPFFScreen1.png differ diff --git a/games/metroid-prime-federation-force/screenshots/MPFFScreen2.png b/games/metroid-prime-federation-force/screenshots/MPFFScreen2.png new file mode 100644 index 0000000..ca532de Binary files /dev/null and b/games/metroid-prime-federation-force/screenshots/MPFFScreen2.png differ diff --git a/games/metroid-prime-federation-force/screenshots/MPFFScreen3.png b/games/metroid-prime-federation-force/screenshots/MPFFScreen3.png new file mode 100644 index 0000000..8ca48b7 Binary files /dev/null and b/games/metroid-prime-federation-force/screenshots/MPFFScreen3.png differ diff --git a/games/metroid-samus-returns/boxart.png b/games/metroid-samus-returns/boxart.png new file mode 100644 index 0000000..2ee4efa Binary files /dev/null and b/games/metroid-samus-returns/boxart.png differ diff --git a/games/metroid-samus-returns/game.dat b/games/metroid-samus-returns/game.dat new file mode 100644 index 0000000..d8f9118 --- /dev/null +++ b/games/metroid-samus-returns/game.dat @@ -0,0 +1,29 @@ +title = "Metroid: Samus Returns" +description = "Metroid: Samus Returns is a side-scrolling action-adventure video game developed collaboratively by MercurySteam and Nintendo, with the latter also publishing it for the Nintendo 3DS handheld game console. The game is a reimagining of the 1991 Game Boy game Metroid II: Return of Samus. It follows series protagonist Samus Aran, who is sent by the Galactic Federation to exterminate the parasitic Metroids on their home planet of SR388." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000001BB200" +region = "usa" +release_date = "2017-09-15" + +[[ releases ]] +title = "00040000001BFB00" +region = "eur" +release_date = "2017-09-15" + +[[ releases ]] +title = "00040000001BFC00" +region = "jpn" +release_date = "2017-09-15" + +[[testcases]] +title = "00040000001BB200" +compatibility = "1" +date = "2017-09-29" +version = "HEAD-0d42706" +cpu = "Intel Core i5-3570HQ" +gpu = "Nvidia Geforce GTX 650M" +os = "Windows 10 15063" +author = "eclenaeu" diff --git a/games/metroid-samus-returns/icon.png b/games/metroid-samus-returns/icon.png new file mode 100644 index 0000000..1173304 Binary files /dev/null and b/games/metroid-samus-returns/icon.png differ diff --git a/games/metroid-samus-returns/screenshots/arrive.png b/games/metroid-samus-returns/screenshots/arrive.png new file mode 100644 index 0000000..b28686b Binary files /dev/null and b/games/metroid-samus-returns/screenshots/arrive.png differ diff --git a/games/metroid-samus-returns/screenshots/finding-monster.png b/games/metroid-samus-returns/screenshots/finding-monster.png new file mode 100644 index 0000000..987a5ce Binary files /dev/null and b/games/metroid-samus-returns/screenshots/finding-monster.png differ diff --git a/games/metroid-samus-returns/screenshots/laser-aim.png b/games/metroid-samus-returns/screenshots/laser-aim.png new file mode 100644 index 0000000..9cce035 Binary files /dev/null and b/games/metroid-samus-returns/screenshots/laser-aim.png differ diff --git a/games/metroid-samus-returns/screenshots/main-screen.png b/games/metroid-samus-returns/screenshots/main-screen.png new file mode 100644 index 0000000..6b9cf0a Binary files /dev/null and b/games/metroid-samus-returns/screenshots/main-screen.png differ diff --git a/games/metroid-samus-returns/screenshots/melee-attack.png b/games/metroid-samus-returns/screenshots/melee-attack.png new file mode 100644 index 0000000..86fcad4 Binary files /dev/null and b/games/metroid-samus-returns/screenshots/melee-attack.png differ diff --git a/games/metroid-samus-returns/screenshots/shoots.png b/games/metroid-samus-returns/screenshots/shoots.png new file mode 100644 index 0000000..6715f2b Binary files /dev/null and b/games/metroid-samus-returns/screenshots/shoots.png differ diff --git a/games/mii-maker/boxart.png b/games/mii-maker/boxart.png new file mode 100644 index 0000000..449617e Binary files /dev/null and b/games/mii-maker/boxart.png differ diff --git a/games/mii-maker/game.dat b/games/mii-maker/game.dat new file mode 100644 index 0000000..99a07d5 --- /dev/null +++ b/games/mii-maker/game.dat @@ -0,0 +1,44 @@ +title = "Mii Maker" +description = "Mii Maker for the Nintendo 3DS is pre-installed on the 3DS as a system application." +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "0004001000021700" +region = "usa" +release_date = "2011-03-27" + +[[ releases ]] +title = "0004001000022700" +region = "eur" +release_date = "2011-03-25" + +[[ releases ]] +title = "0004001000020700" +region = "jpn" +release_date = "2011-02-26" + +[[ releases ]] +title = "0004001000026700" +region = "chn" +release_date = "2012-09-28" + +[[ releases ]] +title = "0004001000027700" +region = "kor" +release_date = "2012-04-28" + +[[ releases ]] +title = "0004001000028700" +region = "twn" +release_date = "2012-09-28" + +[[testcases]] +title = "0004001000022700" +compatibility = "1" +date = "2017-11-04" +version = "HEAD-b579bf0" +cpu = "Intel Core i7-7700HQ" +gpu = "Nvidia GeForce GTX 1050 Mobile" +os = "Windows 10 16299" +author = "Bynari" diff --git a/games/mii-maker/icon.png b/games/mii-maker/icon.png new file mode 100644 index 0000000..d5e7b67 Binary files /dev/null and b/games/mii-maker/icon.png differ diff --git a/games/mii-maker/savefiles/citra-mii.dat b/games/mii-maker/savefiles/citra-mii.dat new file mode 100644 index 0000000..c759f45 --- /dev/null +++ b/games/mii-maker/savefiles/citra-mii.dat @@ -0,0 +1,4 @@ +title = "Citra Mii" +description = "A beautiful pre-made Mii. Why would you ever want to make a new one?" +author = "Bynari" +title_id = "0004001000022700" diff --git a/games/mii-maker/savefiles/citra-mii.zip b/games/mii-maker/savefiles/citra-mii.zip new file mode 100644 index 0000000..831ea79 Binary files /dev/null and b/games/mii-maker/savefiles/citra-mii.zip differ diff --git a/games/mii-maker/screenshots/mii-maker-editor.png b/games/mii-maker/screenshots/mii-maker-editor.png new file mode 100644 index 0000000..7bd55ee Binary files /dev/null and b/games/mii-maker/screenshots/mii-maker-editor.png differ diff --git a/games/mii-maker/screenshots/mii-maker-image-options.png b/games/mii-maker/screenshots/mii-maker-image-options.png new file mode 100644 index 0000000..f87e28b Binary files /dev/null and b/games/mii-maker/screenshots/mii-maker-image-options.png differ diff --git a/games/mii-maker/screenshots/mii-maker-plaza.png b/games/mii-maker/screenshots/mii-maker-plaza.png new file mode 100644 index 0000000..026588b Binary files /dev/null and b/games/mii-maker/screenshots/mii-maker-plaza.png differ diff --git a/games/miitopia/boxart.png b/games/miitopia/boxart.png new file mode 100644 index 0000000..04d652a Binary files /dev/null and b/games/miitopia/boxart.png differ diff --git a/games/miitopia/game.dat b/games/miitopia/game.dat new file mode 100644 index 0000000..979504e --- /dev/null +++ b/games/miitopia/game.dat @@ -0,0 +1,29 @@ +title = "Miitopia" +description = "Miitopia is a role-playing game developed and published by Nintendo for the Nintendo 3DS." +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "00040000001B4E00" +region = "usa" +release_date = "2017-07-28" + +[[releases]] +title = "00040000001B4F00" +region = "eur" +release_date = "2017-07-28" + +[[ releases ]] +title = "0004000000178800" +region = "jpn" +release_date = "2016-12-08" + +[[testcases]] +title = "00040000001B4F00" +compatibility = "1" +date = "2017-07-28" +version = "HEAD-05a38e3" +cpu = "Intel Core i5-2430M" +gpu = "GeForce 315M" +os = "Windows 10 15063" +author = "valentinvanelslande" diff --git a/games/miitopia/icon.png b/games/miitopia/icon.png new file mode 100644 index 0000000..44dc726 Binary files /dev/null and b/games/miitopia/icon.png differ diff --git a/games/miitopia/screenshots/map.png b/games/miitopia/screenshots/map.png new file mode 100644 index 0000000..f063dce Binary files /dev/null and b/games/miitopia/screenshots/map.png differ diff --git a/games/miitopia/screenshots/menu.png b/games/miitopia/screenshots/menu.png new file mode 100644 index 0000000..ed6b022 Binary files /dev/null and b/games/miitopia/screenshots/menu.png differ diff --git a/games/miitopia/screenshots/startscreen.png b/games/miitopia/screenshots/startscreen.png new file mode 100644 index 0000000..4b842ed Binary files /dev/null and b/games/miitopia/screenshots/startscreen.png differ diff --git a/games/mini-mario-and-friends-amiibo-challenge/boxart.png b/games/mini-mario-and-friends-amiibo-challenge/boxart.png new file mode 100644 index 0000000..4b83232 Binary files /dev/null and b/games/mini-mario-and-friends-amiibo-challenge/boxart.png differ diff --git a/games/mini-mario-and-friends-amiibo-challenge/game.dat b/games/mini-mario-and-friends-amiibo-challenge/game.dat new file mode 100644 index 0000000..b18cf6d --- /dev/null +++ b/games/mini-mario-and-friends-amiibo-challenge/game.dat @@ -0,0 +1,15 @@ +title = "Mini Mario & Friends: Amiibo Challenge" +description = "Mini Mario & Friends: Amiibo Challenge is a puzzle video game developed and published by Nintendo for the Wii U and Nintendo 3DS. The game is free to download on the Nintendo eShop, but requires Nintendo's Amiibo lineup in order to play. It was released in Japan in January 2016, and worldwide in April 2016" +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000D2F00" +region = "eur" +release_date = "2016-04-28" + +[[releases]] +title = "00040000000C9D00" +region = "usa" +release_date = "2016-04-28" diff --git a/games/mini-mario-and-friends-amiibo-challenge/icon.png b/games/mini-mario-and-friends-amiibo-challenge/icon.png new file mode 100644 index 0000000..1b18d95 Binary files /dev/null and b/games/mini-mario-and-friends-amiibo-challenge/icon.png differ diff --git a/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini1.png b/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini1.png new file mode 100644 index 0000000..507b01e Binary files /dev/null and b/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini1.png differ diff --git a/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini2.png b/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini2.png new file mode 100644 index 0000000..527dea1 Binary files /dev/null and b/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini2.png differ diff --git a/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini3.png b/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini3.png new file mode 100644 index 0000000..97a3f92 Binary files /dev/null and b/games/mini-mario-and-friends-amiibo-challenge/screenshots/Mini3.png differ diff --git a/games/monster-hunter-3-ultimate/boxart.png b/games/monster-hunter-3-ultimate/boxart.png new file mode 100644 index 0000000..aba4fdf Binary files /dev/null and b/games/monster-hunter-3-ultimate/boxart.png differ diff --git a/games/monster-hunter-3-ultimate/game.dat b/games/monster-hunter-3-ultimate/game.dat new file mode 100644 index 0000000..25e23d2 --- /dev/null +++ b/games/monster-hunter-3-ultimate/game.dat @@ -0,0 +1,30 @@ +title = "Monster Hunter 3 Ultimate" +description = "Monster Hunter 3 Ultimate is a role playing game published by Capcom for 3DS, as a port of the game Monster Hunter Tri from Wii." +github_issues = [1498] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000AE400" +region = "usa" +release_date = "2013-03-19" + +[[ releases ]] +title = "00040000000B1D00" +region = "eur" +release_date = "2013-03-22" + +[[ releases ]] +title = "0004000000048100" +region = "jpn" +release_date = "2011-12-10" + +[[ testcases ]] +title = "00040000000B1D00" +compatibility = "4" +date = "2017-07-11" +version = "HEAD-c017065" +cpu = "Intel Xeon L5420" +gpu = "GeForce GTX 1050Ti" +os = "Windows 10 15063" +author = "brunomenezes66" diff --git a/games/monster-hunter-3-ultimate/icon.png b/games/monster-hunter-3-ultimate/icon.png new file mode 100644 index 0000000..ceec441 Binary files /dev/null and b/games/monster-hunter-3-ultimate/icon.png differ diff --git a/games/monster-hunter-3-ultimate/screenshots/citra-qt_2017-07-24_22-35-04.png b/games/monster-hunter-3-ultimate/screenshots/citra-qt_2017-07-24_22-35-04.png new file mode 100644 index 0000000..5ab9edf Binary files /dev/null and b/games/monster-hunter-3-ultimate/screenshots/citra-qt_2017-07-24_22-35-04.png differ diff --git a/games/monster-hunter-3-ultimate/screenshots/citra-qt_2017-07-24_22-36-42.png b/games/monster-hunter-3-ultimate/screenshots/citra-qt_2017-07-24_22-36-42.png new file mode 100644 index 0000000..c05ac58 Binary files /dev/null and b/games/monster-hunter-3-ultimate/screenshots/citra-qt_2017-07-24_22-36-42.png differ diff --git a/games/monster-hunter-4-ultimate/boxart.png b/games/monster-hunter-4-ultimate/boxart.png new file mode 100644 index 0000000..28ff468 Binary files /dev/null and b/games/monster-hunter-4-ultimate/boxart.png differ diff --git a/games/monster-hunter-4-ultimate/game.dat b/games/monster-hunter-4-ultimate/game.dat new file mode 100644 index 0000000..6f1c44b --- /dev/null +++ b/games/monster-hunter-4-ultimate/game.dat @@ -0,0 +1,30 @@ +title = "Monster Hunter 4 Ultimate" +description = "Monster Hunter 4 Ultimate is an action role-playing video game developed and published by Capcom. It is an improved version of Monster Hunter 4 and is the first fourth-generation Monster Hunter game to be released outside of Japan." +github_issues = [3287] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "0004000000126300" +region = "usa" +release_date = "2015-02-13" + +[[ releases ]] +title = "0004000000126100" +region = "eur" +release_date = "2015-02-13" + +[[ releases ]] +title = "000400000011D700" +region = "jpn" +release_date = "2014-10-11" + +[[ testcases ]] +title = "0004000000126300" +compatibility = "3" +date = "2017-06-05" +version = "HEAD-bae3799" +author = "Desmond" +cpu = "?" +gpu = "?" +os = "?" diff --git a/games/monster-hunter-4-ultimate/icon.png b/games/monster-hunter-4-ultimate/icon.png new file mode 100644 index 0000000..ba93f2f Binary files /dev/null and b/games/monster-hunter-4-ultimate/icon.png differ diff --git a/games/monster-hunter-4-ultimate/savefiles/vhr9.dat b/games/monster-hunter-4-ultimate/savefiles/vhr9.dat new file mode 100644 index 0000000..f39c32f --- /dev/null +++ b/games/monster-hunter-4-ultimate/savefiles/vhr9.dat @@ -0,0 +1,4 @@ +title = "HR9 Village Quests" +description = "HR9 quests available in village, HR5 in guild. Should be able to see a lot of the monsters and areas." +author = "Xemiru" +title_id = "0004000000126300" diff --git a/games/monster-hunter-4-ultimate/savefiles/vhr9.zip b/games/monster-hunter-4-ultimate/savefiles/vhr9.zip new file mode 100644 index 0000000..7af250f Binary files /dev/null and b/games/monster-hunter-4-ultimate/savefiles/vhr9.zip differ diff --git a/games/monster-hunter-4-ultimate/screenshots/dundorma.png b/games/monster-hunter-4-ultimate/screenshots/dundorma.png new file mode 100644 index 0000000..0ccb391 Binary files /dev/null and b/games/monster-hunter-4-ultimate/screenshots/dundorma.png differ diff --git a/games/monster-hunter-4-ultimate/screenshots/inengine-cutscene-bug-2.png b/games/monster-hunter-4-ultimate/screenshots/inengine-cutscene-bug-2.png new file mode 100644 index 0000000..b9cf90a Binary files /dev/null and b/games/monster-hunter-4-ultimate/screenshots/inengine-cutscene-bug-2.png differ diff --git a/games/monster-hunter-4-ultimate/screenshots/inengine-cutscene-bug.png b/games/monster-hunter-4-ultimate/screenshots/inengine-cutscene-bug.png new file mode 100644 index 0000000..62a3cea Binary files /dev/null and b/games/monster-hunter-4-ultimate/screenshots/inengine-cutscene-bug.png differ diff --git a/games/monster-hunter-4-ultimate/screenshots/opening.png b/games/monster-hunter-4-ultimate/screenshots/opening.png new file mode 100644 index 0000000..14dc5a4 Binary files /dev/null and b/games/monster-hunter-4-ultimate/screenshots/opening.png differ diff --git a/games/monster-hunter-4-ultimate/screenshots/screaming-seregios.png b/games/monster-hunter-4-ultimate/screenshots/screaming-seregios.png new file mode 100644 index 0000000..69a1af3 Binary files /dev/null and b/games/monster-hunter-4-ultimate/screenshots/screaming-seregios.png differ diff --git a/games/monster-hunter-4-ultimate/screenshots/title-screen.png b/games/monster-hunter-4-ultimate/screenshots/title-screen.png new file mode 100644 index 0000000..aee2c07 Binary files /dev/null and b/games/monster-hunter-4-ultimate/screenshots/title-screen.png differ diff --git a/games/monster-hunter-generations/boxart.png b/games/monster-hunter-generations/boxart.png new file mode 100644 index 0000000..df4a983 Binary files /dev/null and b/games/monster-hunter-generations/boxart.png differ diff --git a/games/monster-hunter-generations/game.dat b/games/monster-hunter-generations/game.dat new file mode 100644 index 0000000..6aebe89 --- /dev/null +++ b/games/monster-hunter-generations/game.dat @@ -0,0 +1,24 @@ +title = "Monster Hunter Generations" +description = "Monster Hunter Generations, known as Monster Hunter X in Japan, is an action role-playing video game developed and published by Capcom for the Nintendo 3DS. An expanded version of the game called Monster Hunter XX: Double Cross was released only in Japan." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "0004000000187000" +region = "usa" +release_date = "2016-07-15" + +[[releases]] +title = "0004000000185B00" +region = "eur" +release_date = "2016-07-15" + +[[releases]] +title = "0004000000155400" +region = "jpn" +release_date = "2015-11-28" + +[[releases]] +title = "0004000000197100" +region = "jpn" +release_date = "2017-03-18" diff --git a/games/monster-hunter-generations/icon.png b/games/monster-hunter-generations/icon.png new file mode 100644 index 0000000..8e94c6e Binary files /dev/null and b/games/monster-hunter-generations/icon.png differ diff --git a/games/monster-hunter-generations/screenshots/Ingame-Hunt.png b/games/monster-hunter-generations/screenshots/Ingame-Hunt.png new file mode 100644 index 0000000..aaa80f4 Binary files /dev/null and b/games/monster-hunter-generations/screenshots/Ingame-Hunt.png differ diff --git a/games/monster-hunter-generations/screenshots/Ingame-Village.png b/games/monster-hunter-generations/screenshots/Ingame-Village.png new file mode 100644 index 0000000..02892d7 Binary files /dev/null and b/games/monster-hunter-generations/screenshots/Ingame-Village.png differ diff --git a/games/monster-hunter-generations/screenshots/Title-Screen.png b/games/monster-hunter-generations/screenshots/Title-Screen.png new file mode 100644 index 0000000..44cfc51 Binary files /dev/null and b/games/monster-hunter-generations/screenshots/Title-Screen.png differ diff --git a/games/monster-hunter-stories/boxart.png b/games/monster-hunter-stories/boxart.png new file mode 100644 index 0000000..8097045 Binary files /dev/null and b/games/monster-hunter-stories/boxart.png differ diff --git a/games/monster-hunter-stories/game.dat b/games/monster-hunter-stories/game.dat new file mode 100644 index 0000000..cf5ee41 --- /dev/null +++ b/games/monster-hunter-stories/game.dat @@ -0,0 +1,19 @@ +title = "Monster Hunter Stories" +description = "Monster Hunter Stories is a role-playing video game developed by Marvelous and published by Capcom. It is a spin-off title set within the Monster Hunter series. Unlike any of the previous titles in the Monster Hunter series, Monster Hunter Stories lets players take on the role of a Rider instead of a Hunter, and are able to battle in an role-playing turn-based system." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001BC500" +region = "usa" +release_date = "2017-09-08" + +[[releases]] +title = "00040000001BC600" +region = "eur" +release_date = "2017-09-08" + +[[releases]] +title = "000400000016E100" +region = "jpn" +release_date = "2016-10-08" diff --git a/games/monster-hunter-stories/icon.png b/games/monster-hunter-stories/icon.png new file mode 100644 index 0000000..9f977e3 Binary files /dev/null and b/games/monster-hunter-stories/icon.png differ diff --git a/games/monster-hunter-stories/screenshots/Menu.png b/games/monster-hunter-stories/screenshots/Menu.png new file mode 100644 index 0000000..2c0e4c2 Binary files /dev/null and b/games/monster-hunter-stories/screenshots/Menu.png differ diff --git a/games/monster-hunter-stories/screenshots/ingame-running.png b/games/monster-hunter-stories/screenshots/ingame-running.png new file mode 100644 index 0000000..e8e4adf Binary files /dev/null and b/games/monster-hunter-stories/screenshots/ingame-running.png differ diff --git a/games/monster-hunter-stories/screenshots/ingame-start.png b/games/monster-hunter-stories/screenshots/ingame-start.png new file mode 100644 index 0000000..ec254f0 Binary files /dev/null and b/games/monster-hunter-stories/screenshots/ingame-start.png differ diff --git a/games/mutant-mudds/boxart.png b/games/mutant-mudds/boxart.png new file mode 100644 index 0000000..049f840 Binary files /dev/null and b/games/mutant-mudds/boxart.png differ diff --git a/games/mutant-mudds/game.dat b/games/mutant-mudds/game.dat new file mode 100644 index 0000000..d321bcf --- /dev/null +++ b/games/mutant-mudds/game.dat @@ -0,0 +1,20 @@ +title = "Mutant Mudds" +description = "Mutant Mudds is a platform video game developed by Renegade Kid. The goal is to kill enemies, avoid obstacles meant to cause harm and collect the Water Sprite in order to reach the next level." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000086600" +region = "usa" +release_date = "2012-01-26" + +[[releases]] +title = "00040000000A5400" +region = "eur" +release_date = "2012-06-21" + +[[releases]] +title = "000400020016FD00" +region = "jpn" +release_date = "2015-06-24" diff --git a/games/mutant-mudds/icon.png b/games/mutant-mudds/icon.png new file mode 100644 index 0000000..d7d6482 Binary files /dev/null and b/games/mutant-mudds/icon.png differ diff --git a/games/mutant-mudds/screenshots/Game-Interface.png b/games/mutant-mudds/screenshots/Game-Interface.png new file mode 100644 index 0000000..d385823 Binary files /dev/null and b/games/mutant-mudds/screenshots/Game-Interface.png differ diff --git a/games/mutant-mudds/screenshots/Game-Playing.png b/games/mutant-mudds/screenshots/Game-Playing.png new file mode 100644 index 0000000..2a5a496 Binary files /dev/null and b/games/mutant-mudds/screenshots/Game-Playing.png differ diff --git a/games/mutant-mudds/screenshots/Main-Menu.png b/games/mutant-mudds/screenshots/Main-Menu.png new file mode 100644 index 0000000..9de17be Binary files /dev/null and b/games/mutant-mudds/screenshots/Main-Menu.png differ diff --git a/games/my-nintendo-picross-twilight-princess/boxart.png b/games/my-nintendo-picross-twilight-princess/boxart.png new file mode 100644 index 0000000..97fa351 Binary files /dev/null and b/games/my-nintendo-picross-twilight-princess/boxart.png differ diff --git a/games/my-nintendo-picross-twilight-princess/game.dat b/games/my-nintendo-picross-twilight-princess/game.dat new file mode 100644 index 0000000..2e21415 --- /dev/null +++ b/games/my-nintendo-picross-twilight-princess/game.dat @@ -0,0 +1,20 @@ +title = "My Nintendo Picross: The Legend of Zelda: Twilight Princess" +description = "My Nintendo Picross: The Legend of Zelda: Twilight Princess is a Picross-based puzzle spin-off game, also known as a nonogram, with a theme based on Twilight Princess." +needs_system_files = false +needs_shared_font = true +game_type = "eshop" + +[[ releases ]] +title = "0004000000186700" +region = "all" +release_date = "2013-03-17" + +[[ testcases ]] +title = "0004000000186700" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/my-nintendo-picross-twilight-princess/icon.png b/games/my-nintendo-picross-twilight-princess/icon.png new file mode 100644 index 0000000..7909289 Binary files /dev/null and b/games/my-nintendo-picross-twilight-princess/icon.png differ diff --git a/games/my-nintendo-picross-twilight-princess/screenshots/In-game.png b/games/my-nintendo-picross-twilight-princess/screenshots/In-game.png new file mode 100644 index 0000000..334c852 Binary files /dev/null and b/games/my-nintendo-picross-twilight-princess/screenshots/In-game.png differ diff --git a/games/my-nintendo-picross-twilight-princess/screenshots/Puzzle-Select.png b/games/my-nintendo-picross-twilight-princess/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..a38f7f1 Binary files /dev/null and b/games/my-nintendo-picross-twilight-princess/screenshots/Puzzle-Select.png differ diff --git a/games/my-nintendo-picross-twilight-princess/screenshots/Title-Screen.png b/games/my-nintendo-picross-twilight-princess/screenshots/Title-Screen.png new file mode 100644 index 0000000..95e26c9 Binary files /dev/null and b/games/my-nintendo-picross-twilight-princess/screenshots/Title-Screen.png differ diff --git a/games/naruto-powerful-shippuden/boxart.png b/games/naruto-powerful-shippuden/boxart.png new file mode 100644 index 0000000..ab80836 Binary files /dev/null and b/games/naruto-powerful-shippuden/boxart.png differ diff --git a/games/naruto-powerful-shippuden/game.dat b/games/naruto-powerful-shippuden/game.dat new file mode 100644 index 0000000..6b0a466 --- /dev/null +++ b/games/naruto-powerful-shippuden/game.dat @@ -0,0 +1,35 @@ +title = "Naruto Powerful Shippuden" +description = "Naruto Powerful Shippuden is a side-scrolling action/adventure game in development by Namco Bandai Games and Inti Creates for the Nintendo 3DS platform. The game is based on the Naruto spin-off series, Rock Lee's Springtime of Youth Full Power Ninja Chronicles." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "000400000003CF00" +region = "usa" +release_date = "2013-03-05" + +[[ releases ]] +title = "00040000000C4400" +region = "eur" +release_date = "2013-03-18" + +[[ releases ]] +title = "00040000000AFE00" +region = "jpn" +release_date = "2012-11-29" + +[[ releases ]] +title = "00040000000C1F00" +region = "chn" +release_date = "2013-03-08" + +[[ testcases ]] +compatibility = "1" +date = "2017-06-19" +title = "00040000000C4400" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/naruto-powerful-shippuden/icon.png b/games/naruto-powerful-shippuden/icon.png new file mode 100644 index 0000000..a2eb3f2 Binary files /dev/null and b/games/naruto-powerful-shippuden/icon.png differ diff --git a/games/naruto-shippuden-3d-the-new-era/boxart.png b/games/naruto-shippuden-3d-the-new-era/boxart.png new file mode 100644 index 0000000..b5ac860 Binary files /dev/null and b/games/naruto-shippuden-3d-the-new-era/boxart.png differ diff --git a/games/naruto-shippuden-3d-the-new-era/game.dat b/games/naruto-shippuden-3d-the-new-era/game.dat new file mode 100644 index 0000000..03ce364 --- /dev/null +++ b/games/naruto-shippuden-3d-the-new-era/game.dat @@ -0,0 +1,14 @@ +title = "Naruto Shippuden 3D: The New Era" +description = "Naruto Shippuden 3D: The New Era is an action game developed by Tomy and published by 505 Games. The game starts off with Naruto training on Mount Myōboku, soon after his training he is called back to Konoha by Kakashi Hatake. When he arrives, Naruto finds out that Tsunade has cancelled the pact with Sunagakure and the hidden villages all seem to be about to go to war." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000045500" +region = "eur" +release_date = "2013-07-20" + +[[releases]] +title = "0004000000035B00" +region = "jpn" +release_date = "2013-08-20" diff --git a/games/naruto-shippuden-3d-the-new-era/icon.png b/games/naruto-shippuden-3d-the-new-era/icon.png new file mode 100644 index 0000000..02ef725 Binary files /dev/null and b/games/naruto-shippuden-3d-the-new-era/icon.png differ diff --git a/games/naruto-shippuden-3d-the-new-era/screenshots/Gameplay.png b/games/naruto-shippuden-3d-the-new-era/screenshots/Gameplay.png new file mode 100644 index 0000000..f56dda4 Binary files /dev/null and b/games/naruto-shippuden-3d-the-new-era/screenshots/Gameplay.png differ diff --git a/games/naruto-shippuden-3d-the-new-era/screenshots/New-Game.png b/games/naruto-shippuden-3d-the-new-era/screenshots/New-Game.png new file mode 100644 index 0000000..e40ac3c Binary files /dev/null and b/games/naruto-shippuden-3d-the-new-era/screenshots/New-Game.png differ diff --git a/games/naruto-shippuden-3d-the-new-era/screenshots/Rasengan.png b/games/naruto-shippuden-3d-the-new-era/screenshots/Rasengan.png new file mode 100644 index 0000000..d059e85 Binary files /dev/null and b/games/naruto-shippuden-3d-the-new-era/screenshots/Rasengan.png differ diff --git a/games/naruto-shippuden-3d-the-new-era/screenshots/Start.png b/games/naruto-shippuden-3d-the-new-era/screenshots/Start.png new file mode 100644 index 0000000..ba923be Binary files /dev/null and b/games/naruto-shippuden-3d-the-new-era/screenshots/Start.png differ diff --git a/games/nemuneko-puzzle/boxart.png b/games/nemuneko-puzzle/boxart.png new file mode 100644 index 0000000..6aa590d Binary files /dev/null and b/games/nemuneko-puzzle/boxart.png differ diff --git a/games/nemuneko-puzzle/game.dat b/games/nemuneko-puzzle/game.dat new file mode 100644 index 0000000..2d8f06c --- /dev/null +++ b/games/nemuneko-puzzle/game.dat @@ -0,0 +1,20 @@ +title = "NEMUNEKO PUZZLE" +description = "NEMUNEKO PUZZLE (ねむネコ パズルでも寝ています, Nemuneko Pazurudemoneteimasu) is a chill-out puzzle video game developed and published by FuRyu for the Nintendo 3DS." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "00040000001B6700" +region = "jpn" +release_date = "2017-01-25" + +[[ testcases ]] +title = "00040000001B6700" +compatibility = "0" +date = "2017-06-10" +version = "HEAD-9a8a90b" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/nemuneko-puzzle/icon.png b/games/nemuneko-puzzle/icon.png new file mode 100644 index 0000000..472f041 Binary files /dev/null and b/games/nemuneko-puzzle/icon.png differ diff --git a/games/nemuneko-puzzle/screenshots/Menu.png b/games/nemuneko-puzzle/screenshots/Menu.png new file mode 100644 index 0000000..ccb4388 Binary files /dev/null and b/games/nemuneko-puzzle/screenshots/Menu.png differ diff --git a/games/nemuneko-puzzle/screenshots/Puzzle-1.png b/games/nemuneko-puzzle/screenshots/Puzzle-1.png new file mode 100644 index 0000000..551d31a Binary files /dev/null and b/games/nemuneko-puzzle/screenshots/Puzzle-1.png differ diff --git a/games/nemuneko-puzzle/screenshots/Puzzle-2.png b/games/nemuneko-puzzle/screenshots/Puzzle-2.png new file mode 100644 index 0000000..eb1bb64 Binary files /dev/null and b/games/nemuneko-puzzle/screenshots/Puzzle-2.png differ diff --git a/games/nemuneko-puzzle/screenshots/Title-Screen.png b/games/nemuneko-puzzle/screenshots/Title-Screen.png new file mode 100644 index 0000000..ba9588e Binary files /dev/null and b/games/nemuneko-puzzle/screenshots/Title-Screen.png differ diff --git a/games/new-loveplus/boxart.png b/games/new-loveplus/boxart.png new file mode 100644 index 0000000..112cb95 Binary files /dev/null and b/games/new-loveplus/boxart.png differ diff --git a/games/new-loveplus/game.dat b/games/new-loveplus/game.dat new file mode 100644 index 0000000..d3f6ce9 --- /dev/null +++ b/games/new-loveplus/game.dat @@ -0,0 +1,9 @@ +title = "New LovePlus+" +description = "New LovePlus+ (Newラブプラス+) is a dating sim developed and published by Konami for the Nintendo DS handheld video game console. It was released in Japan in 2014.\n\nWarning: Citra doesn't support rotate screen like \"Book view\" yet. you can use another tool like OBS to capture a game screen and rotate it or \"Rotate your IRL display\"\n\nNote: The game keeps freezing on loading new game assets but it still playable.\n\n3DS save to Citra save is workable!! Just copy and paste it." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000F4E00" +region = "jpn" +release_date = "2014-03-27" diff --git a/games/new-loveplus/icon.png b/games/new-loveplus/icon.png new file mode 100644 index 0000000..9fb0409 Binary files /dev/null and b/games/new-loveplus/icon.png differ diff --git a/games/new-loveplus/screenshots/pic1.png b/games/new-loveplus/screenshots/pic1.png new file mode 100644 index 0000000..dcf1b89 Binary files /dev/null and b/games/new-loveplus/screenshots/pic1.png differ diff --git a/games/new-loveplus/screenshots/pic2.png b/games/new-loveplus/screenshots/pic2.png new file mode 100644 index 0000000..7f0458e Binary files /dev/null and b/games/new-loveplus/screenshots/pic2.png differ diff --git a/games/new-loveplus/screenshots/pic3.png b/games/new-loveplus/screenshots/pic3.png new file mode 100644 index 0000000..14d9f37 Binary files /dev/null and b/games/new-loveplus/screenshots/pic3.png differ diff --git a/games/new-loveplus/screenshots/pic4.png b/games/new-loveplus/screenshots/pic4.png new file mode 100644 index 0000000..d157f07 Binary files /dev/null and b/games/new-loveplus/screenshots/pic4.png differ diff --git a/games/new-super-mario-bros-2/boxart.png b/games/new-super-mario-bros-2/boxart.png new file mode 100644 index 0000000..5672131 Binary files /dev/null and b/games/new-super-mario-bros-2/boxart.png differ diff --git a/games/new-super-mario-bros-2/game.dat b/games/new-super-mario-bros-2/game.dat new file mode 100644 index 0000000..8e5421a --- /dev/null +++ b/games/new-super-mario-bros-2/game.dat @@ -0,0 +1,30 @@ +title = "New Super Mario Bros. 2" +description = "New Super Mario Bros. 2 is a side-scrolling platformer video game in the Super Mario series developed by Nintendo for the Nintendo 3DS handheld console. The game is a direct sequel to the 2006 Nintendo DS game New Super Mario Bros. The game continues the style of gameplay from New Super Mario Bros., featuring side-scrolling platform action as Mario or Luigi attempt to rescue Princess Peach from Bowser and his Koopalings." +github_issues = [1681] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "000400000007AE00" +region = "usa" +release_date = "2012-08-19" + +[[ releases ]] +title = "000400000007AF00" +region = "eur" +release_date = "2012-08-17" + +[[ releases ]] +title = "000400000007AD00" +region = "jpn" +release_date = "2012-07-28" + +[[ testcases ]] +title = "000400000007AE00" +compatibility = "1" +date = "2017-06-11" +version = "HEAD-9a8a90b" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/new-super-mario-bros-2/icon.png b/games/new-super-mario-bros-2/icon.png new file mode 100644 index 0000000..e10825d Binary files /dev/null and b/games/new-super-mario-bros-2/icon.png differ diff --git a/games/new-super-mario-bros-2/screenshots/1.png b/games/new-super-mario-bros-2/screenshots/1.png new file mode 100644 index 0000000..7136953 Binary files /dev/null and b/games/new-super-mario-bros-2/screenshots/1.png differ diff --git a/games/new-super-mario-bros-2/screenshots/2.png b/games/new-super-mario-bros-2/screenshots/2.png new file mode 100644 index 0000000..d3e0dee Binary files /dev/null and b/games/new-super-mario-bros-2/screenshots/2.png differ diff --git a/games/new-super-mario-bros-2/screenshots/3.png b/games/new-super-mario-bros-2/screenshots/3.png new file mode 100644 index 0000000..9445a98 Binary files /dev/null and b/games/new-super-mario-bros-2/screenshots/3.png differ diff --git a/games/nikolis-pencil-puzzle/boxart.png b/games/nikolis-pencil-puzzle/boxart.png new file mode 100644 index 0000000..8a44232 Binary files /dev/null and b/games/nikolis-pencil-puzzle/boxart.png differ diff --git a/games/nikolis-pencil-puzzle/game.dat b/games/nikolis-pencil-puzzle/game.dat new file mode 100644 index 0000000..b31ec12 --- /dev/null +++ b/games/nikolis-pencil-puzzle/game.dat @@ -0,0 +1,19 @@ +title = "Nikoli's Pencil Puzzle" +description = "Nikoli's Pencil Puzzle, known as \"Sudoku: The Puzzle Game Collection\" in Europe and \"Sudoku to 3-Tsu no Puzzle: Nikoli no Puzzle Variety\" in Japan, is a puzzle video game developed and published by Hudson. It is a collection of 600 puzzles including Sudoku, Bridges, Boxes and Museum types." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000048C00" +region = "usa" +release_date = "2011-10-25" + +[[releases]] +title = "0004000000043400" +region = "eur" +release_date = "2011-06-10" + +[[releases]] +title = "0004000000034000" +region = "jpn" +release_date = "2011-06-02" diff --git a/games/nikolis-pencil-puzzle/icon.png b/games/nikolis-pencil-puzzle/icon.png new file mode 100644 index 0000000..17b28c6 Binary files /dev/null and b/games/nikolis-pencil-puzzle/icon.png differ diff --git a/games/nikolis-pencil-puzzle/screenshots/hashi.png b/games/nikolis-pencil-puzzle/screenshots/hashi.png new file mode 100644 index 0000000..f7350e2 Binary files /dev/null and b/games/nikolis-pencil-puzzle/screenshots/hashi.png differ diff --git a/games/nikolis-pencil-puzzle/screenshots/shikaku.png b/games/nikolis-pencil-puzzle/screenshots/shikaku.png new file mode 100644 index 0000000..38e33d1 Binary files /dev/null and b/games/nikolis-pencil-puzzle/screenshots/shikaku.png differ diff --git a/games/nikolis-pencil-puzzle/screenshots/sudoku.png b/games/nikolis-pencil-puzzle/screenshots/sudoku.png new file mode 100644 index 0000000..60bb6a7 Binary files /dev/null and b/games/nikolis-pencil-puzzle/screenshots/sudoku.png differ diff --git a/games/nikolis-pencil-puzzle/screenshots/title-screen.png b/games/nikolis-pencil-puzzle/screenshots/title-screen.png new file mode 100644 index 0000000..1d86dfd Binary files /dev/null and b/games/nikolis-pencil-puzzle/screenshots/title-screen.png differ diff --git a/games/nintendogs-cats-golden-retriever-new-friends/boxart.png b/games/nintendogs-cats-golden-retriever-new-friends/boxart.png new file mode 100644 index 0000000..e364165 Binary files /dev/null and b/games/nintendogs-cats-golden-retriever-new-friends/boxart.png differ diff --git a/games/nintendogs-cats-golden-retriever-new-friends/game.dat b/games/nintendogs-cats-golden-retriever-new-friends/game.dat new file mode 100644 index 0000000..f54086a --- /dev/null +++ b/games/nintendogs-cats-golden-retriever-new-friends/game.dat @@ -0,0 +1,9 @@ +title = "Nintendogs + Cats: Golden Retriever & New Friends" +description = "Nintendogs + Cats is a real-time pet simulation video game for the Nintendo 3DS. It is a sequel to the Nintendogs games for the Nintendo DS systems. This is one of the 3 versions of the game." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000030D00" +region = "usa" +release_date = "2012-02-13" diff --git a/games/nintendogs-cats-golden-retriever-new-friends/icon.png b/games/nintendogs-cats-golden-retriever-new-friends/icon.png new file mode 100644 index 0000000..009c8f5 Binary files /dev/null and b/games/nintendogs-cats-golden-retriever-new-friends/icon.png differ diff --git a/games/nintendogs-cats-golden-retriever-new-friends/screenshots/Main.png b/games/nintendogs-cats-golden-retriever-new-friends/screenshots/Main.png new file mode 100644 index 0000000..2a47bff Binary files /dev/null and b/games/nintendogs-cats-golden-retriever-new-friends/screenshots/Main.png differ diff --git a/games/nintendogs-cats-golden-retriever-new-friends/screenshots/Shop.png b/games/nintendogs-cats-golden-retriever-new-friends/screenshots/Shop.png new file mode 100644 index 0000000..85c172b Binary files /dev/null and b/games/nintendogs-cats-golden-retriever-new-friends/screenshots/Shop.png differ diff --git a/games/one-piece-unlimited-world-red/boxart.png b/games/one-piece-unlimited-world-red/boxart.png new file mode 100644 index 0000000..4fab8e2 Binary files /dev/null and b/games/one-piece-unlimited-world-red/boxart.png differ diff --git a/games/one-piece-unlimited-world-red/game.dat b/games/one-piece-unlimited-world-red/game.dat new file mode 100644 index 0000000..26524b0 --- /dev/null +++ b/games/one-piece-unlimited-world-red/game.dat @@ -0,0 +1,19 @@ +title = "One Piece: Unlimited World Red" +description = "One Piece: Unlimited World Red is an action-adventure video game based on the manga and the anime of One Piece, developed by Ganbarion and published by Bandai Namco Games. This is the thirty-sixth video game based on the series, and the fifth title in the Unlimited sub-series." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "0004000000123D00" +region = "usa" +release_date = "2014-07-08" + +[[releases]] +title = "0004000000117E00" +region = "eur" +release_date = "2014-06-27" + +[[releases]] +title = "00040000000F5800" +region = "jpn" +release_date = "2013-11-21" diff --git a/games/one-piece-unlimited-world-red/icon.png b/games/one-piece-unlimited-world-red/icon.png new file mode 100644 index 0000000..05b43f6 Binary files /dev/null and b/games/one-piece-unlimited-world-red/icon.png differ diff --git a/games/one-piece-unlimited-world-red/screenshots/boss-fight.png b/games/one-piece-unlimited-world-red/screenshots/boss-fight.png new file mode 100644 index 0000000..11602f7 Binary files /dev/null and b/games/one-piece-unlimited-world-red/screenshots/boss-fight.png differ diff --git a/games/one-piece-unlimited-world-red/screenshots/gameplay.png b/games/one-piece-unlimited-world-red/screenshots/gameplay.png new file mode 100644 index 0000000..82f16ed Binary files /dev/null and b/games/one-piece-unlimited-world-red/screenshots/gameplay.png differ diff --git a/games/one-piece-unlimited-world-red/screenshots/title-screen.png b/games/one-piece-unlimited-world-red/screenshots/title-screen.png new file mode 100644 index 0000000..f73aa5e Binary files /dev/null and b/games/one-piece-unlimited-world-red/screenshots/title-screen.png differ diff --git a/games/pac-man-and-galaga-dimensions/boxart.png b/games/pac-man-and-galaga-dimensions/boxart.png new file mode 100644 index 0000000..d9991fa Binary files /dev/null and b/games/pac-man-and-galaga-dimensions/boxart.png differ diff --git a/games/pac-man-and-galaga-dimensions/game.dat b/games/pac-man-and-galaga-dimensions/game.dat new file mode 100644 index 0000000..b3ae340 --- /dev/null +++ b/games/pac-man-and-galaga-dimensions/game.dat @@ -0,0 +1,30 @@ +title = "Pac-Man & Galaga Dimensions" +description = "Pac-Man & Galaga Dimensions is a compilation of games from the Pac-Man and Galaga franchises for the Nintendo 3DS, by Namco Bandai Games." +needs_system_files = false +needs_shared_font = false +incomplete = true + +[[ releases ]] +title = "0004000000036300" +region = "usa" +release_date = "2011-07-26" + +[[ releases ]] +title = "0004000000045D00" +region = "eur" +release_date = "2011-08-26" + +[[ releases ]] +title = "0004000000039900" +region = "jpn" +release_date = "2011-06-23" + +[[ testcases ]] +title = "0004000000036300" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/pac-man-and-galaga-dimensions/icon.png b/games/pac-man-and-galaga-dimensions/icon.png new file mode 100644 index 0000000..0dd053c Binary files /dev/null and b/games/pac-man-and-galaga-dimensions/icon.png differ diff --git a/games/paper-mario-sticker-star/boxart.png b/games/paper-mario-sticker-star/boxart.png new file mode 100644 index 0000000..5fe2907 Binary files /dev/null and b/games/paper-mario-sticker-star/boxart.png differ diff --git a/games/paper-mario-sticker-star/game.dat b/games/paper-mario-sticker-star/game.dat new file mode 100644 index 0000000..7e79b05 --- /dev/null +++ b/games/paper-mario-sticker-star/game.dat @@ -0,0 +1,35 @@ +title = "Paper Mario: Sticker Star" +description = "Paper Mario: Sticker Star, known in Japan as Paper Mario: Super Seal (ペーパーマリオスーパーシール Pēpā Mario Sūpā Shīru), is a 2012 role-playing video game developed by Intelligent Systems and published by Nintendo for the Nintendo 3DS console." +github_issues = [1847, 2344, 2416] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000A5E00" +region = "usa" +release_date = "2012-11-11" + +[[ releases ]] +title = "00040000000A5F00" +region = "eur" +release_date = "2012-12-07" + +[[ releases ]] +title = "00040000000A5D00" +region = "jpn" +release_date = "2012-12-06" + +[[ releases ]] +title = "00040000000C8100" +region = "twn" +release_date = "2013-12-06" + +[[ testcases ]] +title = "00040000000A5E00" +compatibility = "2" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" \ No newline at end of file diff --git a/games/paper-mario-sticker-star/icon.png b/games/paper-mario-sticker-star/icon.png new file mode 100644 index 0000000..97d8300 Binary files /dev/null and b/games/paper-mario-sticker-star/icon.png differ diff --git a/games/paper-mario-sticker-star/screenshots/Battle.png b/games/paper-mario-sticker-star/screenshots/Battle.png new file mode 100644 index 0000000..536f403 Binary files /dev/null and b/games/paper-mario-sticker-star/screenshots/Battle.png differ diff --git a/games/paper-mario-sticker-star/screenshots/Decalburg.png b/games/paper-mario-sticker-star/screenshots/Decalburg.png new file mode 100644 index 0000000..910b1f5 Binary files /dev/null and b/games/paper-mario-sticker-star/screenshots/Decalburg.png differ diff --git a/games/paper-mario-sticker-star/screenshots/Map.png b/games/paper-mario-sticker-star/screenshots/Map.png new file mode 100644 index 0000000..8e59ecb Binary files /dev/null and b/games/paper-mario-sticker-star/screenshots/Map.png differ diff --git a/games/paper-mario-sticker-star/screenshots/Title-Screen.png b/games/paper-mario-sticker-star/screenshots/Title-Screen.png new file mode 100644 index 0000000..c3d85a1 Binary files /dev/null and b/games/paper-mario-sticker-star/screenshots/Title-Screen.png differ diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/boxart.png b/games/parascientific-escape-crossing-at-the-farthest-horizon/boxart.png new file mode 100644 index 0000000..66a5945 Binary files /dev/null and b/games/parascientific-escape-crossing-at-the-farthest-horizon/boxart.png differ diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/game.dat b/games/parascientific-escape-crossing-at-the-farthest-horizon/game.dat new file mode 100644 index 0000000..59bfec0 --- /dev/null +++ b/games/parascientific-escape-crossing-at-the-farthest-horizon/game.dat @@ -0,0 +1,20 @@ +title = "Parascientific Escape: Crossing at the Farthest Horizon" +description = "Parascientific Escape: Crossing at the Farthest Horizon, known as \"Chou Kagaku Dasshutsu Saihate no Cross Eyes\" in Japan, is a visual novel adventure game developed by Intense, and the third, and final, entry in the Parascientific Escape trilogy. It was self-published in Japan and published by CIRCLE Entertainment in North America and Europe." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000001C7D00" +region = "usa" +release_date = "2017-07-27" + +[[releases]] +title = "00040000001C7E00" +region = "eur" +release_date = "2017-08-31" + +[[releases]] +title = "00040000001AEF00" +region = "jpn" +release_date = "2017-02-22" diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/icon.png b/games/parascientific-escape-crossing-at-the-farthest-horizon/icon.png new file mode 100644 index 0000000..a7345d8 Binary files /dev/null and b/games/parascientific-escape-crossing-at-the-farthest-horizon/icon.png differ diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Chapter-Selection.png b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Chapter-Selection.png new file mode 100644 index 0000000..3523027 Binary files /dev/null and b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Chapter-Selection.png differ diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/History.png b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/History.png new file mode 100644 index 0000000..d5bcbfa Binary files /dev/null and b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/History.png differ diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Menu.png b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Menu.png new file mode 100644 index 0000000..ff70f45 Binary files /dev/null and b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Menu.png differ diff --git a/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Using-PSY.png b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Using-PSY.png new file mode 100644 index 0000000..58a3e2e Binary files /dev/null and b/games/parascientific-escape-crossing-at-the-farthest-horizon/screenshots/Using-PSY.png differ diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/boxart.png b/games/parascientific-escape-cruise-in-the-distant-seas/boxart.png new file mode 100644 index 0000000..8b861b6 Binary files /dev/null and b/games/parascientific-escape-cruise-in-the-distant-seas/boxart.png differ diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/game.dat b/games/parascientific-escape-cruise-in-the-distant-seas/game.dat new file mode 100644 index 0000000..647db42 --- /dev/null +++ b/games/parascientific-escape-cruise-in-the-distant-seas/game.dat @@ -0,0 +1,20 @@ +title = "Parascientific Escape: Cruise in the Distant Seas" +description = "Parascientific Escape: Cruise in the Distant Seas, known as \"Chou Kagaku Dasshutsu Story: Zekkai no Gouka Kyakusen\" in Japan, is a visual novel adventure game developed by Intense. It was self-published in Japan and published by CIRCLE Entertainment in North America and Europe." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000186500" +region = "usa" +release_date = "2016-03-03" + +[[releases]] +title = "0004000000186000" +region = "eur" +release_date = "2016-03-03" + +[[releases]] +title = "000400000012A100" +region = "jpn" +release_date = "2014-07-09" diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/icon.png b/games/parascientific-escape-cruise-in-the-distant-seas/icon.png new file mode 100644 index 0000000..2c3c9c0 Binary files /dev/null and b/games/parascientific-escape-cruise-in-the-distant-seas/icon.png differ diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/exploration.png b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/exploration.png new file mode 100644 index 0000000..cd25d5a Binary files /dev/null and b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/exploration.png differ diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/menu.png b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/menu.png new file mode 100644 index 0000000..37b832c Binary files /dev/null and b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/menu.png differ diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/talk.png b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/talk.png new file mode 100644 index 0000000..2d7aa36 Binary files /dev/null and b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/talk.png differ diff --git a/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/using-psy.png b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/using-psy.png new file mode 100644 index 0000000..3820932 Binary files /dev/null and b/games/parascientific-escape-cruise-in-the-distant-seas/screenshots/using-psy.png differ diff --git a/games/parascientific-escape-gear-detective/boxart.png b/games/parascientific-escape-gear-detective/boxart.png new file mode 100644 index 0000000..e5a28f7 Binary files /dev/null and b/games/parascientific-escape-gear-detective/boxart.png differ diff --git a/games/parascientific-escape-gear-detective/game.dat b/games/parascientific-escape-gear-detective/game.dat new file mode 100644 index 0000000..5436895 --- /dev/null +++ b/games/parascientific-escape-gear-detective/game.dat @@ -0,0 +1,20 @@ +title = "Parascientific Escape: Gear Detective" +description = "Parascientific Escape: Gear Detective, known as \"Chou Kagaku Dasshutsu: Gear Detective\" in Japan, is a visual novel adventure game developed by Intense, and the second entry in the Parascientific Escape trilogy. It was self-published in Japan and published by CIRCLE Entertainment in North America and Europe." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000001AE700" +region = "usa" +release_date = "2017-02-09" + +[[releases]] +title = "00040000001B2B00" +region = "eur" +release_date = "2017-03-02" + +[[releases]] +title = "000400000017D200" +region = "jpn" +release_date = "2015-12-02" diff --git a/games/parascientific-escape-gear-detective/icon.png b/games/parascientific-escape-gear-detective/icon.png new file mode 100644 index 0000000..5af4e4e Binary files /dev/null and b/games/parascientific-escape-gear-detective/icon.png differ diff --git a/games/parascientific-escape-gear-detective/screenshots/Making-decisions.png b/games/parascientific-escape-gear-detective/screenshots/Making-decisions.png new file mode 100644 index 0000000..54f8337 Binary files /dev/null and b/games/parascientific-escape-gear-detective/screenshots/Making-decisions.png differ diff --git a/games/parascientific-escape-gear-detective/screenshots/Menu.png b/games/parascientific-escape-gear-detective/screenshots/Menu.png new file mode 100644 index 0000000..f1541a0 Binary files /dev/null and b/games/parascientific-escape-gear-detective/screenshots/Menu.png differ diff --git a/games/parascientific-escape-gear-detective/screenshots/Talking.png b/games/parascientific-escape-gear-detective/screenshots/Talking.png new file mode 100644 index 0000000..c309a8c Binary files /dev/null and b/games/parascientific-escape-gear-detective/screenshots/Talking.png differ diff --git a/games/parascientific-escape-gear-detective/screenshots/Using-PSY.png b/games/parascientific-escape-gear-detective/screenshots/Using-PSY.png new file mode 100644 index 0000000..439f9c9 Binary files /dev/null and b/games/parascientific-escape-gear-detective/screenshots/Using-PSY.png differ diff --git a/games/persona-q-shadow-of-the-labyrinth/boxart.png b/games/persona-q-shadow-of-the-labyrinth/boxart.png new file mode 100644 index 0000000..0b08147 Binary files /dev/null and b/games/persona-q-shadow-of-the-labyrinth/boxart.png differ diff --git a/games/persona-q-shadow-of-the-labyrinth/game.dat b/games/persona-q-shadow-of-the-labyrinth/game.dat new file mode 100644 index 0000000..85bd973 --- /dev/null +++ b/games/persona-q-shadow-of-the-labyrinth/game.dat @@ -0,0 +1,24 @@ +title = "Persona Q: Shadow of the Labyrinth" +description = "Persona Q: Shadow of the Labyrinth is a crossover role-playing video game developed by Atlus. The gameplay, which fuses elements of the Persona and Etrian Odyssey, focuses on first-person dungeon crawling through labyrinths and combat using the titular Personas against hostiles known as Shadows." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000123400" +region = "usa" +release_date = "2014-11-25" + +[[releases]] +title = "0004000000149F00" +region = "eur" +release_date = "2014-11-28" + +[[releases]] +title = "00040000000C3600" +region = "jpn" +release_date = "2014-06-05" + +[[releases]] +title = "0004000000145C00" +region = "kor" +release_date = "2014-10-23" diff --git a/games/persona-q-shadow-of-the-labyrinth/icon.png b/games/persona-q-shadow-of-the-labyrinth/icon.png new file mode 100644 index 0000000..3d84d74 Binary files /dev/null and b/games/persona-q-shadow-of-the-labyrinth/icon.png differ diff --git a/games/persona-q-shadow-of-the-labyrinth/screenshots/Combat.png b/games/persona-q-shadow-of-the-labyrinth/screenshots/Combat.png new file mode 100644 index 0000000..64770a5 Binary files /dev/null and b/games/persona-q-shadow-of-the-labyrinth/screenshots/Combat.png differ diff --git a/games/persona-q-shadow-of-the-labyrinth/screenshots/Home.png b/games/persona-q-shadow-of-the-labyrinth/screenshots/Home.png new file mode 100644 index 0000000..350a4b0 Binary files /dev/null and b/games/persona-q-shadow-of-the-labyrinth/screenshots/Home.png differ diff --git a/games/persona-q-shadow-of-the-labyrinth/screenshots/Workshop.png b/games/persona-q-shadow-of-the-labyrinth/screenshots/Workshop.png new file mode 100644 index 0000000..81abaec Binary files /dev/null and b/games/persona-q-shadow-of-the-labyrinth/screenshots/Workshop.png differ diff --git a/games/petit-novel-series-harvest-december/boxart.png b/games/petit-novel-series-harvest-december/boxart.png new file mode 100644 index 0000000..79bc6ec Binary files /dev/null and b/games/petit-novel-series-harvest-december/boxart.png differ diff --git a/games/petit-novel-series-harvest-december/game.dat b/games/petit-novel-series-harvest-december/game.dat new file mode 100644 index 0000000..02fb032 --- /dev/null +++ b/games/petit-novel-series-harvest-december/game.dat @@ -0,0 +1,20 @@ +title = "Petit Novel series - Harvest December" +description = "Petit Novel Series: Harvest December is a collection of 13 stories set in the small, snowy town of Tagami. Publisher: CIRCLE Ent. Genre: Visual Novel" +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000182800" +region = "usa" +release_date = "2015-12-10" + +[[testcases]] +title = "0004000000182800" +compatibility = "0" +date = "2017-07-31" +version = "HEAD-fc43e02" +cpu = "Intel Core i7-6700" +gpu = "GeForce GTX 970" +os = "Windows 10 15063" +author = "Roran-Vanq" diff --git a/games/petit-novel-series-harvest-december/icon.png b/games/petit-novel-series-harvest-december/icon.png new file mode 100644 index 0000000..0846e45 Binary files /dev/null and b/games/petit-novel-series-harvest-december/icon.png differ diff --git a/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-15-53.png b/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-15-53.png new file mode 100644 index 0000000..63ce2b4 Binary files /dev/null and b/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-15-53.png differ diff --git a/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-16-20.png b/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-16-20.png new file mode 100644 index 0000000..f309599 Binary files /dev/null and b/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-16-20.png differ diff --git a/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-16-45.png b/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-16-45.png new file mode 100644 index 0000000..c3af49a Binary files /dev/null and b/games/petit-novel-series-harvest-december/screenshots/citra-qt_2017-07-31_16-16-45.png differ diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/boxart.png b/games/phoenix-wright-ace-attorney-dual-destinies/boxart.png new file mode 100644 index 0000000..1d9010d Binary files /dev/null and b/games/phoenix-wright-ace-attorney-dual-destinies/boxart.png differ diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/game.dat b/games/phoenix-wright-ace-attorney-dual-destinies/game.dat new file mode 100644 index 0000000..453282f --- /dev/null +++ b/games/phoenix-wright-ace-attorney-dual-destinies/game.dat @@ -0,0 +1,30 @@ +title = "Phoenix Wright: Ace Attorney - Dual Destinies" +description = "Phoenix Wright: Ace Attorney - Dual Destinies, is a visual novel adventure video game developed and published by Capcom. It is the fifth main entry in the Ace Attorney series. The game is set around a year after the previous game, Apollo Justice: Ace Attorney, in a time where the court system has entered a dark era of false charges and fabricated evidence. The player takes the roles of three defense attorneys who defend their clients in multiple cases and try to restore confidence in the courts." +github_issues = [2505, 1521] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000F1400" +region = "usa" +release_date = "2013-10-24" + +[[ releases ]] +title = "00040000000F1E00" +region = "eur" +release_date = "2013-10-24" + +[[ releases ]] +title = "00040000000BAA00" +region = "jpn" +release_date = "2013-07-25" + +[[ testcases ]] +title = "00040000000F1400" +compatibility = "3" +date = "2017-06-10" +version = "HEAD-9a8a90b" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/icon.png b/games/phoenix-wright-ace-attorney-dual-destinies/icon.png new file mode 100644 index 0000000..962950e Binary files /dev/null and b/games/phoenix-wright-ace-attorney-dual-destinies/icon.png differ diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/1.png b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/1.png new file mode 100644 index 0000000..d5c91c8 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/1.png differ diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/2.png b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/2.png new file mode 100644 index 0000000..32a88af Binary files /dev/null and b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/2.png differ diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/3.png b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/3.png new file mode 100644 index 0000000..69cf24e Binary files /dev/null and b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/3.png differ diff --git a/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/4.png b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/4.png new file mode 100644 index 0000000..fb04bfa Binary files /dev/null and b/games/phoenix-wright-ace-attorney-dual-destinies/screenshots/4.png differ diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/boxart.png b/games/phoenix-wright-ace-attorney-spirit-of-justice/boxart.png new file mode 100644 index 0000000..a2608c4 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-spirit-of-justice/boxart.png differ diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/game.dat b/games/phoenix-wright-ace-attorney-spirit-of-justice/game.dat new file mode 100644 index 0000000..23bedc6 --- /dev/null +++ b/games/phoenix-wright-ace-attorney-spirit-of-justice/game.dat @@ -0,0 +1,30 @@ +title = "Phoenix Wright: Ace Attorney - Spirit of Justice" +description = "Phoenix Wright: Ace Attorney - Spirit of Justice is a visual novel adventure video game developed and published by Capcom for the Nintendo 3DS, and is the sixth main game in the Ace Attorney series. Spirit of Justice continues the investigation and courtroom gameplay of its predecessors, in which players take the role of the defense attorneys and try to defend their clients." +github_issues = [2741] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "000400000018F400" +region = "usa" +release_date = "2016-09-08" + +[[ releases ]] +title = "000400000018FA00" +region = "eur" +release_date = "2016-09-08" + +[[ releases ]] +title = "0004000000166A00" +region = "jpn" +release_date = "2016-06-09" + +[[ testcases ]] +title = "000400000018F400" +compatibility = "3" +date = "2017-06-10" +version = "HEAD-9a8a90b" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/icon.png b/games/phoenix-wright-ace-attorney-spirit-of-justice/icon.png new file mode 100644 index 0000000..e697178 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-spirit-of-justice/icon.png differ diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/5.png b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/5.png new file mode 100644 index 0000000..5911b67 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/5.png differ diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/6.png b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/6.png new file mode 100644 index 0000000..fe63fc5 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/6.png differ diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/7.png b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/7.png new file mode 100644 index 0000000..43e54ae Binary files /dev/null and b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/7.png differ diff --git a/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/8.png b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/8.png new file mode 100644 index 0000000..10e4afc Binary files /dev/null and b/games/phoenix-wright-ace-attorney-spirit-of-justice/screenshots/8.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/boxart.png b/games/phoenix-wright-ace-attorney-trilogy/boxart.png new file mode 100644 index 0000000..acf6606 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/boxart.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/game.dat b/games/phoenix-wright-ace-attorney-trilogy/game.dat new file mode 100644 index 0000000..7f46b75 --- /dev/null +++ b/games/phoenix-wright-ace-attorney-trilogy/game.dat @@ -0,0 +1,20 @@ +title = "Phoenix Wright: Ace Attorney Trilogy" +description = "Phoenix Wright: Ace Attorney Trilogy is a visual novel adventure video game developed and published by Capcom. It is a game compilation consisting of the first three games in the Ace Attorney series: \"Phoenix Wright: Ace Attorney\", \"Phoenix Wright: Ace Attorney: Justice For All\", and \"Phoenix Wright: Ace Attorney: Trials and Tribulations\"." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000138F00" +region = "usa" +release_date = "2014-12-09" + +[[releases]] +title = "0004000000133300" +region = "eur" +release_date = "2014-12-11" + +[[releases]] +title = "0004000000108800" +region = "jpn" +release_date = "2014-04-17" diff --git a/games/phoenix-wright-ace-attorney-trilogy/icon.png b/games/phoenix-wright-ace-attorney-trilogy/icon.png new file mode 100644 index 0000000..f1051ff Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/icon.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/screenshots/cross-examination.png b/games/phoenix-wright-ace-attorney-trilogy/screenshots/cross-examination.png new file mode 100644 index 0000000..fe7c868 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/screenshots/cross-examination.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/screenshots/episode-select.png b/games/phoenix-wright-ace-attorney-trilogy/screenshots/episode-select.png new file mode 100644 index 0000000..a320f25 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/screenshots/episode-select.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/screenshots/investigation.png b/games/phoenix-wright-ace-attorney-trilogy/screenshots/investigation.png new file mode 100644 index 0000000..c8f30e2 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/screenshots/investigation.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/screenshots/objection.png b/games/phoenix-wright-ace-attorney-trilogy/screenshots/objection.png new file mode 100644 index 0000000..4b9f91b Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/screenshots/objection.png differ diff --git a/games/phoenix-wright-ace-attorney-trilogy/screenshots/title-screen.png b/games/phoenix-wright-ace-attorney-trilogy/screenshots/title-screen.png new file mode 100644 index 0000000..ac5e070 Binary files /dev/null and b/games/phoenix-wright-ace-attorney-trilogy/screenshots/title-screen.png differ diff --git a/games/picross-3d-round-2/boxart.png b/games/picross-3d-round-2/boxart.png new file mode 100644 index 0000000..9a18ea2 Binary files /dev/null and b/games/picross-3d-round-2/boxart.png differ diff --git a/games/picross-3d-round-2/game.dat b/games/picross-3d-round-2/game.dat new file mode 100644 index 0000000..5c339b5 --- /dev/null +++ b/games/picross-3d-round-2/game.dat @@ -0,0 +1,30 @@ +title = "Picross 3D: Round 2" +description = "Picross 3D: Round 2 known in Japan as Rittai Picross 2 is a Japanese puzzle video game developed by HAL Laboratory for the Nintendo 3DS. It is the sequel to the 2009 Nintendo DS game, Picross 3D." +github_issues = [2521] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000187D00" +region = "usa" +release_date = "2016-09-01" + +[[ releases ]] +title = "0004000000187E00" +region = "eur" +release_date = "2016-12-02" + +[[ releases ]] +title = "0004000000169A00" +region = "jpn" +release_date = "2015-10-01" + +[[ testcases ]] +title = "0004000000187D00" +compatibility = "4" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-3d-round-2/icon.png b/games/picross-3d-round-2/icon.png new file mode 100644 index 0000000..bf2c2c2 Binary files /dev/null and b/games/picross-3d-round-2/icon.png differ diff --git a/games/picross-3d-round-2/screenshots/In-game.png b/games/picross-3d-round-2/screenshots/In-game.png new file mode 100644 index 0000000..8341e6a Binary files /dev/null and b/games/picross-3d-round-2/screenshots/In-game.png differ diff --git a/games/picross-3d-round-2/screenshots/Puzzle-Select.png b/games/picross-3d-round-2/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..db37138 Binary files /dev/null and b/games/picross-3d-round-2/screenshots/Puzzle-Select.png differ diff --git a/games/picross-3d-round-2/screenshots/Title-Screen.png b/games/picross-3d-round-2/screenshots/Title-Screen.png new file mode 100644 index 0000000..cbd507b Binary files /dev/null and b/games/picross-3d-round-2/screenshots/Title-Screen.png differ diff --git a/games/picross-e/boxart.png b/games/picross-e/boxart.png new file mode 100644 index 0000000..e804678 Binary files /dev/null and b/games/picross-e/boxart.png differ diff --git a/games/picross-e/game.dat b/games/picross-e/game.dat new file mode 100644 index 0000000..68acbf7 --- /dev/null +++ b/games/picross-e/game.dat @@ -0,0 +1,30 @@ +title = "Picross e" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "00040000000E5D00" +region = "usa" +release_date = "2013-06-13" + +[[ releases ]] +title = "00040000000E9200" +region = "eur" +release_date = "2012-09-06" + +[[ releases ]] +title = "0004000000064200" +region = "jpn" +release_date = "2011-06-27" + +[[ testcases ]] +title = "00040000000E9200" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e/icon.png b/games/picross-e/icon.png new file mode 100644 index 0000000..b7f64d7 Binary files /dev/null and b/games/picross-e/icon.png differ diff --git a/games/picross-e/screenshots/In-game.png b/games/picross-e/screenshots/In-game.png new file mode 100644 index 0000000..dd1c06d Binary files /dev/null and b/games/picross-e/screenshots/In-game.png differ diff --git a/games/picross-e/screenshots/Puzzle-Select.png b/games/picross-e/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..6cffc1c Binary files /dev/null and b/games/picross-e/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e/screenshots/Title-Screen.png b/games/picross-e/screenshots/Title-Screen.png new file mode 100644 index 0000000..7987625 Binary files /dev/null and b/games/picross-e/screenshots/Title-Screen.png differ diff --git a/games/picross-e2/boxart.png b/games/picross-e2/boxart.png new file mode 100644 index 0000000..f842fc0 Binary files /dev/null and b/games/picross-e2/boxart.png differ diff --git a/games/picross-e2/game.dat b/games/picross-e2/game.dat new file mode 100644 index 0000000..7b50e6a --- /dev/null +++ b/games/picross-e2/game.dat @@ -0,0 +1,30 @@ +title = "Picross e2" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "00040000000CD400" +region = "usa" +release_date = "2013-07-15" + +[[ releases ]] +title = "00040000000CBC00" +region = "eur" +release_date = "2013-01-24" + +[[ releases ]] +title = "0004000000084600" +region = "jpn" +release_date = "2011-12-28" + +[[ testcases ]] +title = "00040000000CBC00" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e2/icon.png b/games/picross-e2/icon.png new file mode 100644 index 0000000..0a6bbac Binary files /dev/null and b/games/picross-e2/icon.png differ diff --git a/games/picross-e2/screenshots/In-game.png b/games/picross-e2/screenshots/In-game.png new file mode 100644 index 0000000..ea7a3e0 Binary files /dev/null and b/games/picross-e2/screenshots/In-game.png differ diff --git a/games/picross-e2/screenshots/Puzzle-Select.png b/games/picross-e2/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..c5d7fd7 Binary files /dev/null and b/games/picross-e2/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e2/screenshots/Title-Screen.png b/games/picross-e2/screenshots/Title-Screen.png new file mode 100644 index 0000000..6c621de Binary files /dev/null and b/games/picross-e2/screenshots/Title-Screen.png differ diff --git a/games/picross-e3/boxart.png b/games/picross-e3/boxart.png new file mode 100644 index 0000000..ed50212 Binary files /dev/null and b/games/picross-e3/boxart.png differ diff --git a/games/picross-e3/game.dat b/games/picross-e3/game.dat new file mode 100644 index 0000000..f31ed13 --- /dev/null +++ b/games/picross-e3/game.dat @@ -0,0 +1,30 @@ +title = "Picross e3" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "0004000000101D00" +region = "usa" +release_date = "2013-10-03" + +[[ releases ]] +title = "0004000000102900" +region = "eur" +release_date = "2013-12-14" + +[[ releases ]] +title = "00040000000EEA00" +region = "jpn" +release_date = "2013-06-12" + +[[ testcases ]] +title = "0004000000102900" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e3/icon.png b/games/picross-e3/icon.png new file mode 100644 index 0000000..a919f7d Binary files /dev/null and b/games/picross-e3/icon.png differ diff --git a/games/picross-e3/screenshots/In-game.png b/games/picross-e3/screenshots/In-game.png new file mode 100644 index 0000000..ed9588e Binary files /dev/null and b/games/picross-e3/screenshots/In-game.png differ diff --git a/games/picross-e3/screenshots/Puzzle-Select.png b/games/picross-e3/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..995c29b Binary files /dev/null and b/games/picross-e3/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e3/screenshots/Title-Screen.png b/games/picross-e3/screenshots/Title-Screen.png new file mode 100644 index 0000000..d724637 Binary files /dev/null and b/games/picross-e3/screenshots/Title-Screen.png differ diff --git a/games/picross-e4/boxart.png b/games/picross-e4/boxart.png new file mode 100644 index 0000000..46562cf Binary files /dev/null and b/games/picross-e4/boxart.png differ diff --git a/games/picross-e4/game.dat b/games/picross-e4/game.dat new file mode 100644 index 0000000..b7c5c8d --- /dev/null +++ b/games/picross-e4/game.dat @@ -0,0 +1,30 @@ +title = "Picross e4" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "0004000000127300" +region = "usa" +release_date = "2013-10-03" + +[[ releases ]] +title = "0004000000128400" +region = "eur" +release_date = "2014-05-22" + +[[ releases ]] +title = "000400000010F000" +region = "jpn" +release_date = "2013-11-20" + +[[ testcases ]] +title = "0004000000127300" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e4/icon.png b/games/picross-e4/icon.png new file mode 100644 index 0000000..7ae6765 Binary files /dev/null and b/games/picross-e4/icon.png differ diff --git a/games/picross-e4/screenshots/In-game.png b/games/picross-e4/screenshots/In-game.png new file mode 100644 index 0000000..998bb78 Binary files /dev/null and b/games/picross-e4/screenshots/In-game.png differ diff --git a/games/picross-e4/screenshots/Puzzle-Select.png b/games/picross-e4/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..7edb939 Binary files /dev/null and b/games/picross-e4/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e4/screenshots/Title-Screen.png b/games/picross-e4/screenshots/Title-Screen.png new file mode 100644 index 0000000..e553dbc Binary files /dev/null and b/games/picross-e4/screenshots/Title-Screen.png differ diff --git a/games/picross-e5/boxart.png b/games/picross-e5/boxart.png new file mode 100644 index 0000000..b9cb890 Binary files /dev/null and b/games/picross-e5/boxart.png differ diff --git a/games/picross-e5/game.dat b/games/picross-e5/game.dat new file mode 100644 index 0000000..bc70c0a --- /dev/null +++ b/games/picross-e5/game.dat @@ -0,0 +1,25 @@ +title = "Picross e5" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "0004000000149800" +region = "usa" +release_date = "2014-11-13" + +[[ releases ]] +title = "000400000014D200" +region = "eur" +release_date = "2014-11-13" + +[[ testcases ]] +title = "0004000000149800" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e5/icon.png b/games/picross-e5/icon.png new file mode 100644 index 0000000..54db05b Binary files /dev/null and b/games/picross-e5/icon.png differ diff --git a/games/picross-e5/screenshots/In-game.png b/games/picross-e5/screenshots/In-game.png new file mode 100644 index 0000000..89cbaab Binary files /dev/null and b/games/picross-e5/screenshots/In-game.png differ diff --git a/games/picross-e5/screenshots/Puzzle-Select.png b/games/picross-e5/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..9b6f99f Binary files /dev/null and b/games/picross-e5/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e5/screenshots/Title-Screen.png b/games/picross-e5/screenshots/Title-Screen.png new file mode 100644 index 0000000..3e4d3d0 Binary files /dev/null and b/games/picross-e5/screenshots/Title-Screen.png differ diff --git a/games/picross-e6/boxart.png b/games/picross-e6/boxart.png new file mode 100644 index 0000000..9045036 Binary files /dev/null and b/games/picross-e6/boxart.png differ diff --git a/games/picross-e6/game.dat b/games/picross-e6/game.dat new file mode 100644 index 0000000..79b950a --- /dev/null +++ b/games/picross-e6/game.dat @@ -0,0 +1,25 @@ +title = "Picross e6" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "000400000016EF00" +region = "usa" +release_date = "2015-08-06" + +[[ releases ]] +title = "000400000016E800" +region = "eur" +release_date = "2015-06-30" + +[[ testcases ]] +title = "000400000016EF00" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e6/icon.png b/games/picross-e6/icon.png new file mode 100644 index 0000000..706b936 Binary files /dev/null and b/games/picross-e6/icon.png differ diff --git a/games/picross-e6/screenshots/In-game.png b/games/picross-e6/screenshots/In-game.png new file mode 100644 index 0000000..b30e7b9 Binary files /dev/null and b/games/picross-e6/screenshots/In-game.png differ diff --git a/games/picross-e6/screenshots/Puzzle-Select.png b/games/picross-e6/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..e6fe3c4 Binary files /dev/null and b/games/picross-e6/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e6/screenshots/Title-Screen.png b/games/picross-e6/screenshots/Title-Screen.png new file mode 100644 index 0000000..91e6793 Binary files /dev/null and b/games/picross-e6/screenshots/Title-Screen.png differ diff --git a/games/picross-e7/boxart.png b/games/picross-e7/boxart.png new file mode 100644 index 0000000..975d1b2 Binary files /dev/null and b/games/picross-e7/boxart.png differ diff --git a/games/picross-e7/game.dat b/games/picross-e7/game.dat new file mode 100644 index 0000000..21e156c --- /dev/null +++ b/games/picross-e7/game.dat @@ -0,0 +1,25 @@ +title = "Picross e7" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "00040000001ADB00" +region = "usa" +release_date = "2016-12-15" + +[[ releases ]] +title = "00040000001AD600" +region = "eur" +release_date = "2016-12-22" + +[[ testcases ]] +title = "00040000001ADB00" +compatibility = "0" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/picross-e7/icon.png b/games/picross-e7/icon.png new file mode 100644 index 0000000..83367ea Binary files /dev/null and b/games/picross-e7/icon.png differ diff --git a/games/picross-e7/screenshots/In-game.png b/games/picross-e7/screenshots/In-game.png new file mode 100644 index 0000000..cb44aae Binary files /dev/null and b/games/picross-e7/screenshots/In-game.png differ diff --git a/games/picross-e7/screenshots/Puzzle-Select.png b/games/picross-e7/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..2748ece Binary files /dev/null and b/games/picross-e7/screenshots/Puzzle-Select.png differ diff --git a/games/picross-e7/screenshots/Title-Screen.png b/games/picross-e7/screenshots/Title-Screen.png new file mode 100644 index 0000000..99d2c69 Binary files /dev/null and b/games/picross-e7/screenshots/Title-Screen.png differ diff --git a/games/picross-e8/boxart.png b/games/picross-e8/boxart.png new file mode 100644 index 0000000..384653f Binary files /dev/null and b/games/picross-e8/boxart.png differ diff --git a/games/picross-e8/game.dat b/games/picross-e8/game.dat new file mode 100644 index 0000000..368b5d0 --- /dev/null +++ b/games/picross-e8/game.dat @@ -0,0 +1,20 @@ +title = "Picross e8" +description = "Picross e is a series of nonogram puzzle video games developed and published by Jupiter for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000001CF700" +region = "usa" +release_date = "2017-12-21" + +[[releases]] +title = "00040000001CE000" +region = "eur" +release_date = "2018-01-18" + +[[releases]] +title = "00040000001CFD00" +region = "jpn" +release_date = "2017-12-21" diff --git a/games/picross-e8/icon.png b/games/picross-e8/icon.png new file mode 100644 index 0000000..90d57cd Binary files /dev/null and b/games/picross-e8/icon.png differ diff --git a/games/picross-e8/screenshots/in-game.png b/games/picross-e8/screenshots/in-game.png new file mode 100644 index 0000000..eec3762 Binary files /dev/null and b/games/picross-e8/screenshots/in-game.png differ diff --git a/games/picross-e8/screenshots/levelcompleted.png b/games/picross-e8/screenshots/levelcompleted.png new file mode 100644 index 0000000..839a618 Binary files /dev/null and b/games/picross-e8/screenshots/levelcompleted.png differ diff --git a/games/picross-e8/screenshots/menu.png b/games/picross-e8/screenshots/menu.png new file mode 100644 index 0000000..215935c Binary files /dev/null and b/games/picross-e8/screenshots/menu.png differ diff --git a/games/pilotwings-resort/boxart.png b/games/pilotwings-resort/boxart.png new file mode 100755 index 0000000..bbd0e77 Binary files /dev/null and b/games/pilotwings-resort/boxart.png differ diff --git a/games/pilotwings-resort/game.dat b/games/pilotwings-resort/game.dat new file mode 100644 index 0000000..d94dd00 --- /dev/null +++ b/games/pilotwings-resort/game.dat @@ -0,0 +1,39 @@ +title = "Pilotwings Resort" +description = "Pilotwings Resort is an amateur flight simulation video game for the Nintendo 3DS handheld game console, developed by Monster Games and published by Nintendo." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000031C00" +region = "usa" +release_date = "2011-03-27" + +[[ releases ]] +title = "0004000000031D00" +region = "eur" +release_date = "2011-03-25" + +[[ releases ]] +title = "0004000000031B00" +region = "jpn" +release_date = "2011-04-14" + +[[ testcases ]] +title = "0004000000031D00" +compatibility = "2" +date = "2017-06-15" +version = "HEAD-5fe5cca" +author = "Anadian" +cpu = "Intel Core i7-6500U" +gpu = "Intel HD Graphics 520" +os = "Windows 10 14393" + +[[ testcases ]] +title = "0004000000031C00" +compatibility = "2" +date = "2017-07-24" +version = "HEAD-f2f3910" +author = "Breadfish64" +cpu = "Intel Core i7-4700mq" +gpu = "Nvidia Geforce GT 740m" +os = "Windows 10 Home 1703" diff --git a/games/pilotwings-resort/icon.png b/games/pilotwings-resort/icon.png new file mode 100755 index 0000000..eb207c3 Binary files /dev/null and b/games/pilotwings-resort/icon.png differ diff --git a/games/pilotwings-resort/screenshots/pilotwings-resort-1.png b/games/pilotwings-resort/screenshots/pilotwings-resort-1.png new file mode 100644 index 0000000..1945728 Binary files /dev/null and b/games/pilotwings-resort/screenshots/pilotwings-resort-1.png differ diff --git a/games/pilotwings-resort/screenshots/pilotwings-resort-2.png b/games/pilotwings-resort/screenshots/pilotwings-resort-2.png new file mode 100644 index 0000000..24971c1 Binary files /dev/null and b/games/pilotwings-resort/screenshots/pilotwings-resort-2.png differ diff --git a/games/pilotwings-resort/screenshots/pilotwings-resort-3.png b/games/pilotwings-resort/screenshots/pilotwings-resort-3.png new file mode 100644 index 0000000..81d50a7 Binary files /dev/null and b/games/pilotwings-resort/screenshots/pilotwings-resort-3.png differ diff --git a/games/pocket-card-jockey/boxart.png b/games/pocket-card-jockey/boxart.png new file mode 100644 index 0000000..90c249c Binary files /dev/null and b/games/pocket-card-jockey/boxart.png differ diff --git a/games/pocket-card-jockey/game.dat b/games/pocket-card-jockey/game.dat new file mode 100644 index 0000000..8b4f500 --- /dev/null +++ b/games/pocket-card-jockey/game.dat @@ -0,0 +1,25 @@ +title = "Pocket Card Jockey" +description = "Pocket Card Jockey (SolitiBa in Japan) is a horse racing game by Game Freak. The game combines horse racing and simplified solitaire." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000194800" +region = "usa" +release_date = "2016-05-05" + +[[releases]] +title = "0004000000194900" +region = "eur" +release_date = "2016-05-05" + +[[releases]] +title = "0004000000194A00" +region = "kor" +release_date = "2016-11-09" + +[[releases]] +title = "00040000000EB000" +region = "jpn" +release_date = "2013-07-31" diff --git a/games/pocket-card-jockey/icon.png b/games/pocket-card-jockey/icon.png new file mode 100644 index 0000000..b5b8844 Binary files /dev/null and b/games/pocket-card-jockey/icon.png differ diff --git a/games/pocket-card-jockey/screenshots/beginning.png b/games/pocket-card-jockey/screenshots/beginning.png new file mode 100644 index 0000000..4cf6ea9 Binary files /dev/null and b/games/pocket-card-jockey/screenshots/beginning.png differ diff --git a/games/pocket-card-jockey/screenshots/gameplay.png b/games/pocket-card-jockey/screenshots/gameplay.png new file mode 100644 index 0000000..bc70cf4 Binary files /dev/null and b/games/pocket-card-jockey/screenshots/gameplay.png differ diff --git a/games/pocket-card-jockey/screenshots/title-screen.png b/games/pocket-card-jockey/screenshots/title-screen.png new file mode 100644 index 0000000..074cd6a Binary files /dev/null and b/games/pocket-card-jockey/screenshots/title-screen.png differ diff --git a/games/pokemon-alpha-sapphire/boxart.png b/games/pokemon-alpha-sapphire/boxart.png new file mode 100644 index 0000000..655546e Binary files /dev/null and b/games/pokemon-alpha-sapphire/boxart.png differ diff --git a/games/pokemon-alpha-sapphire/game.dat b/games/pokemon-alpha-sapphire/game.dat new file mode 100644 index 0000000..1e29414 --- /dev/null +++ b/games/pokemon-alpha-sapphire/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Alpha Sapphire" +description = "Pokémon Alpha Sapphire is a 2014 role-playing video game developed by Game Freak and published by Nintendo for the Nintendo 3DS family of systems. It is part of the sixth generation of the Pokémon series, serving as enhanced remake of the 2002 Game Boy Advance title Pokémon Sapphire." +github_issues = [2419, 3703] +needs_system_files = true +needs_shared_font = true +wiki_override = "pokemon-omega-ruby-alpha-sapphire" + +[[ releases ]] +title = "000400000011C500" +region = "all" +release_date = "2014-11-21" diff --git a/games/pokemon-alpha-sapphire/icon.png b/games/pokemon-alpha-sapphire/icon.png new file mode 100644 index 0000000..28bbe92 Binary files /dev/null and b/games/pokemon-alpha-sapphire/icon.png differ diff --git a/games/pokemon-alpha-sapphire/screenshots/1.png b/games/pokemon-alpha-sapphire/screenshots/1.png new file mode 100644 index 0000000..618ab7b Binary files /dev/null and b/games/pokemon-alpha-sapphire/screenshots/1.png differ diff --git a/games/pokemon-alpha-sapphire/screenshots/2.png b/games/pokemon-alpha-sapphire/screenshots/2.png new file mode 100644 index 0000000..f174077 Binary files /dev/null and b/games/pokemon-alpha-sapphire/screenshots/2.png differ diff --git a/games/pokemon-alpha-sapphire/screenshots/3.png b/games/pokemon-alpha-sapphire/screenshots/3.png new file mode 100644 index 0000000..7f5f927 Binary files /dev/null and b/games/pokemon-alpha-sapphire/screenshots/3.png differ diff --git a/games/pokemon-art-academy/boxart.png b/games/pokemon-art-academy/boxart.png new file mode 100644 index 0000000..7f88131 Binary files /dev/null and b/games/pokemon-art-academy/boxart.png differ diff --git a/games/pokemon-art-academy/game.dat b/games/pokemon-art-academy/game.dat new file mode 100644 index 0000000..a02cdf3 --- /dev/null +++ b/games/pokemon-art-academy/game.dat @@ -0,0 +1,30 @@ +title = "Pokémon Art Academy" +description = "Pokémon Art Academy is an educational drawing video game developed by Headstrong Games and published by Nintendo for the Nintendo 3DS. It is a spin-off of the Art Academy series featuring characters from the Pokémon media franchise." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000D0A00" +region = "usa" +release_date = "2014-10-24" + +[[ releases ]] +title = "00040000000D0900" +region = "eur" +release_date = "2014-07-04" + +[[ releases ]] +title = "00040000000CF900" +region = "jpn" +release_date = "2014-06-19" + +[[ testcases ]] +title = "00040000000D0A00" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/pokemon-art-academy/icon.png b/games/pokemon-art-academy/icon.png new file mode 100644 index 0000000..65a4872 Binary files /dev/null and b/games/pokemon-art-academy/icon.png differ diff --git a/games/pokemon-battle-trozei/boxart.png b/games/pokemon-battle-trozei/boxart.png new file mode 100644 index 0000000..50af756 Binary files /dev/null and b/games/pokemon-battle-trozei/boxart.png differ diff --git a/games/pokemon-battle-trozei/game.dat b/games/pokemon-battle-trozei/game.dat new file mode 100644 index 0000000..7fb0fdb --- /dev/null +++ b/games/pokemon-battle-trozei/game.dat @@ -0,0 +1,20 @@ +title = "Pokémon Battle Trozei" +description = "Pokémon Battle Trozei, released as \"Pokémon Link: Battle!\" in Europe and Australia, is a Pokémon-themed puzzle video game and is the sequel to the 2005 Nintendo DS title Pokémon Trozei!. The game includes all 718 Pokémon that were known at the time." +needs_system_files = true +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "000400000011C600" +region = "usa" +release_date = "2014-03-20" + +[[releases]] +title = "0004000000126000" +region = "eur" +release_date = "2014-03-13" + +[[releases]] +title = "000400000011C600" +region = "jpn" +release_date = "2014-03-12" diff --git a/games/pokemon-battle-trozei/icon.png b/games/pokemon-battle-trozei/icon.png new file mode 100644 index 0000000..b30acca Binary files /dev/null and b/games/pokemon-battle-trozei/icon.png differ diff --git a/games/pokemon-battle-trozei/screenshots/Defeated.png b/games/pokemon-battle-trozei/screenshots/Defeated.png new file mode 100644 index 0000000..6420003 Binary files /dev/null and b/games/pokemon-battle-trozei/screenshots/Defeated.png differ diff --git a/games/pokemon-battle-trozei/screenshots/Stage-Select.png b/games/pokemon-battle-trozei/screenshots/Stage-Select.png new file mode 100644 index 0000000..650d073 Binary files /dev/null and b/games/pokemon-battle-trozei/screenshots/Stage-Select.png differ diff --git a/games/pokemon-battle-trozei/screenshots/Tutorial.png b/games/pokemon-battle-trozei/screenshots/Tutorial.png new file mode 100644 index 0000000..6863a1c Binary files /dev/null and b/games/pokemon-battle-trozei/screenshots/Tutorial.png differ diff --git a/games/pokemon-moon/boxart.png b/games/pokemon-moon/boxart.png new file mode 100644 index 0000000..1780b2a Binary files /dev/null and b/games/pokemon-moon/boxart.png differ diff --git a/games/pokemon-moon/game.dat b/games/pokemon-moon/game.dat new file mode 100644 index 0000000..ab60260 --- /dev/null +++ b/games/pokemon-moon/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Moon" +description = "Pokémon Moon is a role-playing video game developed by Game Freak and published by Nintendo for the Nintendo 3DS. It is the first installment in the seventh generation of Pokémon games." +github_issues = [2190, 3703] +needs_system_files = false +needs_shared_font = false +wiki_override = "pokemon-sun-moon" + +[[ releases ]] +title = "0004000000175E00" +region = "all" +release_date = "2016-11-18" diff --git a/games/pokemon-moon/icon.png b/games/pokemon-moon/icon.png new file mode 100644 index 0000000..1b40906 Binary files /dev/null and b/games/pokemon-moon/icon.png differ diff --git a/games/pokemon-moon/screenshots/1.png b/games/pokemon-moon/screenshots/1.png new file mode 100644 index 0000000..51ec169 Binary files /dev/null and b/games/pokemon-moon/screenshots/1.png differ diff --git a/games/pokemon-moon/screenshots/2.png b/games/pokemon-moon/screenshots/2.png new file mode 100644 index 0000000..c019d72 Binary files /dev/null and b/games/pokemon-moon/screenshots/2.png differ diff --git a/games/pokemon-moon/screenshots/3.png b/games/pokemon-moon/screenshots/3.png new file mode 100644 index 0000000..5ef94a1 Binary files /dev/null and b/games/pokemon-moon/screenshots/3.png differ diff --git a/games/pokemon-mystery-dungeon-gates-to-infinity/boxart.png b/games/pokemon-mystery-dungeon-gates-to-infinity/boxart.png new file mode 100644 index 0000000..1a7bdb2 Binary files /dev/null and b/games/pokemon-mystery-dungeon-gates-to-infinity/boxart.png differ diff --git a/games/pokemon-mystery-dungeon-gates-to-infinity/game.dat b/games/pokemon-mystery-dungeon-gates-to-infinity/game.dat new file mode 100644 index 0000000..c8b6be9 --- /dev/null +++ b/games/pokemon-mystery-dungeon-gates-to-infinity/game.dat @@ -0,0 +1,30 @@ +title = "Pokémon Mystery Dungeon: Gates to Infinity" +description = "Pokémon Mystery Dungeon: Gates to Infinity is a role-playing game in the Pokémon franchise developed by Spike Chunsoft and published by Nintendo for the Nintendo 3DS. It is the ninth installment in the Pokémon Mystery Dungeon series." +github_issues = [2104] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000BA800" +region = "usa" +release_date = "2013-03-24" + +[[ releases ]] +title = "00040000000BA900" +region = "eur" +release_date = "2013-05-17" + +[[ releases ]] +title = "0004000000095000" +region = "jpn" +release_date = "2012-11-23" + +[[ testcases ]] +title = "00040000000BA900" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "jselby" +cpu = "Intel i5 6600k" +gpu = "MSI GTX 1070" +os = "Windows 10 10.0.14393" diff --git a/games/pokemon-mystery-dungeon-gates-to-infinity/icon.png b/games/pokemon-mystery-dungeon-gates-to-infinity/icon.png new file mode 100644 index 0000000..84dbc98 Binary files /dev/null and b/games/pokemon-mystery-dungeon-gates-to-infinity/icon.png differ diff --git a/games/pokemon-mystery-dungeon-gates-to-infinity/screenshots/citra_qt-05-06-2017_10-45-59.png b/games/pokemon-mystery-dungeon-gates-to-infinity/screenshots/citra_qt-05-06-2017_10-45-59.png new file mode 100644 index 0000000..95a85ce Binary files /dev/null and b/games/pokemon-mystery-dungeon-gates-to-infinity/screenshots/citra_qt-05-06-2017_10-45-59.png differ diff --git a/games/pokemon-mystery-dungeon-gates-to-infinity/screenshots/citra_qt-05-06-2017_10-47-18.png b/games/pokemon-mystery-dungeon-gates-to-infinity/screenshots/citra_qt-05-06-2017_10-47-18.png new file mode 100644 index 0000000..a9e0a6f Binary files /dev/null and b/games/pokemon-mystery-dungeon-gates-to-infinity/screenshots/citra_qt-05-06-2017_10-47-18.png differ diff --git a/games/pokemon-omega-ruby/boxart.png b/games/pokemon-omega-ruby/boxart.png new file mode 100644 index 0000000..cbe5f7d Binary files /dev/null and b/games/pokemon-omega-ruby/boxart.png differ diff --git a/games/pokemon-omega-ruby/game.dat b/games/pokemon-omega-ruby/game.dat new file mode 100644 index 0000000..b101422 --- /dev/null +++ b/games/pokemon-omega-ruby/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Omega Ruby" +description = "Pokémon Omega Ruby is a 2014 role-playing video game developed by Game Freak and published by Nintendo for the Nintendo 3DS family of systems. It is part of the sixth generation of the Pokémon series, serving as an enhanced remake of the 2002 Game Boy Advance title Pokémon Ruby." +github_issues = [2419, 3703] +needs_system_files = true +needs_shared_font = true +wiki_override = "pokemon-omega-ruby-alpha-sapphire" + +[[ releases ]] +title = "000400000011C400" +region = "all" +release_date = "2014-11-21" diff --git a/games/pokemon-omega-ruby/icon.png b/games/pokemon-omega-ruby/icon.png new file mode 100644 index 0000000..486e2c1 Binary files /dev/null and b/games/pokemon-omega-ruby/icon.png differ diff --git a/games/pokemon-omega-ruby/screenshots/1.png b/games/pokemon-omega-ruby/screenshots/1.png new file mode 100644 index 0000000..618ab7b Binary files /dev/null and b/games/pokemon-omega-ruby/screenshots/1.png differ diff --git a/games/pokemon-omega-ruby/screenshots/2.png b/games/pokemon-omega-ruby/screenshots/2.png new file mode 100644 index 0000000..f174077 Binary files /dev/null and b/games/pokemon-omega-ruby/screenshots/2.png differ diff --git a/games/pokemon-omega-ruby/screenshots/3.png b/games/pokemon-omega-ruby/screenshots/3.png new file mode 100644 index 0000000..7f5f927 Binary files /dev/null and b/games/pokemon-omega-ruby/screenshots/3.png differ diff --git a/games/pokemon-picross/boxart.png b/games/pokemon-picross/boxart.png new file mode 100644 index 0000000..f8a40be Binary files /dev/null and b/games/pokemon-picross/boxart.png differ diff --git a/games/pokemon-picross/game.dat b/games/pokemon-picross/game.dat new file mode 100644 index 0000000..2ae49fe --- /dev/null +++ b/games/pokemon-picross/game.dat @@ -0,0 +1,21 @@ +title = "Pokémon Picross" +description = "Pokémon Picross is a freemium puzzle video game featuring Pokémon characters developed by Jupiter Corporation and published by The Pokémon Company for the Nintendo 3DS." +github_issues = [1980] +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "000400000017C100" +region = "all" +release_date = "2015-12-02" + +[[ testcases ]] +title = "000400000017C100" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "SonofUgly" +cpu = "i5-6600k @ 4.3GHz" +gpu = "GeForce GTX 750Ti" +os = "Windows 8.1" diff --git a/games/pokemon-picross/icon.png b/games/pokemon-picross/icon.png new file mode 100644 index 0000000..b06298a Binary files /dev/null and b/games/pokemon-picross/icon.png differ diff --git a/games/pokemon-picross/screenshots/In-game.png b/games/pokemon-picross/screenshots/In-game.png new file mode 100644 index 0000000..a8c4421 Binary files /dev/null and b/games/pokemon-picross/screenshots/In-game.png differ diff --git a/games/pokemon-picross/screenshots/Puzzle-Select.png b/games/pokemon-picross/screenshots/Puzzle-Select.png new file mode 100644 index 0000000..77cd700 Binary files /dev/null and b/games/pokemon-picross/screenshots/Puzzle-Select.png differ diff --git a/games/pokemon-picross/screenshots/Title-Screen.png b/games/pokemon-picross/screenshots/Title-Screen.png new file mode 100644 index 0000000..0ae6b21 Binary files /dev/null and b/games/pokemon-picross/screenshots/Title-Screen.png differ diff --git a/games/pokemon-rumble-world/boxart.png b/games/pokemon-rumble-world/boxart.png new file mode 100644 index 0000000..0e1ac21 Binary files /dev/null and b/games/pokemon-rumble-world/boxart.png differ diff --git a/games/pokemon-rumble-world/game.dat b/games/pokemon-rumble-world/game.dat new file mode 100644 index 0000000..5aefba1 --- /dev/null +++ b/games/pokemon-rumble-world/game.dat @@ -0,0 +1,35 @@ +title = "Pokémon Rumble World" +description = "Pokémon Rumble World is a freemium action RPG developed by Ambrella and published by The Pokémon Company. It is the fourth entry in the Pokémon Rumble series." +github_issues = [1826] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "0004000000185A00" +region = "usa" +release_date = "2016-04-29" + +[[ releases ]] +title = "0004000000185A00" +region = "eur" +release_date = "2016-01-22" + +[[ releases ]] +title = "0004000000185A00" +region = "jpn" +release_date = "2015-11-19" + +[[ releases ]] +title = "0004000000164600" +region = "all" +release_date = "2015-04-08" + +[[ testcases ]] +title = "0004000000164600" +compatibility = "3" +date = "2017-08-09" +version = "HEAD-343bbfd" +author = "Breadfish64" +cpu = "Intel Core i7-4700mq" +gpu = "Nvidia GeForce GT 740m" +os = "Windows 10 Home 1703" diff --git a/games/pokemon-rumble-world/icon.png b/games/pokemon-rumble-world/icon.png new file mode 100644 index 0000000..04209c1 Binary files /dev/null and b/games/pokemon-rumble-world/icon.png differ diff --git a/games/pokemon-rumble-world/screenshots/screenshot1.png b/games/pokemon-rumble-world/screenshots/screenshot1.png new file mode 100644 index 0000000..6f43a7f Binary files /dev/null and b/games/pokemon-rumble-world/screenshots/screenshot1.png differ diff --git a/games/pokemon-rumble-world/screenshots/screenshot2.png b/games/pokemon-rumble-world/screenshots/screenshot2.png new file mode 100644 index 0000000..375e639 Binary files /dev/null and b/games/pokemon-rumble-world/screenshots/screenshot2.png differ diff --git a/games/pokemon-rumble-world/screenshots/screenshot3.png b/games/pokemon-rumble-world/screenshots/screenshot3.png new file mode 100644 index 0000000..b48a47c Binary files /dev/null and b/games/pokemon-rumble-world/screenshots/screenshot3.png differ diff --git a/games/pokemon-shuffle/boxart.png b/games/pokemon-shuffle/boxart.png new file mode 100644 index 0000000..1eaae65 Binary files /dev/null and b/games/pokemon-shuffle/boxart.png differ diff --git a/games/pokemon-shuffle/game.dat b/games/pokemon-shuffle/game.dat new file mode 100644 index 0000000..6e7317a --- /dev/null +++ b/games/pokemon-shuffle/game.dat @@ -0,0 +1,10 @@ +title = "Pokémon Shuffle" +description = "Pokémon Shuffle is a puzzle game by The Pokémon Company in which players fight against various Pokémon by matching three of more of the same Pokémon on their bottom of their screen." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000141000" +region = "all" +release_date = "2015-02-18" diff --git a/games/pokemon-shuffle/icon.png b/games/pokemon-shuffle/icon.png new file mode 100644 index 0000000..0ede2eb Binary files /dev/null and b/games/pokemon-shuffle/icon.png differ diff --git a/games/pokemon-shuffle/screenshots/fight-against-charmander.png b/games/pokemon-shuffle/screenshots/fight-against-charmander.png new file mode 100644 index 0000000..35c1600 Binary files /dev/null and b/games/pokemon-shuffle/screenshots/fight-against-charmander.png differ diff --git a/games/pokemon-shuffle/screenshots/place-to-choose-pokemon-enemy.png b/games/pokemon-shuffle/screenshots/place-to-choose-pokemon-enemy.png new file mode 100644 index 0000000..1e4703d Binary files /dev/null and b/games/pokemon-shuffle/screenshots/place-to-choose-pokemon-enemy.png differ diff --git a/games/pokemon-shuffle/screenshots/squirtles-alligned-to-attack.png b/games/pokemon-shuffle/screenshots/squirtles-alligned-to-attack.png new file mode 100644 index 0000000..17e705c Binary files /dev/null and b/games/pokemon-shuffle/screenshots/squirtles-alligned-to-attack.png differ diff --git a/games/pokemon-sun-and-pokemon-moon-special-demo/boxart.png b/games/pokemon-sun-and-pokemon-moon-special-demo/boxart.png new file mode 100644 index 0000000..b855455 Binary files /dev/null and b/games/pokemon-sun-and-pokemon-moon-special-demo/boxart.png differ diff --git a/games/pokemon-sun-and-pokemon-moon-special-demo/game.dat b/games/pokemon-sun-and-pokemon-moon-special-demo/game.dat new file mode 100644 index 0000000..ca56d69 --- /dev/null +++ b/games/pokemon-sun-and-pokemon-moon-special-demo/game.dat @@ -0,0 +1,10 @@ +title = "Pokémon Sun and Moon: Special Demo Version" +description = "Pokémon Sun and Moon: Special Demo Version is a demo for Pokémon Sun and Moon that introduces players to the Alola region and features Ash-Greninja, the Pokémon accompanying Ash Ketchum in the animated TV series \"Pokémon the Series: XYZ\". Players are able to transfer their Ash-Greninja from the Special Demo Version to their full version of Pokémon Sun or Pokémon Moon." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000001A7100" +region = "all" +release_date = "2016-10-18" diff --git a/games/pokemon-sun-and-pokemon-moon-special-demo/icon.png b/games/pokemon-sun-and-pokemon-moon-special-demo/icon.png new file mode 100644 index 0000000..19b3b8e Binary files /dev/null and b/games/pokemon-sun-and-pokemon-moon-special-demo/icon.png differ diff --git a/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Battle-Start.png b/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Battle-Start.png new file mode 100644 index 0000000..b1f7dd8 Binary files /dev/null and b/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Battle-Start.png differ diff --git a/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Game-Interface.png b/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Game-Interface.png new file mode 100644 index 0000000..f37c3fa Binary files /dev/null and b/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Game-Interface.png differ diff --git a/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Main-Menu.png b/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Main-Menu.png new file mode 100644 index 0000000..93e779a Binary files /dev/null and b/games/pokemon-sun-and-pokemon-moon-special-demo/screenshots/Main-Menu.png differ diff --git a/games/pokemon-sun/boxart.png b/games/pokemon-sun/boxart.png new file mode 100644 index 0000000..dd4bb88 Binary files /dev/null and b/games/pokemon-sun/boxart.png differ diff --git a/games/pokemon-sun/game.dat b/games/pokemon-sun/game.dat new file mode 100644 index 0000000..6301fe0 --- /dev/null +++ b/games/pokemon-sun/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Sun" +description = "Pokémon Sun is a role-playing video game developed by Game Freak and published by Nintendo for the Nintendo 3DS. It is the first installment in the seventh generation of Pokémon games." +github_issues = [2190, 3703] +needs_system_files = false +needs_shared_font = false +wiki_override = "pokemon-sun-moon" + +[[ releases ]] +title = "0004000000164800" +region = "all" +release_date = "2016-11-18" diff --git a/games/pokemon-sun/icon.png b/games/pokemon-sun/icon.png new file mode 100644 index 0000000..0fff739 Binary files /dev/null and b/games/pokemon-sun/icon.png differ diff --git a/games/pokemon-sun/screenshots/1.png b/games/pokemon-sun/screenshots/1.png new file mode 100644 index 0000000..51ec169 Binary files /dev/null and b/games/pokemon-sun/screenshots/1.png differ diff --git a/games/pokemon-sun/screenshots/2.png b/games/pokemon-sun/screenshots/2.png new file mode 100644 index 0000000..c019d72 Binary files /dev/null and b/games/pokemon-sun/screenshots/2.png differ diff --git a/games/pokemon-sun/screenshots/3.png b/games/pokemon-sun/screenshots/3.png new file mode 100644 index 0000000..5ef94a1 Binary files /dev/null and b/games/pokemon-sun/screenshots/3.png differ diff --git a/games/pokemon-super-mystery-dungeon/boxart.png b/games/pokemon-super-mystery-dungeon/boxart.png new file mode 100644 index 0000000..1a3bc13 Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/boxart.png differ diff --git a/games/pokemon-super-mystery-dungeon/game.dat b/games/pokemon-super-mystery-dungeon/game.dat new file mode 100644 index 0000000..28d5913 --- /dev/null +++ b/games/pokemon-super-mystery-dungeon/game.dat @@ -0,0 +1,40 @@ +title = "Pokémon Super Mystery Dungeon" +description = "Pokémon Super Mystery Dungeon is a roguelike video game in the Pokémon Mystery Dungeon series developed by Spike Chunsoft and published by The Pokémon Company for the Nintendo 3DS handheld game console. Like its predecessors, players control a human who has awoken as a Pokémon in a world filled entirely by the series' eponymous creatures, and must travel through random-generated dungeons completing missions and battling enemies to unravel the story." +github_issues = [2118] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000174600" +region = "usa" +release_date = "2016-02-20" + +[[ releases ]] +title = "0004000000174400" +region = "eur" +release_date = "2016-02-19" + +[[ releases ]] +title = "0004000000149B00" +region = "jpn" +release_date = "2015-09-17" + +[[ testcases ]] +title = "0004000000174400" +compatibility = "2" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "selby" +cpu = "Intel i5 6600k" +gpu = "MSI GTX 1070" +os = "Windows 10 10.0.14393" + +[[ testcases ]] +title = "0004000000174600" +compatibility = "1" +date = "2017-07-23" +version = "HEAD-081304e" +author = "Breadfish64" +cpu = "Intel Core i7-4700mq" +gpu = "Nvidia Geforce GT 740m" +os = "Windows 10 Home 1703" diff --git a/games/pokemon-super-mystery-dungeon/icon.png b/games/pokemon-super-mystery-dungeon/icon.png new file mode 100644 index 0000000..4e0de26 Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/icon.png differ diff --git a/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-37-32.png b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-37-32.png new file mode 100644 index 0000000..1aecc58 Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-37-32.png differ diff --git a/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-43-17.png b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-43-17.png new file mode 100644 index 0000000..6de8f95 Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-43-17.png differ diff --git a/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-47-51.png b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-47-51.png new file mode 100644 index 0000000..b097cec Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-47-51.png differ diff --git a/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-48-42.png b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-48-42.png new file mode 100644 index 0000000..bcb3b3a Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/screenshots/citra_qt-05-06-2017_10-48-42.png differ diff --git a/games/pokemon-super-mystery-dungeon/screenshots/dungeon-interior.png b/games/pokemon-super-mystery-dungeon/screenshots/dungeon-interior.png new file mode 100644 index 0000000..036ab5e Binary files /dev/null and b/games/pokemon-super-mystery-dungeon/screenshots/dungeon-interior.png differ diff --git a/games/pokemon-ultra-moon/boxart.png b/games/pokemon-ultra-moon/boxart.png new file mode 100644 index 0000000..01cf2b9 Binary files /dev/null and b/games/pokemon-ultra-moon/boxart.png differ diff --git a/games/pokemon-ultra-moon/game.dat b/games/pokemon-ultra-moon/game.dat new file mode 100644 index 0000000..96dc057 --- /dev/null +++ b/games/pokemon-ultra-moon/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Ultra Moon" +description = "Pokémon Ultra Moon is a role-playing video game developed by Game Freak, published by The Pokémon Company, and distributed by Nintendo for the Nintendo 3DS. Announced in June 2017, the title is an enhanced version of Pokémon Moon with a modified storyline, similar to previous enhanced versions like Platinum, Emerald and Yellow. The game is the second installment in the seventh generation of the main series and the last planned installment of the main series Pokémon games for Nintendo 3DS." +github_issues = [2190, 3128, 3133, 3703] +needs_system_files = true +needs_shared_font = false +wiki_override = "pokemon-ultra-sun-ultra-moon" + +[[ releases ]] +title = "00040000001B5100" +region = "all" +release_date = "2017-11-17" diff --git a/games/pokemon-ultra-moon/icon.png b/games/pokemon-ultra-moon/icon.png new file mode 100644 index 0000000..69cfa9f Binary files /dev/null and b/games/pokemon-ultra-moon/icon.png differ diff --git a/games/pokemon-ultra-moon/screenshots/1.png b/games/pokemon-ultra-moon/screenshots/1.png new file mode 100644 index 0000000..6e2ec2a Binary files /dev/null and b/games/pokemon-ultra-moon/screenshots/1.png differ diff --git a/games/pokemon-ultra-moon/screenshots/2.png b/games/pokemon-ultra-moon/screenshots/2.png new file mode 100644 index 0000000..2e063ea Binary files /dev/null and b/games/pokemon-ultra-moon/screenshots/2.png differ diff --git a/games/pokemon-ultra-moon/screenshots/3.png b/games/pokemon-ultra-moon/screenshots/3.png new file mode 100644 index 0000000..188314c Binary files /dev/null and b/games/pokemon-ultra-moon/screenshots/3.png differ diff --git a/games/pokemon-ultra-sun/boxart.png b/games/pokemon-ultra-sun/boxart.png new file mode 100644 index 0000000..7a46879 Binary files /dev/null and b/games/pokemon-ultra-sun/boxart.png differ diff --git a/games/pokemon-ultra-sun/game.dat b/games/pokemon-ultra-sun/game.dat new file mode 100644 index 0000000..90bee1e --- /dev/null +++ b/games/pokemon-ultra-sun/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Ultra Sun" +description = "Pokémon Ultra Sun is a role-playing video game developed by Game Freak, published by The Pokémon Company, and distributed by Nintendo for the Nintendo 3DS. Announced in June 2017, the title is an enhanced version of Pokémon Sun with a modified storyline, similar to previous enhanced versions like Platinum, Emerald and Yellow. The game is the second installment in the seventh generation of the main series and the last planned installment of the main series Pokémon games for Nintendo 3DS." +github_issues = [2190, 3128, 3133, 3703] +needs_system_files = true +needs_shared_font = false +wiki_override = "pokemon-ultra-sun-ultra-moon" + +[[ releases ]] +title = "00040000001B5000" +region = "all" +release_date = "2017-11-17" diff --git a/games/pokemon-ultra-sun/icon.png b/games/pokemon-ultra-sun/icon.png new file mode 100644 index 0000000..f2d315a Binary files /dev/null and b/games/pokemon-ultra-sun/icon.png differ diff --git a/games/pokemon-ultra-sun/screenshots/1.png b/games/pokemon-ultra-sun/screenshots/1.png new file mode 100644 index 0000000..6e2ec2a Binary files /dev/null and b/games/pokemon-ultra-sun/screenshots/1.png differ diff --git a/games/pokemon-ultra-sun/screenshots/2.png b/games/pokemon-ultra-sun/screenshots/2.png new file mode 100644 index 0000000..2e063ea Binary files /dev/null and b/games/pokemon-ultra-sun/screenshots/2.png differ diff --git a/games/pokemon-ultra-sun/screenshots/3.png b/games/pokemon-ultra-sun/screenshots/3.png new file mode 100644 index 0000000..188314c Binary files /dev/null and b/games/pokemon-ultra-sun/screenshots/3.png differ diff --git a/games/pokemon-x/boxart.png b/games/pokemon-x/boxart.png new file mode 100644 index 0000000..79eea0c Binary files /dev/null and b/games/pokemon-x/boxart.png differ diff --git a/games/pokemon-x/game.dat b/games/pokemon-x/game.dat new file mode 100644 index 0000000..06039bf --- /dev/null +++ b/games/pokemon-x/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon X" +description = "Pokémon X is a role-playing video game developed by Game Freak and published by Nintendo for the Nintendo 3DS. It is the first installment in the sixth generation of the Pokémon series of role-playing games." +github_issues = [2263, 2551, 2262, 2133, 2084, 3703] +needs_system_files = true +needs_shared_font = true +wiki_override = "pokemon-x-y" + +[[ releases ]] +title = "0004000000055D00" +region = "all" +release_date = "2013-10-12" diff --git a/games/pokemon-x/icon.png b/games/pokemon-x/icon.png new file mode 100644 index 0000000..e869cf5 Binary files /dev/null and b/games/pokemon-x/icon.png differ diff --git a/games/pokemon-x/screenshots/intro-1.png b/games/pokemon-x/screenshots/intro-1.png new file mode 100644 index 0000000..c5820fa Binary files /dev/null and b/games/pokemon-x/screenshots/intro-1.png differ diff --git a/games/pokemon-x/screenshots/intro-2.png b/games/pokemon-x/screenshots/intro-2.png new file mode 100644 index 0000000..cea70f5 Binary files /dev/null and b/games/pokemon-x/screenshots/intro-2.png differ diff --git a/games/pokemon-x/screenshots/title-screen.png b/games/pokemon-x/screenshots/title-screen.png new file mode 100644 index 0000000..5c6b2d4 Binary files /dev/null and b/games/pokemon-x/screenshots/title-screen.png differ diff --git a/games/pokemon-y/boxart.png b/games/pokemon-y/boxart.png new file mode 100644 index 0000000..7d0327f Binary files /dev/null and b/games/pokemon-y/boxart.png differ diff --git a/games/pokemon-y/game.dat b/games/pokemon-y/game.dat new file mode 100644 index 0000000..639d33c --- /dev/null +++ b/games/pokemon-y/game.dat @@ -0,0 +1,11 @@ +title = "Pokémon Y" +description = "Pokémon Y is a role-playing video game developed by Game Freak and published by Nintendo for the Nintendo 3DS. It is the first installment in the sixth generation of the Pokémon series of role-playing games." +github_issues = [2263, 2551, 2262, 2133, 2084, 3703] +needs_system_files = true +needs_shared_font = true +wiki_override = "pokemon-x-y" + +[[ releases ]] +title = "0004000000055E00" +region = "all" +release_date = "2013-10-12" diff --git a/games/pokemon-y/icon.png b/games/pokemon-y/icon.png new file mode 100644 index 0000000..d89595b Binary files /dev/null and b/games/pokemon-y/icon.png differ diff --git a/games/pokemon-y/screenshots/intro-1.png b/games/pokemon-y/screenshots/intro-1.png new file mode 100644 index 0000000..c5820fa Binary files /dev/null and b/games/pokemon-y/screenshots/intro-1.png differ diff --git a/games/pokemon-y/screenshots/intro-2.png b/games/pokemon-y/screenshots/intro-2.png new file mode 100644 index 0000000..cea70f5 Binary files /dev/null and b/games/pokemon-y/screenshots/intro-2.png differ diff --git a/games/pokemon-y/screenshots/title-screen.png b/games/pokemon-y/screenshots/title-screen.png new file mode 100644 index 0000000..66aaa96 Binary files /dev/null and b/games/pokemon-y/screenshots/title-screen.png differ diff --git a/games/pokemon-yellow-version-english-version/boxart.png b/games/pokemon-yellow-version-english-version/boxart.png new file mode 100644 index 0000000..0c8da76 Binary files /dev/null and b/games/pokemon-yellow-version-english-version/boxart.png differ diff --git a/games/pokemon-yellow-version-english-version/game.dat b/games/pokemon-yellow-version-english-version/game.dat new file mode 100644 index 0000000..f12e235 --- /dev/null +++ b/games/pokemon-yellow-version-english-version/game.dat @@ -0,0 +1,26 @@ +title = "Pokémon Yellow" +description = "Pokémon Yellow is an enhanced version of the Game Boy games Pokémon Red and Blue. Like its predecessors, it is a third-person, overhead perspective and consists of three basic screens: an overworld, in which the player navigates the main character; a side-view battle screen; and a menu interface, in which the player configures his or her Pokémon, items, or gameplay settings. The player can use his or her Pokémon to battle other Pokémon." +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "gb" + +[[releases]] +title = "0004000000171200" +region = "usa" +release_date = "2016-02-17" + +[[releases]] +title = "000400000B000200" +region = "eur" +release_date = "2016-02-17" + +[[testcases]] +title = "0004000000171200" +compatibility = "1" +date = "2017-11-22" +version = "HEAD-b7cf793" +cpu = "AMD Ryzen 5 1600" +gpu = "Nvidia GeForce GTX 1060" +os = "Windows 10 16299" +author = "Distantworld101" diff --git a/games/pokemon-yellow-version-english-version/icon.png b/games/pokemon-yellow-version-english-version/icon.png new file mode 100644 index 0000000..d662a3e Binary files /dev/null and b/games/pokemon-yellow-version-english-version/icon.png differ diff --git a/games/pokemon-yellow-version-english-version/screenshots/Battle.png b/games/pokemon-yellow-version-english-version/screenshots/Battle.png new file mode 100644 index 0000000..7454cde Binary files /dev/null and b/games/pokemon-yellow-version-english-version/screenshots/Battle.png differ diff --git a/games/pokemon-yellow-version-english-version/screenshots/BattleStart.png b/games/pokemon-yellow-version-english-version/screenshots/BattleStart.png new file mode 100644 index 0000000..563f876 Binary files /dev/null and b/games/pokemon-yellow-version-english-version/screenshots/BattleStart.png differ diff --git a/games/pokemon-yellow-version-english-version/screenshots/PikachuBattle.png b/games/pokemon-yellow-version-english-version/screenshots/PikachuBattle.png new file mode 100644 index 0000000..76beef9 Binary files /dev/null and b/games/pokemon-yellow-version-english-version/screenshots/PikachuBattle.png differ diff --git a/games/pokemon-yellow-version-english-version/screenshots/PikachuTalk.png b/games/pokemon-yellow-version-english-version/screenshots/PikachuTalk.png new file mode 100644 index 0000000..2f23494 Binary files /dev/null and b/games/pokemon-yellow-version-english-version/screenshots/PikachuTalk.png differ diff --git a/games/pokemon-yellow-version-english-version/screenshots/StartScreen.png b/games/pokemon-yellow-version-english-version/screenshots/StartScreen.png new file mode 100644 index 0000000..a76d5b9 Binary files /dev/null and b/games/pokemon-yellow-version-english-version/screenshots/StartScreen.png differ diff --git a/games/poochy-and-yoshis-woolly-world/boxart.png b/games/poochy-and-yoshis-woolly-world/boxart.png new file mode 100644 index 0000000..2325b60 Binary files /dev/null and b/games/poochy-and-yoshis-woolly-world/boxart.png differ diff --git a/games/poochy-and-yoshis-woolly-world/game.dat b/games/poochy-and-yoshis-woolly-world/game.dat new file mode 100644 index 0000000..50fec4a --- /dev/null +++ b/games/poochy-and-yoshis-woolly-world/game.dat @@ -0,0 +1,20 @@ +title = "Poochy & Yoshi's Woolly World" +description = "Poochy & Yoshi's Woolly World is a platforming game for Nintendo 3DS. It is the second port of the series of platform games starring Yoshi, being a port of Yoshi's Woolly World, which was released for the Wii U in 2015. The game includes the entirety of the original game's levels, along with some bonus features." +github_issues = [3055, 3321] +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "00040000001A4100" +region = "usa" +release_date = "2017-02-03" + +[[ releases ]] +title = "00040000001A4200" +region = "eur" +release_date = "2017-02-03" + +[[ releases ]] +title = "00040000001A3200" +region = "jpn" +release_date = "2017-01-19" diff --git a/games/poochy-and-yoshis-woolly-world/icon.png b/games/poochy-and-yoshis-woolly-world/icon.png new file mode 100644 index 0000000..547e349 Binary files /dev/null and b/games/poochy-and-yoshis-woolly-world/icon.png differ diff --git a/games/poochy-and-yoshis-woolly-world/screenshots/Gameplay.png b/games/poochy-and-yoshis-woolly-world/screenshots/Gameplay.png new file mode 100644 index 0000000..0a82dce Binary files /dev/null and b/games/poochy-and-yoshis-woolly-world/screenshots/Gameplay.png differ diff --git a/games/poochy-and-yoshis-woolly-world/screenshots/Title.png b/games/poochy-and-yoshis-woolly-world/screenshots/Title.png new file mode 100644 index 0000000..99f57d1 Binary files /dev/null and b/games/poochy-and-yoshis-woolly-world/screenshots/Title.png differ diff --git a/games/poochy-and-yoshis-woolly-world/screenshots/citra-qt_2017-12-22_17-00-45.png b/games/poochy-and-yoshis-woolly-world/screenshots/citra-qt_2017-12-22_17-00-45.png new file mode 100644 index 0000000..0102e53 Binary files /dev/null and b/games/poochy-and-yoshis-woolly-world/screenshots/citra-qt_2017-12-22_17-00-45.png differ diff --git a/games/professor-layton-and-the-azran-legacy/boxart.png b/games/professor-layton-and-the-azran-legacy/boxart.png new file mode 100644 index 0000000..7095b91 Binary files /dev/null and b/games/professor-layton-and-the-azran-legacy/boxart.png differ diff --git a/games/professor-layton-and-the-azran-legacy/game.dat b/games/professor-layton-and-the-azran-legacy/game.dat new file mode 100644 index 0000000..93919b8 --- /dev/null +++ b/games/professor-layton-and-the-azran-legacy/game.dat @@ -0,0 +1,25 @@ +title = "Professor Layton and the Azran Legacy" +description = "Professor Layton and the Azran Legacy is a puzzle game developed by Level-5 for the Nintendo 3DS. It is the sixth entry in the Professor Layton series, making up the third and final part of the prequel trilogy of games. The game was published by Level-5 in Japan and Nintendo everywhere else." +github_issues = [2160] +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000000F3000" +region = "eur" +release_date = "2013-11-08" + +[[releases]] +title = "00040000000F3100" +region = "eur" +release_date = "2013-11-08" + +[[releases]] +title = "00040000000F2F00" +region = "usa" +release_date = "2014-02-28" + +[[releases]] +title = "00040000000C0200" +region = "jpn" +release_date = "2013-02-28" diff --git a/games/professor-layton-and-the-azran-legacy/icon.png b/games/professor-layton-and-the-azran-legacy/icon.png new file mode 100644 index 0000000..42b424c Binary files /dev/null and b/games/professor-layton-and-the-azran-legacy/icon.png differ diff --git a/games/professor-layton-and-the-azran-legacy/screenshots/first-puzzle.png b/games/professor-layton-and-the-azran-legacy/screenshots/first-puzzle.png new file mode 100644 index 0000000..4dd6749 Binary files /dev/null and b/games/professor-layton-and-the-azran-legacy/screenshots/first-puzzle.png differ diff --git a/games/professor-layton-and-the-azran-legacy/screenshots/title-screen.png b/games/professor-layton-and-the-azran-legacy/screenshots/title-screen.png new file mode 100644 index 0000000..318150a Binary files /dev/null and b/games/professor-layton-and-the-azran-legacy/screenshots/title-screen.png differ diff --git a/games/professor-layton-and-the-azran-legacy/screenshots/town.png b/games/professor-layton-and-the-azran-legacy/screenshots/town.png new file mode 100644 index 0000000..a078909 Binary files /dev/null and b/games/professor-layton-and-the-azran-legacy/screenshots/town.png differ diff --git a/games/professor-layton-and-the-miracle-mask/boxart.png b/games/professor-layton-and-the-miracle-mask/boxart.png new file mode 100644 index 0000000..f7c776d Binary files /dev/null and b/games/professor-layton-and-the-miracle-mask/boxart.png differ diff --git a/games/professor-layton-and-the-miracle-mask/game.dat b/games/professor-layton-and-the-miracle-mask/game.dat new file mode 100644 index 0000000..a618b48 --- /dev/null +++ b/games/professor-layton-and-the-miracle-mask/game.dat @@ -0,0 +1,29 @@ +title = "Professor Layton and the Miracle Mask" +description = "Professor Layton and the Miracle Mask is a puzzle adventure video game developed by Level-5. It is the fifth game in the Professor Layton series, the second in the prequel trilogy of games, and the first in the series to be developed for the Nintendo 3DS. Professor Layton and the Miracle Mask Plus, an enhanced edition featuring new puzzles and added cutscenes, was released on the Nintendo eShop in Japan." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000A8500" +region = "usa" +release_date = "2012-10-28" + +[[releases]] +title = "00040000000A8600" +region = "eur" +release_date = "2012-10-26" + +[[releases]] +title = "00040000000A8700" +region = "eur" +release_date = "2012-10-26" + +[[releases]] +title = "0004000000031F00" +region = "jpn" +release_date = "2011-02-26" + +[[releases]] +title = "00040000000C9200" +region = "jpn" +release_date = "2013-02-06" diff --git a/games/professor-layton-and-the-miracle-mask/icon.png b/games/professor-layton-and-the-miracle-mask/icon.png new file mode 100644 index 0000000..bfe8331 Binary files /dev/null and b/games/professor-layton-and-the-miracle-mask/icon.png differ diff --git a/games/professor-layton-and-the-miracle-mask/screenshots/plmm1.png b/games/professor-layton-and-the-miracle-mask/screenshots/plmm1.png new file mode 100644 index 0000000..55b9b3e Binary files /dev/null and b/games/professor-layton-and-the-miracle-mask/screenshots/plmm1.png differ diff --git a/games/professor-layton-and-the-miracle-mask/screenshots/plmm2.png b/games/professor-layton-and-the-miracle-mask/screenshots/plmm2.png new file mode 100644 index 0000000..b4b4ce2 Binary files /dev/null and b/games/professor-layton-and-the-miracle-mask/screenshots/plmm2.png differ diff --git a/games/professor-layton-and-the-miracle-mask/screenshots/plmm3.png b/games/professor-layton-and-the-miracle-mask/screenshots/plmm3.png new file mode 100644 index 0000000..6eb6321 Binary files /dev/null and b/games/professor-layton-and-the-miracle-mask/screenshots/plmm3.png differ diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/boxart.png b/games/professor-layton-vs-phoenix-wright-ace-attorney/boxart.png new file mode 100644 index 0000000..b61da00 Binary files /dev/null and b/games/professor-layton-vs-phoenix-wright-ace-attorney/boxart.png differ diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/game.dat b/games/professor-layton-vs-phoenix-wright-ace-attorney/game.dat new file mode 100644 index 0000000..0dd2793 --- /dev/null +++ b/games/professor-layton-vs-phoenix-wright-ace-attorney/game.dat @@ -0,0 +1,34 @@ +title = "Professor Layton vs. Phoenix Wright: Ace Attorney" +description = "Professor Layton vs. Phoenix Wright: Ace Attorney is a visual novel adventure puzzle video game for the Nintendo 3DS, and was developed by both Level-5 and Capcom. The game is a crossover between two games series from both developers, combining the puzzle and exploration elements of Level-5's Professor Layton series, and the general trial mechanics of Capcom's Ace Attorney adventure series, the latter enhanced by the addition of a few new elements. The game follows Professor Layton, Luke Triton, Phoenix Wright and Maya Fey as they attempt to solve the mystery of Labyrinthia." +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "0004000000100700" +region = "usa" +release_date = "2014-08-29" + +[[ releases ]] +title = "0004000000100600" +region = "eur" +release_date = "2014-03-28" + +[[ releases ]] +title = "0004000000100500" +region = "eur" +release_date = "2014-03-28" + +[[ releases ]] +title = "0004000000078B00" +region = "jpn" +release_date = "2012-11-29" + +[[ testcases ]] +title = "0004000000100700" +compatibility = "2" +date = "2017-06-11" +version = "HEAD-9a8a90b" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/icon.png b/games/professor-layton-vs-phoenix-wright-ace-attorney/icon.png new file mode 100644 index 0000000..686a7bd Binary files /dev/null and b/games/professor-layton-vs-phoenix-wright-ace-attorney/icon.png differ diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/1.png b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/1.png new file mode 100644 index 0000000..1c1967c Binary files /dev/null and b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/1.png differ diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/2.png b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/2.png new file mode 100644 index 0000000..c455e4f Binary files /dev/null and b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/2.png differ diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/3.png b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/3.png new file mode 100644 index 0000000..33753a0 Binary files /dev/null and b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/3.png differ diff --git a/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/4.png b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/4.png new file mode 100644 index 0000000..b5c2357 Binary files /dev/null and b/games/professor-layton-vs-phoenix-wright-ace-attorney/screenshots/4.png differ diff --git a/games/project-x-zone-2-update-ver-12/boxart.png b/games/project-x-zone-2-update-ver-12/boxart.png new file mode 100644 index 0000000..70de748 Binary files /dev/null and b/games/project-x-zone-2-update-ver-12/boxart.png differ diff --git a/games/project-x-zone-2-update-ver-12/game.dat b/games/project-x-zone-2-update-ver-12/game.dat new file mode 100644 index 0000000..4446bbb --- /dev/null +++ b/games/project-x-zone-2-update-ver-12/game.dat @@ -0,0 +1,24 @@ +title = "Project X Zone 2" +description = "Project X Zone 2 is a crossover tactical role-playing game for the Nintendo 3DS developed by Monolith Soft and published by Bandai Namco Entertainment." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000160C00" +region = "usa" +release_date = "2016-02-16" + +[[releases]] +title = "0004000000162000" +region = "eur" +release_date = "2016-02-16" + +[[releases]] +title = "000400000014FB00" +region = "jpn" +release_date = "2015-11-12" + +[[releases]] +title = "000400000014FC00" +region = "jpn" +release_date = "2015-11-12" diff --git a/games/project-x-zone-2-update-ver-12/icon.png b/games/project-x-zone-2-update-ver-12/icon.png new file mode 100644 index 0000000..ccae37a Binary files /dev/null and b/games/project-x-zone-2-update-ver-12/icon.png differ diff --git a/games/project-x-zone-2-update-ver-12/screenshots/battle.png b/games/project-x-zone-2-update-ver-12/screenshots/battle.png new file mode 100644 index 0000000..6c3a4fe Binary files /dev/null and b/games/project-x-zone-2-update-ver-12/screenshots/battle.png differ diff --git a/games/project-x-zone-2-update-ver-12/screenshots/in-battle.png b/games/project-x-zone-2-update-ver-12/screenshots/in-battle.png new file mode 100644 index 0000000..db1a8bc Binary files /dev/null and b/games/project-x-zone-2-update-ver-12/screenshots/in-battle.png differ diff --git a/games/project-x-zone-2-update-ver-12/screenshots/in-field.png b/games/project-x-zone-2-update-ver-12/screenshots/in-field.png new file mode 100644 index 0000000..eb2b7b0 Binary files /dev/null and b/games/project-x-zone-2-update-ver-12/screenshots/in-field.png differ diff --git a/games/project-x-zone-2-update-ver-12/screenshots/intro.png b/games/project-x-zone-2-update-ver-12/screenshots/intro.png new file mode 100644 index 0000000..a89e9e2 Binary files /dev/null and b/games/project-x-zone-2-update-ver-12/screenshots/intro.png differ diff --git a/games/project-x-zone/boxart.png b/games/project-x-zone/boxart.png new file mode 100644 index 0000000..0b2968b Binary files /dev/null and b/games/project-x-zone/boxart.png differ diff --git a/games/project-x-zone/game.dat b/games/project-x-zone/game.dat new file mode 100644 index 0000000..b00a0fe --- /dev/null +++ b/games/project-x-zone/game.dat @@ -0,0 +1,30 @@ +title = "Project X Zone" +description = "Project X Zone is a Tactical RPG co-developed by Banpresto and Monolith Soft and published by Bandai Namco Entertainment." +github_issues = [1988] +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "00040000000C6400" +region = "usa" +release_date = "2013-06-25" + +[[ releases ]] +title = "00040000000DD700" +region = "eur" +release_date = "2013-07-05" + +[[ releases ]] +title = "0004000000073900" +region = "jpn" +release_date = "2012-10-11" + +[[ testcases ]] +title = "00040000000DD700" +compatibility = "1" +date = "2017-07-09" +version = "HEAD-c017065" +author = "jdenm8" +cpu = "Intel Core i5-2500K" +gpu = "Radeon R9 380" +os = "Windows 10 14393" diff --git a/games/project-x-zone/icon.png b/games/project-x-zone/icon.png new file mode 100644 index 0000000..12e5535 Binary files /dev/null and b/games/project-x-zone/icon.png differ diff --git a/games/project-x-zone/screenshots/Battle.png b/games/project-x-zone/screenshots/Battle.png new file mode 100644 index 0000000..972b756 Binary files /dev/null and b/games/project-x-zone/screenshots/Battle.png differ diff --git a/games/project-x-zone/screenshots/Cutscene.png b/games/project-x-zone/screenshots/Cutscene.png new file mode 100644 index 0000000..10a02f3 Binary files /dev/null and b/games/project-x-zone/screenshots/Cutscene.png differ diff --git a/games/project-x-zone/screenshots/Intermission.png b/games/project-x-zone/screenshots/Intermission.png new file mode 100644 index 0000000..aa2a693 Binary files /dev/null and b/games/project-x-zone/screenshots/Intermission.png differ diff --git a/games/project-x-zone/screenshots/Main-Menu.png b/games/project-x-zone/screenshots/Main-Menu.png new file mode 100644 index 0000000..1b3bae3 Binary files /dev/null and b/games/project-x-zone/screenshots/Main-Menu.png differ diff --git a/games/project-x-zone/screenshots/Stage-Map.png b/games/project-x-zone/screenshots/Stage-Map.png new file mode 100644 index 0000000..503a364 Binary files /dev/null and b/games/project-x-zone/screenshots/Stage-Map.png differ diff --git a/games/puyo-puyo-chronicle/boxart.png b/games/puyo-puyo-chronicle/boxart.png new file mode 100644 index 0000000..fde403e Binary files /dev/null and b/games/puyo-puyo-chronicle/boxart.png differ diff --git a/games/puyo-puyo-chronicle/game.dat b/games/puyo-puyo-chronicle/game.dat new file mode 100644 index 0000000..080d432 --- /dev/null +++ b/games/puyo-puyo-chronicle/game.dat @@ -0,0 +1,20 @@ +title = "Puyo Puyo Chronicles" +description = "Puyo Puyo Chronicles is a game for the Nintendo 3DS as part of a celebration of Puyo Puyo's 25th Anniversary. Barring spinoffs, this is first Puyo game to be presented with 3D characters as opposed to 2D portraits." +github_issues = [2398] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "0004000000197500" +region = "jpn" +release_date = "2016-12-08" + +[[ testcases ]] +title = "0004000000197500" +compatibility = "5" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/puyo-puyo-chronicle/icon.png b/games/puyo-puyo-chronicle/icon.png new file mode 100644 index 0000000..77816f4 Binary files /dev/null and b/games/puyo-puyo-chronicle/icon.png differ diff --git a/games/puyo-puyo-tetris/boxart.png b/games/puyo-puyo-tetris/boxart.png new file mode 100644 index 0000000..2d90a21 Binary files /dev/null and b/games/puyo-puyo-tetris/boxart.png differ diff --git a/games/puyo-puyo-tetris/game.dat b/games/puyo-puyo-tetris/game.dat new file mode 100644 index 0000000..b910960 --- /dev/null +++ b/games/puyo-puyo-tetris/game.dat @@ -0,0 +1,21 @@ +title = "Puyo Puyo Tetris" +description = "Puyo Puyo Tetris is a puzzle video game developed by Sonic Team and published by Sega. The game is a crossover between the Puyo Puyo series and the Tetris franchise, and features various gameplay modes incorporating both aspects. The game includes characters modeled after the seven Tetrominos, which are different puzzle pieces each made of four blocks." +incomplete = true +needs_system_files = false +needs_shared_font = true +game_type = "3ds" + +[[ releases ]] +title = "0004000000101200" +region = "jpn" +release_date = "2014-02-06" + +[[ testcases ]] +title = "0004000000101200" +compatibility = "1" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/puyo-puyo-tetris/icon.png b/games/puyo-puyo-tetris/icon.png new file mode 100644 index 0000000..4e71c5a Binary files /dev/null and b/games/puyo-puyo-tetris/icon.png differ diff --git a/games/puzzle-dragons-x-kami-no-shou/boxart.png b/games/puzzle-dragons-x-kami-no-shou/boxart.png new file mode 100644 index 0000000..05bc2b1 Binary files /dev/null and b/games/puzzle-dragons-x-kami-no-shou/boxart.png differ diff --git a/games/puzzle-dragons-x-kami-no-shou/game.dat b/games/puzzle-dragons-x-kami-no-shou/game.dat new file mode 100644 index 0000000..16955f7 --- /dev/null +++ b/games/puzzle-dragons-x-kami-no-shou/game.dat @@ -0,0 +1,19 @@ +title = "Puzzle & Dragons X Kami no Shou" +description = "Puzzle & Dragons X (パズドラクロス, Pazudora Kurosu) is a spinoff of the mobile game Puzzle & Dragons for the Nintendo 3DS by GungHo Online Entertainment." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000182F00" +region = "jpn" +release_date = "2016-07-28" + +[[testcases]] +title = "0004000000182F00" +compatibility = "4" +date = "2017-07-29" +version = "HEAD-fc43e02" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 8.1 9600" +author = "ansonamy33" diff --git a/games/puzzle-dragons-x-kami-no-shou/icon.png b/games/puzzle-dragons-x-kami-no-shou/icon.png new file mode 100644 index 0000000..ea4e105 Binary files /dev/null and b/games/puzzle-dragons-x-kami-no-shou/icon.png differ diff --git a/games/puzzle-dragons-x-kami-no-shou/screenshots/menu.png b/games/puzzle-dragons-x-kami-no-shou/screenshots/menu.png new file mode 100644 index 0000000..b7a30af Binary files /dev/null and b/games/puzzle-dragons-x-kami-no-shou/screenshots/menu.png differ diff --git a/games/radiant-historia-perfect-chronology/boxart.png b/games/radiant-historia-perfect-chronology/boxart.png new file mode 100644 index 0000000..0d509e6 Binary files /dev/null and b/games/radiant-historia-perfect-chronology/boxart.png differ diff --git a/games/radiant-historia-perfect-chronology/game.dat b/games/radiant-historia-perfect-chronology/game.dat new file mode 100644 index 0000000..69ac61f --- /dev/null +++ b/games/radiant-historia-perfect-chronology/game.dat @@ -0,0 +1,19 @@ +title = "Radiant Historia: Perfect Chronology" +description = "Radiant Historia: Perfect Chronology is a role-playing game developed and published by Atlus. It is a Nintendo 3DS port of the original Nintendo DS game with additional story content and features such as voice acting, new visuals and music." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001C8F00" +region = "usa" +release_date = "2018-02-13" + +[[releases]] +title = "00040000001CD900" +region = "eur" +release_date = "2018-02-16" + +[[releases]] +title = "00040000001A0C00" +region = "jpn" +release_date = "2017-06-29" diff --git a/games/radiant-historia-perfect-chronology/icon.png b/games/radiant-historia-perfect-chronology/icon.png new file mode 100644 index 0000000..bd9480b Binary files /dev/null and b/games/radiant-historia-perfect-chronology/icon.png differ diff --git a/games/radiant-historia-perfect-chronology/screenshots/combat.png b/games/radiant-historia-perfect-chronology/screenshots/combat.png new file mode 100644 index 0000000..033dac5 Binary files /dev/null and b/games/radiant-historia-perfect-chronology/screenshots/combat.png differ diff --git a/games/radiant-historia-perfect-chronology/screenshots/dialogue-overworld.png b/games/radiant-historia-perfect-chronology/screenshots/dialogue-overworld.png new file mode 100644 index 0000000..02ab827 Binary files /dev/null and b/games/radiant-historia-perfect-chronology/screenshots/dialogue-overworld.png differ diff --git a/games/radiant-historia-perfect-chronology/screenshots/title-screen.png b/games/radiant-historia-perfect-chronology/screenshots/title-screen.png new file mode 100644 index 0000000..3103f30 Binary files /dev/null and b/games/radiant-historia-perfect-chronology/screenshots/title-screen.png differ diff --git a/games/rayman-3d/boxart.png b/games/rayman-3d/boxart.png new file mode 100644 index 0000000..d34052d Binary files /dev/null and b/games/rayman-3d/boxart.png differ diff --git a/games/rayman-3d/game.dat b/games/rayman-3d/game.dat new file mode 100644 index 0000000..88a5287 --- /dev/null +++ b/games/rayman-3d/game.dat @@ -0,0 +1,24 @@ +title = "Rayman 3D" +description = "Rayman 3D is an action-adventure video game developed and published by Ubisoft. It is a direct port of the Sega Dreamcast version of Rayman 2: The Great Escape. The game is in full 3D and has enhanced graphics and widescreen display." +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "0004000000036400" +region = "usa" +release_date = "2011-03-22" + +[[releases]] +title = "0004000000033900" +region = "eur" +release_date = "2011-03-25" + +[[testcases]] +title = "0004000000033900" +compatibility = "0" +date = "2017-11-30" +version = "HEAD-b2a9904" +cpu = "AMD FX-6300" +gpu = "Nvidia GeForce GTX 960" +os = "Windows 7 6.1.7601" +author = "greggameplayer" diff --git a/games/rayman-3d/icon.png b/games/rayman-3d/icon.png new file mode 100644 index 0000000..6aa1945 Binary files /dev/null and b/games/rayman-3d/icon.png differ diff --git a/games/rayman-3d/screenshots/Screen1.png b/games/rayman-3d/screenshots/Screen1.png new file mode 100644 index 0000000..35997e9 Binary files /dev/null and b/games/rayman-3d/screenshots/Screen1.png differ diff --git a/games/rayman-3d/screenshots/Screen2.png b/games/rayman-3d/screenshots/Screen2.png new file mode 100644 index 0000000..0f89dbd Binary files /dev/null and b/games/rayman-3d/screenshots/Screen2.png differ diff --git a/games/rayman-3d/screenshots/Screen3.png b/games/rayman-3d/screenshots/Screen3.png new file mode 100644 index 0000000..631ca0e Binary files /dev/null and b/games/rayman-3d/screenshots/Screen3.png differ diff --git a/games/regular-show-mordecai-and-rigby-in-8-bit-land/boxart.png b/games/regular-show-mordecai-and-rigby-in-8-bit-land/boxart.png new file mode 100644 index 0000000..2c14f18 Binary files /dev/null and b/games/regular-show-mordecai-and-rigby-in-8-bit-land/boxart.png differ diff --git a/games/regular-show-mordecai-and-rigby-in-8-bit-land/game.dat b/games/regular-show-mordecai-and-rigby-in-8-bit-land/game.dat new file mode 100644 index 0000000..310d946 --- /dev/null +++ b/games/regular-show-mordecai-and-rigby-in-8-bit-land/game.dat @@ -0,0 +1,14 @@ +title = "Regular Show: Mordecai and Rigby in 8-Bit Land" +description = "Regular Show: Mordecai and Rigby in 8-Bit Land is an action-adventure, space shooter, top down shooter, platform, shoot 'em up video game based on the Cartoon Network series Regular Show. It was developed by WayForward Technologies and published by D3Publisher." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000EBD00" +region = "usa" +release_date = "2013-10-29" + +[[releases]] +title = "00040000000FD000" +region = "eur" +release_date = "2013-11-08" diff --git a/games/regular-show-mordecai-and-rigby-in-8-bit-land/icon.png b/games/regular-show-mordecai-and-rigby-in-8-bit-land/icon.png new file mode 100644 index 0000000..3670b74 Binary files /dev/null and b/games/regular-show-mordecai-and-rigby-in-8-bit-land/icon.png differ diff --git a/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/title-screen.png b/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/title-screen.png new file mode 100644 index 0000000..c7f2693 Binary files /dev/null and b/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/title-screen.png differ diff --git a/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/tutorial.png b/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/tutorial.png new file mode 100644 index 0000000..9263048 Binary files /dev/null and b/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/tutorial.png differ diff --git a/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/world-select.png b/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/world-select.png new file mode 100644 index 0000000..0a6f898 Binary files /dev/null and b/games/regular-show-mordecai-and-rigby-in-8-bit-land/screenshots/world-select.png differ diff --git a/games/resident-evil-revelations/boxart.png b/games/resident-evil-revelations/boxart.png new file mode 100644 index 0000000..dae7b5d Binary files /dev/null and b/games/resident-evil-revelations/boxart.png differ diff --git a/games/resident-evil-revelations/game.dat b/games/resident-evil-revelations/game.dat new file mode 100644 index 0000000..962ab84 --- /dev/null +++ b/games/resident-evil-revelations/game.dat @@ -0,0 +1,34 @@ +title = "Resident Evil: Revelations" +description = "Resident Evil: Revelations, is a third-person shooter video game, created by Capcom, starring original series leads Chris Redfield and Jill Valentine, the game displays hallways reminiscent of the mansions of the original Resident Evil and Resident Evil 5. While most of the game takes place aboard the luxurious cruiser Queen Zenobia, players also briefly visit other settings." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000060200" +region = "usa" +release_date = "2012-02-07" + +[[ releases ]] +title = "000400000005EE00" +region = "eur" +release_date = "2012-01-27" + +[[ releases ]] +title = "0004000000053B00" +region = "jpn" +release_date = "2012-01-26" + +[[ releases ]] +title = "000400000009FF00" +region = "kor" +release_date = "2012-09-20" + +[[testcases]] +title = "000400000005EE00" +compatibility = "1" +date = "2017-10-08" +version = "HEAD-20e19a3" +cpu = "Intel Core i5-3570HQ" +gpu = "Nvidia Geforce GTX 650M" +os = "Windows 10 15063" +author = "eclenaeu" diff --git a/games/resident-evil-revelations/icon.png b/games/resident-evil-revelations/icon.png new file mode 100644 index 0000000..b617061 Binary files /dev/null and b/games/resident-evil-revelations/icon.png differ diff --git a/games/resident-evil-revelations/screenshots/act1.png b/games/resident-evil-revelations/screenshots/act1.png new file mode 100644 index 0000000..46b3487 Binary files /dev/null and b/games/resident-evil-revelations/screenshots/act1.png differ diff --git a/games/resident-evil-revelations/screenshots/act2.png b/games/resident-evil-revelations/screenshots/act2.png new file mode 100644 index 0000000..5ceab3a Binary files /dev/null and b/games/resident-evil-revelations/screenshots/act2.png differ diff --git a/games/resident-evil-revelations/screenshots/act3.png b/games/resident-evil-revelations/screenshots/act3.png new file mode 100644 index 0000000..eec8e61 Binary files /dev/null and b/games/resident-evil-revelations/screenshots/act3.png differ diff --git a/games/resident-evil-revelations/screenshots/ms.png b/games/resident-evil-revelations/screenshots/ms.png new file mode 100644 index 0000000..afc4fa5 Binary files /dev/null and b/games/resident-evil-revelations/screenshots/ms.png differ diff --git a/games/resident-evil-the-mercenaries-3d/boxart.png b/games/resident-evil-the-mercenaries-3d/boxart.png new file mode 100644 index 0000000..923ac46 Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/boxart.png differ diff --git a/games/resident-evil-the-mercenaries-3d/game.dat b/games/resident-evil-the-mercenaries-3d/game.dat new file mode 100644 index 0000000..2a9ed3e --- /dev/null +++ b/games/resident-evil-the-mercenaries-3d/game.dat @@ -0,0 +1,29 @@ +title = "Resident Evil: The Mercenaries 3D" +description = "Resident Evil: The Mercenaries 3D is a third-person shooter video game developed by Capcom for the Nintendo 3DS and the 18th installment of the Resident Evil series. A combination of the Mercenaries minigames featured in Resident Evil 4 and Resident Evil 5, players must defeat as many enemies as possible within a set time limit." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000035900" +region = "usa" +release_date = "2011-06-28" + +[[ releases ]] +title = "0004000000038B00" +region = "eur" +release_date = "2011-07-01" + +[[ releases ]] +title = "0004000000043E00" +region = "jpn" +release_date = "2011-06-02" + +[[testcases]] +title = "0004000000035900" +compatibility = "1" +date = "2017-09-28" +version = "HEAD-0d42706" +cpu = "Intel Core i5-3570HQ" +gpu = "Nvidia Geforce GTX 650M" +os = "Windows 10 15063" +author = "Eclenaeu" diff --git a/games/resident-evil-the-mercenaries-3d/icon.png b/games/resident-evil-the-mercenaries-3d/icon.png new file mode 100644 index 0000000..acce94b Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/icon.png differ diff --git a/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D1.png b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D1.png new file mode 100644 index 0000000..f680951 Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D1.png differ diff --git a/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D2.png b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D2.png new file mode 100644 index 0000000..f7a756a Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D2.png differ diff --git a/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D3.png b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D3.png new file mode 100644 index 0000000..85d060f Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D3.png differ diff --git a/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D4.png b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D4.png new file mode 100644 index 0000000..18b3685 Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D4.png differ diff --git a/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D5.png b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D5.png new file mode 100644 index 0000000..e556ff1 Binary files /dev/null and b/games/resident-evil-the-mercenaries-3d/screenshots/RE_TM3D5.png differ diff --git a/games/rhythm-heaven-megamix/boxart.png b/games/rhythm-heaven-megamix/boxart.png new file mode 100644 index 0000000..7093cf2 Binary files /dev/null and b/games/rhythm-heaven-megamix/boxart.png differ diff --git a/games/rhythm-heaven-megamix/game.dat b/games/rhythm-heaven-megamix/game.dat new file mode 100644 index 0000000..d74af78 --- /dev/null +++ b/games/rhythm-heaven-megamix/game.dat @@ -0,0 +1,32 @@ +title = "Rhythm Heaven Megamix" +description = "Rhythm Heaven Megamix, known in Europe as Rhythm Paradise Megamix, and in Japan as Rhythm Tengoku: The Best Plus, is a rhythm game developed and published by Nintendo for the Nintendo 3DS. It is the fourth game in Nintendo's Rhythm Heaven series and compiles stages from the series' previous entries; Rhythm Tengoku, Rhythm Heaven, and Rhythm Heaven Fever, as well as adding new ones." +incomplete = true +github_issues = [2543] +needs_system_files = true +needs_shared_font = true +game_type = "3ds" + +[[ releases ]] +title = "000400000018A400" +region = "usa" +release_date = "2011-09-16" + +[[ releases ]] +title = "000400000018A500" +region = "eur" +release_date = "2014-09-19" + +[[ releases ]] +title = "0004000000155A00" +region = "jpn" +release_date = "2015-06-11" + +[[ testcases ]] +title = "000400000018A400" +compatibility = "2" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/rhythm-heaven-megamix/icon.png b/games/rhythm-heaven-megamix/icon.png new file mode 100644 index 0000000..c128327 Binary files /dev/null and b/games/rhythm-heaven-megamix/icon.png differ diff --git a/games/rhythm-thief-and-the-emperors-treasure/boxart.png b/games/rhythm-thief-and-the-emperors-treasure/boxart.png new file mode 100644 index 0000000..3d782f5 Binary files /dev/null and b/games/rhythm-thief-and-the-emperors-treasure/boxart.png differ diff --git a/games/rhythm-thief-and-the-emperors-treasure/game.dat b/games/rhythm-thief-and-the-emperors-treasure/game.dat new file mode 100644 index 0000000..e75bfdb --- /dev/null +++ b/games/rhythm-thief-and-the-emperors-treasure/game.dat @@ -0,0 +1,30 @@ +title = "Rhythm Thief & the Emperor's Treasure" +description = "Rhythm Thief & the Emperor's Treasure, known in Japan as Rhythm Thief R: Emperor Napoleon's Legacy, is a rhythm–puzzle and adventure video game co-developed by Sega and Xeen for the Nintendo 3DS." +incomplete = true +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "0004000000067600" +region = "usa" +release_date = "2012-04-12" + +[[ releases ]] +title = "000400000006DA00" +region = "eur" +release_date = "2012-04-05" + +[[ releases ]] +title = "0004000000078100" +region = "jpn" +release_date = "2012-01-19" + +[[ testcases ]] +title = "0004000000067600" +compatibility = "2" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/rhythm-thief-and-the-emperors-treasure/icon.png b/games/rhythm-thief-and-the-emperors-treasure/icon.png new file mode 100644 index 0000000..b51a375 Binary files /dev/null and b/games/rhythm-thief-and-the-emperors-treasure/icon.png differ diff --git a/games/rpg-maker-fes/boxart.png b/games/rpg-maker-fes/boxart.png new file mode 100644 index 0000000..67103d3 Binary files /dev/null and b/games/rpg-maker-fes/boxart.png differ diff --git a/games/rpg-maker-fes/game.dat b/games/rpg-maker-fes/game.dat new file mode 100644 index 0000000..bb9535c --- /dev/null +++ b/games/rpg-maker-fes/game.dat @@ -0,0 +1,19 @@ +title = "RPG Maker Fes" +description = "RPG Maker Fes is a game published by Kadokawa Games that allows players to create their own role-playing video games. Users can also download games from the Internet to play as well." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001BD500" +region = "usa" +release_date = "2017-06-27" + +[[releases]] +title = "00040000001B9D00" +region = "eur" +release_date = "2017-06-23" + +[[releases]] +title = "000400000018B300" +region = "jpn" +release_date = "2016-11-24" diff --git a/games/rpg-maker-fes/icon.png b/games/rpg-maker-fes/icon.png new file mode 100644 index 0000000..20e4496 Binary files /dev/null and b/games/rpg-maker-fes/icon.png differ diff --git a/games/rpg-maker-fes/screenshots/editor.png b/games/rpg-maker-fes/screenshots/editor.png new file mode 100644 index 0000000..7a3f3c0 Binary files /dev/null and b/games/rpg-maker-fes/screenshots/editor.png differ diff --git a/games/rpg-maker-fes/screenshots/in-game.png b/games/rpg-maker-fes/screenshots/in-game.png new file mode 100644 index 0000000..fab6316 Binary files /dev/null and b/games/rpg-maker-fes/screenshots/in-game.png differ diff --git a/games/rpg-maker-fes/screenshots/title-screen.png b/games/rpg-maker-fes/screenshots/title-screen.png new file mode 100644 index 0000000..e1e8c2d Binary files /dev/null and b/games/rpg-maker-fes/screenshots/title-screen.png differ diff --git a/games/rune-factory-4/boxart.png b/games/rune-factory-4/boxart.png new file mode 100644 index 0000000..418cf75 Binary files /dev/null and b/games/rune-factory-4/boxart.png differ diff --git a/games/rune-factory-4/game.dat b/games/rune-factory-4/game.dat new file mode 100644 index 0000000..c89364d --- /dev/null +++ b/games/rune-factory-4/game.dat @@ -0,0 +1,31 @@ +title = "Rune Factory 4" +description = "Rune Factory 4 is a simulation/role-playing video game developed by Neverland Co. and published by Marvelous AQL for the Nintendo 3DS. It is the sixth game in the Rune Factory series." +github_issues = [2265] +needs_system_files = false +needs_shared_font = true +game_type = "3ds" + +[[ releases ]] +title = "00040000000D2800" +region = "usa" +release_date = "2013-10-01" + +[[ releases ]] +title = "000400000014A700" +region = "eur" +release_date = "2014-12-11" + +[[ releases ]] +title = "0004000000065800" +region = "jpn" +release_date = "2012-07-19" + +[[ testcases ]] +title = "00040000000D2800" +compatibility = "1" +date = "2017-06-28" +version = "HEAD-54ea95c" +author = "tsonayoshi" +cpu = "Intel Core i7-7700HQ" +gpu = "NVidia GeForce GTX 1050" +os = "Windows 10" diff --git a/games/rune-factory-4/icon.png b/games/rune-factory-4/icon.png new file mode 100644 index 0000000..542a50e Binary files /dev/null and b/games/rune-factory-4/icon.png differ diff --git a/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-27-52.png b/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-27-52.png new file mode 100644 index 0000000..270d88f Binary files /dev/null and b/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-27-52.png differ diff --git a/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-28-59.png b/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-28-59.png new file mode 100644 index 0000000..28e8b42 Binary files /dev/null and b/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-28-59.png differ diff --git a/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-29-48.png b/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-29-48.png new file mode 100644 index 0000000..10d61af Binary files /dev/null and b/games/rune-factory-4/screenshots/citra-qt_2017-07-01_13-29-48.png differ diff --git a/games/rune-factory-4/screenshots/citra-qt_2017-10-26_20-20-56.png b/games/rune-factory-4/screenshots/citra-qt_2017-10-26_20-20-56.png new file mode 100644 index 0000000..3618184 Binary files /dev/null and b/games/rune-factory-4/screenshots/citra-qt_2017-10-26_20-20-56.png differ diff --git a/games/rustys-real-deal-baseball/boxart.png b/games/rustys-real-deal-baseball/boxart.png new file mode 100644 index 0000000..f06d759 Binary files /dev/null and b/games/rustys-real-deal-baseball/boxart.png differ diff --git a/games/rustys-real-deal-baseball/game.dat b/games/rustys-real-deal-baseball/game.dat new file mode 100644 index 0000000..78a213d --- /dev/null +++ b/games/rustys-real-deal-baseball/game.dat @@ -0,0 +1,20 @@ +title = "Rusty's Real Deal Baseball" +description = "Rusty's Real Deal Baseball is a baseball video game developed and published by Nintendo, starring the titular Rusty Slugger and the player's Mii character. It features a collection of baseball themed minigames. Minigames are purchased and downloaded from the Nintendo eShop. Players can haggle with Rusty to decrease a game's price with donuts or discount tickets obtained from the minigames." +needs_system_files = true +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000106400" +region = "usa" +release_date = "2014-04-03" + +[[releases]] +title = "00040000000D2900" +region = "jpn" +release_date = "2013-08-08" + +[[releases]] +title = "0004000000126200" +region = "kor" +release_date = "2014-05-28" diff --git a/games/rustys-real-deal-baseball/icon.png b/games/rustys-real-deal-baseball/icon.png new file mode 100644 index 0000000..93ac0e4 Binary files /dev/null and b/games/rustys-real-deal-baseball/icon.png differ diff --git a/games/rustys-real-deal-baseball/savefiles/WorkingMii.dat b/games/rustys-real-deal-baseball/savefiles/WorkingMii.dat new file mode 100644 index 0000000..21ac5bf --- /dev/null +++ b/games/rustys-real-deal-baseball/savefiles/WorkingMii.dat @@ -0,0 +1,4 @@ +title = "Save data with working Mii face" +description = "Extracted from a actual Nintendo 3DS. Save data with a working Mii character. Can only play the demo version of Bat & Switch. Only works for USA version." +author = "solitonmedic" +title_id = "0004000000106400" diff --git a/games/rustys-real-deal-baseball/savefiles/WorkingMii.zip b/games/rustys-real-deal-baseball/savefiles/WorkingMii.zip new file mode 100644 index 0000000..1e44be7 Binary files /dev/null and b/games/rustys-real-deal-baseball/savefiles/WorkingMii.zip differ diff --git a/games/rustys-real-deal-baseball/screenshots/Gameplay.png b/games/rustys-real-deal-baseball/screenshots/Gameplay.png new file mode 100644 index 0000000..b6d2c33 Binary files /dev/null and b/games/rustys-real-deal-baseball/screenshots/Gameplay.png differ diff --git a/games/rustys-real-deal-baseball/screenshots/Mainmenu.png b/games/rustys-real-deal-baseball/screenshots/Mainmenu.png new file mode 100644 index 0000000..79cfa12 Binary files /dev/null and b/games/rustys-real-deal-baseball/screenshots/Mainmenu.png differ diff --git a/games/rustys-real-deal-baseball/screenshots/Shop.png b/games/rustys-real-deal-baseball/screenshots/Shop.png new file mode 100644 index 0000000..dc98e1f Binary files /dev/null and b/games/rustys-real-deal-baseball/screenshots/Shop.png differ diff --git a/games/sanrio-characters-picross/boxart.png b/games/sanrio-characters-picross/boxart.png new file mode 100644 index 0000000..0cd7f62 Binary files /dev/null and b/games/sanrio-characters-picross/boxart.png differ diff --git a/games/sanrio-characters-picross/game.dat b/games/sanrio-characters-picross/game.dat new file mode 100644 index 0000000..9d35fab --- /dev/null +++ b/games/sanrio-characters-picross/game.dat @@ -0,0 +1,15 @@ +title = "Sanrio Characters Picross" +description = "This is a puzzle game using Sanrio characters. Solve Picross puzzles to unveil pictures and get cute stickers to decorate your screen with! Or use them on game backgrounds! Enjoy Picross with your own background! It has been made by Jupiter and Sanrio." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000001D3400" +region = "usa" +release_date = "2018-07-19" + +[[releases]] +title = "00040000001D3100" +region = "eur" +release_date = "2018-06-28" diff --git a/games/sanrio-characters-picross/icon.png b/games/sanrio-characters-picross/icon.png new file mode 100644 index 0000000..102597c Binary files /dev/null and b/games/sanrio-characters-picross/icon.png differ diff --git a/games/sanrio-characters-picross/screenshots/Sanrio2.png b/games/sanrio-characters-picross/screenshots/Sanrio2.png new file mode 100644 index 0000000..b0d8cc9 Binary files /dev/null and b/games/sanrio-characters-picross/screenshots/Sanrio2.png differ diff --git a/games/sanrio-characters-picross/screenshots/Sanrio5.png b/games/sanrio-characters-picross/screenshots/Sanrio5.png new file mode 100644 index 0000000..2ba1157 Binary files /dev/null and b/games/sanrio-characters-picross/screenshots/Sanrio5.png differ diff --git a/games/sanrio-characters-picross/screenshots/firstpage.png b/games/sanrio-characters-picross/screenshots/firstpage.png new file mode 100644 index 0000000..53e6678 Binary files /dev/null and b/games/sanrio-characters-picross/screenshots/firstpage.png differ diff --git a/games/scribblenauts-unlimited/boxart.png b/games/scribblenauts-unlimited/boxart.png new file mode 100644 index 0000000..96f5f86 Binary files /dev/null and b/games/scribblenauts-unlimited/boxart.png differ diff --git a/games/scribblenauts-unlimited/game.dat b/games/scribblenauts-unlimited/game.dat new file mode 100644 index 0000000..22a55a8 --- /dev/null +++ b/games/scribblenauts-unlimited/game.dat @@ -0,0 +1,14 @@ +title = "Scribblenauts Unlimited" +description = "Scribblenauts Unlimited is an emergent action puzzle video game developed by 5th Cell and published by Warner Bros. Interactive Entertainment for the Nintendo 3DS. In Europe it was published by Nintendo." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000038600" +region = "usa" +release_date = "2012-11-13" + +[[releases]] +title = "00040000000A5B00" +region = "eur" +release_date = "2013-12-06" diff --git a/games/scribblenauts-unlimited/icon.png b/games/scribblenauts-unlimited/icon.png new file mode 100644 index 0000000..5e5971f Binary files /dev/null and b/games/scribblenauts-unlimited/icon.png differ diff --git a/games/scribblenauts-unlimited/screenshots/city.png b/games/scribblenauts-unlimited/screenshots/city.png new file mode 100644 index 0000000..3d1286c Binary files /dev/null and b/games/scribblenauts-unlimited/screenshots/city.png differ diff --git a/games/scribblenauts-unlimited/screenshots/title-screen.png b/games/scribblenauts-unlimited/screenshots/title-screen.png new file mode 100644 index 0000000..029228e Binary files /dev/null and b/games/scribblenauts-unlimited/screenshots/title-screen.png differ diff --git a/games/scribblenauts-unlimited/screenshots/write-an-object.png b/games/scribblenauts-unlimited/screenshots/write-an-object.png new file mode 100644 index 0000000..3939008 Binary files /dev/null and b/games/scribblenauts-unlimited/screenshots/write-an-object.png differ diff --git a/games/sega-3d-classics-collection/boxart.png b/games/sega-3d-classics-collection/boxart.png new file mode 100644 index 0000000..afd7c03 Binary files /dev/null and b/games/sega-3d-classics-collection/boxart.png differ diff --git a/games/sega-3d-classics-collection/game.dat b/games/sega-3d-classics-collection/game.dat new file mode 100644 index 0000000..bf69d58 --- /dev/null +++ b/games/sega-3d-classics-collection/game.dat @@ -0,0 +1,31 @@ +title = "SEGA 3D Classics Collection" +description = "Sega 3D Classics Collection is a video game compilation developed by M2 and published by Sega for the Nintendo 3DS. In Japan, the collection was released under the title Sega 3D Fukkoku Archives 2. It is a successor to the 2014 Japan-only video game compilation Sega 3D Fukkoku Archives." +needs_system_files = false +needs_shared_font = true +game_type = "3ds" +incomplete = true + +[[ releases ]] +title = "0004000000185E00" +region = "usa" +release_date = "2012-04-12" + +[[ releases ]] +title = "000400000019A700" +region = "eur" +release_date = "2012-04-05" + +[[ releases ]] +title = "0004000000154000" +region = "jpn" +release_date = "2012-01-19" + +[[ testcases ]] +title = "0004000000185E00" +compatibility = "4" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/sega-3d-classics-collection/icon.png b/games/sega-3d-classics-collection/icon.png new file mode 100644 index 0000000..638b815 Binary files /dev/null and b/games/sega-3d-classics-collection/icon.png differ diff --git a/games/senran-kagura-burst/boxart.png b/games/senran-kagura-burst/boxart.png new file mode 100644 index 0000000..0909f09 Binary files /dev/null and b/games/senran-kagura-burst/boxart.png differ diff --git a/games/senran-kagura-burst/game.dat b/games/senran-kagura-burst/game.dat new file mode 100644 index 0000000..1f6ae08 --- /dev/null +++ b/games/senran-kagura-burst/game.dat @@ -0,0 +1,29 @@ +title = "Senran Kagura Burst" +description = " Senran Kagura Burst is a side scrolling 'beat-'em-up' action game for the 3DS. The player assumes control of one of five different female ninja characters. The more the game characters are damaged by enemies, the more their clothes are torn off. The information for each character's back story, major plot points, and general information on the universe of Senran Kagura is displayed in what is called the 'novel', and is structured similarly to a visual novel. The novel is introduced at major plot points in the game story" +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "00040000000ED100" +region = "usa" +release_date = "2013-11-14" + +[[ releases ]] +title = "00040000000F4500" +region = "eur" +release_date = "2014-02-28" + +[[ releases ]] +title = "000400000009F600" +region = "jpn" +release_date = "2012-08-30" + +[[ testcases ]] +compatibility = "5" +date = "2017-06-19" +title = "00040000000F4500" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/senran-kagura-burst/icon.png b/games/senran-kagura-burst/icon.png new file mode 100644 index 0000000..a0625f2 Binary files /dev/null and b/games/senran-kagura-burst/icon.png differ diff --git a/games/senran-kagura-burst/screenshots/dojo.png b/games/senran-kagura-burst/screenshots/dojo.png new file mode 100644 index 0000000..b01a55d Binary files /dev/null and b/games/senran-kagura-burst/screenshots/dojo.png differ diff --git a/games/senran-kagura-burst/screenshots/dressing-room.png b/games/senran-kagura-burst/screenshots/dressing-room.png new file mode 100644 index 0000000..52fbfcf Binary files /dev/null and b/games/senran-kagura-burst/screenshots/dressing-room.png differ diff --git a/games/senran-kagura-burst/screenshots/main-menu.png b/games/senran-kagura-burst/screenshots/main-menu.png new file mode 100644 index 0000000..0037745 Binary files /dev/null and b/games/senran-kagura-burst/screenshots/main-menu.png differ diff --git a/games/shantae-and-the-pirates-curse/boxart.png b/games/shantae-and-the-pirates-curse/boxart.png new file mode 100644 index 0000000..51dcb03 Binary files /dev/null and b/games/shantae-and-the-pirates-curse/boxart.png differ diff --git a/games/shantae-and-the-pirates-curse/game.dat b/games/shantae-and-the-pirates-curse/game.dat new file mode 100644 index 0000000..fdea8ea --- /dev/null +++ b/games/shantae-and-the-pirates-curse/game.dat @@ -0,0 +1,30 @@ +title = "Shantae and the Pirate's Curse" +description = "Shantae and the Pirate's Curse is a platform game developed and published by WayForward Technologies, and is the third game in the Shantae series. The retail version was published by Rising Star Games and in Japan, it was published by Intergrow." +github_issues = [3726] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000C2900" +region = "usa" +release_date = "2014-10-23" + +[[releases]] +title = "000400000019E600" +region = "usa" +release_date = "2016-10-18" + +[[releases]] +title = "000400000010AF00" +region = "eur" +release_date = "2015-02-05" + +[[releases]] +title = "000400000019D900" +region = "eur" +release_date = "2016-10-21" + +[[releases]] +title = "0004000000181100" +region = "jpn" +release_date = "2015-11-19" diff --git a/games/shantae-and-the-pirates-curse/icon.png b/games/shantae-and-the-pirates-curse/icon.png new file mode 100644 index 0000000..471498e Binary files /dev/null and b/games/shantae-and-the-pirates-curse/icon.png differ diff --git a/games/shantae-and-the-pirates-curse/screenshots/Ingame-1.png b/games/shantae-and-the-pirates-curse/screenshots/Ingame-1.png new file mode 100644 index 0000000..1fe8da0 Binary files /dev/null and b/games/shantae-and-the-pirates-curse/screenshots/Ingame-1.png differ diff --git a/games/shantae-and-the-pirates-curse/screenshots/Ingame-2.png b/games/shantae-and-the-pirates-curse/screenshots/Ingame-2.png new file mode 100644 index 0000000..60ebf0c Binary files /dev/null and b/games/shantae-and-the-pirates-curse/screenshots/Ingame-2.png differ diff --git a/games/shantae-and-the-pirates-curse/screenshots/Japanese-retail-release.png b/games/shantae-and-the-pirates-curse/screenshots/Japanese-retail-release.png new file mode 100644 index 0000000..6bab24e Binary files /dev/null and b/games/shantae-and-the-pirates-curse/screenshots/Japanese-retail-release.png differ diff --git a/games/shantae-and-the-pirates-curse/screenshots/Retail-crash-here.png b/games/shantae-and-the-pirates-curse/screenshots/Retail-crash-here.png new file mode 100644 index 0000000..4034243 Binary files /dev/null and b/games/shantae-and-the-pirates-curse/screenshots/Retail-crash-here.png differ diff --git a/games/shin-megami-tensei-devil-summoner-soul-hackers/boxart.png b/games/shin-megami-tensei-devil-summoner-soul-hackers/boxart.png new file mode 100644 index 0000000..ae884ba Binary files /dev/null and b/games/shin-megami-tensei-devil-summoner-soul-hackers/boxart.png differ diff --git a/games/shin-megami-tensei-devil-summoner-soul-hackers/game.dat b/games/shin-megami-tensei-devil-summoner-soul-hackers/game.dat new file mode 100644 index 0000000..bb25408 --- /dev/null +++ b/games/shin-megami-tensei-devil-summoner-soul-hackers/game.dat @@ -0,0 +1,19 @@ +title = "Shin Megami Tensei: Devil Summoner: Soul Hackers" +description = "Shin Megami Tensei: Devil Summoner: Soul Hackers is a remake of the role-playing game of the same name that was originally released on Sega Saturn and Playstation 1. It was published by Atlus in North America and Japan, and by NIS America in Europe." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000C5600" +region = "usa" +release_date = "2013-04-16" + +[[releases]] +title = "00040000000C5600" +region = "eur" +release_date = "2013-09-20" + +[[releases]] +title = "0004000000091000" +region = "jpn" +release_date = "2012-08-30" diff --git a/games/shin-megami-tensei-devil-summoner-soul-hackers/icon.png b/games/shin-megami-tensei-devil-summoner-soul-hackers/icon.png new file mode 100644 index 0000000..ddfa688 Binary files /dev/null and b/games/shin-megami-tensei-devil-summoner-soul-hackers/icon.png differ diff --git a/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/SoulHacker.png b/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/SoulHacker.png new file mode 100644 index 0000000..951b1dd Binary files /dev/null and b/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/SoulHacker.png differ diff --git a/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/cutscene.png b/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/cutscene.png new file mode 100644 index 0000000..51d763f Binary files /dev/null and b/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/cutscene.png differ diff --git a/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/title-screen.png b/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/title-screen.png new file mode 100644 index 0000000..968e345 Binary files /dev/null and b/games/shin-megami-tensei-devil-summoner-soul-hackers/screenshots/title-screen.png differ diff --git a/games/shin-megami-tensei-devil-survivor-2-record-breaker/boxart.png b/games/shin-megami-tensei-devil-survivor-2-record-breaker/boxart.png new file mode 100644 index 0000000..01ad695 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-2-record-breaker/boxart.png differ diff --git a/games/shin-megami-tensei-devil-survivor-2-record-breaker/game.dat b/games/shin-megami-tensei-devil-survivor-2-record-breaker/game.dat new file mode 100644 index 0000000..e686fee --- /dev/null +++ b/games/shin-megami-tensei-devil-survivor-2-record-breaker/game.dat @@ -0,0 +1,9 @@ +title = "Shin Megami Tensei: Devil Survivor 2 Record Breaker" +description = "Shin Megami Tensei: Devil Survivor 2 Record Breaker is a role-playing game and enhanced port of Shin Megami Tensei: Devil Survivor 2. It was published by Atlus in North America and NIS America in Europe." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "0004000000159500" +region = "usa" +release_date = "2015-05-05" diff --git a/games/shin-megami-tensei-devil-survivor-2-record-breaker/icon.png b/games/shin-megami-tensei-devil-survivor-2-record-breaker/icon.png new file mode 100644 index 0000000..a94ed08 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-2-record-breaker/icon.png differ diff --git a/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-45-33.png b/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-45-33.png new file mode 100644 index 0000000..02205fd Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-45-33.png differ diff --git a/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-46-20.png b/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-46-20.png new file mode 100644 index 0000000..42d3050 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-46-20.png differ diff --git a/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-48-23.png b/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-48-23.png new file mode 100644 index 0000000..83550f1 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-2-record-breaker/screenshots/citra-qt_2018-01-27_21-48-23.png differ diff --git a/games/shin-megami-tensei-devil-survivor-overclocked/boxart.png b/games/shin-megami-tensei-devil-survivor-overclocked/boxart.png new file mode 100644 index 0000000..534fb88 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-overclocked/boxart.png differ diff --git a/games/shin-megami-tensei-devil-survivor-overclocked/game.dat b/games/shin-megami-tensei-devil-survivor-overclocked/game.dat new file mode 100644 index 0000000..a12a5c1 --- /dev/null +++ b/games/shin-megami-tensei-devil-survivor-overclocked/game.dat @@ -0,0 +1,20 @@ +title = "Shin Megami Tensei: Devil Survivor Overclocked" +description = "Shin Megami Tensei: Devil Survivor Overclocked is a 3DS port of the NDS game Shin Megami Tensei: Devil Survivor, with some additional/improved content. This tactical RPG game is set in Tokyo as it is put in quarantine due to a demon invasion. It was published by Atlus in North America and Japan, and Ghostlight in Europe." +github_issues = [3330] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000038800" +region = "usa" +release_date = "2011-08-23" + +[[releases]] +title = "000400000009C000" +region = "eur" +release_date = "2013-03-29" + +[[releases]] +title = "000400000004D900" +region = "jpn" +release_date = "2011-09-01" diff --git a/games/shin-megami-tensei-devil-survivor-overclocked/icon.png b/games/shin-megami-tensei-devil-survivor-overclocked/icon.png new file mode 100644 index 0000000..15d7546 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-overclocked/icon.png differ diff --git a/games/shin-megami-tensei-devil-survivor-overclocked/screenshots/atlus-logo.png b/games/shin-megami-tensei-devil-survivor-overclocked/screenshots/atlus-logo.png new file mode 100644 index 0000000..770ab75 Binary files /dev/null and b/games/shin-megami-tensei-devil-survivor-overclocked/screenshots/atlus-logo.png differ diff --git a/games/shin-megami-tensei-iv-apocalypse/boxart.png b/games/shin-megami-tensei-iv-apocalypse/boxart.png new file mode 100644 index 0000000..24a6bf8 Binary files /dev/null and b/games/shin-megami-tensei-iv-apocalypse/boxart.png differ diff --git a/games/shin-megami-tensei-iv-apocalypse/game.dat b/games/shin-megami-tensei-iv-apocalypse/game.dat new file mode 100644 index 0000000..eea9231 --- /dev/null +++ b/games/shin-megami-tensei-iv-apocalypse/game.dat @@ -0,0 +1,19 @@ +title = "Shin Megami Tensei IV: Apocalypse" +description = "Shin Megami Tensei IV: Apocalypse is a post-apocalyptic role-playing video game developed and published by Atlus for the Nintendo 3DS. It is a indirect sequel to Shin Megami Tensei IV." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000019A200" +region = "usa" +release_date = "2016-09-20" + +[[releases]] +title = "00040000001A6B00" +region = "eur" +release_date = "2016-12-02" + +[[releases]] +title = "0004000000166B00" +region = "jpn" +release_date = "2016-02-10" diff --git a/games/shin-megami-tensei-iv-apocalypse/icon.png b/games/shin-megami-tensei-iv-apocalypse/icon.png new file mode 100644 index 0000000..defc763 Binary files /dev/null and b/games/shin-megami-tensei-iv-apocalypse/icon.png differ diff --git a/games/shin-megami-tensei-iv-apocalypse/screenshots/Cut-Scene.png b/games/shin-megami-tensei-iv-apocalypse/screenshots/Cut-Scene.png new file mode 100644 index 0000000..d6f9779 Binary files /dev/null and b/games/shin-megami-tensei-iv-apocalypse/screenshots/Cut-Scene.png differ diff --git a/games/shin-megami-tensei-iv-apocalypse/screenshots/Title.png b/games/shin-megami-tensei-iv-apocalypse/screenshots/Title.png new file mode 100644 index 0000000..068a88c Binary files /dev/null and b/games/shin-megami-tensei-iv-apocalypse/screenshots/Title.png differ diff --git a/games/shin-megami-tensei-iv-apocalypse/screenshots/in-game.png b/games/shin-megami-tensei-iv-apocalypse/screenshots/in-game.png new file mode 100644 index 0000000..d6ba2d7 Binary files /dev/null and b/games/shin-megami-tensei-iv-apocalypse/screenshots/in-game.png differ diff --git a/games/shin-megami-tensei-iv/boxart.png b/games/shin-megami-tensei-iv/boxart.png new file mode 100644 index 0000000..f9a8a6a Binary files /dev/null and b/games/shin-megami-tensei-iv/boxart.png differ diff --git a/games/shin-megami-tensei-iv/game.dat b/games/shin-megami-tensei-iv/game.dat new file mode 100644 index 0000000..cb7108b --- /dev/null +++ b/games/shin-megami-tensei-iv/game.dat @@ -0,0 +1,24 @@ +title = "Shin Megami Tensei IV" +description = "Shin Megami Tensei IV is a Japanese post-apocalyptic role-playing video game developed by Atlus for the Nintendo 3DS. It is the fifth entry in the Shin Megami Tensei series, the central series of the Megami Tensei franchise, though no direct story connection exists to previous entries." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000000E5C00" +region = "usa" +release_date = "2013-07-16" + +[[releases]] +title = "0004000000141C00" +region = "eur" +release_date = "2014-10-30" + +[[releases]] +title = "00040000000D6D00" +region = "twn" +release_date = "2013-05-23" + +[[releases]] +title = "0004000000088A00" +region = "jpn" +release_date = "2013-05-23" diff --git a/games/shin-megami-tensei-iv/icon.png b/games/shin-megami-tensei-iv/icon.png new file mode 100644 index 0000000..57be4c0 Binary files /dev/null and b/games/shin-megami-tensei-iv/icon.png differ diff --git a/games/shin-megami-tensei-iv/savefiles/SMTIV-SAVE.dat b/games/shin-megami-tensei-iv/savefiles/SMTIV-SAVE.dat new file mode 100644 index 0000000..f7a420a --- /dev/null +++ b/games/shin-megami-tensei-iv/savefiles/SMTIV-SAVE.dat @@ -0,0 +1,4 @@ +title = "SMT Intro Save" +description = "Game starting location after receiving the gauntlet" +author = "robzombie91" +title_id = "00040000000E5C00" diff --git a/games/shin-megami-tensei-iv/savefiles/SMTIV-SAVE.zip b/games/shin-megami-tensei-iv/savefiles/SMTIV-SAVE.zip new file mode 100644 index 0000000..3ebe52b Binary files /dev/null and b/games/shin-megami-tensei-iv/savefiles/SMTIV-SAVE.zip differ diff --git a/games/shin-megami-tensei-iv/screenshots/In-Game.png b/games/shin-megami-tensei-iv/screenshots/In-Game.png new file mode 100644 index 0000000..9050e2e Binary files /dev/null and b/games/shin-megami-tensei-iv/screenshots/In-Game.png differ diff --git a/games/shin-megami-tensei-iv/screenshots/Menu.png b/games/shin-megami-tensei-iv/screenshots/Menu.png new file mode 100644 index 0000000..3bc07f7 Binary files /dev/null and b/games/shin-megami-tensei-iv/screenshots/Menu.png differ diff --git a/games/shin-megami-tensei-iv/screenshots/Title-Screen.png b/games/shin-megami-tensei-iv/screenshots/Title-Screen.png new file mode 100644 index 0000000..f3b1b09 Binary files /dev/null and b/games/shin-megami-tensei-iv/screenshots/Title-Screen.png differ diff --git a/games/shin-megami-tensei-strange-journey-redux/boxart.png b/games/shin-megami-tensei-strange-journey-redux/boxart.png new file mode 100644 index 0000000..8e3ef23 Binary files /dev/null and b/games/shin-megami-tensei-strange-journey-redux/boxart.png differ diff --git a/games/shin-megami-tensei-strange-journey-redux/game.dat b/games/shin-megami-tensei-strange-journey-redux/game.dat new file mode 100644 index 0000000..8c7b9c9 --- /dev/null +++ b/games/shin-megami-tensei-strange-journey-redux/game.dat @@ -0,0 +1,19 @@ +title = "Shin Megami Tensei: Strange Journey Redux" +description = "Shin Megami Tensei: Strange Journey Redux is a role-playing video game developed and published by Atlus. In Europe, it was published by Deep Silver. It is an enhanced port of Shin Megami Tensei: Strange Journey originally released for Nintendo DS and features voice acting, new illustrations, a new route and ending and, a new character." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000001CD200" +region = "usa" +release_date = "2018-05-15" + +[[releases]] +title = "00040000001CE100" +region = "eur" +release_date = "2018-05-18" + +[[releases]] +title = "00040000001B2400" +region = "jpn" +release_date = "2017-10-26" diff --git a/games/shin-megami-tensei-strange-journey-redux/icon.png b/games/shin-megami-tensei-strange-journey-redux/icon.png new file mode 100644 index 0000000..7127db6 Binary files /dev/null and b/games/shin-megami-tensei-strange-journey-redux/icon.png differ diff --git a/games/shin-megami-tensei-strange-journey-redux/screenshots/cutscene.png b/games/shin-megami-tensei-strange-journey-redux/screenshots/cutscene.png new file mode 100644 index 0000000..0e73f92 Binary files /dev/null and b/games/shin-megami-tensei-strange-journey-redux/screenshots/cutscene.png differ diff --git a/games/shin-megami-tensei-strange-journey-redux/screenshots/in-game.png b/games/shin-megami-tensei-strange-journey-redux/screenshots/in-game.png new file mode 100644 index 0000000..dbf2da8 Binary files /dev/null and b/games/shin-megami-tensei-strange-journey-redux/screenshots/in-game.png differ diff --git a/games/shin-megami-tensei-strange-journey-redux/screenshots/title-screen.png b/games/shin-megami-tensei-strange-journey-redux/screenshots/title-screen.png new file mode 100644 index 0000000..0bcdc26 Binary files /dev/null and b/games/shin-megami-tensei-strange-journey-redux/screenshots/title-screen.png differ diff --git a/games/shovel-knight-treasure-trove-update-ver-32/boxart.png b/games/shovel-knight-treasure-trove-update-ver-32/boxart.png new file mode 100644 index 0000000..f6627df Binary files /dev/null and b/games/shovel-knight-treasure-trove-update-ver-32/boxart.png differ diff --git a/games/shovel-knight-treasure-trove-update-ver-32/game.dat b/games/shovel-knight-treasure-trove-update-ver-32/game.dat new file mode 100644 index 0000000..2070f6a --- /dev/null +++ b/games/shovel-knight-treasure-trove-update-ver-32/game.dat @@ -0,0 +1,39 @@ +title = "Shovel Knight" +description = "Shovel Knight is a 2D side-scrolling platform game presented in 8-bit graphics in which players control the eponymous protagonist as he collects treasure and fights against the Order of No Quarter." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000119A00" +region = "usa" +release_date = "2015-11-03" + +[[ releases ]] +title = "000400000012CB00" +region = "eur" +release_date = "2015-11-03" + +[[ releases ]] +title = "0004000000196900" +region = "jpn" +release_date = "2015-11-03" + +[[testcases]] +title = "0004000000196900" +compatibility = "3" +date = "2017-08-09" +version = "HEAD-792dee4" +cpu = "Intel Core i7 2630QM" +gpu = "GeForce GT 540M" +os = "Windows 7 7601" +author = "flaviculpus" + +[[testcases]] +title = "0004000000119A00" +compatibility = "0" +date = "2017-10-24" +version = "HEAD-e9d1e8c" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GT 960M" +os = "Windows 10 14393" +author = "Flamboyant_Ham" diff --git a/games/shovel-knight-treasure-trove-update-ver-32/icon.png b/games/shovel-knight-treasure-trove-update-ver-32/icon.png new file mode 100644 index 0000000..91ff1d2 Binary files /dev/null and b/games/shovel-knight-treasure-trove-update-ver-32/icon.png differ diff --git a/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-54-53.png b/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-54-53.png new file mode 100644 index 0000000..8e30892 Binary files /dev/null and b/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-54-53.png differ diff --git a/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-55-36.png b/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-55-36.png new file mode 100644 index 0000000..65c1577 Binary files /dev/null and b/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-55-36.png differ diff --git a/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-56-48.png b/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-56-48.png new file mode 100644 index 0000000..83365cd Binary files /dev/null and b/games/shovel-knight-treasure-trove-update-ver-32/screenshots/citra-qt_2017-10-24_01-56-48.png differ diff --git a/games/slime-mori-mori-dragon-quest-3/boxart.png b/games/slime-mori-mori-dragon-quest-3/boxart.png new file mode 100644 index 0000000..a1eefaf Binary files /dev/null and b/games/slime-mori-mori-dragon-quest-3/boxart.png differ diff --git a/games/slime-mori-mori-dragon-quest-3/game.dat b/games/slime-mori-mori-dragon-quest-3/game.dat new file mode 100644 index 0000000..ad75cc2 --- /dev/null +++ b/games/slime-mori-mori-dragon-quest-3/game.dat @@ -0,0 +1,19 @@ +title = "Slime Mori Mori Dragon Quest 3" +description = "Spinoff game of the Dragon Quest series, where you control a slime that must sail the sea and reclaim the stolen rainbow orbs. Contains a 'zelda' like adventuring section as well as a ship battle system." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000005C300" +region = "jpn" +release_date = "2011-11-02" + +[[testcases]] +title = "000400000005C300" +compatibility = "1" +date = "2017-11-08" +version = "HEAD-908dbf4" +cpu = "AMD Ryzen 5 1600" +gpu = "AMD Radeon R9 Fury" +os = "Windows 8.1 9600" +author = "CakeLancelot" diff --git a/games/slime-mori-mori-dragon-quest-3/icon.png b/games/slime-mori-mori-dragon-quest-3/icon.png new file mode 100644 index 0000000..91cb0cd Binary files /dev/null and b/games/slime-mori-mori-dragon-quest-3/icon.png differ diff --git a/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-battle.png b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-battle.png new file mode 100644 index 0000000..d624af8 Binary files /dev/null and b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-battle.png differ diff --git a/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-overworld.png b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-overworld.png new file mode 100644 index 0000000..2643799 Binary files /dev/null and b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-overworld.png differ diff --git a/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-port.png b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-port.png new file mode 100644 index 0000000..3d6ac2c Binary files /dev/null and b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-port.png differ diff --git a/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-stage.png b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-stage.png new file mode 100644 index 0000000..2e06bd2 Binary files /dev/null and b/games/slime-mori-mori-dragon-quest-3/screenshots/ingame-stage.png differ diff --git a/games/smilebasic/boxart.png b/games/smilebasic/boxart.png new file mode 100644 index 0000000..0da9a5f Binary files /dev/null and b/games/smilebasic/boxart.png differ diff --git a/games/smilebasic/game.dat b/games/smilebasic/game.dat new file mode 100644 index 0000000..d50932d --- /dev/null +++ b/games/smilebasic/game.dat @@ -0,0 +1,20 @@ +title = "SmileBASIC" +description = "SmileBASIC is a software development application for the Nintendo 3DS, developed and published by SmileBoom Co.Ltd.. Like its predecessor Petit Computer, SmileBASIC is built around a custom dialect of BASIC called SmileBASIC. With SmileBASIC, users can write programs that use the 3DS's features and then upload the programs (or folders containing programs) to an online repository, where they can be downloaded by entering a short code. Downloaded programs can also be edited and re-uploaded. Programs can utilize the 3DS's touchscreen, controls, speakers, gyroscopes, and 3D screen." +needs_system_files = true +needs_shared_font = true +game_type = "eshop" + +[[releases]] +title = "000400000016DE00" +region = "usa" +release_date = "2015-10-15" + +[[releases]] +title = "0004000000117200" +region = "jpn" +release_date = "2014-11-19" + +[[releases]] +title = "00040000001A1C00" +region = "eur" +release_date = "2017-08-17" diff --git a/games/smilebasic/icon.png b/games/smilebasic/icon.png new file mode 100644 index 0000000..58aa08b Binary files /dev/null and b/games/smilebasic/icon.png differ diff --git a/games/smilebasic/screenshots/smilebasic-console.png b/games/smilebasic/screenshots/smilebasic-console.png new file mode 100644 index 0000000..b4a78d2 Binary files /dev/null and b/games/smilebasic/screenshots/smilebasic-console.png differ diff --git a/games/smilebasic/screenshots/smilebasic-demo.png b/games/smilebasic/screenshots/smilebasic-demo.png new file mode 100644 index 0000000..c3d5376 Binary files /dev/null and b/games/smilebasic/screenshots/smilebasic-demo.png differ diff --git a/games/smilebasic/screenshots/smilebasic-title-screen.png b/games/smilebasic/screenshots/smilebasic-title-screen.png new file mode 100644 index 0000000..d3011cb Binary files /dev/null and b/games/smilebasic/screenshots/smilebasic-title-screen.png differ diff --git a/games/sonic-and-all-stars-racing-transformed/boxart.png b/games/sonic-and-all-stars-racing-transformed/boxart.png new file mode 100644 index 0000000..f1b2f52 Binary files /dev/null and b/games/sonic-and-all-stars-racing-transformed/boxart.png differ diff --git a/games/sonic-and-all-stars-racing-transformed/game.dat b/games/sonic-and-all-stars-racing-transformed/game.dat new file mode 100644 index 0000000..ba67e8a --- /dev/null +++ b/games/sonic-and-all-stars-racing-transformed/game.dat @@ -0,0 +1,14 @@ +title = "Sonic & All-Stars Racing Transformed" +description = "Sonic & All-Stars Racing Transformed is a kart racing video game developed by Sumo Digital and published by Sega. Released in February 2013, Sonic & All-Stars Racing Transformed is the sequel to Sonic & Sega All-Stars Racing, the fourth installment in the Sega Superstars series, and the eighth racing game in the Sonic the Hedgehog series." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000000B3500" +region = "usa" +release_date = "2013-02-12" + +[[releases]] +title = "000400000008FC00" +region = "eur" +release_date = "2013-02-08" diff --git a/games/sonic-and-all-stars-racing-transformed/icon.png b/games/sonic-and-all-stars-racing-transformed/icon.png new file mode 100644 index 0000000..d6a1174 Binary files /dev/null and b/games/sonic-and-all-stars-racing-transformed/icon.png differ diff --git a/games/sonic-and-all-stars-racing-transformed/screenshots/stuck-menu.png b/games/sonic-and-all-stars-racing-transformed/screenshots/stuck-menu.png new file mode 100644 index 0000000..f3a71ea Binary files /dev/null and b/games/sonic-and-all-stars-racing-transformed/screenshots/stuck-menu.png differ diff --git a/games/sonic-boom-shattered-crystal/boxart.png b/games/sonic-boom-shattered-crystal/boxart.png new file mode 100644 index 0000000..df847e6 Binary files /dev/null and b/games/sonic-boom-shattered-crystal/boxart.png differ diff --git a/games/sonic-boom-shattered-crystal/game.dat b/games/sonic-boom-shattered-crystal/game.dat new file mode 100644 index 0000000..e5eaa84 --- /dev/null +++ b/games/sonic-boom-shattered-crystal/game.dat @@ -0,0 +1,20 @@ +title = "Sonic Boom: Shattered Crystal" +description = "Sonic Boom: Shattered Crystal, also known as \"Sonic Toon: Island Adventure\" in Japan, is an action-adventure video game developed by Sanzaru Games and published by Sega. Along with its Wii U sibling Sonic Boom: Rise of Lyric, Shattered Crystal is a spin-off of Sega's Sonic the Hedgehog franchise and is a part of the Sonic Boom sub-franchise." +github_issues = [2654] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000127500" +region = "usa" +release_date = "2014-11-11" + +[[releases]] +title = "000400000012C200" +region = "eur" +release_date = "2014-11-21" + +[[releases]] +title = "000400000014AE00" +region = "jpn" +release_date = "2014-12-18" diff --git a/games/sonic-boom-shattered-crystal/icon.png b/games/sonic-boom-shattered-crystal/icon.png new file mode 100644 index 0000000..09afa15 Binary files /dev/null and b/games/sonic-boom-shattered-crystal/icon.png differ diff --git a/games/sonic-boom-shattered-crystal/screenshots/loading.png b/games/sonic-boom-shattered-crystal/screenshots/loading.png new file mode 100644 index 0000000..e0a8aac Binary files /dev/null and b/games/sonic-boom-shattered-crystal/screenshots/loading.png differ diff --git a/games/sonic-generations/boxart.png b/games/sonic-generations/boxart.png new file mode 100644 index 0000000..7d46d5e Binary files /dev/null and b/games/sonic-generations/boxart.png differ diff --git a/games/sonic-generations/game.dat b/games/sonic-generations/game.dat new file mode 100644 index 0000000..8e8896a --- /dev/null +++ b/games/sonic-generations/game.dat @@ -0,0 +1,31 @@ +title = "Sonic Generations" +description = "Sonic Generations is a platform video game developed by Sonic Team and published by Sega for PlayStation 3, Xbox 360 and Microsoft Windows. The Nintendo 3DS version of the game was developed by Dimps. The game commemorates the 20th anniversary of the Sonic the Hedgehog series, and was released in North America, Europe and Australia in November 2011, and in Japan the following month." +needs_system_files = true +needs_shared_font = false +game_type = "3ds" +incomplete = true + +[[ releases ]] +title = "0004000000062300" +region = "usa" +release_date = "2011-11-12" + +[[ releases ]] +title = "0004000000062200" +region = "eur" +release_date = "2011-11-25" + +[[ releases ]] +title = "000400000004CA00" +region = "jpn" +release_date = "2012-12-01" + +[[ testcases ]] +title = "0004000000062300" +compatibility = "1" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/sonic-generations/icon.png b/games/sonic-generations/icon.png new file mode 100644 index 0000000..4b71825 Binary files /dev/null and b/games/sonic-generations/icon.png differ diff --git a/games/sonic-lost-world/boxart.png b/games/sonic-lost-world/boxart.png new file mode 100644 index 0000000..55447a4 Binary files /dev/null and b/games/sonic-lost-world/boxart.png differ diff --git a/games/sonic-lost-world/game.dat b/games/sonic-lost-world/game.dat new file mode 100644 index 0000000..159d2f2 --- /dev/null +++ b/games/sonic-lost-world/game.dat @@ -0,0 +1,29 @@ +title = "Sonic Lost World" +description = "Sonic Lost World is an action-adventure/platform video game developed by Sonic Team for the Wii U, Nintendo 3DS and Microsoft Windows. It was published by Nintendo in Europe and Australia and Sega in North America and Japan." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000000C8C00" +region = "usa" +release_date = "2013-10-29" + +[[ releases ]] +title = "00040000000CB400" +region = "eur" +release_date = "2013-10-18" + +[[ releases ]] +title = "00040000000C5400" +region = "jpn" +release_date = "2013-10-24" + +[[testcases]] +title = "00040000000C8C00" +compatibility = "5" +date = "2017-08-17" +version = "HEAD-21204ba" +cpu = "Intel Core i5-4430" +gpu = "GeForce GTX 960" +os = "Windows 10 14393" +author = "brothe2nd" diff --git a/games/sonic-lost-world/icon.png b/games/sonic-lost-world/icon.png new file mode 100644 index 0000000..9772863 Binary files /dev/null and b/games/sonic-lost-world/icon.png differ diff --git a/games/sonic-lost-world/screenshots/first-level.png b/games/sonic-lost-world/screenshots/first-level.png new file mode 100644 index 0000000..44e8422 Binary files /dev/null and b/games/sonic-lost-world/screenshots/first-level.png differ diff --git a/games/sonic-lost-world/screenshots/level-clear.png b/games/sonic-lost-world/screenshots/level-clear.png new file mode 100644 index 0000000..4586204 Binary files /dev/null and b/games/sonic-lost-world/screenshots/level-clear.png differ diff --git a/games/sonic-lost-world/screenshots/title-screen.png b/games/sonic-lost-world/screenshots/title-screen.png new file mode 100644 index 0000000..cb5da7d Binary files /dev/null and b/games/sonic-lost-world/screenshots/title-screen.png differ diff --git a/games/spongebob-squigglepants/boxart.png b/games/spongebob-squigglepants/boxart.png new file mode 100644 index 0000000..a86af35 Binary files /dev/null and b/games/spongebob-squigglepants/boxart.png differ diff --git a/games/spongebob-squigglepants/game.dat b/games/spongebob-squigglepants/game.dat new file mode 100644 index 0000000..6346255 --- /dev/null +++ b/games/spongebob-squigglepants/game.dat @@ -0,0 +1,25 @@ +title = "Spongebob SquigglePants" +description = "SpongeBob SquigglePants is an action video game based on the SpongeBob SquarePants television series, developed by WayForward Technologies and published by THQ." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000044500" +region = "usa" +release_date = "2011-05-17" + +[[ releases ]] +title = "000400000004EA00" +region = "eur" +release_date = "2011-05-27" + +[[ testcases ]] +title = "0004000000044500" +compatibility = "4" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/spongebob-squigglepants/icon.png b/games/spongebob-squigglepants/icon.png new file mode 100644 index 0000000..7978db1 Binary files /dev/null and b/games/spongebob-squigglepants/icon.png differ diff --git a/games/star-fox-64-3d/boxart.png b/games/star-fox-64-3d/boxart.png new file mode 100644 index 0000000..4d0bf68 Binary files /dev/null and b/games/star-fox-64-3d/boxart.png differ diff --git a/games/star-fox-64-3d/game.dat b/games/star-fox-64-3d/game.dat new file mode 100644 index 0000000..981f714 --- /dev/null +++ b/games/star-fox-64-3d/game.dat @@ -0,0 +1,30 @@ +title = "Star Fox 64 3D" +description = "Star Fox 64 3D is a video game for the Nintendo 3DS and is a remake of Star Fox 64. It was co-developed between Nintendo EAD and Q-Games, and was published by Nintendo." +github_issues = [2749, 3104] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000049000" +region = "usa" +release_date = "2011-09-09" + +[[ releases ]] +title = "0004000000049100" +region = "eur" +release_date = "2011-09-09" + +[[ releases ]] +title = "0004000000030400" +region = "jpn" +release_date = "2011-07-14" + +[[ testcases ]] +title = "0004000000049000" +compatibility = "1" +date = "2017-06-04" +version = "HEAD-8f0a23b" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/star-fox-64-3d/icon.png b/games/star-fox-64-3d/icon.png new file mode 100644 index 0000000..50e8718 Binary files /dev/null and b/games/star-fox-64-3d/icon.png differ diff --git a/games/star-fox-64-3d/savefiles/start-of-game.dat b/games/star-fox-64-3d/savefiles/start-of-game.dat new file mode 100644 index 0000000..2f570ce --- /dev/null +++ b/games/star-fox-64-3d/savefiles/start-of-game.dat @@ -0,0 +1,4 @@ +title = "Blank Save - Start of Game" +description = "Freshly made save file. Required to get past the \"creating save\" screen when you first boot the game." +author = "Flamboyant_Ham" +title_id = "0004000000049000" diff --git a/games/star-fox-64-3d/savefiles/start-of-game.zip b/games/star-fox-64-3d/savefiles/start-of-game.zip new file mode 100644 index 0000000..c7b6877 Binary files /dev/null and b/games/star-fox-64-3d/savefiles/start-of-game.zip differ diff --git a/games/star-fox-64-3d/savefiles/zero-byte.dat b/games/star-fox-64-3d/savefiles/zero-byte.dat new file mode 100644 index 0000000..b513833 --- /dev/null +++ b/games/star-fox-64-3d/savefiles/zero-byte.dat @@ -0,0 +1,4 @@ +title = "Zero-byte save files" +description = "Zero-byte save files. Required to get past the \"creating save\" screen when you first boot the game." +author = "eientei95" +title_id = "0004000000049000" diff --git a/games/star-fox-64-3d/savefiles/zero-byte.zip b/games/star-fox-64-3d/savefiles/zero-byte.zip new file mode 100644 index 0000000..f07ba10 Binary files /dev/null and b/games/star-fox-64-3d/savefiles/zero-byte.zip differ diff --git a/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-28-16.png b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-28-16.png new file mode 100644 index 0000000..6897fcb Binary files /dev/null and b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-28-16.png differ diff --git a/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-28-59.png b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-28-59.png new file mode 100644 index 0000000..478bda4 Binary files /dev/null and b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-28-59.png differ diff --git a/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-29-39.png b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-29-39.png new file mode 100644 index 0000000..e8b0491 Binary files /dev/null and b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-29-39.png differ diff --git a/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-30-39.png b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-30-39.png new file mode 100644 index 0000000..831873a Binary files /dev/null and b/games/star-fox-64-3d/screenshots/citra-qt_2017-06-04_12-30-39.png differ diff --git a/games/steamworld-dig/boxart.png b/games/steamworld-dig/boxart.png new file mode 100644 index 0000000..9073911 Binary files /dev/null and b/games/steamworld-dig/boxart.png differ diff --git a/games/steamworld-dig/game.dat b/games/steamworld-dig/game.dat new file mode 100644 index 0000000..00f1ba9 --- /dev/null +++ b/games/steamworld-dig/game.dat @@ -0,0 +1,21 @@ +title = "Steamworld Dig" +description = "SteamWorld Dig is a platform mining adventure. Take the role as Rusty, a lone mining steambot, as he arrives to an old mining town in great need. Dig your way through the old earth, gaining riches while uncovering the ancient threat that lurks below..." +incomplete = true +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000ED400" +region = "eur" +release_date = "2013-08-07" + +[[testcases]] +title = "00040000000ED400" +compatibility = "1" +date = "2017-07-28" +version = "HEAD-05a38e3" +cpu = "Intel Core i5-3330" +gpu = "AMD Radeon HD 7970" +os = "Microsoft Windows 10 14393" +author = "ferspider3" diff --git a/games/steamworld-dig/icon.png b/games/steamworld-dig/icon.png new file mode 100644 index 0000000..46969bc Binary files /dev/null and b/games/steamworld-dig/icon.png differ diff --git a/games/steamworld-dig/screenshots/inital.png b/games/steamworld-dig/screenshots/inital.png new file mode 100644 index 0000000..fdb565d Binary files /dev/null and b/games/steamworld-dig/screenshots/inital.png differ diff --git a/games/stella-glow/boxart.png b/games/stella-glow/boxart.png new file mode 100644 index 0000000..c8bb934 Binary files /dev/null and b/games/stella-glow/boxart.png differ diff --git a/games/stella-glow/game.dat b/games/stella-glow/game.dat new file mode 100644 index 0000000..7e10a9c --- /dev/null +++ b/games/stella-glow/game.dat @@ -0,0 +1,19 @@ +title = "Stella Glow" +description = "Stella Glow is a turn-based role-playing game developed by Imageepoch. The game was published in Japan by Sega, in North America by Atlus, and in Europe and Australia by NIS America." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000173700" +region = "usa" +release_date = "2015-11-17" + +[[releases]] +title = "000400000017C700" +region = "eur" +release_date = "2016-03-11" + +[[releases]] +title = "0004000000144500" +region = "jpn" +release_date = "2015-06-04" diff --git a/games/stella-glow/icon.png b/games/stella-glow/icon.png new file mode 100644 index 0000000..0cee0b0 Binary files /dev/null and b/games/stella-glow/icon.png differ diff --git a/games/stella-glow/screenshots/Battle.png b/games/stella-glow/screenshots/Battle.png new file mode 100644 index 0000000..d1799b8 Binary files /dev/null and b/games/stella-glow/screenshots/Battle.png differ diff --git a/games/stella-glow/screenshots/History.png b/games/stella-glow/screenshots/History.png new file mode 100644 index 0000000..d39669e Binary files /dev/null and b/games/stella-glow/screenshots/History.png differ diff --git a/games/stella-glow/screenshots/Shop.png b/games/stella-glow/screenshots/Shop.png new file mode 100644 index 0000000..e03ce89 Binary files /dev/null and b/games/stella-glow/screenshots/Shop.png differ diff --git a/games/stella-glow/screenshots/World-Map.png b/games/stella-glow/screenshots/World-Map.png new file mode 100644 index 0000000..46fd98b Binary files /dev/null and b/games/stella-glow/screenshots/World-Map.png differ diff --git a/games/story-of-seasons-trio-of-towns/boxart.png b/games/story-of-seasons-trio-of-towns/boxart.png new file mode 100644 index 0000000..9c92207 Binary files /dev/null and b/games/story-of-seasons-trio-of-towns/boxart.png differ diff --git a/games/story-of-seasons-trio-of-towns/game.dat b/games/story-of-seasons-trio-of-towns/game.dat new file mode 100644 index 0000000..aff2396 --- /dev/null +++ b/games/story-of-seasons-trio-of-towns/game.dat @@ -0,0 +1,30 @@ +title = "Story of Seasons: Trio of Towns" +description = "Story of Seasons: Trio of Towns is a farming simulation game developed by Marvelous for the Nintendo 3DS. In this installment, in addition to the usual farmland which the player owns, the player is able to visit three towns, each with their own distinct culture and lifestyles." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "000400000019F500" +region = "usa" +release_date = "2017-02-28" + +[[ releases ]] +title = "00040000001B5500" +region = "eur" +release_date = "2017-10-13" + +[[ releases ]] +title = "0004000000185300" +region = "jpn" +release_date = "2016-06-23" + +[[ testcases ]] +title = "000400000019F500" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8f0a23b" +author = "soukoba" +cpu = "?" +gpu = "?" +os = "?" diff --git a/games/story-of-seasons-trio-of-towns/icon.png b/games/story-of-seasons-trio-of-towns/icon.png new file mode 100644 index 0000000..aa6645a Binary files /dev/null and b/games/story-of-seasons-trio-of-towns/icon.png differ diff --git a/games/story-of-seasons-trio-of-towns/screenshots/eastern-home.png b/games/story-of-seasons-trio-of-towns/screenshots/eastern-home.png new file mode 100644 index 0000000..99c8085 Binary files /dev/null and b/games/story-of-seasons-trio-of-towns/screenshots/eastern-home.png differ diff --git a/games/story-of-seasons-trio-of-towns/screenshots/holding-citra.png b/games/story-of-seasons-trio-of-towns/screenshots/holding-citra.png new file mode 100644 index 0000000..13b6e2a Binary files /dev/null and b/games/story-of-seasons-trio-of-towns/screenshots/holding-citra.png differ diff --git a/games/story-of-seasons-trio-of-towns/screenshots/main-menu.png b/games/story-of-seasons-trio-of-towns/screenshots/main-menu.png new file mode 100644 index 0000000..68d566f Binary files /dev/null and b/games/story-of-seasons-trio-of-towns/screenshots/main-menu.png differ diff --git a/games/story-of-seasons-trio-of-towns/screenshots/save-menu.png b/games/story-of-seasons-trio-of-towns/screenshots/save-menu.png new file mode 100644 index 0000000..0f348e5 Binary files /dev/null and b/games/story-of-seasons-trio-of-towns/screenshots/save-menu.png differ diff --git a/games/story-of-seasons/boxart.png b/games/story-of-seasons/boxart.png new file mode 100644 index 0000000..036e054 Binary files /dev/null and b/games/story-of-seasons/boxart.png differ diff --git a/games/story-of-seasons/game.dat b/games/story-of-seasons/game.dat new file mode 100644 index 0000000..bf30126 --- /dev/null +++ b/games/story-of-seasons/game.dat @@ -0,0 +1,24 @@ +title = "Story of Seasons" +description = "Story of Seasons, known in Japan as \"Bokujō Monogatari: Tsunagaru Shin Tenchi\", is a farming simulation video game developed by Marvelous Entertainment. The game is not under the Harvest Moon title in North America due to Natsume's ownership of the name. It follows along the same lines as the rest of the series, in which the player takes on the role of a farmer." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000142100" +region = "usa" +release_date = "2015-03-31" + +[[releases]] +title = "000400000015FC00" +region = "eur" +release_date = "2015-12-24" + +[[releases]] +title = "000400000010BC00" +region = "jpn" +release_date = "2014-02-27" + +[[releases]] +title = "000400000015FD00" +region = "kor" +release_date = "2015-12-17" diff --git a/games/story-of-seasons/icon.png b/games/story-of-seasons/icon.png new file mode 100644 index 0000000..c30d9a4 Binary files /dev/null and b/games/story-of-seasons/icon.png differ diff --git a/games/story-of-seasons/screenshots/ingame-convo.png b/games/story-of-seasons/screenshots/ingame-convo.png new file mode 100644 index 0000000..3d83b2d Binary files /dev/null and b/games/story-of-seasons/screenshots/ingame-convo.png differ diff --git a/games/story-of-seasons/screenshots/ingame-farm.png b/games/story-of-seasons/screenshots/ingame-farm.png new file mode 100644 index 0000000..27bfd3b Binary files /dev/null and b/games/story-of-seasons/screenshots/ingame-farm.png differ diff --git a/games/story-of-seasons/screenshots/ingame-town.png b/games/story-of-seasons/screenshots/ingame-town.png new file mode 100644 index 0000000..d572d87 Binary files /dev/null and b/games/story-of-seasons/screenshots/ingame-town.png differ diff --git a/games/story-of-seasons/screenshots/title-screen.png b/games/story-of-seasons/screenshots/title-screen.png new file mode 100644 index 0000000..94e6739 Binary files /dev/null and b/games/story-of-seasons/screenshots/title-screen.png differ diff --git a/games/sudoku-by-nikoli/boxart.png b/games/sudoku-by-nikoli/boxart.png new file mode 100644 index 0000000..61d4cc7 Binary files /dev/null and b/games/sudoku-by-nikoli/boxart.png differ diff --git a/games/sudoku-by-nikoli/game.dat b/games/sudoku-by-nikoli/game.dat new file mode 100644 index 0000000..65e1558 --- /dev/null +++ b/games/sudoku-by-nikoli/game.dat @@ -0,0 +1,26 @@ +title = "Sudoku by Nikoli" +description = "Sudoku by Nikoli, known as \"Nikoli no Puzzle: Sudoku\" in Japan, is a sudoku puzzle game developed and published by Hamster Corporation. The game features 50 sudoku puzzles and a mode called \"Stage Clear\" in which the player progresses further by solving a sudoku puzzle on each stage. A second mode called \"Random\" randomly generates puzzles." +needs_system_files = true +needs_shared_font = false +issues = [3627] +game_type = "eshop" + +[[releases]] +title = "000400000008E000" +region = "usa" +release_date = "2012-05-10" + +[[releases]] +title = "0004000000092200" +region = "eur" +release_date = "2013-08-15" + +[[releases]] +title = "0004000000052900" +region = "jpn" +release_date = "2011-06-07" + +[[releases]] +title = "00040000000CD600" +region = "kor" +release_date = "2013-01-23" diff --git a/games/sudoku-by-nikoli/icon.png b/games/sudoku-by-nikoli/icon.png new file mode 100644 index 0000000..6f5c180 Binary files /dev/null and b/games/sudoku-by-nikoli/icon.png differ diff --git a/games/sudoku-by-nikoli/screenshots/in-game.png b/games/sudoku-by-nikoli/screenshots/in-game.png new file mode 100644 index 0000000..222ab24 Binary files /dev/null and b/games/sudoku-by-nikoli/screenshots/in-game.png differ diff --git a/games/sudoku-by-nikoli/screenshots/main-menu.png b/games/sudoku-by-nikoli/screenshots/main-menu.png new file mode 100644 index 0000000..40d9e7f Binary files /dev/null and b/games/sudoku-by-nikoli/screenshots/main-menu.png differ diff --git a/games/sudoku-by-nikoli/screenshots/title-screen.png b/games/sudoku-by-nikoli/screenshots/title-screen.png new file mode 100644 index 0000000..00d9a91 Binary files /dev/null and b/games/sudoku-by-nikoli/screenshots/title-screen.png differ diff --git a/games/super-mario-3d-land/boxart.png b/games/super-mario-3d-land/boxart.png new file mode 100644 index 0000000..e9a3ee7 Binary files /dev/null and b/games/super-mario-3d-land/boxart.png differ diff --git a/games/super-mario-3d-land/game.dat b/games/super-mario-3d-land/game.dat new file mode 100644 index 0000000..04b216f --- /dev/null +++ b/games/super-mario-3d-land/game.dat @@ -0,0 +1,40 @@ +title = "Super Mario 3D Land" +description = "Super Mario 3D Land is a platform game in the Super Mario series developed by Nintendo EAD Tokyo, with development assistance from Brownie Brown, for the Nintendo 3DS. This game was the first in the Mario franchise to be released for the 3DS." +github_issues = [2489, 2791, 3743] +needs_system_files = true +needs_shared_font = false + +[[ releases ]] +title = "0004000000054000" +region = "usa" +release_date = "2011-11-13" + +[[ releases ]] +title = "0004000000053F00" +region = "eur" +release_date = "2011-11-18" + +[[ releases ]] +title = "0004000000054100" +region = "jpn" +release_date = "2011-11-03" + +[[ testcases ]] +title = "0004000000054000" +compatibility = "2" +date = "2017-05-31" +version = "HEAD-4857eb4" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" + +[[ testcases ]] +title = "0004000000053F00" +compatibility = "2" +date = "2017-06-18" +version = "HEAD-5fe5cca" +author = "Anadian" +cpu = "Intel Core i7-6500U" +gpu = "Intel HD Graphics 520" +os = "Windows 10 14393" diff --git a/games/super-mario-3d-land/icon.png b/games/super-mario-3d-land/icon.png new file mode 100644 index 0000000..b31dca3 Binary files /dev/null and b/games/super-mario-3d-land/icon.png differ diff --git a/games/super-mario-3d-land/screenshots/Clear.png b/games/super-mario-3d-land/screenshots/Clear.png new file mode 100644 index 0000000..56d1dda Binary files /dev/null and b/games/super-mario-3d-land/screenshots/Clear.png differ diff --git a/games/super-mario-3d-land/screenshots/Ingame.png b/games/super-mario-3d-land/screenshots/Ingame.png new file mode 100644 index 0000000..231d0e6 Binary files /dev/null and b/games/super-mario-3d-land/screenshots/Ingame.png differ diff --git a/games/super-mario-3d-land/screenshots/Stage-select.png b/games/super-mario-3d-land/screenshots/Stage-select.png new file mode 100644 index 0000000..89ddcc4 Binary files /dev/null and b/games/super-mario-3d-land/screenshots/Stage-select.png differ diff --git a/games/super-mario-3d-land/screenshots/Title.png b/games/super-mario-3d-land/screenshots/Title.png new file mode 100644 index 0000000..ae71b71 Binary files /dev/null and b/games/super-mario-3d-land/screenshots/Title.png differ diff --git a/games/super-mario-bros-2/boxart.png b/games/super-mario-bros-2/boxart.png new file mode 100644 index 0000000..4607aaf Binary files /dev/null and b/games/super-mario-bros-2/boxart.png differ diff --git a/games/super-mario-bros-2/game.dat b/games/super-mario-bros-2/game.dat new file mode 100644 index 0000000..8153836 --- /dev/null +++ b/games/super-mario-bros-2/game.dat @@ -0,0 +1,22 @@ +title = "Super Mario Bros. 2" +description = "Super Mario Bros. 2 is a platform game developed and published by Nintendo. The objective of the game is to navigate the player's character through the dream world Subcon and defeat the main antagonist Wart." +github_issues = [2552] +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "nes" + +[[ releases ]] +title = "00040000000A6200" +region = "usa" +release_date = "2013-07-11" + +[[ testcases ]] +title = "00040000000A6200" +compatibility = "1" +date = "2017-06-11" +version = "HEAD-9a8a90b" +author = "Hexagon12" +cpu = "Intel Core i3-6100" +gpu = "Nvidia GTX 750 Ti" +os = "Windows 10 Pro 15063" diff --git a/games/super-mario-bros-2/icon.png b/games/super-mario-bros-2/icon.png new file mode 100644 index 0000000..3edfd32 Binary files /dev/null and b/games/super-mario-bros-2/icon.png differ diff --git a/games/super-mario-bros-2/screenshots/1.png b/games/super-mario-bros-2/screenshots/1.png new file mode 100644 index 0000000..66e4e63 Binary files /dev/null and b/games/super-mario-bros-2/screenshots/1.png differ diff --git a/games/super-mario-bros-2/screenshots/2.png b/games/super-mario-bros-2/screenshots/2.png new file mode 100644 index 0000000..700eee3 Binary files /dev/null and b/games/super-mario-bros-2/screenshots/2.png differ diff --git a/games/super-mario-bros-2/screenshots/3.png b/games/super-mario-bros-2/screenshots/3.png new file mode 100644 index 0000000..5465055 Binary files /dev/null and b/games/super-mario-bros-2/screenshots/3.png differ diff --git a/games/super-mario-bros-2/screenshots/4.png b/games/super-mario-bros-2/screenshots/4.png new file mode 100644 index 0000000..9be1d7e Binary files /dev/null and b/games/super-mario-bros-2/screenshots/4.png differ diff --git a/games/super-mario-bros-3/boxart.png b/games/super-mario-bros-3/boxart.png new file mode 100644 index 0000000..65938be Binary files /dev/null and b/games/super-mario-bros-3/boxart.png differ diff --git a/games/super-mario-bros-3/game.dat b/games/super-mario-bros-3/game.dat new file mode 100644 index 0000000..1941f28 --- /dev/null +++ b/games/super-mario-bros-3/game.dat @@ -0,0 +1,32 @@ +title = "Super Mario Bros. 3" +description = "Super Mario Bros. 3 (Japanese: スーパーマリオブラザーズ3 Hepburn: Sūpā Mario Burazāzu Surī) is a platform video game developed and published by Nintendo for the Nintendo Entertainment System (NES) video game console" +github_issues = [2552] +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "nes" + +[[ releases ]] +title = "000400000006E700" +region = "jpn" +release_date = "2013-01-01" + +[[ releases ]] +title = "000400000006E900" +region = "eur" +release_date = "2013-12-26" + +[[ releases ]] +title = "000400000006E800" +region = "usa" +release_date = "2014-04-17" + +[[ testcases ]] +title = "000400000006E700" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/super-mario-bros-3/icon.png b/games/super-mario-bros-3/icon.png new file mode 100644 index 0000000..2c83ccb Binary files /dev/null and b/games/super-mario-bros-3/icon.png differ diff --git a/games/super-mario-bros-3/screenshots/Battle.png b/games/super-mario-bros-3/screenshots/Battle.png new file mode 100644 index 0000000..4258564 Binary files /dev/null and b/games/super-mario-bros-3/screenshots/Battle.png differ diff --git a/games/super-mario-bros-3/screenshots/Giant-World.png b/games/super-mario-bros-3/screenshots/Giant-World.png new file mode 100644 index 0000000..7f7c942 Binary files /dev/null and b/games/super-mario-bros-3/screenshots/Giant-World.png differ diff --git a/games/super-mario-bros-3/screenshots/Second-Controller.png b/games/super-mario-bros-3/screenshots/Second-Controller.png new file mode 100644 index 0000000..a062a80 Binary files /dev/null and b/games/super-mario-bros-3/screenshots/Second-Controller.png differ diff --git a/games/super-mario-bros-3/screenshots/Title-Screen.png b/games/super-mario-bros-3/screenshots/Title-Screen.png new file mode 100644 index 0000000..a50cfbf Binary files /dev/null and b/games/super-mario-bros-3/screenshots/Title-Screen.png differ diff --git a/games/super-mario-bros-the-lost-levels/boxart.png b/games/super-mario-bros-the-lost-levels/boxart.png new file mode 100644 index 0000000..7e08088 Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/boxart.png differ diff --git a/games/super-mario-bros-the-lost-levels/game.dat b/games/super-mario-bros-the-lost-levels/game.dat new file mode 100644 index 0000000..4c285d9 --- /dev/null +++ b/games/super-mario-bros-the-lost-levels/game.dat @@ -0,0 +1,32 @@ +title = "Super Mario Bros.: The Lost Levels" +description = "Super Mario Bros.: The Lost Levels is a 1986 side-scrolling, platform video game developed and published by Nintendo as the first sequel to their 1985 smash hit Super Mario Bros." +github_issues = [2552] +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "nes" + +[[ releases ]] +title = "0004000000093E00" +region = "jpn" +release_date = "2012-07-25" + +[[ releases ]] +title = "0004000000094E00" +region = "usa" +release_date = "2012-12-27" + +[[ releases ]] +title = "0004000000094F00" +region = "eur" +release_date = "2012-12-27" + +[[ testcases ]] +title = "0004000000093E00" +compatibility = "1" +date = "2017-06-05" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/super-mario-bros-the-lost-levels/icon.png b/games/super-mario-bros-the-lost-levels/icon.png new file mode 100644 index 0000000..e2e9050 Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/icon.png differ diff --git a/games/super-mario-bros-the-lost-levels/savefiles/World-3-2.dat b/games/super-mario-bros-the-lost-levels/savefiles/World-3-2.dat new file mode 100644 index 0000000..5843d97 --- /dev/null +++ b/games/super-mario-bros-the-lost-levels/savefiles/World-3-2.dat @@ -0,0 +1,4 @@ +title = "World 3-2" +description = "Restore Point at World 3-2 with 5 Lives and 65 Coins, Luigi Game and with Small Fire Luigi" +author = "Clector" +title_id = "0004000000093E00" diff --git a/games/super-mario-bros-the-lost-levels/savefiles/World-3-2.zip b/games/super-mario-bros-the-lost-levels/savefiles/World-3-2.zip new file mode 100644 index 0000000..f8d599b Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/savefiles/World-3-2.zip differ diff --git a/games/super-mario-bros-the-lost-levels/screenshots/Lost-Live.png b/games/super-mario-bros-the-lost-levels/screenshots/Lost-Live.png new file mode 100644 index 0000000..69600fc Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/screenshots/Lost-Live.png differ diff --git a/games/super-mario-bros-the-lost-levels/screenshots/Lvl-W3.png b/games/super-mario-bros-the-lost-levels/screenshots/Lvl-W3.png new file mode 100644 index 0000000..143d377 Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/screenshots/Lvl-W3.png differ diff --git a/games/super-mario-bros-the-lost-levels/screenshots/Restore-Point.png b/games/super-mario-bros-the-lost-levels/screenshots/Restore-Point.png new file mode 100644 index 0000000..5ae4a4f Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/screenshots/Restore-Point.png differ diff --git a/games/super-mario-bros-the-lost-levels/screenshots/Title-Screen.png b/games/super-mario-bros-the-lost-levels/screenshots/Title-Screen.png new file mode 100644 index 0000000..9f542c4 Binary files /dev/null and b/games/super-mario-bros-the-lost-levels/screenshots/Title-Screen.png differ diff --git a/games/super-mario-maker-for-nintendo-3ds/boxart.png b/games/super-mario-maker-for-nintendo-3ds/boxart.png new file mode 100644 index 0000000..6d29ae5 Binary files /dev/null and b/games/super-mario-maker-for-nintendo-3ds/boxart.png differ diff --git a/games/super-mario-maker-for-nintendo-3ds/game.dat b/games/super-mario-maker-for-nintendo-3ds/game.dat new file mode 100644 index 0000000..d5290f0 --- /dev/null +++ b/games/super-mario-maker-for-nintendo-3ds/game.dat @@ -0,0 +1,25 @@ +title = "Super Mario Maker for Nintendo 3DS" +description = "Super Mario Maker is a side-scrolling platform game and game creation system developed and published by Nintendo. It is a port of the 2015 Wii U title Super Mario Maker." +github_issues = [2446] +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "00040000001A0400" +region = "usa" +release_date = "2016-12-02" + +[[releases]] +title = "00040000001A0500" +region = "eur" +release_date = "2016-12-02" + +[[releases]] +title = "00040000001A0300" +region = "jpn" +release_date = "2016-12-01" + +[[releases]] +title = "00040000001BB800" +region = "kor" +release_date = "2017-08-03" diff --git a/games/super-mario-maker-for-nintendo-3ds/icon.png b/games/super-mario-maker-for-nintendo-3ds/icon.png new file mode 100644 index 0000000..b57627f Binary files /dev/null and b/games/super-mario-maker-for-nintendo-3ds/icon.png differ diff --git a/games/super-mario-maker-for-nintendo-3ds/screenshots/start.png b/games/super-mario-maker-for-nintendo-3ds/screenshots/start.png new file mode 100644 index 0000000..98fe4c4 Binary files /dev/null and b/games/super-mario-maker-for-nintendo-3ds/screenshots/start.png differ diff --git a/games/super-mario-maker-for-nintendo-3ds/screenshots/stuck-screen.png b/games/super-mario-maker-for-nintendo-3ds/screenshots/stuck-screen.png new file mode 100644 index 0000000..e4ec54f Binary files /dev/null and b/games/super-mario-maker-for-nintendo-3ds/screenshots/stuck-screen.png differ diff --git a/games/super-monkey-ball-3d/boxart.png b/games/super-monkey-ball-3d/boxart.png new file mode 100644 index 0000000..bbd8b5e Binary files /dev/null and b/games/super-monkey-ball-3d/boxart.png differ diff --git a/games/super-monkey-ball-3d/game.dat b/games/super-monkey-ball-3d/game.dat new file mode 100644 index 0000000..df1d669 --- /dev/null +++ b/games/super-monkey-ball-3d/game.dat @@ -0,0 +1,30 @@ +title = "Super Monkey Ball 3D" +description = "Super Monkey Ball 3D is an entry in the Super Monkey Ball developed for the Nintendo 3DS handheld game console. Players can either use the Circle Pad or the internal gyroscope of the Nintendo 3DS to navigate AiAi and friends so they can collect as many bananas as possible within the time limit as in previous games in the series." +incomplete = true +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "0004000000037000" +region = "usa" +release_date = "2011-03-27" + +[[ releases ]] +title = "0004000000038900" +region = "eur" +release_date = "2011-03-25" + +[[ releases ]] +title = "0004000000032E00" +region = "jpn" +release_date = "2011-03-03" + +[[ testcases ]] +title = "0004000000037000" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/super-monkey-ball-3d/icon.png b/games/super-monkey-ball-3d/icon.png new file mode 100644 index 0000000..6ba5691 Binary files /dev/null and b/games/super-monkey-ball-3d/icon.png differ diff --git a/games/super-monkey-ball-3d/screenshots/Challenge-intro.png b/games/super-monkey-ball-3d/screenshots/Challenge-intro.png new file mode 100644 index 0000000..447b914 Binary files /dev/null and b/games/super-monkey-ball-3d/screenshots/Challenge-intro.png differ diff --git a/games/super-monkey-ball-3d/screenshots/Ingame.png b/games/super-monkey-ball-3d/screenshots/Ingame.png new file mode 100644 index 0000000..722b5d9 Binary files /dev/null and b/games/super-monkey-ball-3d/screenshots/Ingame.png differ diff --git a/games/super-monkey-ball-3d/screenshots/Stage-select.png b/games/super-monkey-ball-3d/screenshots/Stage-select.png new file mode 100644 index 0000000..d06f09e Binary files /dev/null and b/games/super-monkey-ball-3d/screenshots/Stage-select.png differ diff --git a/games/super-monkey-ball-3d/screenshots/Title.png b/games/super-monkey-ball-3d/screenshots/Title.png new file mode 100644 index 0000000..a07bec1 Binary files /dev/null and b/games/super-monkey-ball-3d/screenshots/Title.png differ diff --git a/games/super-pokemon-rumble/boxart.png b/games/super-pokemon-rumble/boxart.png new file mode 100644 index 0000000..26c4415 Binary files /dev/null and b/games/super-pokemon-rumble/boxart.png differ diff --git a/games/super-pokemon-rumble/game.dat b/games/super-pokemon-rumble/game.dat new file mode 100644 index 0000000..a7d09a8 --- /dev/null +++ b/games/super-pokemon-rumble/game.dat @@ -0,0 +1,20 @@ +title = "Super Pokémon Rumble" +description = "Super Pokémon Rumble is an action video game in the Pokémon series for the Nintendo 3DS. It was the first Pokémon game released for Nintendo 3DS." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000066D00" +region = "eur" +release_date = "2011-12-02" + +[[ testcases ]] +compatibility = "2" +date = "2017-06-19" +title = "0004000000066D00" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/super-pokemon-rumble/icon.png b/games/super-pokemon-rumble/icon.png new file mode 100644 index 0000000..9008202 Binary files /dev/null and b/games/super-pokemon-rumble/icon.png differ diff --git a/games/super-robot-wars-ux/boxart.png b/games/super-robot-wars-ux/boxart.png new file mode 100644 index 0000000..8f7cfa3 Binary files /dev/null and b/games/super-robot-wars-ux/boxart.png differ diff --git a/games/super-robot-wars-ux/game.dat b/games/super-robot-wars-ux/game.dat new file mode 100644 index 0000000..1b69be0 --- /dev/null +++ b/games/super-robot-wars-ux/game.dat @@ -0,0 +1,9 @@ +title = "Super Robot Wars UX" +description = "Super Robot Wars UX (スーパーロボット大戦UX Sūpā Robotto Taisen Yū Ekkusu) is a tactical role-playing game for the Nintendo 3DS developed by Banpresto and published by Bandai Namco Games. It is the first Super Robot Wars (SRW) game released for the 3DS." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000078A00" +region = "jpn" +release_date = "2013-03-14" diff --git a/games/super-robot-wars-ux/icon.png b/games/super-robot-wars-ux/icon.png new file mode 100644 index 0000000..038c9e9 Binary files /dev/null and b/games/super-robot-wars-ux/icon.png differ diff --git a/games/super-robot-wars-ux/screenshots/battleground.png b/games/super-robot-wars-ux/screenshots/battleground.png new file mode 100644 index 0000000..a464ef4 Binary files /dev/null and b/games/super-robot-wars-ux/screenshots/battleground.png differ diff --git a/games/super-robot-wars-ux/screenshots/dialog.png b/games/super-robot-wars-ux/screenshots/dialog.png new file mode 100644 index 0000000..31debc3 Binary files /dev/null and b/games/super-robot-wars-ux/screenshots/dialog.png differ diff --git a/games/super-robot-wars-ux/screenshots/menus.png b/games/super-robot-wars-ux/screenshots/menus.png new file mode 100644 index 0000000..5a258de Binary files /dev/null and b/games/super-robot-wars-ux/screenshots/menus.png differ diff --git a/games/super-robot-wars-ux/screenshots/title-screen.png b/games/super-robot-wars-ux/screenshots/title-screen.png new file mode 100644 index 0000000..7ae5b5b Binary files /dev/null and b/games/super-robot-wars-ux/screenshots/title-screen.png differ diff --git a/games/super-smash-bros-update-ver-117/boxart.png b/games/super-smash-bros-update-ver-117/boxart.png new file mode 100644 index 0000000..e48d885 Binary files /dev/null and b/games/super-smash-bros-update-ver-117/boxart.png differ diff --git a/games/super-smash-bros-update-ver-117/game.dat b/games/super-smash-bros-update-ver-117/game.dat new file mode 100644 index 0000000..4f0a5b4 --- /dev/null +++ b/games/super-smash-bros-update-ver-117/game.dat @@ -0,0 +1,30 @@ +title = "Super Smash Bros. for Nintendo 3DS" +description = "Super Smash Bros. for Nintendo 3DS is a fighting video game developed by Sora Ltd. and Bandai Namco Games, with assistance from tri-Crescendo, and published by Nintendo for the Nintendo 3DS and video game consoles. Despite being similarly titled games, even with almost similar content, the two titles are officially considered the fourth and fifth versions, respectively, in the Super Smash Bros. series of games by creator and game director Masahiro Sakurai." +github_issues = [2477] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "00040000000EDF00" +region = "usa" +release_date = "2014-10-03" + +[[ releases ]] +title = "00040000000EE000" +region = "eur" +release_date = "2014-10-03" + +[[ releases ]] +title = "00040000000B8B00" +region = "jpn" +release_date = "2014-09-13" + +[[ testcases ]] +title = "00040000000EDF00" +compatibility = "1" +date = "2017-05-31" +version = "HEAD-4857eb4" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/super-smash-bros-update-ver-117/icon.png b/games/super-smash-bros-update-ver-117/icon.png new file mode 100644 index 0000000..34c2046 Binary files /dev/null and b/games/super-smash-bros-update-ver-117/icon.png differ diff --git a/games/super-smash-bros-update-ver-117/screenshots/Character-select.png b/games/super-smash-bros-update-ver-117/screenshots/Character-select.png new file mode 100644 index 0000000..d56d758 Binary files /dev/null and b/games/super-smash-bros-update-ver-117/screenshots/Character-select.png differ diff --git a/games/super-smash-bros-update-ver-117/screenshots/Fight.png b/games/super-smash-bros-update-ver-117/screenshots/Fight.png new file mode 100644 index 0000000..3a51c87 Binary files /dev/null and b/games/super-smash-bros-update-ver-117/screenshots/Fight.png differ diff --git a/games/super-smash-bros-update-ver-117/screenshots/Run.png b/games/super-smash-bros-update-ver-117/screenshots/Run.png new file mode 100644 index 0000000..8ab454a Binary files /dev/null and b/games/super-smash-bros-update-ver-117/screenshots/Run.png differ diff --git a/games/super-smash-bros-update-ver-117/screenshots/Title.png b/games/super-smash-bros-update-ver-117/screenshots/Title.png new file mode 100644 index 0000000..4822599 Binary files /dev/null and b/games/super-smash-bros-update-ver-117/screenshots/Title.png differ diff --git a/games/super-street-fighter-iv-3d-edition/boxart.png b/games/super-street-fighter-iv-3d-edition/boxart.png new file mode 100644 index 0000000..5ed45f2 Binary files /dev/null and b/games/super-street-fighter-iv-3d-edition/boxart.png differ diff --git a/games/super-street-fighter-iv-3d-edition/game.dat b/games/super-street-fighter-iv-3d-edition/game.dat new file mode 100644 index 0000000..994b49a --- /dev/null +++ b/games/super-street-fighter-iv-3d-edition/game.dat @@ -0,0 +1,31 @@ +title = "Super Street Fighter IV: 3D Edition" +description = "Super Street Fighter IV: 3D Edition is a fighting video game developed and published by Capcom for the Nintendo 3DS handheld game console. It was released as a launch game in all continents, but in Japan first on 26 February 2011. It is a port of the console game Super Street Fighter IV." +needs_system_files = false +needs_shared_font = false +game_type = "3ds" +incomplete = true + +[[ releases ]] +title = "0004000000032D00" +region = "usa" +release_date = "2011-03-27" + +[[ releases ]] +title = "0004000000033C00" +region = "eur" +release_date = "2011-03-25" + +[[ releases ]] +title = "0004000000030500" +region = "jpn" +release_date = "2011-02-26" + +[[ testcases ]] +title = "0004000000032D00" +compatibility = "4" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/super-street-fighter-iv-3d-edition/icon.png b/games/super-street-fighter-iv-3d-edition/icon.png new file mode 100644 index 0000000..fe6893b Binary files /dev/null and b/games/super-street-fighter-iv-3d-edition/icon.png differ diff --git a/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/boxart.png b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/boxart.png new file mode 100644 index 0000000..43c78f4 Binary files /dev/null and b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/boxart.png differ diff --git a/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/game.dat b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/game.dat new file mode 100644 index 0000000..0ce2784 --- /dev/null +++ b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/game.dat @@ -0,0 +1,15 @@ +title = "Taiko no Tatsujin: Don to Katsu no Jikū Daibōken" +description = "Taiko no Tatsujin: Don to Katsu no Jikū Daibōken is a rhythm game developed and published by Bandai Namco Games, and the second Taiko no Tatsujin game exclusively for the Nintendo 3DS. It features licensed and original songs and is played with the touchscreen and buttons to drum to a beat." +incomplete = true +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000102F00" +region = "jpn" +release_date = "2014-06-26" + +[[releases]] +title = "000400000016D900" +region = "kor" +release_date = "2015-08-27" \ No newline at end of file diff --git a/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/icon.png b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/icon.png new file mode 100644 index 0000000..02d62ab Binary files /dev/null and b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/icon.png differ diff --git a/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/screenshots/Title-Screen.png b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/screenshots/Title-Screen.png new file mode 100644 index 0000000..627167b Binary files /dev/null and b/games/taiko-no-tatsujin-don-to-katsu-no-jiku-daiboken/screenshots/Title-Screen.png differ diff --git a/games/tales-of-the-abyss-3d/boxart.png b/games/tales-of-the-abyss-3d/boxart.png new file mode 100644 index 0000000..04cb2ca Binary files /dev/null and b/games/tales-of-the-abyss-3d/boxart.png differ diff --git a/games/tales-of-the-abyss-3d/game.dat b/games/tales-of-the-abyss-3d/game.dat new file mode 100644 index 0000000..44d0915 --- /dev/null +++ b/games/tales-of-the-abyss-3d/game.dat @@ -0,0 +1,41 @@ +title = "Tales of the Abyss" +description = "Tales of the Abyss is a Japanese RPG developed by Namco Tales Studio and published by Bandai Namco Entertainment." +incomplete = true +github_issues = [1542, 2543] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000061300" +region = "usa" +release_date = "2012-02-14" + +[[releases]] +title = "000400000005D700" +region = "eur" +release_date = "2011-11-25" + +[[releases]] +title = "000400000004A700" +region = "jpn" +release_date = "2011-06-30" + +[[testcases]] +title = "000400000005D700" +compatibility = "3" +date = "2017-07-12" +version = "HEAD-c017065" +author = "jdenm8" +cpu = "Intel i5 2500K" +gpu = "AMD Radeon R9 380" +os = "Windows 10 Build 14393" + +[[testcases]] +title = "000400000005D700" +compatibility = "4" +date = "2017-11-06" +version = "HEAD-4fc0448" +author = "jdenm8" +cpu = "Intel i5 2500K" +gpu = "AMD Radeon R9 380" +os = "Windows 10 Build 14393" diff --git a/games/tales-of-the-abyss-3d/icon.png b/games/tales-of-the-abyss-3d/icon.png new file mode 100644 index 0000000..4b7f8b9 Binary files /dev/null and b/games/tales-of-the-abyss-3d/icon.png differ diff --git a/games/tappingo/boxart.png b/games/tappingo/boxart.png new file mode 100644 index 0000000..a632f59 Binary files /dev/null and b/games/tappingo/boxart.png differ diff --git a/games/tappingo/game.dat b/games/tappingo/game.dat new file mode 100644 index 0000000..9e1a675 --- /dev/null +++ b/games/tappingo/game.dat @@ -0,0 +1,24 @@ +title = "Tappingo" +description = "Tappingo is an awesome new puzzle game, in which you create small pictures by solving puzzles. Your goal is to solve each puzzle picture by making all the numbered blocks extend into lines of the correct length. The number on each block indicates exactly how long the line needs to be." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000117600" +region = "eur" +release_date = "2014-06-03" + +[[ releases ]] +title = "0004000000119800" +region = "usa" +release_date = "2014-02-27" + +[[ testcases ]] +title = "0004000000119800" +compatibility = "1" +date = "2017-06-16" +version = "HEAD-8658bb7" +author = "Stewartisme" +cpu = "Intel Core i5-4460" +gpu = "NVIDIA GeForce GTX 960" +os = "Windows 7 Ultimate 64-bit" diff --git a/games/tappingo/icon.png b/games/tappingo/icon.png new file mode 100644 index 0000000..71ef8e3 Binary files /dev/null and b/games/tappingo/icon.png differ diff --git a/games/tappingo/screenshots/1Title.png b/games/tappingo/screenshots/1Title.png new file mode 100644 index 0000000..653e147 Binary files /dev/null and b/games/tappingo/screenshots/1Title.png differ diff --git a/games/tappingo/screenshots/2Tutorial.png b/games/tappingo/screenshots/2Tutorial.png new file mode 100644 index 0000000..7f3c9c6 Binary files /dev/null and b/games/tappingo/screenshots/2Tutorial.png differ diff --git a/games/tappingo/screenshots/3IceCreamAlmostDone.png b/games/tappingo/screenshots/3IceCreamAlmostDone.png new file mode 100644 index 0000000..594c451 Binary files /dev/null and b/games/tappingo/screenshots/3IceCreamAlmostDone.png differ diff --git a/games/tappingo/screenshots/4CherryDone.png b/games/tappingo/screenshots/4CherryDone.png new file mode 100644 index 0000000..c0c3282 Binary files /dev/null and b/games/tappingo/screenshots/4CherryDone.png differ diff --git a/games/tappingo/screenshots/5PearComplete.png b/games/tappingo/screenshots/5PearComplete.png new file mode 100644 index 0000000..ce7b690 Binary files /dev/null and b/games/tappingo/screenshots/5PearComplete.png differ diff --git a/games/terraria/boxart.png b/games/terraria/boxart.png new file mode 100644 index 0000000..c0cb799 Binary files /dev/null and b/games/terraria/boxart.png differ diff --git a/games/terraria/game.dat b/games/terraria/game.dat new file mode 100644 index 0000000..717592f --- /dev/null +++ b/games/terraria/game.dat @@ -0,0 +1,29 @@ +title = "Terraria" +description = "Explore vast fantasy worlds by excavating down to the depths of the earth or soaring up to islands in the sky. Wage war on hundreds of different enemies and giant bosses with weapons and armour you've crafted yourself. Reach directly into the world of Terraria using the intuitive touch-screen interface, building anything from simple dwellings to immense fortresses with the swipe of your stylus. Share the adventure with up to four friends via Local Play, teaming up to battle monstrous bosses or build amazing super-structures." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000016A900" +region = "usa" +release_date = "2015-12-10" + +[[releases]] +title = "000400000016A600" +region = "eur" +release_date = "2015-12-10" + +[[releases]] +title = "0004000000193500" +region = "jpn" +release_date = "2015-12-10" + +[[testcases]] +title = "000400000016A600" +compatibility = "1" +date = "2017-08-09" +version = "HEAD-792dee4" +cpu = "Intel Core i7 2630QM" +gpu = "GeForce GT 540M" +os = "Windows 7 7601" +author = "flaviculpus" diff --git a/games/terraria/icon.png b/games/terraria/icon.png new file mode 100644 index 0000000..63cf737 Binary files /dev/null and b/games/terraria/icon.png differ diff --git a/games/terraria/screenshots/ingame.png b/games/terraria/screenshots/ingame.png new file mode 100644 index 0000000..fb91b7d Binary files /dev/null and b/games/terraria/screenshots/ingame.png differ diff --git a/games/terraria/screenshots/intro-screen.png b/games/terraria/screenshots/intro-screen.png new file mode 100644 index 0000000..e0f3745 Binary files /dev/null and b/games/terraria/screenshots/intro-screen.png differ diff --git a/games/terraria/screenshots/loading-screen.png b/games/terraria/screenshots/loading-screen.png new file mode 100644 index 0000000..9d0d71b Binary files /dev/null and b/games/terraria/screenshots/loading-screen.png differ diff --git a/games/tetris-axis/boxart.png b/games/tetris-axis/boxart.png new file mode 100644 index 0000000..2c4b0c9 Binary files /dev/null and b/games/tetris-axis/boxart.png differ diff --git a/games/tetris-axis/game.dat b/games/tetris-axis/game.dat new file mode 100644 index 0000000..d70e027 --- /dev/null +++ b/games/tetris-axis/game.dat @@ -0,0 +1,30 @@ +title = "Tetris Axis" +description = "Tetris Axis, released as simply Tetris in some regions, is a puzzle video game for the Nintendo 3DS developed by Hudson Soft and Bandai and was published by Nintendo." +needs_system_files = true +needs_shared_font = false +incomplete = true + +[[ releases ]] +title = "0004000000043800" +region = "usa" +release_date = "2011-10-02" + +[[ releases ]] +title = "000400000004C100" +region = "eur" +release_date = "2011-10-21" + +[[ releases ]] +title = "0004000000039E00" +region = "jpn" +release_date = "2011-10-20" + +[[ testcases ]] +title = "0004000000043800" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/tetris-axis/icon.png b/games/tetris-axis/icon.png new file mode 100644 index 0000000..7681816 Binary files /dev/null and b/games/tetris-axis/icon.png differ diff --git a/games/tetris-ultimate/boxart.png b/games/tetris-ultimate/boxart.png new file mode 100644 index 0000000..0bf1e64 Binary files /dev/null and b/games/tetris-ultimate/boxart.png differ diff --git a/games/tetris-ultimate/game.dat b/games/tetris-ultimate/game.dat new file mode 100644 index 0000000..8bce14d --- /dev/null +++ b/games/tetris-ultimate/game.dat @@ -0,0 +1,14 @@ +title = "Tetris Ultimate" +description = "Tetris Ultimate is a 3DS release of the famous puzzle game, developed and published by Ubisoft Osaka. It features classic modes such as Marathon, and also new ones such as Battle Ultimate." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000012EC00" +region = "usa" +release_date = "2014-11-13" + +[[releases]] +title = "0004000000132400" +region = "eur" +release_date = "2014-11-13" diff --git a/games/tetris-ultimate/icon.png b/games/tetris-ultimate/icon.png new file mode 100644 index 0000000..5ee7876 Binary files /dev/null and b/games/tetris-ultimate/icon.png differ diff --git a/games/tetris-ultimate/screenshots/battle.png b/games/tetris-ultimate/screenshots/battle.png new file mode 100644 index 0000000..e1ed01a Binary files /dev/null and b/games/tetris-ultimate/screenshots/battle.png differ diff --git a/games/tetris-ultimate/screenshots/marathon.png b/games/tetris-ultimate/screenshots/marathon.png new file mode 100644 index 0000000..09aa9b4 Binary files /dev/null and b/games/tetris-ultimate/screenshots/marathon.png differ diff --git a/games/tetris-ultimate/screenshots/title-screen.png b/games/tetris-ultimate/screenshots/title-screen.png new file mode 100644 index 0000000..0f5ce58 Binary files /dev/null and b/games/tetris-ultimate/screenshots/title-screen.png differ diff --git a/games/tetris/boxart.png b/games/tetris/boxart.png new file mode 100644 index 0000000..c1e20f7 Binary files /dev/null and b/games/tetris/boxart.png differ diff --git a/games/tetris/game.dat b/games/tetris/game.dat new file mode 100644 index 0000000..7129d46 --- /dev/null +++ b/games/tetris/game.dat @@ -0,0 +1,22 @@ +title = "Tetris" +description = "Tetris is a puzzle video game for the Game Boy released in 1989. A Nintendo 3DS Virtual Console version of Tetris was released in December 2011 and lacks the multiplayer functionality. It was delisted from the Nintendo eShop after December 31, 2014." +github_issues = [2552] +needs_system_files = false +needs_shared_font = true +game_type = "vc" +vc_system = "gb" + +[[ releases ]] +title = "000400000007E700" +region = "usa" +release_date = "2011-12-22" + +[[ testcases ]] +title = "000400000007E700" +compatibility = "1" +date = "2017-06-04" +version = "HEAD-8f0a23b" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/tetris/icon.png b/games/tetris/icon.png new file mode 100644 index 0000000..ee8219d Binary files /dev/null and b/games/tetris/icon.png differ diff --git a/games/tetris/screenshots/citra-qt_2017-06-04_23-01-45.png b/games/tetris/screenshots/citra-qt_2017-06-04_23-01-45.png new file mode 100644 index 0000000..bde97b9 Binary files /dev/null and b/games/tetris/screenshots/citra-qt_2017-06-04_23-01-45.png differ diff --git a/games/tetris/screenshots/citra-qt_2017-06-04_23-03-43.png b/games/tetris/screenshots/citra-qt_2017-06-04_23-03-43.png new file mode 100644 index 0000000..781f223 Binary files /dev/null and b/games/tetris/screenshots/citra-qt_2017-06-04_23-03-43.png differ diff --git a/games/tetris/screenshots/citra-qt_2017-06-04_23-03-56.png b/games/tetris/screenshots/citra-qt_2017-06-04_23-03-56.png new file mode 100644 index 0000000..87fedf9 Binary files /dev/null and b/games/tetris/screenshots/citra-qt_2017-06-04_23-03-56.png differ diff --git a/games/the-alliance-alive/boxart.png b/games/the-alliance-alive/boxart.png new file mode 100644 index 0000000..3d6dace Binary files /dev/null and b/games/the-alliance-alive/boxart.png differ diff --git a/games/the-alliance-alive/game.dat b/games/the-alliance-alive/game.dat new file mode 100644 index 0000000..842e37c --- /dev/null +++ b/games/the-alliance-alive/game.dat @@ -0,0 +1,14 @@ +title = "The Alliance Alive" +description = "The Alliance Alive is a Japanese RPG (JRPG) for the Nintendo 3DS, developed by Cattle Call and published by FuRyu in Japan, and Atlus in the United States. It uses turn based battles and an overworld map. It follows a group of heroes as they fight against the Daemons, a race of beings who blotted out the sun a millennium in the past." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "00040000001CCD00" +region = "usa" +release_date = "2018-03-27" + +[[releases]] +title = "00040000001B4500" +region = "jpn" +release_date = "2017-06-22" diff --git a/games/the-alliance-alive/icon.png b/games/the-alliance-alive/icon.png new file mode 100644 index 0000000..f36046d Binary files /dev/null and b/games/the-alliance-alive/icon.png differ diff --git a/games/the-alliance-alive/screenshots/gameplay-battle.png b/games/the-alliance-alive/screenshots/gameplay-battle.png new file mode 100644 index 0000000..e0856c3 Binary files /dev/null and b/games/the-alliance-alive/screenshots/gameplay-battle.png differ diff --git a/games/the-alliance-alive/screenshots/gameplay-world.png b/games/the-alliance-alive/screenshots/gameplay-world.png new file mode 100644 index 0000000..26b8022 Binary files /dev/null and b/games/the-alliance-alive/screenshots/gameplay-world.png differ diff --git a/games/the-alliance-alive/screenshots/title-screen.png b/games/the-alliance-alive/screenshots/title-screen.png new file mode 100644 index 0000000..f2565b6 Binary files /dev/null and b/games/the-alliance-alive/screenshots/title-screen.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/boxart.png b/games/the-denpa-men-2-beyond-the-waves/boxart.png new file mode 100644 index 0000000..80b8ecb Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/boxart.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/game.dat b/games/the-denpa-men-2-beyond-the-waves/game.dat new file mode 100644 index 0000000..39638ac --- /dev/null +++ b/games/the-denpa-men-2-beyond-the-waves/game.dat @@ -0,0 +1,20 @@ +title = "The Denpa Men 2: Beyond The Waves" +description = "The Denpa Men 2: Beyond The Waves is a 3D augmented reality role playing video game developed and published by Genius Sonority, and is a sequel to The Denpa Men: They Came By Wave." +needs_system_files = true +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000C3300" +region = "usa" +release_date = "2013-05-30" + +[[releases]] +title = "00040000000EAF00" +region = "eur" +release_date = "2013-05-30" + +[[releases]] +title = "00040000000A7900" +region = "jpn" +release_date = "2012-09-26" diff --git a/games/the-denpa-men-2-beyond-the-waves/icon.png b/games/the-denpa-men-2-beyond-the-waves/icon.png new file mode 100644 index 0000000..b9ff12f Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/icon.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/screenshots/attacking.png b/games/the-denpa-men-2-beyond-the-waves/screenshots/attacking.png new file mode 100644 index 0000000..549a321 Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/screenshots/attacking.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/screenshots/battle.png b/games/the-denpa-men-2-beyond-the-waves/screenshots/battle.png new file mode 100644 index 0000000..ff77f4b Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/screenshots/battle.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/screenshots/digitown.png b/games/the-denpa-men-2-beyond-the-waves/screenshots/digitown.png new file mode 100644 index 0000000..5c8035f Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/screenshots/digitown.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/screenshots/title-screen.png b/games/the-denpa-men-2-beyond-the-waves/screenshots/title-screen.png new file mode 100644 index 0000000..66f0441 Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/screenshots/title-screen.png differ diff --git a/games/the-denpa-men-2-beyond-the-waves/screenshots/world-map.png b/games/the-denpa-men-2-beyond-the-waves/screenshots/world-map.png new file mode 100644 index 0000000..f2e8d45 Binary files /dev/null and b/games/the-denpa-men-2-beyond-the-waves/screenshots/world-map.png differ diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/boxart.png b/games/the-denpa-men-3-the-rise-of-digitoll/boxart.png new file mode 100644 index 0000000..746323d Binary files /dev/null and b/games/the-denpa-men-3-the-rise-of-digitoll/boxart.png differ diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/game.dat b/games/the-denpa-men-3-the-rise-of-digitoll/game.dat new file mode 100644 index 0000000..0b59979 --- /dev/null +++ b/games/the-denpa-men-3-the-rise-of-digitoll/game.dat @@ -0,0 +1,20 @@ +title = "The Denpa Men 3: The Rise of Digitoll" +description = "The Denpa Men 3: The Rise of Digitoll is a 3D augmented reality role playing video game developed and published by Genius Sonority, and is the third game in \"The Denpa Men\" series." +needs_system_files = true +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "000400000011DE00" +region = "usa" +release_date = "2014-05-08" + +[[releases]] +title = "000400000011C800" +region = "eur" +release_date = "2014-05-08" + +[[releases]] +title = "00040000000EF000" +region = "jpn" +release_date = "2013-08-07" diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/icon.png b/games/the-denpa-men-3-the-rise-of-digitoll/icon.png new file mode 100644 index 0000000..edbc86b Binary files /dev/null and b/games/the-denpa-men-3-the-rise-of-digitoll/icon.png differ diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/battle-attacking.png b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/battle-attacking.png new file mode 100644 index 0000000..4600f9d Binary files /dev/null and b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/battle-attacking.png differ diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/battle.png b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/battle.png new file mode 100644 index 0000000..185145c Binary files /dev/null and b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/battle.png differ diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/overworld.png b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/overworld.png new file mode 100644 index 0000000..3d774e6 Binary files /dev/null and b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/overworld.png differ diff --git a/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/title-screen.png b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/title-screen.png new file mode 100644 index 0000000..a189c84 Binary files /dev/null and b/games/the-denpa-men-3-the-rise-of-digitoll/screenshots/title-screen.png differ diff --git a/games/the-denpa-men-they-came-by-wave/boxart.png b/games/the-denpa-men-they-came-by-wave/boxart.png new file mode 100644 index 0000000..e043500 Binary files /dev/null and b/games/the-denpa-men-they-came-by-wave/boxart.png differ diff --git a/games/the-denpa-men-they-came-by-wave/game.dat b/games/the-denpa-men-they-came-by-wave/game.dat new file mode 100644 index 0000000..b24e8fe --- /dev/null +++ b/games/the-denpa-men-they-came-by-wave/game.dat @@ -0,0 +1,20 @@ +title = "The Denpa Men: They Came By Wave" +description = "The Denpa Men: They Came By Wave is a 3D augmented reality role playing video game developed and published by Genius Sonority." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "00040000000A3100" +region = "usa" +release_date = "2012-09-27" + +[[releases]] +title = "00040000000C2400" +region = "eur" +release_date = "2012-12-06" + +[[releases]] +title = "0004000000077E00" +region = "jpn" +release_date = "2012-02-08" diff --git a/games/the-denpa-men-they-came-by-wave/icon.png b/games/the-denpa-men-they-came-by-wave/icon.png new file mode 100644 index 0000000..2831f8f Binary files /dev/null and b/games/the-denpa-men-they-came-by-wave/icon.png differ diff --git a/games/the-denpa-men-they-came-by-wave/screenshots/battle.png b/games/the-denpa-men-they-came-by-wave/screenshots/battle.png new file mode 100644 index 0000000..67cd023 Binary files /dev/null and b/games/the-denpa-men-they-came-by-wave/screenshots/battle.png differ diff --git a/games/the-denpa-men-they-came-by-wave/screenshots/beginning-dialogue.png b/games/the-denpa-men-they-came-by-wave/screenshots/beginning-dialogue.png new file mode 100644 index 0000000..3c92080 Binary files /dev/null and b/games/the-denpa-men-they-came-by-wave/screenshots/beginning-dialogue.png differ diff --git a/games/the-denpa-men-they-came-by-wave/screenshots/title-screen.png b/games/the-denpa-men-they-came-by-wave/screenshots/title-screen.png new file mode 100644 index 0000000..ce7268e Binary files /dev/null and b/games/the-denpa-men-they-came-by-wave/screenshots/title-screen.png differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/boxart.png b/games/the-legend-of-zelda-ocarina-of-time-3d/boxart.png new file mode 100644 index 0000000..1348661 Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/boxart.png differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/game.dat b/games/the-legend-of-zelda-ocarina-of-time-3d/game.dat new file mode 100644 index 0000000..3e032e4 --- /dev/null +++ b/games/the-legend-of-zelda-ocarina-of-time-3d/game.dat @@ -0,0 +1,29 @@ +title = "The Legend of Zelda: Ocarina of Time 3D" +description = "The Legend of Zelda: Ocarina of Time 3D is an action-adventure video game co-developed by Grezzo and Nintendo EAD Tokyo and published by Nintendo for the Nintendo 3DS handheld game console." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000033500" +region = "usa" +release_date = "2011-06-19" + +[[releases]] +title = "0004000000033600" +region = "eur" +release_date = "2011-06-17" + +[[releases]] +title = "0004000000033400" +region = "jpn" +release_date = "2011-06-16" + +[[ testcases ]] +title = "0004000000033500" +compatibility = "0" +date = "2017-06-03" +version = "HEAD-a7ddec8" +author = "Flamboyant_Ham" +cpu = "Intel Core i7-4720HQ" +gpu = "GeForce GTX 960M" +os = "Windows 10 14393" diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/icon.png b/games/the-legend-of-zelda-ocarina-of-time-3d/icon.png new file mode 100644 index 0000000..6632b86 Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/icon.png differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/savefiles/great-deku-tree.dat b/games/the-legend-of-zelda-ocarina-of-time-3d/savefiles/great-deku-tree.dat new file mode 100644 index 0000000..1b79d80 --- /dev/null +++ b/games/the-legend-of-zelda-ocarina-of-time-3d/savefiles/great-deku-tree.dat @@ -0,0 +1,4 @@ +title = "Great Deku Tree" +description = "Starts off right when you first enter the Great Deku Tree, skips the opening." +author = "Flamboyant_Ham" +title_id = "0004000000033500" diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/savefiles/great-deku-tree.zip b/games/the-legend-of-zelda-ocarina-of-time-3d/savefiles/great-deku-tree.zip new file mode 100644 index 0000000..90388a7 Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/savefiles/great-deku-tree.zip differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-18-32.png b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-18-32.png new file mode 100644 index 0000000..a3c9c40 Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-18-32.png differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-25-41.png b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-25-41.png new file mode 100644 index 0000000..6b6cec5 Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-25-41.png differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-26-47.png b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-26-47.png new file mode 100644 index 0000000..17ec144 Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/citra-qt_2017-06-03_12-26-47.png differ diff --git a/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/start-screen.png b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/start-screen.png new file mode 100644 index 0000000..7a52c4b Binary files /dev/null and b/games/the-legend-of-zelda-ocarina-of-time-3d/screenshots/start-screen.png differ diff --git a/games/the-sims-3-pets/boxart.png b/games/the-sims-3-pets/boxart.png new file mode 100644 index 0000000..423d26e Binary files /dev/null and b/games/the-sims-3-pets/boxart.png differ diff --git a/games/the-sims-3-pets/game.dat b/games/the-sims-3-pets/game.dat new file mode 100644 index 0000000..557eedd --- /dev/null +++ b/games/the-sims-3-pets/game.dat @@ -0,0 +1,19 @@ +title = "The Sims 3 Pets" +description = "The Sims 3 Pets is a life simulation game developed by EA Salt Lake and published by Electronic Arts. It is an expansion and standalone game to The Sims 3. The game brings cats and dogs into the world and adds various new household items to decorate with. However, the console version only adds cats and dogs while the PC version includes horses." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000005A300" +region = "usa" +release_date = "2011-10-18" + +[[releases]] +title = "000400000005A900" +region = "eur" +release_date = "2011-10-21" + +[[releases]] +title = "000400000006AB00" +region = "jpn" +release_date = "2011-11-17" diff --git a/games/the-sims-3-pets/icon.png b/games/the-sims-3-pets/icon.png new file mode 100644 index 0000000..799c43b Binary files /dev/null and b/games/the-sims-3-pets/icon.png differ diff --git a/games/the-sims-3-pets/screenshots/Map-Screen.png b/games/the-sims-3-pets/screenshots/Map-Screen.png new file mode 100644 index 0000000..bf25cdb Binary files /dev/null and b/games/the-sims-3-pets/screenshots/Map-Screen.png differ diff --git a/games/the-sims-3-pets/screenshots/Title-Screen.png b/games/the-sims-3-pets/screenshots/Title-Screen.png new file mode 100644 index 0000000..f07928b Binary files /dev/null and b/games/the-sims-3-pets/screenshots/Title-Screen.png differ diff --git a/games/the-sims-3-pets/screenshots/Tutorial-House.png b/games/the-sims-3-pets/screenshots/Tutorial-House.png new file mode 100644 index 0000000..a126c51 Binary files /dev/null and b/games/the-sims-3-pets/screenshots/Tutorial-House.png differ diff --git a/games/the-sims-3/boxart.png b/games/the-sims-3/boxart.png new file mode 100644 index 0000000..98b1f5f Binary files /dev/null and b/games/the-sims-3/boxart.png differ diff --git a/games/the-sims-3/game.dat b/games/the-sims-3/game.dat new file mode 100644 index 0000000..51a2607 --- /dev/null +++ b/games/the-sims-3/game.dat @@ -0,0 +1,19 @@ +title = "The Sims 3" +description = "The Sims 3 is a strategy / life simulation game developed by The Sims Studio and published by Electronic Arts. The Sims 3 is built upon the same concept as its predecessors. Players control their own Sims' activities and relationships in a manner similar to real life." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "0004000000036500" +region = "usa" +release_date = "2011-03-27" + +[[releases]] +title = "0004000000033D00" +region = "eur" +release_date = "2011-03-25" + +[[releases]] +title = "0004000000037F00" +region = "jpn" +release_date = "2014-04-11" diff --git a/games/the-sims-3/icon.png b/games/the-sims-3/icon.png new file mode 100644 index 0000000..0ebda34 Binary files /dev/null and b/games/the-sims-3/icon.png differ diff --git a/games/the-sims-3/screenshots/Clothes.png b/games/the-sims-3/screenshots/Clothes.png new file mode 100644 index 0000000..63a1b9c Binary files /dev/null and b/games/the-sims-3/screenshots/Clothes.png differ diff --git a/games/the-sims-3/screenshots/Personality.png b/games/the-sims-3/screenshots/Personality.png new file mode 100644 index 0000000..ed06818 Binary files /dev/null and b/games/the-sims-3/screenshots/Personality.png differ diff --git a/games/the-sims-3/screenshots/Welcome.png b/games/the-sims-3/screenshots/Welcome.png new file mode 100644 index 0000000..c840d02 Binary files /dev/null and b/games/the-sims-3/screenshots/Welcome.png differ diff --git a/games/theatrhythm-dragon-quest/boxart.png b/games/theatrhythm-dragon-quest/boxart.png new file mode 100644 index 0000000..45bf08b Binary files /dev/null and b/games/theatrhythm-dragon-quest/boxart.png differ diff --git a/games/theatrhythm-dragon-quest/game.dat b/games/theatrhythm-dragon-quest/game.dat new file mode 100644 index 0000000..494a7e7 --- /dev/null +++ b/games/theatrhythm-dragon-quest/game.dat @@ -0,0 +1,9 @@ +title = "Theatrhythm Dragon Quest" +description = "Theatrhythm Dragon Quest (シアトリズムドラゴンクエスト Shiatorizumu Doragon Kuesuto) is a 2015 rhythm game developed by indieszero and published by Square Enix. It was released on March 26, 2015, as the first music video game of the Dragon Quest series. It is the third Theatrhythm game after Theatrhythm Final Fantasy and Theatrhythm Final Fantasy: Curtain Call." +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000140000" +region = "jpn" +release_date = "2015-03-26" diff --git a/games/theatrhythm-dragon-quest/icon.png b/games/theatrhythm-dragon-quest/icon.png new file mode 100644 index 0000000..92dc5c1 Binary files /dev/null and b/games/theatrhythm-dragon-quest/icon.png differ diff --git a/games/theatrhythm-dragon-quest/screenshots/levelselect.png b/games/theatrhythm-dragon-quest/screenshots/levelselect.png new file mode 100644 index 0000000..9ae5de0 Binary files /dev/null and b/games/theatrhythm-dragon-quest/screenshots/levelselect.png differ diff --git a/games/theatrhythm-dragon-quest/screenshots/mainmenu.png b/games/theatrhythm-dragon-quest/screenshots/mainmenu.png new file mode 100644 index 0000000..4c18d70 Binary files /dev/null and b/games/theatrhythm-dragon-quest/screenshots/mainmenu.png differ diff --git a/games/theatrhythm-dragon-quest/screenshots/titlescreen.png b/games/theatrhythm-dragon-quest/screenshots/titlescreen.png new file mode 100644 index 0000000..20b3469 Binary files /dev/null and b/games/theatrhythm-dragon-quest/screenshots/titlescreen.png differ diff --git a/games/tom-clancys-splinter-cell-3d/boxart.png b/games/tom-clancys-splinter-cell-3d/boxart.png new file mode 100644 index 0000000..15b015d Binary files /dev/null and b/games/tom-clancys-splinter-cell-3d/boxart.png differ diff --git a/games/tom-clancys-splinter-cell-3d/game.dat b/games/tom-clancys-splinter-cell-3d/game.dat new file mode 100644 index 0000000..05b0bcd --- /dev/null +++ b/games/tom-clancys-splinter-cell-3d/game.dat @@ -0,0 +1,30 @@ +title = "Tom Clancy's Splinter Cell 3D" +description = "Tom Clancy's Splinter Cell 3D is a remake of Splinter Cell: Chaos Theory developed by Gameloft and published by Ubisoft. It was both an exclusive and a launch title for the Nintendo 3DS. While the game is a port of Chaos Theory, it includes features from Conviction as well, including projected text and fusion vision." +github_issues = [1314] +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000040100" +region = "usa" +release_date = "2011-04-10" + +[[ releases ]] +title = "0004000000033A00" +region = "eur" +release_date = "2011-03-25" + +[[ releases ]] +title = "0004000000034400" +region = "jpn" +release_date = "2011-03-17" + +[[testcases]] +title = "0004000000033A00" +compatibility = "4" +date = "2017-10-13" +version = "HEAD-e1bb198" +cpu = "Intel Core i7-4710HQ" +gpu = "NVIDIA GeForce GTX 970M" +os = "Windows 10 15063" +author = "danzel" diff --git a/games/tom-clancys-splinter-cell-3d/icon.png b/games/tom-clancys-splinter-cell-3d/icon.png new file mode 100644 index 0000000..7847074 Binary files /dev/null and b/games/tom-clancys-splinter-cell-3d/icon.png differ diff --git a/games/tom-clancys-splinter-cell-3d/screenshots/loading-screen.png b/games/tom-clancys-splinter-cell-3d/screenshots/loading-screen.png new file mode 100644 index 0000000..419cef3 Binary files /dev/null and b/games/tom-clancys-splinter-cell-3d/screenshots/loading-screen.png differ diff --git a/games/tomodachi-life/boxart.png b/games/tomodachi-life/boxart.png new file mode 100644 index 0000000..d3f304b Binary files /dev/null and b/games/tomodachi-life/boxart.png differ diff --git a/games/tomodachi-life/game.dat b/games/tomodachi-life/game.dat new file mode 100644 index 0000000..aaed295 --- /dev/null +++ b/games/tomodachi-life/game.dat @@ -0,0 +1,30 @@ +title = "Tomodachi Life" +description = "Tomodachi Life is a life simulation handheld video game developed by Nintendo SPD and published by Nintendo for the Nintendo 3DS." +github_issues = [2475] +needs_system_files = true +needs_shared_font = true + +[[ releases ]] +title = "000400000008C300" +region = "usa" +release_date = "2014-06-06" + +[[ releases ]] +title = "000400000008C400" +region = "eur" +release_date = "2014-06-06" + +[[ releases ]] +title = "000400000008C500" +region = "jpn" +release_date = "2013-04-18" + +[[testcases]] +title = "000400000008C400" +compatibility = "4" +date = "2017-07-15" +version = "HEAD-5137a19" +cpu = "Intel Core i5-2430M" +gpu = "GeForce 315M" +os = "Windows 10 15063" +author = "valentinvanelslande" diff --git a/games/tomodachi-life/icon.png b/games/tomodachi-life/icon.png new file mode 100644 index 0000000..31ff6b3 Binary files /dev/null and b/games/tomodachi-life/icon.png differ diff --git a/games/tomodachi-life/screenshots/whitescreen.png b/games/tomodachi-life/screenshots/whitescreen.png new file mode 100644 index 0000000..52235fc Binary files /dev/null and b/games/tomodachi-life/screenshots/whitescreen.png differ diff --git a/games/true-remembrance/boxart.png b/games/true-remembrance/boxart.png new file mode 100644 index 0000000..50cf301 Binary files /dev/null and b/games/true-remembrance/boxart.png differ diff --git a/games/true-remembrance/game.dat b/games/true-remembrance/game.dat new file mode 100644 index 0000000..19f930c --- /dev/null +++ b/games/true-remembrance/game.dat @@ -0,0 +1,21 @@ +title = "True Remembrance" +description = "The game tells of a future where many people suffer from a pandemic depression known as The Dolor. In an unnamed city, specialized doctors known as Mnemonicides treat patients who suffer from The Dolor. The game's protagonist, a young Mnemonicide named Blackiris, is given the task of curing a young girl named La of The Dolor." +incomplete = true +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "000400000017C800" +region = "eur" +release_date = "2012-02-22" + +[[ testcases ]] +compatibility = "1" +date = "2017-06-19" +title = "000400000017C800" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/true-remembrance/icon.png b/games/true-remembrance/icon.png new file mode 100644 index 0000000..fb053a8 Binary files /dev/null and b/games/true-remembrance/icon.png differ diff --git a/games/ttf-curtain-call/boxart.png b/games/ttf-curtain-call/boxart.png new file mode 100644 index 0000000..91b14cb Binary files /dev/null and b/games/ttf-curtain-call/boxart.png differ diff --git a/games/ttf-curtain-call/game.dat b/games/ttf-curtain-call/game.dat new file mode 100644 index 0000000..6a68942 --- /dev/null +++ b/games/ttf-curtain-call/game.dat @@ -0,0 +1,40 @@ +title = "Theatrhythm Final Fantasy: Curtain Call" +description = "Theatrhythm Final Fantasy: Curtain Call is a rhythm video game published and developed by Square Enix. A sequel to the 2012 video game Theatrhythm Final Fantasy and the latest title in the rhythm series, it features similar gameplay to its predecessor." +github_issues = [3012] +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "00040000000FD500" +region = "usa" +release_date = "2011-09-16" + +[[ releases ]] +title = "00040000000FCA00" +region = "eur" +release_date = "2014-09-19" + +[[ releases ]] +title = "00040000000E9A00" +region = "jpn" +release_date = "2014-04-24" + +[[ testcases ]] +title = "00040000000FD500" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" + +[[ testcases ]] +title = "00040000000FD500" +compatibility = "1" +date = "2017-10-17" +version = "HEAD-e9d1e8c" +author = "AuraOfTheDawn" +cpu = "Intel Xeon E31240" +gpu = "NVIDIA GeForce GTX 750" +os = "Windows 7 7601" diff --git a/games/ttf-curtain-call/icon.png b/games/ttf-curtain-call/icon.png new file mode 100644 index 0000000..4ba64fa Binary files /dev/null and b/games/ttf-curtain-call/icon.png differ diff --git a/games/ttf-curtain-call/screenshots/Clear.png b/games/ttf-curtain-call/screenshots/Clear.png new file mode 100644 index 0000000..6fddbc7 Binary files /dev/null and b/games/ttf-curtain-call/screenshots/Clear.png differ diff --git a/games/ttf-curtain-call/screenshots/Ingame.png b/games/ttf-curtain-call/screenshots/Ingame.png new file mode 100644 index 0000000..82d90f7 Binary files /dev/null and b/games/ttf-curtain-call/screenshots/Ingame.png differ diff --git a/games/ttf-curtain-call/screenshots/Quest.png b/games/ttf-curtain-call/screenshots/Quest.png new file mode 100644 index 0000000..a891904 Binary files /dev/null and b/games/ttf-curtain-call/screenshots/Quest.png differ diff --git a/games/ttf-curtain-call/screenshots/Title.png b/games/ttf-curtain-call/screenshots/Title.png new file mode 100644 index 0000000..be53a9e Binary files /dev/null and b/games/ttf-curtain-call/screenshots/Title.png differ diff --git a/games/ultimate-nes-remix/boxart.png b/games/ultimate-nes-remix/boxart.png new file mode 100644 index 0000000..cb77b95 Binary files /dev/null and b/games/ultimate-nes-remix/boxart.png differ diff --git a/games/ultimate-nes-remix/game.dat b/games/ultimate-nes-remix/game.dat new file mode 100644 index 0000000..16bf6cf --- /dev/null +++ b/games/ultimate-nes-remix/game.dat @@ -0,0 +1,29 @@ +title = "Ultimate NES Remix" +description = "Ultimate NES Remix, known as Famicom Remix: Best Choice (Japanese: ファミコン リミックス:ベストチョイス Famikon Rimikkusu: Besto Choisu) in Japan, is the third installment of the NES Remix series and the first installment on a handheld for the Nintendo 3DS." +needs_system_files = false +needs_shared_font = true + +[[ releases ]] +title = "0004000000132000" +region = "usa" +release_date = "2014-12-05" + +[[ releases ]] +title = "0004000000132100" +region = "eur" +release_date = "2014-11-07" + +[[ releases ]] +title = "0004000000131F00" +region = "jpn" +release_date = "2015-08-27" + +[[ testcases ]] +title = "0004000000132000" +compatibility = "1" +date = "2017-06-08" +version = "HEAD-8c22334" +author = "Clector" +cpu = "Intel Core i3-4160" +gpu = "Intel HD Graphics 4400" +os = "Windows 8.1" diff --git a/games/ultimate-nes-remix/icon.png b/games/ultimate-nes-remix/icon.png new file mode 100644 index 0000000..df9fcac Binary files /dev/null and b/games/ultimate-nes-remix/icon.png differ diff --git a/games/ultimate-nes-remix/screenshots/Remix-Stage-Kirby.png b/games/ultimate-nes-remix/screenshots/Remix-Stage-Kirby.png new file mode 100644 index 0000000..af2a13d Binary files /dev/null and b/games/ultimate-nes-remix/screenshots/Remix-Stage-Kirby.png differ diff --git a/games/ultimate-nes-remix/screenshots/Remix-Stage-SMB3.png b/games/ultimate-nes-remix/screenshots/Remix-Stage-SMB3.png new file mode 100644 index 0000000..50268e7 Binary files /dev/null and b/games/ultimate-nes-remix/screenshots/Remix-Stage-SMB3.png differ diff --git a/games/ultimate-nes-remix/screenshots/Speed-Mario-Bros.png b/games/ultimate-nes-remix/screenshots/Speed-Mario-Bros.png new file mode 100644 index 0000000..1c942ab Binary files /dev/null and b/games/ultimate-nes-remix/screenshots/Speed-Mario-Bros.png differ diff --git a/games/ultimate-nes-remix/screenshots/Title-Screen.png b/games/ultimate-nes-remix/screenshots/Title-Screen.png new file mode 100644 index 0000000..13b8585 Binary files /dev/null and b/games/ultimate-nes-remix/screenshots/Title-Screen.png differ diff --git a/games/warioware-gold/boxart.png b/games/warioware-gold/boxart.png new file mode 100644 index 0000000..0edd2ec Binary files /dev/null and b/games/warioware-gold/boxart.png differ diff --git a/games/warioware-gold/game.dat b/games/warioware-gold/game.dat new file mode 100644 index 0000000..569ded8 --- /dev/null +++ b/games/warioware-gold/game.dat @@ -0,0 +1,20 @@ +title = "WarioWare Gold" +description = "WarioWare Gold is an action video game developed and published by Nintendo, with assistance by Intelligent Systems, and is the eighth game in the WarioWare series. Similarly to past entries of the series, in WarioWare Gold, the player must complete consecutive \"microgames\" at increasing paces. Gold features microgames from both past entries in the series, as well as new microgames, making a sum of 300 microgames, the most the series has had to date. In addition, the game is the first of the series to feature full voice acting." +github_issues = [4048] +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "00040000001D1C00" +region = "usa" +release_date = "2018-08-03" + +[[releases]] +title = "00040000001D1C00" +region = "eur" +release_date = "2018-07-27" + +[[releases]] +title = "00040000001D1C00" +region = "jpn" +release_date = "2018-08-02" \ No newline at end of file diff --git a/games/warioware-gold/icon.png b/games/warioware-gold/icon.png new file mode 100644 index 0000000..806deb7 Binary files /dev/null and b/games/warioware-gold/icon.png differ diff --git a/games/warioware-gold/screenshots/mini-game.png b/games/warioware-gold/screenshots/mini-game.png new file mode 100644 index 0000000..3a9cbb5 Binary files /dev/null and b/games/warioware-gold/screenshots/mini-game.png differ diff --git a/games/warioware-gold/screenshots/selection-screen.png b/games/warioware-gold/screenshots/selection-screen.png new file mode 100644 index 0000000..29eaa03 Binary files /dev/null and b/games/warioware-gold/screenshots/selection-screen.png differ diff --git a/games/warioware-gold/screenshots/title-screen.png b/games/warioware-gold/screenshots/title-screen.png new file mode 100644 index 0000000..3cb0cf0 Binary files /dev/null and b/games/warioware-gold/screenshots/title-screen.png differ diff --git a/games/weapon-shop-de-omasse/boxart.png b/games/weapon-shop-de-omasse/boxart.png new file mode 100644 index 0000000..93d48c9 Binary files /dev/null and b/games/weapon-shop-de-omasse/boxart.png differ diff --git a/games/weapon-shop-de-omasse/game.dat b/games/weapon-shop-de-omasse/game.dat new file mode 100644 index 0000000..6b02877 --- /dev/null +++ b/games/weapon-shop-de-omasse/game.dat @@ -0,0 +1,20 @@ +title = "WEAPON SHOP de OMASSE" +description = "Groove along to the beats of the hammer falls, tapping your Nintendo 3DS Touch Screen to the rhythm in order to forge your shop's weapons. The higher your CHAIN, the stronger and sharper the weapon will turn out! Any blacksmith worth his steel also knows that you have to strike while the iron is hot! Make sure to watch the weapon's temperature, which will affect its critical hit rate, durability, and special properties!" +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000115000" +region = "eur" +release_date = "2014-02-20" + +[[testcases]] +title = "0004000000115000" +compatibility = "2" +date = "2017-07-20" +version = "HEAD-5621a65" +cpu = "Intel Core i7-7920HQ" +gpu = "Radeon Pro 560" +os = "macOS 10.12.6" +author = "Amost-" diff --git a/games/weapon-shop-de-omasse/icon.png b/games/weapon-shop-de-omasse/icon.png new file mode 100644 index 0000000..371b3d8 Binary files /dev/null and b/games/weapon-shop-de-omasse/icon.png differ diff --git a/games/weapon-shop-de-omasse/savefiles/saveFile.dat b/games/weapon-shop-de-omasse/savefiles/saveFile.dat new file mode 100644 index 0000000..96ba7be --- /dev/null +++ b/games/weapon-shop-de-omasse/savefiles/saveFile.dat @@ -0,0 +1,4 @@ +title = "save.dat" +description = "Not too far in the game with max out money. European save save." +author = "Amost-" +title_id = "0004000000115000" diff --git a/games/weapon-shop-de-omasse/savefiles/saveFile.zip b/games/weapon-shop-de-omasse/savefiles/saveFile.zip new file mode 100644 index 0000000..6de8f7c Binary files /dev/null and b/games/weapon-shop-de-omasse/savefiles/saveFile.zip differ diff --git a/games/weapon-shop-de-omasse/screenshots/ForgingGame.png b/games/weapon-shop-de-omasse/screenshots/ForgingGame.png new file mode 100644 index 0000000..dfed7fa Binary files /dev/null and b/games/weapon-shop-de-omasse/screenshots/ForgingGame.png differ diff --git a/games/weapon-shop-de-omasse/screenshots/MainScreen.png b/games/weapon-shop-de-omasse/screenshots/MainScreen.png new file mode 100644 index 0000000..f6ed889 Binary files /dev/null and b/games/weapon-shop-de-omasse/screenshots/MainScreen.png differ diff --git a/games/woah-dave/boxart.png b/games/woah-dave/boxart.png new file mode 100644 index 0000000..d88fbd4 Binary files /dev/null and b/games/woah-dave/boxart.png differ diff --git a/games/woah-dave/game.dat b/games/woah-dave/game.dat new file mode 100644 index 0000000..e7bed7d --- /dev/null +++ b/games/woah-dave/game.dat @@ -0,0 +1,10 @@ +title = "Woah Dave!" +description = "Woah Dave! is a platform video game developed and published by MiniVisions. The game focuses around Dave Lonuts and his survival during an alien invasion." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "000400000013EE00" +region = "usa" +release_date = "2014-10-30" diff --git a/games/woah-dave/icon.png b/games/woah-dave/icon.png new file mode 100644 index 0000000..1081fda Binary files /dev/null and b/games/woah-dave/icon.png differ diff --git a/games/woah-dave/screenshots/deluxe-stage-select.png b/games/woah-dave/screenshots/deluxe-stage-select.png new file mode 100644 index 0000000..2cbf66f Binary files /dev/null and b/games/woah-dave/screenshots/deluxe-stage-select.png differ diff --git a/games/woah-dave/screenshots/high-score-entry.png b/games/woah-dave/screenshots/high-score-entry.png new file mode 100644 index 0000000..bd9e0e2 Binary files /dev/null and b/games/woah-dave/screenshots/high-score-entry.png differ diff --git a/games/woah-dave/screenshots/normal-mode-gameplay.png b/games/woah-dave/screenshots/normal-mode-gameplay.png new file mode 100644 index 0000000..cec614a Binary files /dev/null and b/games/woah-dave/screenshots/normal-mode-gameplay.png differ diff --git a/games/woah-dave/screenshots/title-screen.png b/games/woah-dave/screenshots/title-screen.png new file mode 100644 index 0000000..4c927f3 Binary files /dev/null and b/games/woah-dave/screenshots/title-screen.png differ diff --git a/games/xenoblade-chronicles-3d/boxart.png b/games/xenoblade-chronicles-3d/boxart.png new file mode 100644 index 0000000..fd99847 Binary files /dev/null and b/games/xenoblade-chronicles-3d/boxart.png differ diff --git a/games/xenoblade-chronicles-3d/game.dat b/games/xenoblade-chronicles-3d/game.dat new file mode 100644 index 0000000..c3d27b2 --- /dev/null +++ b/games/xenoblade-chronicles-3d/game.dat @@ -0,0 +1,20 @@ +title = "Xenoblade Chronicles 3D" +description = "Xenoblade Chronicles 3D is an action role-playing game developed by Monster Games and released exclusive for New Nintendo 3DS. It is a port of the Wii title Xenoblade Chronicles and features StreetPass functionality, as well as compatibility with the Shulk Amiibo." +github_issues = [3343] +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "000400000F700100" +region = "usa" +release_date = "2015-04-10" + +[[ releases ]] +title = "000400000F700200" +region = "eur" +release_date = "2015-04-02" + +[[ releases ]] +title = "000400000F700000" +region = "jpn" +release_date = "2015-04-02" diff --git a/games/xenoblade-chronicles-3d/icon.png b/games/xenoblade-chronicles-3d/icon.png new file mode 100644 index 0000000..0d8879c Binary files /dev/null and b/games/xenoblade-chronicles-3d/icon.png differ diff --git a/games/xeodrifter/boxart.png b/games/xeodrifter/boxart.png new file mode 100644 index 0000000..f4e6c96 Binary files /dev/null and b/games/xeodrifter/boxart.png differ diff --git a/games/xeodrifter/game.dat b/games/xeodrifter/game.dat new file mode 100644 index 0000000..1a224b7 --- /dev/null +++ b/games/xeodrifter/game.dat @@ -0,0 +1,20 @@ +title = "Xeodrifter" +description = "Xeodrifter is a Metroidvania video game, where the player controls an astronaut whose spaceship is damaged by an asteroid, and must visit four nearby planets in order to repair it. The game allows the player to explore the planets, each representing a different environment. The planets can be visited in any order, but exploration depends on power-ups to gain access to new areas. The game draws inspiration from the Metroid series, and borrows elements from another Renegade Kid game, Mutant Mudds." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[ releases ]] +title = "000400000014D600" +region = "usa" +release_date = "2014-12-11" + +[[ testcases ]] +compatibility = "5" +date = "2017-06-19" +title = "000400000014D600" +version = "HEAD-d0888f8" +author = "Kloen" +cpu = "Intel Core i5-760" +gpu = "AMD Radeon HD 5670" +os = "Windows 10 Education 1511" diff --git a/games/xeodrifter/icon.png b/games/xeodrifter/icon.png new file mode 100644 index 0000000..f4a299d Binary files /dev/null and b/games/xeodrifter/icon.png differ diff --git a/games/xeodrifter/screenshots/boss-fight.png b/games/xeodrifter/screenshots/boss-fight.png new file mode 100644 index 0000000..6dc34d9 Binary files /dev/null and b/games/xeodrifter/screenshots/boss-fight.png differ diff --git a/games/xeodrifter/screenshots/planet-1.png b/games/xeodrifter/screenshots/planet-1.png new file mode 100644 index 0000000..003747f Binary files /dev/null and b/games/xeodrifter/screenshots/planet-1.png differ diff --git a/games/xeodrifter/screenshots/ship.png b/games/xeodrifter/screenshots/ship.png new file mode 100644 index 0000000..03fe32b Binary files /dev/null and b/games/xeodrifter/screenshots/ship.png differ diff --git a/games/yo-kai-watch-2/boxart.png b/games/yo-kai-watch-2/boxart.png new file mode 100644 index 0000000..1659148 Binary files /dev/null and b/games/yo-kai-watch-2/boxart.png differ diff --git a/games/yo-kai-watch-2/game.dat b/games/yo-kai-watch-2/game.dat new file mode 100644 index 0000000..9bfdcdc --- /dev/null +++ b/games/yo-kai-watch-2/game.dat @@ -0,0 +1,66 @@ +title = "Yo-kai Watch 2" +description = "Yo-kai Watch 2 is the second installment in the Yo-kai Watch series. It was developed and published by Level-5 in Japan, and by Nintendo in the west. It was released as a pair subtitled Bony Spirits and Fleshy Souls with an enhanced version subtitled Psychic Specters released later." +incomplete = true +github_issues = [2938] +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000019A900" +region = "usa" +release_date = "2016-09-30" + +[[releases]] +title = "000400000019AB00" +region = "eur" +release_date = "2017-04-07" + +[[releases]] +title = "000400000019B000" +region = "eur" +release_date = "2017-04-07" + +[[releases]] +title = "000400000012F900" +region = "jpn" +release_date = "2014-07-10" + +[[releases]] +title = "000400000019AA00" +region = "usa" +release_date = "2016-09-30" + +[[releases]] +title = "000400000019AC00" +region = "eur" +release_date = "2017-04-07" + +[[releases]] +title = "000400000019B100" +region = "eur" +release_date = "2017-04-07" + +[[releases]] +title = "000400000012F800" +region = "jpn" +release_date = "2014-07-10" + +[[releases]] +title = "00040000001B2700" +region = "usa" +release_date = "2017-09-29" + +[[releases]] +title = "00040000001B2900" +region = "eur" +release_date = "2017-09-29" + +[[releases]] +title = "00040000001B2800" +region = "eur" +release_date = "2017-09-29" + +[[releases]] +title = "0004000000155100" +region = "jpn" +release_date = "2014-12-13" \ No newline at end of file diff --git a/games/yo-kai-watch-2/icon.png b/games/yo-kai-watch-2/icon.png new file mode 100644 index 0000000..28c1cc7 Binary files /dev/null and b/games/yo-kai-watch-2/icon.png differ diff --git a/games/yo-kai-watch-2/screenshots/au-kai.png b/games/yo-kai-watch-2/screenshots/au-kai.png new file mode 100644 index 0000000..90d742c Binary files /dev/null and b/games/yo-kai-watch-2/screenshots/au-kai.png differ diff --git a/games/yo-kai-watch-3/boxart.png b/games/yo-kai-watch-3/boxart.png new file mode 100644 index 0000000..de86e43 Binary files /dev/null and b/games/yo-kai-watch-3/boxart.png differ diff --git a/games/yo-kai-watch-3/game.dat b/games/yo-kai-watch-3/game.dat new file mode 100644 index 0000000..e6a1e1d --- /dev/null +++ b/games/yo-kai-watch-3/game.dat @@ -0,0 +1,20 @@ +title = "Yo-kai Watch 3" +description = "Yo-kai Watch 3 is a three-part role-playing game series from the third generation of the Yo-kai Watch series of video games, and was developed and published by Level-5. It was released as two seperate games subtitled Sushi and Tempura. An updated version subtitled Sukiyaki was released later." +incomplete = true +needs_system_files = false +needs_shared_font = true + +[[releases]] +title = "0004000000191000" +region = "jpn" +release_date = "2016-07-16" + +[[releases]] +title = "0004000000191100" +region = "jpn" +release_date = "2016-07-16" + +[[releases]] +title = "00040000001AF400" +region = "jpn" +release_date = "2016-12-15" \ No newline at end of file diff --git a/games/yo-kai-watch-3/icon.png b/games/yo-kai-watch-3/icon.png new file mode 100644 index 0000000..cda0300 Binary files /dev/null and b/games/yo-kai-watch-3/icon.png differ diff --git a/games/yo-kai-watch-3/screenshots/Ake-being-identified.png b/games/yo-kai-watch-3/screenshots/Ake-being-identified.png new file mode 100644 index 0000000..bccb300 Binary files /dev/null and b/games/yo-kai-watch-3/screenshots/Ake-being-identified.png differ diff --git a/games/yo-kai-watch-3/screenshots/Hottocake.png b/games/yo-kai-watch-3/screenshots/Hottocake.png new file mode 100644 index 0000000..0c19889 Binary files /dev/null and b/games/yo-kai-watch-3/screenshots/Hottocake.png differ diff --git a/games/yo-kai-watch-blasters/boxart.png b/games/yo-kai-watch-blasters/boxart.png new file mode 100644 index 0000000..7aa2255 Binary files /dev/null and b/games/yo-kai-watch-blasters/boxart.png differ diff --git a/games/yo-kai-watch-blasters/game.dat b/games/yo-kai-watch-blasters/game.dat new file mode 100644 index 0000000..c190d71 --- /dev/null +++ b/games/yo-kai-watch-blasters/game.dat @@ -0,0 +1,44 @@ +title = "Yo-kai Watch Blasters" +description = "Yo-kai Watch Blasters (Busters in Korea/Japan) is an action RPG spin-off of the Yo-kai Watch series. It was developed and published by Level-5 in Japan, and by Nintendo in overseas territories. It was released as a pair titled Red Cat Corps and White Dog Squad, and a free content update titled Moon Rabbit Crew was released later." +needs_system_files = false +needs_shared_font = false + +[[releases]] +title = "04000000001CEB00" +region = "usa" +release_date = "2018-09-07" + +[[releases]] +title = "00040000001CEF00" +region = "usa" +release_date = "2018-09-07" + +[[releases]] +title = "00040000001CB000" +region = "eur" +release_date = "2018-09-07" + +[[releases]] +title = "00040000001CF000" +region = "eur" +release_date = "2018-09-07" + +[[releases]] +title = "000400000016C700" +region = "jpn" +release_date = "2015-07-11" + +[[releases]] +title = "000400000016C600" +region = "jpn" +release_date = "2015-07-11" + +[[releases]] +title = "00040000001CED00" +region = "kor" +release_date = "2018-04-19" + +[[releases]] +title = "00040000001CF200" +region = "kor" +release_date = "2018-04-19" diff --git a/games/yo-kai-watch-blasters/icon.png b/games/yo-kai-watch-blasters/icon.png new file mode 100644 index 0000000..bc973a7 Binary files /dev/null and b/games/yo-kai-watch-blasters/icon.png differ diff --git a/games/yo-kai-watch-blasters/screenshots/mission-clear.png b/games/yo-kai-watch-blasters/screenshots/mission-clear.png new file mode 100644 index 0000000..6e7027f Binary files /dev/null and b/games/yo-kai-watch-blasters/screenshots/mission-clear.png differ diff --git a/games/yo-kai-watch-blasters/screenshots/red-cat-corps-title.png b/games/yo-kai-watch-blasters/screenshots/red-cat-corps-title.png new file mode 100644 index 0000000..1bf458e Binary files /dev/null and b/games/yo-kai-watch-blasters/screenshots/red-cat-corps-title.png differ diff --git a/games/yo-kai-watch-blasters/screenshots/sproink.png b/games/yo-kai-watch-blasters/screenshots/sproink.png new file mode 100644 index 0000000..8e95309 Binary files /dev/null and b/games/yo-kai-watch-blasters/screenshots/sproink.png differ diff --git a/games/yo-kai-watch-blasters/screenshots/white-dog-squad-title.png b/games/yo-kai-watch-blasters/screenshots/white-dog-squad-title.png new file mode 100644 index 0000000..dcc8b83 Binary files /dev/null and b/games/yo-kai-watch-blasters/screenshots/white-dog-squad-title.png differ diff --git a/games/yo-kai-watch/boxart.png b/games/yo-kai-watch/boxart.png new file mode 100644 index 0000000..1e4fff3 Binary files /dev/null and b/games/yo-kai-watch/boxart.png differ diff --git a/games/yo-kai-watch/game.dat b/games/yo-kai-watch/game.dat new file mode 100644 index 0000000..aa7f557 --- /dev/null +++ b/games/yo-kai-watch/game.dat @@ -0,0 +1,24 @@ +title = "Yo-kai Watch" +description = "Yo-kai Watch is a role-playing video game developed and published by Level-5 in Japan with Nintendo localizing it in the West and the first game in the Yo-kai Watch franchise. The game is based around the Yōkai of Japanese folklore, who are said to be ghosts and apparitions that cause mischief in daily life." +needs_system_files = true +needs_shared_font = true + +[[releases]] +title = "0004000000167700" +region = "usa" +release_date = "2015-11-06" + +[[releases]] +title = "000400000017C200" +region = "eur" +release_date = "2016-04-29" + +[[releases]] +title = "00040000000CF400" +region = "jpn" +release_date = "2013-07-11" + +[[releases]] +title = "0004000000167600" +region = "kor" +release_date = "2015-11-26" diff --git a/games/yo-kai-watch/icon.png b/games/yo-kai-watch/icon.png new file mode 100644 index 0000000..7365487 Binary files /dev/null and b/games/yo-kai-watch/icon.png differ diff --git a/games/yo-kai-watch/screenshots/meeting-nate-at-park.png b/games/yo-kai-watch/screenshots/meeting-nate-at-park.png new file mode 100644 index 0000000..44c10d9 Binary files /dev/null and b/games/yo-kai-watch/screenshots/meeting-nate-at-park.png differ diff --git a/games/yo-kai-watch/screenshots/yokai-watch-battle-screen.png b/games/yo-kai-watch/screenshots/yokai-watch-battle-screen.png new file mode 100644 index 0000000..f72ab85 Binary files /dev/null and b/games/yo-kai-watch/screenshots/yokai-watch-battle-screen.png differ diff --git a/games/yo-kai-watch/screenshots/yokai-watch-search-screen.png b/games/yo-kai-watch/screenshots/yokai-watch-search-screen.png new file mode 100644 index 0000000..11febe7 Binary files /dev/null and b/games/yo-kai-watch/screenshots/yokai-watch-search-screen.png differ diff --git a/games/yo-kai-watch/screenshots/yokai-watch-title-screen.png b/games/yo-kai-watch/screenshots/yokai-watch-title-screen.png new file mode 100644 index 0000000..7777edc Binary files /dev/null and b/games/yo-kai-watch/screenshots/yokai-watch-title-screen.png differ diff --git a/games/yoshis-new-island/boxart.png b/games/yoshis-new-island/boxart.png new file mode 100644 index 0000000..fad20a3 Binary files /dev/null and b/games/yoshis-new-island/boxart.png differ diff --git a/games/yoshis-new-island/game.dat b/games/yoshis-new-island/game.dat new file mode 100644 index 0000000..51c584e --- /dev/null +++ b/games/yoshis-new-island/game.dat @@ -0,0 +1,30 @@ +title = "Yoshi's New Island" +description = "Yoshi's New Island is a platforming game developed by Arzest and published by Nintendo for the Nintendo 3DS handheld game console. Yoshi's New Island is the successor to the 1995 game Super Mario World 2: Yoshi's Island and the 2006 game Yoshi's Island DS, but chronologically takes place between them." +needs_system_files = false +needs_shared_font = true +incomplete = true + +[[ releases ]] +title = "0004000000111B00" +region = "usa" +release_date = "2014-03-14" + +[[ releases ]] +title = "0004000000111C00" +region = "eur" +release_date = "2014-03-14" + +[[ releases ]] +title = "0004000000083B00" +region = "jpn" +release_date = "2014-07-24" + +[[ testcases ]] +title = "0004000000111B00" +compatibility = "0" +date = "2017-07-04" +version = "HEAD-22e7402" +author = "DrewThatGamer" +cpu = "Intel Core i5 6400" +gpu = "NVIDIA GeForce GTX 1050" +os = "Windows 10" diff --git a/games/yoshis-new-island/icon.png b/games/yoshis-new-island/icon.png new file mode 100644 index 0000000..27ce790 Binary files /dev/null and b/games/yoshis-new-island/icon.png differ diff --git a/games/yu-gi-oh-duel-monsters-saikyo-card-battle/boxart.png b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/boxart.png new file mode 100644 index 0000000..bb7b67c Binary files /dev/null and b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/boxart.png differ diff --git a/games/yu-gi-oh-duel-monsters-saikyo-card-battle/game.dat b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/game.dat new file mode 100644 index 0000000..aa9a04a --- /dev/null +++ b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/game.dat @@ -0,0 +1,10 @@ +title = "Yu-Gi-Oh! Duel Monsters Saikyo Card Battle!" +description = "Yu-Gi-Oh! Duel Monsters Saikyo Card Battle! is a strategy video game by Konami based on the work of Kazuki Takahashi. It was released for free to download with some in-game purchases for the Nintendo 3DS." +needs_system_files = false +needs_shared_font = false +game_type = "eshop" + +[[releases]] +title = "0004000000188500" +region = "jpn" +release_date = "2016-07-06" diff --git a/games/yu-gi-oh-duel-monsters-saikyo-card-battle/icon.png b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/icon.png new file mode 100644 index 0000000..6030b90 Binary files /dev/null and b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/icon.png differ diff --git a/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/board.png b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/board.png new file mode 100644 index 0000000..f724609 Binary files /dev/null and b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/board.png differ diff --git a/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/summoning.png b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/summoning.png new file mode 100644 index 0000000..601ea30 Binary files /dev/null and b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/summoning.png differ diff --git a/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/titlescreen.png b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/titlescreen.png new file mode 100644 index 0000000..b6b67e3 Binary files /dev/null and b/games/yu-gi-oh-duel-monsters-saikyo-card-battle/screenshots/titlescreen.png differ diff --git a/games/zero-escape-virtues-last-reward/boxart.png b/games/zero-escape-virtues-last-reward/boxart.png new file mode 100644 index 0000000..859fee4 Binary files /dev/null and b/games/zero-escape-virtues-last-reward/boxart.png differ diff --git a/games/zero-escape-virtues-last-reward/game.dat b/games/zero-escape-virtues-last-reward/game.dat new file mode 100644 index 0000000..413a3c5 --- /dev/null +++ b/games/zero-escape-virtues-last-reward/game.dat @@ -0,0 +1,29 @@ +title = "Zero Escape: Virtue's Last Reward" +description = "Zero Escape: Virtue's Last Reward is an adventure video game developed by Chunsoft. The story follows the player character Sigma, a man who is abducted and forced along with eight other individuals to play the Nonary Game, which puts its participants in a life-or-death situation." +needs_system_files = false +needs_shared_font = false + +[[ releases ]] +title = "0004000000096700" +region = "usa" +release_date = "2012-10-23" + +[[ releases ]] +title = "00040000000AEB00" +region = "eur" +release_date = "2012-11-23" + +[[ releases ]] +title = "000400000005DE00" +region = "jpn" +release_date = "2012-02-16" + +[[ testcases ]] +title = "0004000000096700" +compatibility = "1" +date = "2017-07-08" +version = "HEAD-2e37ce0" +author = "lonewolf329" +cpu = "Intel Core 2 Duo CPU e7500" +gpu = "GeForce GT 640" +os = "Windows 7 Ultimate SP1" diff --git a/games/zero-escape-virtues-last-reward/icon.png b/games/zero-escape-virtues-last-reward/icon.png new file mode 100644 index 0000000..9bd331d Binary files /dev/null and b/games/zero-escape-virtues-last-reward/icon.png differ diff --git a/games/zero-escape-virtues-last-reward/screenshots/in-game1.png b/games/zero-escape-virtues-last-reward/screenshots/in-game1.png new file mode 100644 index 0000000..dd22885 Binary files /dev/null and b/games/zero-escape-virtues-last-reward/screenshots/in-game1.png differ diff --git a/games/zero-escape-virtues-last-reward/screenshots/in-game2.png b/games/zero-escape-virtues-last-reward/screenshots/in-game2.png new file mode 100644 index 0000000..070d150 Binary files /dev/null and b/games/zero-escape-virtues-last-reward/screenshots/in-game2.png differ diff --git a/games/zero-escape-virtues-last-reward/screenshots/intro.png b/games/zero-escape-virtues-last-reward/screenshots/intro.png new file mode 100644 index 0000000..1e49856 Binary files /dev/null and b/games/zero-escape-virtues-last-reward/screenshots/intro.png differ diff --git a/games/zero-escape-virtues-last-reward/screenshots/title-screen.png b/games/zero-escape-virtues-last-reward/screenshots/title-screen.png new file mode 100644 index 0000000..e7f0a8e Binary files /dev/null and b/games/zero-escape-virtues-last-reward/screenshots/title-screen.png differ diff --git a/games/zero-escape-zero-time-dilemma/boxart.png b/games/zero-escape-zero-time-dilemma/boxart.png new file mode 100644 index 0000000..40c1f42 Binary files /dev/null and b/games/zero-escape-zero-time-dilemma/boxart.png differ diff --git a/games/zero-escape-zero-time-dilemma/game.dat b/games/zero-escape-zero-time-dilemma/game.dat new file mode 100644 index 0000000..865a224 --- /dev/null +++ b/games/zero-escape-zero-time-dilemma/game.dat @@ -0,0 +1,19 @@ +title = "Zero Time Dilemma" +description = "Zero Time Dilemma is an adventure video game developed by Chime and published by Spike Chunsoft in Japan and Aksys Games in North America and Europe. It is a direct sequel to Zero Escape: Virtues Last Reward and Zero Escape: Nine Hours Nine Persons Nine Doors." +needs_system_files = true +needs_shared_font = false + +[[releases]] +title = "000400000017B200" +region = "usa" +release_date = "2016-06-28" + +[[releases]] +title = "0004000000180F00" +region = "jpn" +release_date = "2016-06-30" + +[[releases]] +title = "0004000000182700" +region = "eur" +release_date = "2016-06-28" diff --git a/games/zero-escape-zero-time-dilemma/icon.png b/games/zero-escape-zero-time-dilemma/icon.png new file mode 100644 index 0000000..ff57f34 Binary files /dev/null and b/games/zero-escape-zero-time-dilemma/icon.png differ diff --git a/games/zero-escape-zero-time-dilemma/screenshots/in-game.png b/games/zero-escape-zero-time-dilemma/screenshots/in-game.png new file mode 100644 index 0000000..8607a0d Binary files /dev/null and b/games/zero-escape-zero-time-dilemma/screenshots/in-game.png differ diff --git a/games/zero-escape-zero-time-dilemma/screenshots/menu.png b/games/zero-escape-zero-time-dilemma/screenshots/menu.png new file mode 100644 index 0000000..efa31a1 Binary files /dev/null and b/games/zero-escape-zero-time-dilemma/screenshots/menu.png differ diff --git a/games/zero-escape-zero-time-dilemma/screenshots/title-screen.png b/games/zero-escape-zero-time-dilemma/screenshots/title-screen.png new file mode 100644 index 0000000..85cacaa Binary files /dev/null and b/games/zero-escape-zero-time-dilemma/screenshots/title-screen.png differ diff --git a/validation/app.js b/validation/app.js new file mode 100644 index 0000000..07f3b14 --- /dev/null +++ b/validation/app.js @@ -0,0 +1,415 @@ +const fs = require('fs'); +const path = require('path'); +const config = require('./config.json'); + +const groupBy = require('group-by'); +const sizeOf = require('image-size'); +const readChunk = require('read-chunk'); +const imageType = require('image-type'); + +const toml = require('toml'); + +let currentGame = null; +let errors = []; + +// Catch non-formatting errors +let miscError = false; + +function getDirectories(srcpath) { + return fs.readdirSync(srcpath) + .filter(file => fs.lstatSync(path.join(srcpath, file)).isDirectory()) +} + +function getFiles(srcpath) { + return fs.readdirSync(srcpath) + .filter(file => fs.lstatSync(path.join(srcpath, file)).isFile()) +} + +/// Check that a filename matches the following: +/// [any of a-z, A-Z, 0-9, a '-' or a '_'](one or more) . [a-z](two or three) +function isValidFilename(name) { + return name.match(/^([a-zA-Z0-9_\-])+\.([a-z]){2,3}$/); +} + +/// Validates that a image is correctly sized and of the right format. +function validateImage(path, config) { + if (fs.existsSync(path) === false) { + validationError(`Image \"${path}\"' was not found at ${path}.`); + } else { + // Read first 12 bytes (enough for '%PNG', etc) + const buffer = readChunk.sync(path, 0, 12); + const type = imageType(buffer).mime; + if (type !== config.type) { + validationError(`Incorrect format of image (${type} != ${config.type})`); + } + + let dimensions = sizeOf(path); + + for (const sizeIndex in config.sizes) { + const size = config.sizes[sizeIndex]; + + if (dimensions.width === size.width && dimensions.height === size.height) { + return; + } + } + + // Build our error message + let possibleSizes = config.sizes.reduce((acc, curVal) => { + if (acc.length !== 0) { + acc += ", "; + } + acc += `${curVal.width} x ${curVal.height}`; + return acc; + }, ""); + + validationError(`Image \"${path}\"'s dimensions are ${dimensions.width} x ${dimensions.height} ` + + `instead of the any of the following: ${possibleSizes}`); + } +} + +/// Validates that a folder (if it exists) of images contains images that are +// correctly sized and of the right format. +function validateDirImages(path, config) { + // TODO: Do we want to enforce having screenshots? + if (fs.existsSync(path)) { + const files = getFiles(path); + + files.forEach(file => { + if (!isValidFilename(file)) { + validationError(`File \"${file}\" contains bad characters!`); + } else { + validateImage(`${path}/${file}`, config); + } + }); + } +} + +// TODO: Could these errors be prefixed with the section/line in which they come from? + +/// Validates the existance of a particular entry in a structure +function validateExists(struct, name) { + if (struct[name] === undefined) { + validationError("Field \"" + name + "\" missing"); + return false; + } else { + return true; + } +} + +/// Validates the existence of a particular entry in a structure, and +/// ensures that it meets a particular set of criteria. +function validateContents(struct, name, test) { + if (validateExists(struct, name)) { + test(struct[name]); + } +} + +/// Validates the existence of a particular entry in a structure, and +/// ensures that it is not a empty string. +function validateNotEmpty(struct, name) { + validateContents(struct, name, field => { + if (typeof field !== "string") { + validationError("Field \"" + name + "\" is not a string"); + } else if (field === "") { + validationError("Field \"" + name + "\" is empty"); + } + }); +} + +/// Validates the existence of a particular entry in a structure, and +/// ensures that it is not a empty string. +function validateIsBoolean(struct, name) { + if (struct[name] !== false && struct[name] !== true) { + validationError("Field \"" + name + "\" is not a boolean"); + } +} + +/// Validates pattern of YYYY-MM-DD in a field of a structure. +function validateIsDate(struct, name) { + validateContents(struct, name, field => { + if (!field.match(/^[0-9]{4}-((0[1-9])|(1[0-2]))-((0[1-9])|([1-2][0-9])|(3[0-1]))$/)) { + validationError(`\"${name}\" is not a valid date (\"${field}\").`); + } + }); +} + +function validateFileExists(dir) { + if (fs.existsSync(dir) === false) { + validationError(`\"${dir}\" does not exist!`); + return false; + } + return true; +} + +/// Validates a TOML document +function validateTOML(path) { + if (fs.existsSync(path) === false) { + validationError(`TOML was not found at ${path}.`); + return; + } + + let rawContents = fs.readFileSync(path); + let tomlDoc; + try { + tomlDoc = toml.parse(rawContents); + } catch (e) { + validationError("TOML parse error (" + e.line + "): " + e.message); + return; + } + + // Check the global header section + validateNotEmpty(tomlDoc, "title"); + validateNotEmpty(tomlDoc, "description"); + if (tomlDoc["github_issues"] !== undefined) { + validateContents(tomlDoc, "github_issues", field => { + if (Array.isArray(field) === false) { + validationError("Github issues field is not an array!") + } else { + // Validate each individual entry + field.forEach(elem => { + if (typeof elem !== "number") { + validationError("Github issues entry is not a number!") + } + }); + } + }); + } + + if (tomlDoc["gametypes"] !== undefined) { + validateContents(tomlDoc, "gametypes", field => { + if (config.gametypes.indexOf(field) === -1) { + validationError(`Could not find gametype \"${field}\"!`); + } + + if (field === "vc") { + validateContents(tomlDoc, "vc_system", field => { + if (config.vc_systems.indexOf(field) === -1) { + validationError(`Could not find VC console \"${field}\"!`); + } + }); + } + }); + } + + let section; + + // Check each release individually + if (tomlDoc["releases"] !== undefined) { + section = tomlDoc["releases"]; + section.forEach(release => { + validateContents(release, "title", field => { + if (field.length !== 16) { + validationError(`Release: Game title ID has an invalid length`); + } else if (!field.match(/^([A-Z0-9]){16}$/)) { + validationError(`Release: Game title ID is not a hexadecimal ID`); + } + }); + validateContents(release, "region", field => { + if (config.regions.indexOf(field) === -1) { + validationError(`Release: Invalid region ${field}`); + } + }); + validateIsDate(release, "release_date"); + }); + } else { + validationError("No releases.") + } + + let maxCompatibility = 999; + + // Check each testcase individually + if (tomlDoc["testcases"] !== undefined) { + section = tomlDoc["testcases"]; + section.forEach(testcase => { + validateContents(testcase, "title", field => { + if (field.length !== 16) { + validationError(`Testcase: Game title ID has an invalid length`); + } else if (!field.match(/^([A-Z0-9]){16}$/)) { + validationError(`Testcase: Game title ID is not a hexadecimal ID`); + } + }); + + validateNotEmpty(testcase, "compatibility"); + if (testcase["compatibility"] !== undefined) { + let compat = parseInt(testcase["compatibility"]); + if (compat < maxCompatibility) { + maxCompatibility = compat; + } + } + + validateIsDate(testcase, "date"); + validateContents(testcase, "version", test => { + if (test.length !== 12) { + validationError(`Testcase: Version is of incorrect length`); + } else if (!test.startsWith("HEAD-")) { + validationError(`Testcase: Unknown version commit source`); + } + }); + validateNotEmpty(testcase, "author"); + + validateNotEmpty(testcase, "cpu"); + validateNotEmpty(testcase, "gpu"); + validateNotEmpty(testcase, "os"); + }); + + // Validate dates are properly ordered + section.reduce(function(previousValue, currentValue) { + if (typeof previousValue === "undefined" || previousValue.date <= currentValue.date) { + return currentValue; + } + validationError("Test case dates are not properly sorted in ascending order."); + }); + } + + // We only check these if we have a known test result (we cannot know if a game needs + // resources if it doesn't even run!) + if (maxCompatibility < 5) { + validateIsBoolean(tomlDoc, "needs_system_files"); + validateIsBoolean(tomlDoc, "needs_shared_font"); + } +} + +/// Validates the basic structure of a save game's TOML. Assumes it exists. +function validateSaveTOML(path) { + let rawContents = fs.readFileSync(path); + let tomlDoc; + try { + tomlDoc = toml.parse(rawContents); + } catch (e) { + validationError("TOML parse error (" + e.line + "): " + e.message); + return; + } + + // Check the global header section + validateNotEmpty(tomlDoc, "title"); + validateNotEmpty(tomlDoc, "description"); + validateNotEmpty(tomlDoc, "author"); + validateContents(tomlDoc, "title_id", field => { + if (field.length !== 16) { + validationError(`Game save data: Game title ID has an invalid length`); + } else if (!field.match(/^([A-Z0-9]){16}$/)) { + validationError(`Game save data: Game title ID is not a hexadecimal ID`); + } + }); +} + +/// Validates that a save is actually a .zip. +function validateSaveZip(path) { + // TODO: Would a node library MIME check be better? + const zipHeader = Buffer.from([0x50, 0x4B, 0x03, 0x04]); + + const data = readChunk.sync(path, 0, 4); + + if (zipHeader.compare(data) !== 0) { + validationError(`File ${path} is not a .zip!`) + } +} + +/// Validates a folder of game saves. +function validateSaves(dir) { + if (fs.existsSync(dir) === false) { + return; + } + + const files = getFiles(dir); + + files.forEach(file => { + if (!isValidFilename(file)) { + validationError(`File \"${file}\" contains bad characters!`); + } + }); + + // Strip extensions, so we know what save 'groups' we are dealing with + const strippedFiles = files.map(file => { + return file.substr(0, file.lastIndexOf(".")) + }); + + const groups = strippedFiles.filter((element, i) => { + return strippedFiles.indexOf(element) === i + }); + + // Check each group + groups.forEach(group => { + if (validateFileExists(`${dir}/${group}.dat`)) { + validateSaveTOML(`${dir}/${group}.dat`); + } + if (validateFileExists(`${dir}/${group}.zip`)) { + validateSaveZip(`${dir}/${group}.zip`); + } + }); +} + +function validationError(err) { + errors.push({game: currentGame, error: err}); +} + +// Loop through each game folder, validating each game. +getDirectories(config.directory).forEach(function (game) { + try { + if (game === '.git' || game === '_validation') { + return; + } + + let inputDirectoryGame = `${config.directory}/${game}`; + currentGame = game; + + // Check that everything is lowercase and is a known file. + getFiles(inputDirectoryGame).forEach(file => { + if (config.permitted_files.indexOf(file) === -1) { + validationError(`Unknown file \"${file}\"!`); + } else if (!isValidFilename(file)) { + validationError(`File \"${file}\" contains bad characters!`); + } + }); + + // Check that all directories are known. + getDirectories(inputDirectoryGame).forEach(file => { + if (config.permitted_dirs.indexOf(file) === -1) { + validationError(`Unknown directory \"${file}\"!`); + } + }); + + // Verify the game's boxart. + validateImage(`${inputDirectoryGame}/${config.boxart.filename}`, config.boxart); + + // Verify the game's image. + validateImage(`${inputDirectoryGame}/${config.icon.filename}`, config.icon); + + // Verify the game's metadata. + validateTOML(`${inputDirectoryGame}/${config.data.filename}`); + + // Verify the game's screenshots. + validateDirImages(`${inputDirectoryGame}/${config.screenshots.dirname}`, + config.screenshots); + + // Verify the game's save files. + validateSaves(`${inputDirectoryGame}/${config.saves.dirname}`); + + } catch (ex) { + console.warn(`${game} has encountered an unexpected error.`); + console.error(ex); + miscError = true; + } +}); + +if (errors.length > 0 || miscError) { + console.warn('Validation completed with errors.'); + + const groups = groupBy(errors, "game"); + + for (let key in groups) { + let group = groups[key]; + + console.info(` ${key}:`); + + group.forEach(issue => { + console.info(` - ${issue.error}`); + }); + } + + process.exit(1); +} else { + console.info('Validation completed without errors.'); + process.exit(0); +} + diff --git a/validation/config.json b/validation/config.json new file mode 100644 index 0000000..1673acd --- /dev/null +++ b/validation/config.json @@ -0,0 +1,15 @@ +{ + "directory": "../games", + "regions": ["jpn", "usa", "eur", "aus", "chn", "kor", "twn", "all"], + "gametypes": ["3ds", "vc", "dsi", "eshop"], + "vc_systems": ["nes", "snes", "gb", "gbc", "gba", "gg"], + + "permitted_files": ["boxart.png", "icon.png", "game.dat"], + "permitted_dirs": ["screenshots", "savefiles"], + + "boxart": { "filename": "boxart.png", "sizes": [{"width": 328, "height": 300}, {"width": 500, "height": 300}], "type": "image/png"}, + "icon": { "filename": "icon.png", "sizes": [{"width": 48, "height": 48}], "type": "image/png"}, + "screenshots": { "dirname": "screenshots", "sizes": [{"width": 400, "height": 480}], "type": "image/png"}, + "saves": { "dirname": "savefiles"}, + "data": { "filename": "game.dat" } +} diff --git a/validation/package.json b/validation/package.json new file mode 100644 index 0000000..e71f7da --- /dev/null +++ b/validation/package.json @@ -0,0 +1,18 @@ +{ + "name": "citra-games-wiki-validation", + "version": "1.0.0", + "description": "Used to validate citra-games-wiki code is valid.", + "homepage": "https://citra-emu.org/", + "author": "Flame Sage ", + "main": "app.js", + "dependencies": { + "group-by": "0.0.1", + "image-size": "^0.5.4", + "image-type": "^3.0.0", + "read-chunk": "latest", + "toml": "^2.3.2" + }, + "preferGlobal": false, + "private": true, + "license": "GPLv3" +}