diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index ffb5d5f8b..45f233dff 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -22,7 +22,7 @@ body:
id: log
attributes:
label: Log file
- description: A log file will help our developers to better diagnose and fix the issue.
+ description: "A log file will help our developers to better diagnose and fix the issue. UPLOAD THE FILE. DO NOT COPY AND PASTE THE FILE'S CONTENT."
placeholder: Logs files can be found under "Logs" folder in Ryujinx program folder. They can also be accessed by opening Ryujinx, then going to File > Open Logs Folder. You can drag and drop the log on to the text area (do not copy paste).
validations:
required: true
diff --git a/.github/labeler.yml b/.github/labeler.yml
index ac3c77288..b80dbb1fb 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -18,6 +18,10 @@ gpu:
- changed-files:
- any-glob-to-any-file: ['src/Ryujinx.Graphics.Vulkan/**', 'src/Spv.Generator/**']
+'graphics-backend:metal':
+ - changed-files:
+ - any-glob-to-any-file: ['src/Ryujinx.Graphics.Metal/**', 'src/Ryujinx.Graphics.Metal.SharpMetalExtensions/**']
+
gui:
- changed-files:
- any-glob-to-any-file: ['src/Ryujinx/**', 'src/Ryujinx.UI.Common/**', 'src/Ryujinx.UI.LocaleGenerator/**']
diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml
index 433e65cb2..1554b8f6b 100644
--- a/.github/workflows/canary.yml
+++ b/.github/workflows/canary.yml
@@ -202,7 +202,7 @@ jobs:
macos_release:
name: Release MacOS universal
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 7e11f6edf..072c6bf2f 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -183,7 +183,7 @@ jobs:
macos_release:
name: Release MacOS universal
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
diff --git a/COMPILING.md b/COMPILING.md
index 64f7e4e1b..c989a50eb 100644
--- a/COMPILING.md
+++ b/COMPILING.md
@@ -10,7 +10,7 @@ Make sure your SDK version is higher or equal to the required version specified
### Step 2
-Either use `git clone https://github.com/GreemDev/Ryujinx` on the command line to clone the repository or use Code --> Download zip button to get the files.
+Either use `git clone https://github.com/Ryubing/Ryujinx` on the command line to clone the repository or use Code --> Download zip button to get the files.
### Step 3
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 686ea3994..f2f3c3af2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -14,13 +14,13 @@ We always welcome bug reports, feature proposals and overall feedback. Here are
### Finding Existing Issues
-Before filing a new issue, please search our [open issues](https://github.com/GreemDev/Ryujinx/issues) to check if it already exists.
+Before filing a new issue, please search our [open issues](https://github.com/Ryubing/Ryujinx/issues) to check if it already exists.
If you do find an existing issue, please include your own feedback in the discussion. Do consider upvoting (👍 reaction) the original post, as this helps us prioritize popular issues in our backlog.
### Writing a Good Feature Request
-Please review any feature requests already opened to both check it has not already been suggested, and to familiarize yourself with the format. When ready to submit a proposal, please use the [Feature Request issue template](https://github.com/GreemDev/Ryujinx/issues/new?assignees=&labels=&projects=&template=feature_request.yml&title=%5BFeature+Request%5D).
+Please review any feature requests already opened to both check it has not already been suggested, and to familiarize yourself with the format. When ready to submit a proposal, please use the [Feature Request issue template](https://github.com/Ryubing/Ryujinx/issues/new?assignees=&labels=&projects=&template=feature_request.yml&title=%5BFeature+Request%5D).
### Writing a Good Bug Report
@@ -34,13 +34,13 @@ Ideally, a bug report should contain the following information:
* A Ryujinx log file of the run instance where the issue occurred. Log files can be found in `[Executable Folder]/Logs` and are named chronologically.
* Additional information, e.g. is it a regression from previous versions? Are there any known workarounds?
-When ready to submit a bug report, please use the [Bug Report issue template](https://github.com/GreemDev/Ryujinx/issues/new?assignees=&labels=bug&projects=&template=bug_report.yml&title=%5BBug%5D).
+When ready to submit a bug report, please use the [Bug Report issue template](https://github.com/Ryubing/Ryujinx/issues/new?assignees=&labels=bug&projects=&template=bug_report.yml&title=%5BBug%5D).
## Contributing Changes
Project maintainers will merge changes that both improve the project and meet our standards for code quality.
-The [Pull Request Guide](docs/workflow/pr-guide.md) and [License](https://github.com/GreemDev/Ryujinx/blob/master/LICENSE.txt) docs define additional guidance.
+The [Pull Request Guide](docs/workflow/pr-guide.md) and [License](https://github.com/Ryubing/Ryujinx/blob/master/LICENSE.txt) docs define additional guidance.
### DOs and DON'Ts
@@ -74,14 +74,14 @@ We use and recommend the following workflow:
3. In your fork, create a branch off of main (`git checkout -b mybranch`).
- Branches are useful since they isolate your changes from incoming changes from upstream. They also enable you to create multiple PRs from the same fork.
4. Make and commit your changes to your branch.
- - [Build Instructions](https://github.com/GreemDev/Ryujinx/blob/master/COMPILING.md) explains how to build and test.
+ - [Build Instructions](https://github.com/Ryubing/Ryujinx/blob/master/COMPILING.md) explains how to build and test.
- Commit messages should be clear statements of action and intent.
6. Build the repository with your changes.
- Make sure that the builds are clean.
- Make sure that `dotnet format` has been run and any corrections tested and committed.
7. Create a pull request (PR) against the Ryujinx/Ryujinx repository's **main** branch.
- State in the description what issue or improvement your change is addressing.
- - Check if all the Continuous Integration checks are passing. Refer to [Actions](https://github.com/GreemDev/Ryujinx/actions) to check for outstanding errors.
+ - Check if all the Continuous Integration checks are passing. Refer to [Actions](https://github.com/Ryubing/Ryujinx/actions) to check for outstanding errors.
8. Wait for feedback or approval of your changes from the core development team
- Details about the pull request [review procedure](docs/workflow/pr-guide.md).
9. When the team members have signed off, and all checks are green, your PR will be merged.
@@ -90,7 +90,7 @@ We use and recommend the following workflow:
### Good First Issues
-The team marks the most straightforward issues as [good first issues](https://github.com/GreemDev/Ryujinx/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22). This set of issues is the place to start if you are interested in contributing but new to the codebase.
+The team marks the most straightforward issues as [good first issues](https://github.com/Ryubing/Ryujinx/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22). This set of issues is the place to start if you are interested in contributing but new to the codebase.
### Commit Messages
@@ -113,7 +113,7 @@ Also do your best to factor commits appropriately, not too large with unrelated
### PR - CI Process
-The [Ryujinx continuous integration](https://github.com/GreemDev/Ryujinx/actions) (CI) system will automatically perform the required builds and run tests (including the ones you are expected to run) for PRs. Builds and test runs must be clean or have bugs properly filed against flaky/unexpected failures that are unrelated to your change.
+The [Ryujinx continuous integration](https://github.com/Ryubing/Ryujinx/actions) (CI) system will automatically perform the required builds and run tests (including the ones you are expected to run) for PRs. Builds and test runs must be clean or have bugs properly filed against flaky/unexpected failures that are unrelated to your change.
If the CI build fails for any reason, the PR actions tab should be consulted for further information on the failure. There are a few usual suspects for such a failure:
* `dotnet format` has not been run on the PR and has outstanding stylistic issues.
@@ -134,5 +134,5 @@ Ryujinx uses some implementations and frameworks from other projects. The follow
- The license of the file is [permissive](https://en.wikipedia.org/wiki/Permissive_free_software_licence).
- The license of the file is left in-tact.
-- The contribution is correctly attributed in the [3rd party notices](https://github.com/GreemDev/Ryujinx/blob/master/distribution/legal/THIRDPARTY.md) file in the repository, as needed.
+- The contribution is correctly attributed in the [3rd party notices](https://github.com/Ryubing/Ryujinx/blob/master/distribution/legal/THIRDPARTY.md) file in the repository, as needed.
diff --git a/Directory.Packages.props b/Directory.Packages.props
index a480d3d29..f1d7cac61 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -3,13 +3,13 @@
-[](https://github.com/GreemDev/Ryujinx/actions/workflows/canary.yml)
-[](https://github.com/GreemDev/Ryujinx-Canary/releases/latest)
+[](https://github.com/Ryubing/Ryujinx/actions/workflows/canary.yml)
+[](https://github.com/Ryubing/Canary-Releases/releases/latest)
@@ -20,7 +20,7 @@
Ryujinx is an open-source Nintendo Switch emulator, originally created by gdkchan, written in C#.
This emulator aims at providing excellent accuracy and performance, a user-friendly interface and consistent builds.
It was written from scratch and development on the project began in September 2017.
- Ryujinx is available on GitHub under the MIT license.
+ Ryujinx is available on GitHub under the MIT license.
@@ -30,7 +30,7 @@
This is not a Ryujinx revival project. This is not a Phoenix project.
- Guides and documentation can be found on the Wiki tab.
+ Guides and documentation can be found on the Wiki tab.
If you would like a more preservative fork of Ryujinx, check out ryujinx-mirror.
@@ -54,16 +54,17 @@ failing to meet this requirement may result in a poor gameplay experience or une
## Latest build
-Stable builds are made every so often onto a separate "release" branch that then gets put into the releases you know and love.
+Stable builds are made every so often, based on the `master` branch, that then gets put into the releases you know and love.
These stable builds exist so that the end user can get a more **enjoyable and stable experience**.
+They are released every month or so, to ensure consistent updates, while not being an annoying amount of individual updates to download over the course of that month.
-You can find the latest stable release [here](https://github.com/GreemDev/Ryujinx/releases/latest).
+You can find the latest stable release [here](https://github.com/Ryubing/Ryujinx/releases/latest).
-Canary builds are compiled automatically for each commit on the master branch.
+Canary builds are compiled automatically for each commit on the `master` branch.
While we strive to ensure optimal stability and performance prior to pushing an update, these builds **may be unstable or completely broken**.
These canary builds are only recommended for experienced users.
-You can find the latest canary release [here](https://github.com/GreemDev/Ryujinx-Canary/releases/latest).
+You can find the latest canary release [here](https://github.com/Ryubing/Canary-Releases/releases/latest).
## Documentation
@@ -109,7 +110,7 @@ If you are planning to contribute or just want to learn more about this project
- **Configuration**
The emulator has settings for enabling or disabling some logging, remapping controllers, and more.
- You can configure all of them through the graphical interface or manually through the config file, `Config.json`, found in the user folder which can be accessed by clicking `Open Ryujinx Folder` under the File menu in the GUI.
+ You can configure all of them through the graphical interface or manually through the config file, `Config.json`, found in the Ryujinx data folder which can be accessed by clicking `Open Ryujinx Folder` under the File menu in the GUI.
## License
diff --git a/assets/amiibo/Amiibo.json b/assets/amiibo/Amiibo.json
index 03c2c020e..e3c01c1c3 100644
--- a/assets/amiibo/Amiibo.json
+++ b/assets/amiibo/Amiibo.json
@@ -43,7 +43,7 @@
}
],
"head": "04380001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04380001-03000502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04380001-03000502.png",
"name": "Sandy",
"release": {
"au": "2016-11-10",
@@ -109,7 +109,7 @@
}
],
"head": "01810101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810101-00b40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810101-00b40502.png",
"name": "Isabelle - Winter",
"release": {
"au": "2015-11-21",
@@ -151,7 +151,7 @@
}
],
"head": "32000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_32000000-00300002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_32000000-00300002.png",
"name": "Sonic",
"release": {
"au": "2015-01-29",
@@ -205,7 +205,7 @@
}
],
"head": "029e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_029e0001-013d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_029e0001-013d0502.png",
"name": "Ava",
"release": {
"au": "2016-03-19",
@@ -259,7 +259,7 @@
}
],
"head": "01b30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b30001-00b50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b30001-00b50502.png",
"name": "Blanca",
"release": {
"au": "2015-11-21",
@@ -313,7 +313,7 @@
}
],
"head": "02f80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f80001-01380502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f80001-01380502.png",
"name": "Mac",
"release": {
"au": "2016-03-19",
@@ -367,7 +367,7 @@
}
],
"head": "023c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023c0001-00bd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023c0001-00bd0502.png",
"name": "Lucha",
"release": {
"au": "2015-11-21",
@@ -421,7 +421,7 @@
}
],
"head": "02630001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02630001-00750502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02630001-00750502.png",
"name": "Punchy",
"release": {
"au": "2015-10-03",
@@ -475,7 +475,7 @@
}
],
"head": "03700001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03700001-015d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03700001-015d0502.png",
"name": "Violet",
"release": {
"au": "2016-03-19",
@@ -505,7 +505,7 @@
}
],
"head": "07c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07c00000-00210002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07c00000-00210002.png",
"name": "Mii Brawler",
"release": {
"au": "2015-09-26",
@@ -522,7 +522,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c50201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50201-02830e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50201-02830e02.png",
"name": "Wario - Baseball",
"release": {
"au": "2017-03-11",
@@ -576,7 +576,7 @@
}
],
"head": "026c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026c0001-00c30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026c0001-00c30502.png",
"name": "Tom",
"release": {
"au": "2015-11-21",
@@ -726,7 +726,7 @@
}
],
"head": "01010300",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010300-04140902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010300-04140902.png",
"name": "Zelda & Loftwing",
"release": {
"au": "2021-07-16",
@@ -780,7 +780,7 @@
}
],
"head": "04e60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e60001-00820502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e60001-00820502.png",
"name": "Mint",
"release": {
"au": "2015-10-03",
@@ -834,7 +834,7 @@
}
],
"head": "04e30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e30001-01650502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e30001-01650502.png",
"name": "Caroline",
"release": {
"au": "2016-03-19",
@@ -888,7 +888,7 @@
}
],
"head": "01880001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01880001-01120502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01880001-01120502.png",
"name": "Mabel",
"release": {
"au": "2016-03-19",
@@ -966,7 +966,7 @@
}
],
"head": "08000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-04150402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-04150402.png",
"name": "Inkling - Yellow",
"release": {
"au": "2022-11-11",
@@ -1020,7 +1020,7 @@
}
],
"head": "08070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08070000-04330402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08070000-04330402.png",
"name": "Shiver",
"release": {
"au": "2023-11-17",
@@ -1074,7 +1074,7 @@
}
],
"head": "08080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08080000-04340402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08080000-04340402.png",
"name": "Frye",
"release": {
"au": "2023-11-17",
@@ -1128,7 +1128,7 @@
}
],
"head": "08090000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08090000-04350402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08090000-04350402.png",
"name": "Big Man",
"release": {
"au": "2023-11-17",
@@ -1170,7 +1170,7 @@
}
],
"head": "0a1d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1d0001-03d40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1d0001-03d40502.png",
"name": "Frett",
"release": {
"au": "2021-11-05",
@@ -1224,7 +1224,7 @@
}
],
"head": "035d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035d0001-00c90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035d0001-00c90502.png",
"name": "Kidd",
"release": {
"au": "2015-11-21",
@@ -1302,7 +1302,7 @@
}
],
"head": "1f400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f400000-035e1002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f400000-035e1002.png",
"name": "Qbby",
"release": {
"au": null,
@@ -1319,7 +1319,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c60101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60101-02870e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60101-02870e02.png",
"name": "Waluigi - Soccer",
"release": {
"au": "2017-03-11",
@@ -1373,7 +1373,7 @@
}
],
"head": "02640001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02640001-01ac0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02640001-01ac0502.png",
"name": "Purrl",
"release": {
"au": "2016-06-18",
@@ -1427,7 +1427,7 @@
}
],
"head": "025e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025e0001-01250502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025e0001-01250502.png",
"name": "Mitzi",
"release": {
"au": "2016-03-19",
@@ -1469,7 +1469,7 @@
}
],
"head": "0a100001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a100001-03c70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a100001-03c70502.png",
"name": "Reneigh",
"release": {
"au": "2021-11-05",
@@ -1523,7 +1523,7 @@
}
],
"head": "047a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047a0001-00600502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047a0001-00600502.png",
"name": "Rasher",
"release": {
"au": "2015-10-03",
@@ -1577,7 +1577,7 @@
}
],
"head": "04a10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a10001-016f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a10001-016f0502.png",
"name": "Chrissy",
"release": {
"au": "2016-03-19",
@@ -1594,7 +1594,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d00301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00301-02bb0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00301-02bb0e02.png",
"name": "Metal Mario - Tennis",
"release": {
"au": "2017-03-11",
@@ -1648,7 +1648,7 @@
}
],
"head": "01910001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01910001-004e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01910001-004e0502.png",
"name": "Harriet",
"release": {
"au": "2015-10-03",
@@ -1702,7 +1702,7 @@
}
],
"head": "02f10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f10001-01450502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f10001-01450502.png",
"name": "Daisy",
"release": {
"au": "2016-03-19",
@@ -1756,7 +1756,7 @@
}
],
"head": "02d70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d70001-01300502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d70001-01300502.png",
"name": "Bam",
"release": {
"au": "2016-03-19",
@@ -1810,7 +1810,7 @@
}
],
"head": "02030001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02030001-019a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02030001-019a0502.png",
"name": "Anabelle",
"release": {
"au": "2016-06-18",
@@ -1864,7 +1864,7 @@
}
],
"head": "01890001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01890001-00ab0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01890001-00ab0502.png",
"name": "Labelle",
"release": {
"au": "2015-11-21",
@@ -1894,7 +1894,7 @@
}
],
"head": "38410001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38410001-04251902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38410001-04251902.png",
"name": "Tatsuhisa \u201cLuke\u201d Kamij\u014d",
"release": {
"au": null,
@@ -1948,7 +1948,7 @@
}
],
"head": "08060100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08060100-041c0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08060100-041c0402.png",
"name": "Smallfry",
"release": {
"au": "2022-11-11",
@@ -2026,7 +2026,7 @@
}
],
"head": "08000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-03820002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-03820002.png",
"name": "Inkling",
"release": {
"au": "2018-12-07",
@@ -2080,7 +2080,7 @@
}
],
"head": "018d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018d0001-010c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018d0001-010c0502.png",
"name": "Rover",
"release": {
"au": "2016-03-19",
@@ -2134,7 +2134,7 @@
}
],
"head": "01a70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a70001-01140502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a70001-01140502.png",
"name": "Wendell",
"release": {
"au": "2016-03-19",
@@ -2188,7 +2188,7 @@
}
],
"head": "04ba0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ba0001-005d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ba0001-005d0502.png",
"name": "Ren\u00e9e",
"release": {
"au": "2015-10-03",
@@ -2242,7 +2242,7 @@
}
],
"head": "04890001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04890001-00ef0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04890001-00ef0502.png",
"name": "Agnes",
"release": {
"au": "2015-11-21",
@@ -2296,7 +2296,7 @@
}
],
"head": "018e0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018e0101-01780502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018e0101-01780502.png",
"name": "Resetti - Without Hat",
"release": {
"au": "2016-06-18",
@@ -2338,7 +2338,7 @@
}
],
"head": "0a040001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a040001-03b50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a040001-03b50502.png",
"name": "Daisy Mae",
"release": {
"au": "2021-11-05",
@@ -2392,7 +2392,7 @@
}
],
"head": "026d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026d0001-013f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026d0001-013f0502.png",
"name": "Merry",
"release": {
"au": "2016-03-19",
@@ -2446,7 +2446,7 @@
}
],
"head": "03250001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03250001-010a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03250001-010a0502.png",
"name": "Big Top",
"release": {
"au": "2015-11-21",
@@ -2500,7 +2500,7 @@
}
],
"head": "01b40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b40001-01130502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b40001-01130502.png",
"name": "Leif",
"release": {
"au": "2016-03-19",
@@ -2554,7 +2554,7 @@
}
],
"head": "03900001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03900001-01850502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03900001-01850502.png",
"name": "Rocco",
"release": {
"au": "2016-06-18",
@@ -2571,7 +2571,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c70501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70501-02900e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70501-02900e02.png",
"name": "Donkey Kong - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -2625,7 +2625,7 @@
}
],
"head": "04370001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04370001-01050502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04370001-01050502.png",
"name": "Gladys",
"release": {
"au": "2015-11-21",
@@ -2679,7 +2679,7 @@
}
],
"head": "02300001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02300001-01d20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02300001-01d20502.png",
"name": "Twiggy",
"release": {
"au": "2016-06-18",
@@ -2733,7 +2733,7 @@
}
],
"head": "033b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033b0001-00fa0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033b0001-00fa0502.png",
"name": "Camofrog",
"release": {
"au": "2015-11-21",
@@ -2799,7 +2799,7 @@
}
],
"head": "01c10000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10000-02440502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10000-02440502.png",
"name": "Lottie",
"release": {
"au": "2015-11-21",
@@ -2829,7 +2829,7 @@
}
],
"head": "00c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00c00000-037b0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00c00000-037b0002.png",
"name": "King K. Rool",
"release": {
"au": "2019-02-15",
@@ -2859,7 +2859,7 @@
}
],
"head": "38450001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38450001-04291902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38450001-04291902.png",
"name": "Nail Saionji",
"release": {
"au": null,
@@ -2889,7 +2889,7 @@
}
],
"head": "36010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36010000-04210002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36010000-04210002.png",
"name": "Sephiroth",
"release": {
"au": "2023-01-13",
@@ -2943,7 +2943,7 @@
}
],
"head": "02da0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02da0001-01330502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02da0001-01330502.png",
"name": "Deirdre",
"release": {
"au": "2016-03-19",
@@ -2985,7 +2985,7 @@
}
],
"head": "0a030001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a030001-03b40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a030001-03b40502.png",
"name": "Flick",
"release": {
"au": "2021-11-05",
@@ -3063,7 +3063,7 @@
}
],
"head": "21020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21020000-00290002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21020000-00290002.png",
"name": "Lucina",
"release": {
"au": "2015-04-25",
@@ -3117,7 +3117,7 @@
}
],
"head": "02b80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b80001-019c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b80001-019c0502.png",
"name": "Naomi",
"release": {
"au": "2016-06-18",
@@ -3171,7 +3171,7 @@
}
],
"head": "03470001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03470001-03020502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03470001-03020502.png",
"name": "Raddle",
"release": {
"au": "2016-11-10",
@@ -3225,7 +3225,7 @@
}
],
"head": "01b00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b00001-00520502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b00001-00520502.png",
"name": "Tortimer",
"release": {
"au": "2015-10-03",
@@ -3291,7 +3291,7 @@
}
],
"head": "018c0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018c0000-02430502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018c0000-02430502.png",
"name": "Digby",
"release": {
"au": "2015-11-21",
@@ -3345,7 +3345,7 @@
}
],
"head": "033e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033e0001-01a20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033e0001-01a20502.png",
"name": "Puddles",
"release": {
"au": "2016-06-18",
@@ -3423,7 +3423,7 @@
}
],
"head": "08050200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050200-038f0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050200-038f0402.png",
"name": "Octoling Boy",
"release": {
"au": "2018-11-11",
@@ -3561,7 +3561,7 @@
}
],
"head": "01400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01400000-03550902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01400000-03550902.png",
"name": "Guardian",
"release": {
"au": "2017-03-03",
@@ -3591,7 +3591,7 @@
}
],
"head": "19070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19070000-03840002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19070000-03840002.png",
"name": "Squirtle",
"release": {
"au": "2019-09-20",
@@ -3717,7 +3717,7 @@
}
],
"head": "00020003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020003-039dff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020003-039dff02.png",
"name": "Peach - Power Up Band",
"release": {
"au": null,
@@ -3771,7 +3771,7 @@
}
],
"head": "02380001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02380001-02f80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02380001-02f80502.png",
"name": "Jacob",
"release": {
"au": "2016-11-10",
@@ -3849,7 +3849,7 @@
}
],
"head": "00170000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00170000-02680102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00170000-02680102.png",
"name": "Boo",
"release": {
"au": "2016-10-08",
@@ -3903,7 +3903,7 @@
}
],
"head": "035e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035e0001-018e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035e0001-018e0502.png",
"name": "Pashmina",
"release": {
"au": "2016-06-18",
@@ -3957,7 +3957,7 @@
}
],
"head": "03280001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03280001-02eb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03280001-02eb0502.png",
"name": "Paolo",
"release": {
"au": "2016-11-10",
@@ -4011,7 +4011,7 @@
}
],
"head": "028a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028a0001-02e90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028a0001-02e90502.png",
"name": "June",
"release": {
"au": "2016-11-10",
@@ -4041,7 +4041,7 @@
}
],
"head": "37400001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37400001-03741402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37400001-03741402.png",
"name": "Super Mario Cereal",
"release": {
"au": null,
@@ -4211,7 +4211,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-00040002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-00040002.png",
"name": "Link",
"release": {
"au": "2014-11-29",
@@ -4241,7 +4241,7 @@
}
],
"head": "36000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36000000-02590002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36000000-02590002.png",
"name": "Cloud",
"release": {
"au": "2017-07-22",
@@ -4295,7 +4295,7 @@
}
],
"head": "02710001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02710001-019b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02710001-019b0502.png",
"name": "Rudy",
"release": {
"au": "2016-06-18",
@@ -4349,7 +4349,7 @@
}
],
"head": "03840001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03840001-00860502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03840001-00860502.png",
"name": "Flurry",
"release": {
"au": "2015-10-03",
@@ -4403,7 +4403,7 @@
}
],
"head": "028e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028e0001-019e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028e0001-019e0502.png",
"name": "Tammy",
"release": {
"au": "2016-06-18",
@@ -4457,7 +4457,7 @@
}
],
"head": "02140001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02140001-00e40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02140001-00e40502.png",
"name": "Teddy",
"release": {
"au": "2015-11-21",
@@ -4511,7 +4511,7 @@
}
],
"head": "04510001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04510001-015e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04510001-015e0502.png",
"name": "Frank",
"release": {
"au": "2016-03-19",
@@ -4528,7 +4528,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c20501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20501-02770e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20501-02770e02.png",
"name": "Peach - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -4582,7 +4582,7 @@
}
],
"head": "024d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024d0001-02f60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024d0001-02f60502.png",
"name": "Stu",
"release": {
"au": "2016-11-10",
@@ -4636,7 +4636,7 @@
}
],
"head": "03a80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a80001-00910502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a80001-00910502.png",
"name": "Roscoe",
"release": {
"au": "2015-10-03",
@@ -4714,7 +4714,7 @@
}
],
"head": "21010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21010000-00180002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21010000-00180002.png",
"name": "Ike",
"release": {
"au": "2015-01-29",
@@ -4731,7 +4731,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c10401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10401-02710e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10401-02710e02.png",
"name": "Luigi - Golf",
"release": {
"au": "2017-03-11",
@@ -4785,7 +4785,7 @@
}
],
"head": "03810001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03810001-00d50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03810001-00d50502.png",
"name": "Rodney",
"release": {
"au": "2015-11-21",
@@ -4802,7 +4802,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cc0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0101-02a50e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0101-02a50e02.png",
"name": "Baby Mario - Soccer",
"release": {
"au": "2017-03-11",
@@ -4832,7 +4832,7 @@
}
],
"head": "38050001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38050001-03981702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38050001-03981702.png",
"name": "Daijobu",
"release": {
"au": null,
@@ -4886,7 +4886,7 @@
}
],
"head": "02d90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d90001-01c80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d90001-01c80502.png",
"name": "Bruce",
"release": {
"au": "2016-06-18",
@@ -4940,7 +4940,7 @@
}
],
"head": "040f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040f0001-01500502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040f0001-01500502.png",
"name": "Bree",
"release": {
"au": "2016-03-19",
@@ -4994,7 +4994,7 @@
}
],
"head": "04fd0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fd0001-007b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fd0001-007b0502.png",
"name": "Bangle",
"release": {
"au": "2015-10-03",
@@ -5048,7 +5048,7 @@
}
],
"head": "02820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02820001-01810502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02820001-01810502.png",
"name": "Stitches",
"release": {
"au": "2016-06-18",
@@ -5102,7 +5102,7 @@
}
],
"head": "045f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_045f0001-01a80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_045f0001-01a80502.png",
"name": "Aurora",
"release": {
"au": "2016-06-18",
@@ -5156,7 +5156,7 @@
}
],
"head": "046a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046a0001-01d00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046a0001-01d00502.png",
"name": "Iggly",
"release": {
"au": "2016-06-18",
@@ -5210,7 +5210,7 @@
}
],
"head": "02520001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02520001-00fe0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02520001-00fe0502.png",
"name": "Vic",
"release": {
"au": "2015-11-21",
@@ -5252,7 +5252,7 @@
}
],
"head": "35090100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35090100-042b1802.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35090100-042b1802.png",
"name": "Palico",
"release": {
"au": "2022-06-30",
@@ -5370,7 +5370,7 @@
}
],
"head": "00000003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000003-0430ff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000003-0430ff02.png",
"name": "Golden - Power Up Band",
"release": {
"au": null,
@@ -5424,7 +5424,7 @@
}
],
"head": "044c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044c0001-008e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044c0001-008e0502.png",
"name": "Amelia",
"release": {
"au": "2015-10-03",
@@ -5478,7 +5478,7 @@
}
],
"head": "03130001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03130001-01210502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03130001-01210502.png",
"name": "Miranda",
"release": {
"au": "2016-03-19",
@@ -5532,7 +5532,7 @@
}
],
"head": "01a50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a50001-01720502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a50001-01720502.png",
"name": "Katrina",
"release": {
"au": "2016-06-18",
@@ -5574,7 +5574,7 @@
}
],
"head": "0a0c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0c0001-03c30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0c0001-03c30502.png",
"name": "Audie",
"release": {
"au": "2021-11-05",
@@ -5591,7 +5591,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c80501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80501-02950e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80501-02950e02.png",
"name": "Diddy Kong - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -5645,7 +5645,7 @@
}
],
"head": "03070001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03070001-00640502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03070001-00640502.png",
"name": "Bill",
"release": {
"au": "2015-10-03",
@@ -5699,7 +5699,7 @@
}
],
"head": "022f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_022f0001-011e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_022f0001-011e0502.png",
"name": "Anchovy",
"release": {
"au": "2016-03-19",
@@ -5741,7 +5741,7 @@
}
],
"head": "0a050001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a050001-03b80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a050001-03b80502.png",
"name": "Harvey",
"release": {
"au": "2021-11-05",
@@ -5915,7 +5915,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-03530902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-03530902.png",
"name": "Link - Archer",
"release": {
"au": "2017-03-03",
@@ -5969,7 +5969,7 @@
}
],
"head": "01860101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01860101-00af0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01860101-00af0502.png",
"name": "Tommy - Uniform",
"release": {
"au": "2015-11-21",
@@ -6047,7 +6047,7 @@
}
],
"head": "08050100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050100-038e0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050100-038e0402.png",
"name": "Octoling Girl",
"release": {
"au": "2018-11-11",
@@ -6209,7 +6209,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034f0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034f0902.png",
"name": "8-Bit Link",
"release": {
"au": "2016-12-03",
@@ -6263,7 +6263,7 @@
}
],
"head": "04820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04820001-02fd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04820001-02fd0502.png",
"name": "Maggie",
"release": {
"au": "2016-11-10",
@@ -6365,7 +6365,7 @@
}
],
"head": "34800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34800000-03791502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34800000-03791502.png",
"name": "Mega Man",
"release": {
"au": null,
@@ -6407,7 +6407,7 @@
}
],
"head": "0a000001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a000001-03ab0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a000001-03ab0502.png",
"name": "Orville",
"release": {
"au": "2021-11-05",
@@ -6465,7 +6465,7 @@
}
],
"head": "032e0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032e0101-031c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032e0101-031c0502.png",
"name": "Chai",
"release": {
"au": null,
@@ -6507,7 +6507,7 @@
}
],
"head": "0a0b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0b0001-03c20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0b0001-03c20502.png",
"name": "Dom",
"release": {
"au": "2021-11-05",
@@ -6573,7 +6573,7 @@
}
],
"head": "01960000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01960000-024e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01960000-024e0502.png",
"name": "Kapp'n",
"release": {
"au": "2016-03-19",
@@ -6627,7 +6627,7 @@
}
],
"head": "040d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040d0001-00780502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040d0001-00780502.png",
"name": "Limberg",
"release": {
"au": "2015-10-03",
@@ -6681,7 +6681,7 @@
}
],
"head": "03120001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03120001-03090502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03120001-03090502.png",
"name": "Weber",
"release": {
"au": "2016-11-10",
@@ -6735,7 +6735,7 @@
}
],
"head": "04940001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04940001-009a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04940001-009a0502.png",
"name": "Bunnie",
"release": {
"au": "2015-10-03",
@@ -6789,7 +6789,7 @@
}
],
"head": "00800102",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00800102-035d0302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00800102-035d0302.png",
"name": "Poochy",
"release": {
"au": "2017-02-04",
@@ -6806,7 +6806,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c60301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60301-02890e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60301-02890e02.png",
"name": "Waluigi - Tennis",
"release": {
"au": "2017-03-11",
@@ -6860,7 +6860,7 @@
}
],
"head": "01a00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a00001-010f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a00001-010f0502.png",
"name": "Pelly",
"release": {
"au": "2016-03-19",
@@ -6914,7 +6914,7 @@
}
],
"head": "033a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033a0001-01cc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033a0001-01cc0502.png",
"name": "Frobert",
"release": {
"au": "2016-06-18",
@@ -6931,7 +6931,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ce0501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0501-02b30e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0501-02b30e02.png",
"name": "Birdo - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -6985,7 +6985,7 @@
}
],
"head": "04ea0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ea0001-03180502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ea0001-03180502.png",
"name": "Tasha",
"release": {
"au": "2016-11-10",
@@ -7039,7 +7039,7 @@
}
],
"head": "022e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_022e0001-01d30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_022e0001-01d30502.png",
"name": "Robin",
"release": {
"au": "2016-06-18",
@@ -7093,7 +7093,7 @@
}
],
"head": "02c30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c30001-00dc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c30001-00dc0502.png",
"name": "Alfonso",
"release": {
"au": "2015-11-21",
@@ -7147,7 +7147,7 @@
}
],
"head": "023e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023e0001-00d10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023e0001-00d10502.png",
"name": "Peck",
"release": {
"au": "2015-11-21",
@@ -7164,7 +7164,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cd0201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0201-02ab0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0201-02ab0e02.png",
"name": "Baby Luigi - Baseball",
"release": {
"au": "2017-03-11",
@@ -7254,7 +7254,7 @@
}
],
"head": "00040000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00040000-02620102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00040000-02620102.png",
"name": "Rosalina",
"release": {
"au": "2016-10-08",
@@ -7320,7 +7320,7 @@
}
],
"head": "018b0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018b0000-02460502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018b0000-02460502.png",
"name": "Cyrus",
"release": {
"au": "2015-11-21",
@@ -7374,7 +7374,7 @@
}
],
"head": "04d00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d00001-01960502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d00001-01960502.png",
"name": "Frita",
"release": {
"au": "2016-06-18",
@@ -7428,7 +7428,7 @@
}
],
"head": "046d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046d0001-00f30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046d0001-00f30502.png",
"name": "Sprinkle",
"release": {
"au": "2015-11-21",
@@ -7482,7 +7482,7 @@
}
],
"head": "040e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040e0001-00880502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040e0001-00880502.png",
"name": "Bella",
"release": {
"au": "2015-10-03",
@@ -7536,7 +7536,7 @@
}
],
"head": "02cb0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02cb0001-01360502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02cb0001-01360502.png",
"name": "Drago",
"release": {
"au": "2016-03-19",
@@ -7590,7 +7590,7 @@
}
],
"head": "01990001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01990001-01160502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01990001-01160502.png",
"name": "Grams",
"release": {
"au": "2016-03-19",
@@ -7656,7 +7656,7 @@
}
],
"head": "21050000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21050000-025a0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21050000-025a0002.png",
"name": "Corrin",
"release": {
"au": "2017-07-22",
@@ -7710,7 +7710,7 @@
}
],
"head": "04a30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a30001-01c90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a30001-01c90502.png",
"name": "OHare",
"release": {
"au": "2016-06-18",
@@ -7740,7 +7740,7 @@
}
],
"head": "07410000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07410000-00200002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07410000-00200002.png",
"name": "Dark Pit",
"release": {
"au": "2015-07-04",
@@ -7818,7 +7818,7 @@
}
],
"head": "00040100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00040100-00130002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00040100-00130002.png",
"name": "Rosalina & Luma",
"release": {
"au": "2015-01-29",
@@ -7872,7 +7872,7 @@
}
],
"head": "01a80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a80001-004f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a80001-004f0502.png",
"name": "Redd",
"release": {
"au": "2015-10-03",
@@ -7938,7 +7938,7 @@
}
],
"head": "01880000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01880000-02410502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01880000-02410502.png",
"name": "Mabel",
"release": {
"au": "2015-11-21",
@@ -7992,7 +7992,7 @@
}
],
"head": "03850001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03850001-01060502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03850001-01060502.png",
"name": "Hamphrey",
"release": {
"au": "2015-11-21",
@@ -8046,7 +8046,7 @@
}
],
"head": "01ab0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ab0001-017c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ab0001-017c0502.png",
"name": "Pave",
"release": {
"au": "2016-06-18",
@@ -8063,7 +8063,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c50101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50101-02820e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50101-02820e02.png",
"name": "Wario - Soccer",
"release": {
"au": "2017-03-11",
@@ -8117,7 +8117,7 @@
}
],
"head": "02c40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c40001-00670502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c40001-00670502.png",
"name": "Alli",
"release": {
"au": "2015-10-03",
@@ -8134,7 +8134,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c40401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40401-02800e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40401-02800e02.png",
"name": "Yoshi - Golf",
"release": {
"au": "2017-03-11",
@@ -8188,7 +8188,7 @@
}
],
"head": "02ee0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ee0001-01990502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ee0001-01990502.png",
"name": "Bones",
"release": {
"au": "2016-06-18",
@@ -8266,7 +8266,7 @@
}
],
"head": "05c40000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c40000-04131302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c40000-04131302.png",
"name": "E.M.M.I.",
"release": {
"au": "2021-10-08",
@@ -8440,7 +8440,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-03540902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-03540902.png",
"name": "Link - Rider",
"release": {
"au": "2017-03-03",
@@ -8494,7 +8494,7 @@
}
],
"head": "04980001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04980001-014a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04980001-014a0502.png",
"name": "Gaston",
"release": {
"au": "2016-03-19",
@@ -8548,7 +8548,7 @@
}
],
"head": "03180001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03180001-006c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03180001-006c0502.png",
"name": "Quillson",
"release": {
"au": "2015-10-03",
@@ -8565,7 +8565,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d10101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10101-02be0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10101-02be0e02.png",
"name": "Pink Gold Peach - Soccer",
"release": {
"au": "2017-03-11",
@@ -8595,7 +8595,7 @@
}
],
"head": "07000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07000000-00070002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07000000-00070002.png",
"name": "Wii Fit Trainer",
"release": {
"au": "2014-11-29",
@@ -8673,7 +8673,7 @@
}
],
"head": "00070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00070000-001a0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00070000-001a0002.png",
"name": "Wario",
"release": {
"au": "2015-04-25",
@@ -8703,7 +8703,7 @@
}
],
"head": "22c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22c00000-003a0202.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22c00000-003a0202.png",
"name": "Chibi Robo",
"release": {
"au": "2015-11-07",
@@ -8769,7 +8769,7 @@
}
],
"head": "00090000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00090000-000d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00090000-000d0002.png",
"name": "Diddy Kong",
"release": {
"au": "2014-12-12",
@@ -8823,7 +8823,7 @@
}
],
"head": "35050000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35050000-040c0f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35050000-040c0f02.png",
"name": "Razewing Ratha",
"release": {
"au": "2021-07-09",
@@ -8877,7 +8877,7 @@
}
],
"head": "01ac0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ac0001-017f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ac0001-017f0502.png",
"name": "Zipper",
"release": {
"au": "2016-06-18",
@@ -8931,7 +8931,7 @@
}
],
"head": "044d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044d0001-01930502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044d0001-01930502.png",
"name": "Pierce",
"release": {
"au": "2016-06-18",
@@ -8961,7 +8961,7 @@
}
],
"head": "38010001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38010001-03941702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38010001-03941702.png",
"name": "Ikari",
"release": {
"au": null,
@@ -9135,7 +9135,7 @@
}
],
"head": "01000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000100-03500902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000100-03500902.png",
"name": "Toon Link - The Wind Waker",
"release": {
"au": "2016-12-03",
@@ -9165,7 +9165,7 @@
}
],
"head": "36400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36400000-03a20002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36400000-03a20002.png",
"name": "Hero",
"release": {
"au": "2020-09-25",
@@ -9219,7 +9219,7 @@
}
],
"head": "01960001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01960001-00480502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01960001-00480502.png",
"name": "Kapp'n",
"release": {
"au": "2015-10-03",
@@ -9321,7 +9321,7 @@
}
],
"head": "00010003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00010003-039cff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00010003-039cff02.png",
"name": "Luigi - Power Up Band",
"release": {
"au": null,
@@ -9411,7 +9411,7 @@
}
],
"head": "08000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-003e0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-003e0402.png",
"name": "Inkling Girl",
"release": {
"au": "2015-05-30",
@@ -9465,7 +9465,7 @@
}
],
"head": "050c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050c0001-01c10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050c0001-01c10502.png",
"name": "Lobo",
"release": {
"au": "2016-06-18",
@@ -9627,7 +9627,7 @@
}
],
"head": "01010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-03560902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-03560902.png",
"name": "Zelda",
"release": {
"au": "2017-03-03",
@@ -9705,7 +9705,7 @@
}
],
"head": "35020100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35020100-02e40f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35020100-02e40f02.png",
"name": "Rathian and Cheval",
"release": {
"au": null,
@@ -9722,7 +9722,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c60501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60501-028b0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60501-028b0e02.png",
"name": "Waluigi - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -9764,7 +9764,7 @@
}
],
"head": "0a180001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a180001-03cf0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a180001-03cf0502.png",
"name": "Quinn",
"release": {
"au": "2021-11-05",
@@ -9818,7 +9818,7 @@
}
],
"head": "018c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018c0001-004c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018c0001-004c0502.png",
"name": "Digby",
"release": {
"au": "2015-10-03",
@@ -9980,7 +9980,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-037c0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-037c0002.png",
"name": "Young Link",
"release": {
"au": "2019-04-12",
@@ -10034,7 +10034,7 @@
}
],
"head": "03430001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03430001-02ef0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03430001-02ef0502.png",
"name": "Huck",
"release": {
"au": "2016-11-10",
@@ -10088,7 +10088,7 @@
}
],
"head": "04500001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04500001-00cf0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04500001-00cf0502.png",
"name": "Avery",
"release": {
"au": "2015-11-21",
@@ -10142,7 +10142,7 @@
}
],
"head": "03d30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d30001-02f30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d30001-02f30502.png",
"name": "Carrie",
"release": {
"au": "2016-11-10",
@@ -10196,7 +10196,7 @@
}
],
"head": "02610001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02610001-00650502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02610001-00650502.png",
"name": "Kiki",
"release": {
"au": "2015-10-03",
@@ -10274,7 +10274,7 @@
}
],
"head": "01810000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810000-024b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810000-024b0502.png",
"name": "Isabelle - Summer Outfit",
"release": {
"au": "2016-03-19",
@@ -10328,7 +10328,7 @@
}
],
"head": "03da0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03da0001-01510502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03da0001-01510502.png",
"name": "Rooney",
"release": {
"au": "2016-03-19",
@@ -10382,7 +10382,7 @@
}
],
"head": "02190001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02190001-007e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02190001-007e0502.png",
"name": "Nate",
"release": {
"au": "2015-10-03",
@@ -10399,7 +10399,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d00101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00101-02b90e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00101-02b90e02.png",
"name": "Metal Mario - Soccer",
"release": {
"au": "2017-03-11",
@@ -10453,7 +10453,7 @@
}
],
"head": "049a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049a0001-014e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049a0001-014e0502.png",
"name": "Pippy",
"release": {
"au": "2016-03-19",
@@ -10555,7 +10555,7 @@
}
],
"head": "00030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030000-00020002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030000-00020002.png",
"name": "Yoshi",
"release": {
"au": "2014-11-29",
@@ -10572,7 +10572,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ce0301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0301-02b10e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0301-02b10e02.png",
"name": "Birdo - Tennis",
"release": {
"au": "2017-03-11",
@@ -10614,7 +10614,7 @@
}
],
"head": "22420000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22420000-041f0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22420000-041f0002.png",
"name": "Mythra",
"release": {
"au": "2023-07-21",
@@ -10668,7 +10668,7 @@
}
],
"head": "03720001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03720001-010b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03720001-010b0502.png",
"name": "Rocket",
"release": {
"au": "2015-11-21",
@@ -10722,7 +10722,7 @@
}
],
"head": "03ac0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ac0001-01880502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ac0001-01880502.png",
"name": "Peaches",
"release": {
"au": "2016-06-18",
@@ -10776,7 +10776,7 @@
}
],
"head": "02a60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a60001-01240502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a60001-01240502.png",
"name": "Ken",
"release": {
"au": "2016-03-19",
@@ -10854,7 +10854,7 @@
}
],
"head": "08000200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000200-003f0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000200-003f0402.png",
"name": "Inkling Boy",
"release": {
"au": "2015-05-30",
@@ -10980,7 +10980,7 @@
}
],
"head": "00010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00010000-00350102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00010000-00350102.png",
"name": "Luigi",
"release": {
"au": "2015-03-21",
@@ -11034,7 +11034,7 @@
}
],
"head": "019a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019a0001-00b70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019a0001-00b70502.png",
"name": "Chip",
"release": {
"au": "2015-11-21",
@@ -11088,7 +11088,7 @@
}
],
"head": "04ff0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ff0001-01620502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ff0001-01620502.png",
"name": "Claudia",
"release": {
"au": "2016-03-19",
@@ -11142,7 +11142,7 @@
}
],
"head": "041c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041c0001-01410502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041c0001-01410502.png",
"name": "Greta",
"release": {
"au": "2016-03-19",
@@ -11220,7 +11220,7 @@
}
],
"head": "21070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21070000-03611202.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21070000-03611202.png",
"name": "Celica",
"release": {
"au": "2017-05-20",
@@ -11274,7 +11274,7 @@
}
],
"head": "030b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030b0001-00790502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030b0001-00790502.png",
"name": "Deena",
"release": {
"au": "2015-10-03",
@@ -11304,7 +11304,7 @@
}
],
"head": "19020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19020000-03830002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19020000-03830002.png",
"name": "Ivysaur",
"release": {
"au": "2019-09-20",
@@ -11358,7 +11358,7 @@
}
],
"head": "04df0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04df0001-00e80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04df0001-00e80502.png",
"name": "Filbert",
"release": {
"au": "2015-11-21",
@@ -11412,7 +11412,7 @@
}
],
"head": "035c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035c0001-01290502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035c0001-01290502.png",
"name": "Velma",
"release": {
"au": "2016-03-19",
@@ -11466,7 +11466,7 @@
}
],
"head": "02210001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02210001-013c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02210001-013c0502.png",
"name": "Beardo",
"release": {
"au": "2016-03-19",
@@ -11508,7 +11508,7 @@
}
],
"head": "0a1e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1e0001-03d50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1e0001-03d50502.png",
"name": "Azalea",
"release": {
"au": "2021-11-05",
@@ -11586,7 +11586,7 @@
}
],
"head": "05c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00000-00060002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00000-00060002.png",
"name": "Samus",
"release": {
"au": "2014-11-29",
@@ -11616,7 +11616,7 @@
}
],
"head": "37c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37c00000-038b0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37c00000-038b0002.png",
"name": "Simon",
"release": {
"au": "2019-11-15",
@@ -11658,7 +11658,7 @@
}
],
"head": "35080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35080000-040f1802.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35080000-040f1802.png",
"name": "Magnamalo",
"release": {
"au": "2021-03-26",
@@ -11675,7 +11675,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cf0301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0301-02b60e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0301-02b60e02.png",
"name": "Rosalina - Tennis",
"release": {
"au": "2017-03-11",
@@ -11692,7 +11692,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cb0401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0401-02a30e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0401-02a30e02.png",
"name": "Boo - Golf",
"release": {
"au": "2017-03-11",
@@ -11746,7 +11746,7 @@
}
],
"head": "03ff0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ff0001-00f40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ff0001-00f40502.png",
"name": "Flip",
"release": {
"au": "2015-11-21",
@@ -11800,7 +11800,7 @@
}
],
"head": "04ef0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ef0001-013b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ef0001-013b0502.png",
"name": "Hazel",
"release": {
"au": "2016-03-19",
@@ -11854,7 +11854,7 @@
}
],
"head": "03920001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03920001-01270502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03920001-01270502.png",
"name": "Bubbles",
"release": {
"au": "2016-03-19",
@@ -11908,7 +11908,7 @@
}
],
"head": "03a70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a70001-01a10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a70001-01a10502.png",
"name": "Elmer",
"release": {
"au": "2016-06-18",
@@ -11962,7 +11962,7 @@
}
],
"head": "02c50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c50001-03080502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c50001-03080502.png",
"name": "Boots",
"release": {
"au": "2016-11-10",
@@ -12068,7 +12068,7 @@
}
],
"head": "0005ff00",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0005ff00-023a0702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0005ff00-023a0702.png",
"name": "Hammer Slam Bowser",
"release": {
"au": "2015-09-24",
@@ -12122,7 +12122,7 @@
}
],
"head": "02f40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f40001-03050502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f40001-03050502.png",
"name": "Bea",
"release": {
"au": "2016-11-10",
@@ -12176,7 +12176,7 @@
}
],
"head": "036b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036b0001-018b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036b0001-018b0502.png",
"name": "Boone",
"release": {
"au": "2016-06-18",
@@ -12218,7 +12218,7 @@
}
],
"head": "0a080001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a080001-03bd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a080001-03bd0502.png",
"name": "Wardell",
"release": {
"au": "2021-11-05",
@@ -12260,7 +12260,7 @@
}
],
"head": "0a160001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a160001-03cd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a160001-03cd0502.png",
"name": "Petri",
"release": {
"au": "2021-11-05",
@@ -12302,7 +12302,7 @@
}
],
"head": "0a1b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1b0001-03d20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1b0001-03d20502.png",
"name": "Ace",
"release": {
"au": "2021-11-05",
@@ -12332,7 +12332,7 @@
}
],
"head": "07c00100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07c00100-00220002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07c00100-00220002.png",
"name": "Mii Swordfighter",
"release": {
"au": "2015-09-26",
@@ -12362,7 +12362,7 @@
}
],
"head": "38420001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38420001-04261902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38420001-04261902.png",
"name": "Gakuto S\u014dgetsu",
"release": {
"au": null,
@@ -12392,7 +12392,7 @@
}
],
"head": "3c800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3c800000-03a40002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3c800000-03a40002.png",
"name": "Terry",
"release": {
"au": "2021-03-26",
@@ -12409,7 +12409,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c30501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30501-027c0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30501-027c0e02.png",
"name": "Daisy - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -12439,7 +12439,7 @@
}
],
"head": "37800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37800000-038a0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37800000-038a0002.png",
"name": "Snake",
"release": {
"au": "2019-09-20",
@@ -12493,7 +12493,7 @@
}
],
"head": "01ae0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ae0001-011b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ae0001-011b0502.png",
"name": "Franklin",
"release": {
"au": "2016-03-19",
@@ -12523,7 +12523,7 @@
}
],
"head": "1d010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1d010000-03750d02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1d010000-03750d02.png",
"name": "Detective Pikachu",
"release": {
"au": "2018-03-24",
@@ -12577,7 +12577,7 @@
}
],
"head": "04620001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04620001-00f60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04620001-00f60502.png",
"name": "Hopper",
"release": {
"au": "2015-11-21",
@@ -12619,7 +12619,7 @@
}
],
"head": "350a0100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_350a0100-042c1802.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_350a0100-042c1802.png",
"name": "Palamute",
"release": {
"au": "2022-06-30",
@@ -12673,7 +12673,7 @@
}
],
"head": "03af0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03af0001-012c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03af0001-012c0502.png",
"name": "Colton",
"release": {
"au": "2016-03-19",
@@ -12727,7 +12727,7 @@
}
],
"head": "04400001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04400001-00ca0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04400001-00ca0502.png",
"name": "Phoebe",
"release": {
"au": "2015-11-21",
@@ -12781,7 +12781,7 @@
}
],
"head": "021c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021c0001-02f70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021c0001-02f70502.png",
"name": "Ursala",
"release": {
"au": "2016-11-10",
@@ -12835,7 +12835,7 @@
}
],
"head": "02ca0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ca0001-01ca0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ca0001-01ca0502.png",
"name": "Gayle",
"release": {
"au": "2016-06-18",
@@ -12925,7 +12925,7 @@
}
],
"head": "00130000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00130000-037a0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00130000-037a0002.png",
"name": "Daisy",
"release": {
"au": "2019-04-12",
@@ -12979,7 +12979,7 @@
}
],
"head": "047c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047c0001-01a00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047c0001-01a00502.png",
"name": "Lucy",
"release": {
"au": "2016-06-18",
@@ -13033,7 +13033,7 @@
}
],
"head": "04eb0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04eb0001-02f00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04eb0001-02f00502.png",
"name": "Sylvana",
"release": {
"au": "2016-11-10",
@@ -13087,7 +13087,7 @@
}
],
"head": "03580001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03580001-02fa0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03580001-02fa0502.png",
"name": "Billy",
"release": {
"au": "2016-11-10",
@@ -13141,7 +13141,7 @@
}
],
"head": "021b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021b0001-00800502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021b0001-00800502.png",
"name": "Tutu",
"release": {
"au": "2015-10-03",
@@ -13183,7 +13183,7 @@
}
],
"head": "0a070001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a070001-03bc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a070001-03bc0502.png",
"name": "Niko",
"release": {
"au": "2021-11-05",
@@ -13237,7 +13237,7 @@
}
],
"head": "021d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021d0001-01cd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021d0001-01cd0502.png",
"name": "Grizzly",
"release": {
"au": "2016-06-18",
@@ -13303,7 +13303,7 @@
}
],
"head": "01810001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810001-00440502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810001-00440502.png",
"name": "Isabelle",
"release": {
"au": "2015-10-03",
@@ -13357,7 +13357,7 @@
}
],
"head": "04a20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a20001-02e80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a20001-02e80502.png",
"name": "Hopkins",
"release": {
"au": "2016-11-10",
@@ -13411,7 +13411,7 @@
}
],
"head": "03110001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03110001-00d60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03110001-00d60502.png",
"name": "Scoot",
"release": {
"au": "2015-11-21",
@@ -13465,7 +13465,7 @@
}
],
"head": "03bf0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03bf0001-01bc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03bf0001-01bc0502.png",
"name": "Sydney",
"release": {
"au": "2016-06-18",
@@ -13519,7 +13519,7 @@
}
],
"head": "04140001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04140001-030a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04140001-030a0502.png",
"name": "Candi",
"release": {
"au": "2016-11-10",
@@ -13577,7 +13577,7 @@
}
],
"head": "04d30101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d30101-031b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d30101-031b0502.png",
"name": "\u00c9toile",
"release": {
"au": null,
@@ -13631,7 +13631,7 @@
}
],
"head": "03290001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03290001-009d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03290001-009d0502.png",
"name": "Axel",
"release": {
"au": "2015-10-03",
@@ -13685,7 +13685,7 @@
}
],
"head": "04fb0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fb0001-01c60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fb0001-01c60502.png",
"name": "Rowan",
"release": {
"au": "2016-06-18",
@@ -13739,7 +13739,7 @@
}
],
"head": "025f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025f0001-01d70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025f0001-01d70502.png",
"name": "Rosie - Amiibo Festival",
"release": {
"au": "2015-11-21",
@@ -13805,7 +13805,7 @@
}
],
"head": "01940000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01940000-024a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01940000-024a0502.png",
"name": "Kicks",
"release": {
"au": "2016-01-30",
@@ -13883,7 +13883,7 @@
}
],
"head": "35000200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35000200-02e20f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35000200-02e20f02.png",
"name": "One-Eyed Rathalos and Rider - Female",
"release": {
"au": null,
@@ -13937,7 +13937,7 @@
}
],
"head": "019d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019d0001-00ac0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019d0001-00ac0502.png",
"name": "Copper",
"release": {
"au": "2015-11-21",
@@ -13979,7 +13979,7 @@
}
],
"head": "02330001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02330001-03060502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02330001-03060502.png",
"name": "Admiral",
"release": {
"au": "2016-11-10",
@@ -14033,7 +14033,7 @@
}
],
"head": "043c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043c0001-01cb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043c0001-01cb0502.png",
"name": "Cranston",
"release": {
"au": "2016-06-18",
@@ -14063,7 +14063,7 @@
}
],
"head": "05840000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05840000-037e0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05840000-037e0002.png",
"name": "Wolf",
"release": {
"au": "2018-12-07",
@@ -14117,7 +14117,7 @@
}
],
"head": "037f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_037f0001-01aa0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_037f0001-01aa0502.png",
"name": "Apple",
"release": {
"au": "2016-06-18",
@@ -14195,7 +14195,7 @@
}
],
"head": "018e0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018e0000-02490502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018e0000-02490502.png",
"name": "Resetti",
"release": {
"au": "2016-01-30",
@@ -14212,7 +14212,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c30101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30101-02780e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30101-02780e02.png",
"name": "Daisy - Soccer",
"release": {
"au": "2017-03-11",
@@ -14242,7 +14242,7 @@
}
],
"head": "19190000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19190000-00090002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19190000-00090002.png",
"name": "Pikachu",
"release": {
"au": "2014-11-29",
@@ -14296,7 +14296,7 @@
}
],
"head": "03fd0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fd0001-01580502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fd0001-01580502.png",
"name": "Monty",
"release": {
"au": "2016-03-19",
@@ -14350,7 +14350,7 @@
}
],
"head": "02060001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02060001-03120502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02060001-03120502.png",
"name": "Snooty",
"release": {
"au": "2016-11-10",
@@ -14464,7 +14464,7 @@
}
],
"head": "00030102",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-023e0302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-023e0302.png",
"name": "Mega Yarn Yoshi",
"release": {
"au": "2015-11-28",
@@ -14518,7 +14518,7 @@
}
],
"head": "02a30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a30001-02ff0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a30001-02ff0502.png",
"name": "Plucky",
"release": {
"au": "2016-11-10",
@@ -14572,7 +14572,7 @@
}
],
"head": "049c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049c0001-01400502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049c0001-01400502.png",
"name": "Genji",
"release": {
"au": "2016-03-19",
@@ -14626,7 +14626,7 @@
}
],
"head": "01850001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01850001-004b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01850001-004b0502.png",
"name": "Timmy",
"release": {
"au": "2015-10-03",
@@ -14680,7 +14680,7 @@
}
],
"head": "03140001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03140001-02f40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03140001-02f40502.png",
"name": "Ketchup",
"release": {
"au": "2016-11-10",
@@ -14830,7 +14830,7 @@
}
],
"head": "01030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01030000-024f0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01030000-024f0902.png",
"name": "Midna & Wolf Link",
"release": {
"au": "2016-03-05",
@@ -14944,7 +14944,7 @@
}
],
"head": "00010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00010000-000c0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00010000-000c0002.png",
"name": "Luigi",
"release": {
"au": "2014-12-12",
@@ -14998,7 +14998,7 @@
}
],
"head": "01890101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01890101-03b10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01890101-03b10502.png",
"name": "Label",
"release": {
"au": "2021-11-05",
@@ -15028,7 +15028,7 @@
}
],
"head": "3dc00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3dc00000-04220002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3dc00000-04220002.png",
"name": "Steve",
"release": {
"au": "2022-09-09",
@@ -15098,7 +15098,7 @@
}
],
"head": "01840000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01840000-024d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01840000-024d0502.png",
"name": "Timmy & Tommy",
"release": {
"au": "2016-03-19",
@@ -15176,7 +15176,7 @@
}
],
"head": "21000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21000000-000b0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21000000-000b0002.png",
"name": "Marth",
"release": {
"au": "2014-11-29",
@@ -15230,7 +15230,7 @@
}
],
"head": "01950001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01950001-00b00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01950001-00b00502.png",
"name": "Porter",
"release": {
"au": "2015-11-21",
@@ -15344,7 +15344,7 @@
}
],
"head": "00030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030000-00370102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030000-00370102.png",
"name": "Yoshi",
"release": {
"au": "2015-03-21",
@@ -15398,7 +15398,7 @@
}
],
"head": "030f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030f0001-016d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030f0001-016d0502.png",
"name": "Derwin",
"release": {
"au": "2016-03-19",
@@ -15428,7 +15428,7 @@
}
],
"head": "07810000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07810000-002e0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07810000-002e0002.png",
"name": "R.O.B. - Famicom",
"release": {
"au": "2016-03-19",
@@ -15458,7 +15458,7 @@
}
],
"head": "36000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36000100-03620002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_36000100-03620002.png",
"name": "Cloud - Player 2",
"release": {
"au": "2017-07-22",
@@ -15512,7 +15512,7 @@
}
],
"head": "02090001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02090001-019f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02090001-019f0502.png",
"name": "Olaf",
"release": {
"au": "2016-06-18",
@@ -15566,7 +15566,7 @@
}
],
"head": "04b30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b30001-00dd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b30001-00dd0502.png",
"name": "Rhonda",
"release": {
"au": "2015-11-21",
@@ -15583,7 +15583,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c60401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60401-028a0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60401-028a0e02.png",
"name": "Waluigi - Golf",
"release": {
"au": "2017-03-11",
@@ -15665,7 +15665,7 @@
}
],
"head": "21080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21080000-036f1202.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21080000-036f1202.png",
"name": "Chrom",
"release": {
"au": "2017-10-20",
@@ -15682,7 +15682,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ce0401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0401-02b20e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0401-02b20e02.png",
"name": "Birdo - Golf",
"release": {
"au": "2017-03-11",
@@ -15699,7 +15699,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c50401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50401-02850e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50401-02850e02.png",
"name": "Wario - Golf",
"release": {
"au": "2017-03-11",
@@ -15753,7 +15753,7 @@
}
],
"head": "03690001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03690001-00d30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03690001-00d30502.png",
"name": "Cesar",
"release": {
"au": "2015-11-21",
@@ -15783,7 +15783,7 @@
}
],
"head": "33800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_33800000-03781402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_33800000-03781402.png",
"name": "Solaire of Astora",
"release": {
"au": "2018-10-19",
@@ -15813,7 +15813,7 @@
}
],
"head": "38440001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38440001-04281902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38440001-04281902.png",
"name": "Roa Kirishima",
"release": {
"au": null,
@@ -15867,7 +15867,7 @@
}
],
"head": "02150001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02150001-01820502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02150001-01820502.png",
"name": "Pinky",
"release": {
"au": "2016-06-18",
@@ -15921,7 +15921,7 @@
}
],
"head": "02860001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02860001-03130502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02860001-03130502.png",
"name": "Olive",
"release": {
"au": "2016-11-10",
@@ -15951,7 +15951,7 @@
}
],
"head": "078f0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_078f0000-03810002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_078f0000-03810002.png",
"name": "Ice Climbers",
"release": {
"au": "2019-02-15",
@@ -15981,7 +15981,7 @@
}
],
"head": "38460001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38460001-042a1902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38460001-042a1902.png",
"name": "Asana Mutsuba",
"release": {
"au": null,
@@ -16035,7 +16035,7 @@
}
],
"head": "01830101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830101-010e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830101-010e0502.png",
"name": "Tom Nook - Jacket",
"release": {
"au": "2016-03-19",
@@ -16089,7 +16089,7 @@
}
],
"head": "04160001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04160001-00fb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04160001-00fb0502.png",
"name": "Anicotti",
"release": {
"au": "2015-11-21",
@@ -16106,7 +16106,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c00101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00101-02690e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00101-02690e02.png",
"name": "Mario - Soccer",
"release": {
"au": "2017-03-11",
@@ -16160,7 +16160,7 @@
}
],
"head": "03490001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03490001-018d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03490001-018d0502.png",
"name": "Croque",
"release": {
"au": "2016-06-18",
@@ -16298,7 +16298,7 @@
}
],
"head": "01050000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01050000-03580902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01050000-03580902.png",
"name": "Daruk",
"release": {
"au": "2017-11-10",
@@ -16352,7 +16352,7 @@
}
],
"head": "04860001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04860001-00fc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04860001-00fc0502.png",
"name": "Chops",
"release": {
"au": "2015-11-21",
@@ -16446,7 +16446,7 @@
}
],
"head": "35c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c00000-03920a02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c00000-03920a02.png",
"name": "Shovel Knight - Gold Edition",
"release": {
"au": null,
@@ -16612,7 +16612,7 @@
}
],
"head": "00050000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00050000-03730102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00050000-03730102.png",
"name": "Bowser - Wedding",
"release": {
"au": "2017-10-27",
@@ -16666,7 +16666,7 @@
}
],
"head": "01820101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820101-00460502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820101-00460502.png",
"name": "DJ KK",
"release": {
"au": "2015-10-03",
@@ -16720,7 +16720,7 @@
}
],
"head": "01a60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a60001-03b70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a60001-03b70502.png",
"name": "Saharah",
"release": {
"au": "2021-11-05",
@@ -16774,7 +16774,7 @@
}
],
"head": "02310001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02310001-006a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02310001-006a0502.png",
"name": "Jitters",
"release": {
"au": "2015-10-03",
@@ -16912,7 +16912,7 @@
}
],
"head": "01070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01070000-035a0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01070000-035a0902.png",
"name": "Mipha",
"release": {
"au": "2017-11-10",
@@ -16966,7 +16966,7 @@
}
],
"head": "35070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35070000-040e0f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35070000-040e0f02.png",
"name": "Tsukino",
"release": {
"au": "2021-07-09",
@@ -17020,7 +17020,7 @@
}
],
"head": "02510001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02510001-00c10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02510001-00c10502.png",
"name": "Coach",
"release": {
"au": "2015-11-21",
@@ -17074,7 +17074,7 @@
}
],
"head": "02df0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02df0001-01910502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02df0001-01910502.png",
"name": "Erik",
"release": {
"au": "2016-06-18",
@@ -17128,7 +17128,7 @@
}
],
"head": "03fc0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fc0001-01470502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fc0001-01470502.png",
"name": "Tammi",
"release": {
"au": "2016-03-19",
@@ -17182,7 +17182,7 @@
}
],
"head": "03480001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03480001-006b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03480001-006b0502.png",
"name": "Gigi",
"release": {
"au": "2015-10-03",
@@ -17236,7 +17236,7 @@
}
],
"head": "02ed0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ed0001-015a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ed0001-015a0502.png",
"name": "Biskit",
"release": {
"au": "2016-03-19",
@@ -17266,7 +17266,7 @@
}
],
"head": "34c10000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34c10000-03890002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34c10000-03890002.png",
"name": "Ken",
"release": {
"au": "2019-04-12",
@@ -17320,7 +17320,7 @@
}
],
"head": "01870001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01870001-00470502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01870001-00470502.png",
"name": "Sable",
"release": {
"au": "2015-10-03",
@@ -17374,7 +17374,7 @@
}
],
"head": "01900001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01900001-01710502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01900001-01710502.png",
"name": "Brewster",
"release": {
"au": "2016-06-18",
@@ -17428,7 +17428,7 @@
}
],
"head": "03c50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c50001-015c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c50001-015c0502.png",
"name": "Lyman",
"release": {
"au": "2016-03-19",
@@ -17482,7 +17482,7 @@
}
],
"head": "02000001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02000001-00a10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02000001-00a10502.png",
"name": "Cyrano",
"release": {
"au": "2015-10-03",
@@ -17536,7 +17536,7 @@
}
],
"head": "04180001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04180001-00d80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04180001-00d80502.png",
"name": "Broccolo",
"release": {
"au": "2015-11-21",
@@ -17590,7 +17590,7 @@
}
],
"head": "03a90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a90001-00710502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a90001-00710502.png",
"name": "Winnie",
"release": {
"au": "2015-10-03",
@@ -17644,7 +17644,7 @@
}
],
"head": "02350001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02350001-00840502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02350001-00840502.png",
"name": "Midge",
"release": {
"au": "2015-10-03",
@@ -17698,7 +17698,7 @@
}
],
"head": "04e80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e80001-01ce0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e80001-01ce0502.png",
"name": "Cally",
"release": {
"au": "2016-06-18",
@@ -17776,7 +17776,7 @@
}
],
"head": "35040100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35040100-02e60f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35040100-02e60f02.png",
"name": "Qurupeco and Dan",
"release": {
"au": null,
@@ -17830,7 +17830,7 @@
}
],
"head": "02830001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02830001-00c70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02830001-00c70502.png",
"name": "Vladimir",
"release": {
"au": "2015-11-21",
@@ -17884,7 +17884,7 @@
}
],
"head": "03ea0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ea0001-030b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ea0001-030b0502.png",
"name": "Leopold",
"release": {
"au": "2016-11-10",
@@ -17938,7 +17938,7 @@
}
],
"head": "030a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030a0001-01c70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030a0001-01c70502.png",
"name": "Maelle",
"release": {
"au": "2016-06-18",
@@ -18028,7 +18028,7 @@
}
],
"head": "08010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08010000-025d0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08010000-025d0402.png",
"name": "Callie",
"release": {
"au": "2016-07-09",
@@ -18106,7 +18106,7 @@
}
],
"head": "08010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08010000-04360402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08010000-04360402.png",
"name": "Callie - Alterna",
"release": {
"au": "2024-09-05",
@@ -18164,7 +18164,7 @@
}
],
"head": "04a80101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a80101-031e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a80101-031e0502.png",
"name": "Toby",
"release": {
"au": null,
@@ -18218,7 +18218,7 @@
}
],
"head": "04960001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04960001-00d90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04960001-00d90502.png",
"name": "Coco",
"release": {
"au": "2015-11-21",
@@ -18272,7 +18272,7 @@
}
],
"head": "04390001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04390001-03110502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04390001-03110502.png",
"name": "Sprocket",
"release": {
"au": "2016-11-10",
@@ -18326,7 +18326,7 @@
}
],
"head": "01ad0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ad0001-00b80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01ad0001-00b80502.png",
"name": "Jack",
"release": {
"au": "2015-11-21",
@@ -18356,7 +18356,7 @@
}
],
"head": "38000001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38000001-03931702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38000001-03931702.png",
"name": "Pawapuro",
"release": {
"au": null,
@@ -18386,7 +18386,7 @@
}
],
"head": "3b400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3b400000-03a30002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3b400000-03a30002.png",
"name": "Banjo & Kazooie",
"release": {
"au": "2021-03-26",
@@ -18440,7 +18440,7 @@
}
],
"head": "03d70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d70001-01b40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d70001-01b40502.png",
"name": "Sylvia",
"release": {
"au": "2016-06-18",
@@ -18494,7 +18494,7 @@
}
],
"head": "050e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050e0001-00d70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050e0001-00d70502.png",
"name": "Whitney",
"release": {
"au": "2015-11-21",
@@ -18548,7 +18548,7 @@
}
],
"head": "01a80101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a80101-017e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a80101-017e0502.png",
"name": "Redd - Shirt",
"release": {
"au": "2016-06-18",
@@ -18578,7 +18578,7 @@
}
],
"head": "0a400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a400000-041d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a400000-041d0002.png",
"name": "Min Min",
"release": {
"au": "2022-04-29",
@@ -18595,7 +18595,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c20101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20101-02730e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20101-02730e02.png",
"name": "Peach - Soccer",
"release": {
"au": "2017-03-11",
@@ -18637,7 +18637,7 @@
}
],
"head": "0a090001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a090001-03c00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a090001-03c00502.png",
"name": "Sherb",
"release": {
"au": "2021-11-05",
@@ -18691,7 +18691,7 @@
}
],
"head": "026a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026a0001-01460502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026a0001-01460502.png",
"name": "Stinky",
"release": {
"au": "2016-03-19",
@@ -18745,7 +18745,7 @@
}
],
"head": "04a00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a00001-016e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a00001-016e0502.png",
"name": "Francine",
"release": {
"au": "2016-03-19",
@@ -18799,7 +18799,7 @@
}
],
"head": "04600001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04600001-00a50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04600001-00a50502.png",
"name": "Roald",
"release": {
"au": "2015-10-03",
@@ -18816,7 +18816,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cb0501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0501-02a40e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0501-02a40e02.png",
"name": "Boo - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -18870,7 +18870,7 @@
}
],
"head": "02680001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02680001-007d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02680001-007d0502.png",
"name": "Monique",
"release": {
"au": "2015-10-03",
@@ -18924,7 +18924,7 @@
}
],
"head": "04fc0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fc0001-02ee0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fc0001-02ee0502.png",
"name": "Tybalt",
"release": {
"au": "2016-11-10",
@@ -18978,7 +18978,7 @@
}
],
"head": "03be0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03be0001-01980502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03be0001-01980502.png",
"name": "Melba",
"release": {
"au": "2016-06-18",
@@ -18995,7 +18995,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c10101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10101-026e0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10101-026e0e02.png",
"name": "Luigi - Soccer",
"release": {
"au": "2017-03-11",
@@ -19077,7 +19077,7 @@
}
],
"head": "21080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21080000-03880002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21080000-03880002.png",
"name": "Chrom",
"release": {
"au": "2019-11-15",
@@ -19167,7 +19167,7 @@
}
],
"head": "1f010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f010000-00270002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f010000-00270002.png",
"name": "Meta Knight",
"release": {
"au": "2015-01-29",
@@ -19221,7 +19221,7 @@
}
],
"head": "04e10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e10001-01be0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e10001-01be0502.png",
"name": "Nibbles",
"release": {
"au": "2016-06-18",
@@ -19311,7 +19311,7 @@
}
],
"head": "08020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08020000-025e0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08020000-025e0402.png",
"name": "Marie",
"release": {
"au": "2016-07-09",
@@ -19389,7 +19389,7 @@
}
],
"head": "08020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08020000-04370402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08020000-04370402.png",
"name": "Marie - Alterna",
"release": {
"au": "2024-09-05",
@@ -19447,7 +19447,7 @@
}
],
"head": "028f0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028f0101-031a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028f0101-031a0502.png",
"name": "Marty",
"release": {
"au": null,
@@ -19501,7 +19501,7 @@
}
],
"head": "047d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047d0001-012e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047d0001-012e0502.png",
"name": "Spork/Crackle",
"release": {
"au": "2016-03-19",
@@ -19518,7 +19518,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cb0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0101-02a00e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0101-02a00e02.png",
"name": "Boo - Soccer",
"release": {
"au": "2017-03-11",
@@ -19608,7 +19608,7 @@
}
],
"head": "35c30000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c30000-036e0a02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c30000-036e0a02.png",
"name": "King Knight",
"release": {
"au": null,
@@ -19698,7 +19698,7 @@
}
],
"head": "08000300",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000300-00400402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000300-00400402.png",
"name": "Inkling Squid",
"release": {
"au": "2015-05-30",
@@ -19752,7 +19752,7 @@
}
],
"head": "034b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_034b0001-009f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_034b0001-009f0502.png",
"name": "Henry",
"release": {
"au": "2015-10-03",
@@ -19818,7 +19818,7 @@
}
],
"head": "01920000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01920000-02470502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01920000-02470502.png",
"name": "Blathers",
"release": {
"au": "2016-01-30",
@@ -19956,7 +19956,7 @@
}
],
"head": "01080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01080000-035b0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01080000-035b0902.png",
"name": "Revali",
"release": {
"au": "2017-11-10",
@@ -20010,7 +20010,7 @@
}
],
"head": "04cf0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04cf0001-00e10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04cf0001-00e10502.png",
"name": "Timbra",
"release": {
"au": "2015-11-21",
@@ -20064,7 +20064,7 @@
}
],
"head": "03aa0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03aa0001-00e60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03aa0001-00e60502.png",
"name": "Ed",
"release": {
"au": "2015-11-21",
@@ -20118,7 +20118,7 @@
}
],
"head": "01870001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01870001-03b00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01870001-03b00502.png",
"name": "Sable",
"release": {
"au": "2021-11-05",
@@ -20172,7 +20172,7 @@
}
],
"head": "04530001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04530001-01040502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04530001-01040502.png",
"name": "Keaton",
"release": {
"au": "2015-11-21",
@@ -20226,7 +20226,7 @@
}
],
"head": "047b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047b0001-00f50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_047b0001-00f50502.png",
"name": "Hugh",
"release": {
"au": "2015-11-21",
@@ -20280,7 +20280,7 @@
}
],
"head": "033d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033d0001-013a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033d0001-013a0502.png",
"name": "Wart Jr.",
"release": {
"au": "2016-03-19",
@@ -20322,7 +20322,7 @@
}
],
"head": "01940001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01940001-00aa0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01940001-00aa0502.png",
"name": "Kicks",
"release": {
"au": "2015-11-21",
@@ -20376,7 +20376,7 @@
}
],
"head": "01b10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b10001-00b20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b10001-00b20502.png",
"name": "Shrunk",
"release": {
"au": "2015-11-21",
@@ -20430,7 +20430,7 @@
}
],
"head": "03c60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c60001-00930502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c60001-00930502.png",
"name": "Eugene",
"release": {
"au": "2015-10-03",
@@ -20484,7 +20484,7 @@
}
],
"head": "04e00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e00001-00f70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e00001-00f70502.png",
"name": "Pecan",
"release": {
"au": "2015-11-21",
@@ -20514,7 +20514,7 @@
}
],
"head": "1ac00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1ac00000-00110002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1ac00000-00110002.png",
"name": "Lucario",
"release": {
"au": "2015-01-29",
@@ -20568,7 +20568,7 @@
}
],
"head": "023f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023f0001-01660502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023f0001-01660502.png",
"name": "Sparro",
"release": {
"au": "2016-03-19",
@@ -20730,7 +20730,7 @@
}
],
"head": "01010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-03520902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-03520902.png",
"name": "Toon Zelda - The Wind Waker",
"release": {
"au": "2016-12-03",
@@ -20796,7 +20796,7 @@
}
],
"head": "01810301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810301-01700502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810301-01700502.png",
"name": "Isabelle - Dress",
"release": {
"au": "2016-06-18",
@@ -20850,7 +20850,7 @@
}
],
"head": "02660001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02660001-00680502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02660001-00680502.png",
"name": "Kabuki",
"release": {
"au": "2015-10-03",
@@ -20904,7 +20904,7 @@
}
],
"head": "03260001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03260001-01390502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03260001-01390502.png",
"name": "Eloise",
"release": {
"au": "2016-03-19",
@@ -20958,7 +20958,7 @@
}
],
"head": "04850001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04850001-014c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04850001-014c0502.png",
"name": "Gala",
"release": {
"au": "2016-03-19",
@@ -21012,7 +21012,7 @@
}
],
"head": "046b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046b0001-01970502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046b0001-01970502.png",
"name": "Tex",
"release": {
"au": "2016-06-18",
@@ -21078,7 +21078,7 @@
}
],
"head": "018a0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018a0000-02450502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018a0000-02450502.png",
"name": "Reese",
"release": {
"au": "2015-11-21",
@@ -21132,7 +21132,7 @@
}
],
"head": "05000001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05000001-00e70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05000001-00e70502.png",
"name": "Bianca",
"release": {
"au": "2015-11-21",
@@ -21262,7 +21262,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-00340102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-00340102.png",
"name": "Mario",
"release": {
"au": "2015-03-21",
@@ -21292,7 +21292,7 @@
}
],
"head": "07c00200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07c00200-00230002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07c00200-00230002.png",
"name": "Mii Gunner",
"release": {
"au": "2015-09-26",
@@ -21466,7 +21466,7 @@
}
],
"head": "00020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020000-03720102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020000-03720102.png",
"name": "Peach - Wedding",
"release": {
"au": "2017-10-27",
@@ -21508,7 +21508,7 @@
}
],
"head": "0a170001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a170001-03ce0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a170001-03ce0502.png",
"name": "Cephalobot",
"release": {
"au": "2021-11-05",
@@ -21562,7 +21562,7 @@
}
],
"head": "04640001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04640001-00c00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04640001-00c00502.png",
"name": "Gwen",
"release": {
"au": "2015-11-21",
@@ -21579,7 +21579,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c70101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70101-028c0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70101-028c0e02.png",
"name": "Donkey Kong - Soccer",
"release": {
"au": "2017-03-11",
@@ -21633,7 +21633,7 @@
}
],
"head": "04870001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04870001-01bf0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04870001-01bf0502.png",
"name": "Kevin",
"release": {
"au": "2016-06-18",
@@ -21687,7 +21687,7 @@
}
],
"head": "04de0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04de0001-00ce0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04de0001-00ce0502.png",
"name": "Blaire",
"release": {
"au": "2015-11-21",
@@ -21741,7 +21741,7 @@
}
],
"head": "050d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050d0001-01420502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050d0001-01420502.png",
"name": "Wolfgang",
"release": {
"au": "2016-03-19",
@@ -21758,7 +21758,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c40301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40301-027f0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40301-027f0e02.png",
"name": "Yoshi - Tennis",
"release": {
"au": "2017-03-11",
@@ -21812,7 +21812,7 @@
}
],
"head": "018e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018e0001-00490502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018e0001-00490502.png",
"name": "Resetti",
"release": {
"au": "2015-10-03",
@@ -21866,7 +21866,7 @@
}
],
"head": "04830001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04830001-01b00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04830001-01b00502.png",
"name": "Peggy",
"release": {
"au": "2016-06-18",
@@ -22048,7 +22048,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034d0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034d0902.png",
"name": "Link - Twilight Princess",
"release": {
"au": "2017-06-24",
@@ -22090,7 +22090,7 @@
}
],
"head": "036e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036e0001-02fb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036e0001-02fb0502.png",
"name": "Boyd",
"release": {
"au": "2016-11-10",
@@ -22168,7 +22168,7 @@
}
],
"head": "35000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35000100-02e10f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35000100-02e10f02.png",
"name": "One-Eyed Rathalos and Rider - Male",
"release": {
"au": null,
@@ -22222,7 +22222,7 @@
}
],
"head": "04990001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04990001-00df0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04990001-00df0502.png",
"name": "Gabi",
"release": {
"au": "2015-11-21",
@@ -22276,7 +22276,7 @@
}
],
"head": "024f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024f0001-00810502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024f0001-00810502.png",
"name": "T-Bone",
"release": {
"au": "2015-10-03",
@@ -22293,7 +22293,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c50301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50301-02840e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50301-02840e02.png",
"name": "Wario - Tennis",
"release": {
"au": "2017-03-11",
@@ -22347,7 +22347,7 @@
}
],
"head": "05800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05800000-00050002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05800000-00050002.png",
"name": "Fox",
"release": {
"au": "2014-11-29",
@@ -22437,7 +22437,7 @@
}
],
"head": "08000300",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000300-02610402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000300-02610402.png",
"name": "Inkling Squid - Orange",
"release": {
"au": "2016-07-09",
@@ -22599,7 +22599,7 @@
}
],
"head": "01020100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01020100-041a0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01020100-041a0902.png",
"name": "Ganondorf - Tears of the Kingdom",
"release": {
"au": "2023-11-03",
@@ -22653,7 +22653,7 @@
}
],
"head": "04810001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04810001-02f10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04810001-02f10502.png",
"name": "Boris",
"release": {
"au": "2016-11-10",
@@ -22707,7 +22707,7 @@
}
],
"head": "02010001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02010001-016a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02010001-016a0502.png",
"name": "Antonio",
"release": {
"au": "2016-03-19",
@@ -22761,7 +22761,7 @@
}
],
"head": "02840001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02840001-02fe0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02840001-02fe0502.png",
"name": "Murphy",
"release": {
"au": "2016-11-10",
@@ -22815,7 +22815,7 @@
}
],
"head": "04680001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04680001-02f20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04680001-02f20502.png",
"name": "Wade",
"release": {
"au": "2016-11-10",
@@ -22869,7 +22869,7 @@
}
],
"head": "02820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02820001-01d60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02820001-01d60502.png",
"name": "Stitches - Amiibo Festival",
"release": {
"au": "2015-11-21",
@@ -22923,7 +22923,7 @@
}
],
"head": "01a40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a40001-004d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a40001-004d0502.png",
"name": "Pascal",
"release": {
"au": "2015-10-03",
@@ -22965,7 +22965,7 @@
}
],
"head": "0a060001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a060001-03ba0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a060001-03ba0502.png",
"name": "Wisp",
"release": {
"au": "2021-11-05",
@@ -23019,7 +23019,7 @@
}
],
"head": "02dc0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02dc0001-00be0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02dc0001-00be0502.png",
"name": "Fuchsia",
"release": {
"au": "2015-11-21",
@@ -23049,7 +23049,7 @@
}
],
"head": "19270000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19270000-00260002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19270000-00260002.png",
"name": "Jigglypuff",
"release": {
"au": "2015-05-30",
@@ -23103,7 +23103,7 @@
}
],
"head": "032c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032c0001-01480502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032c0001-01480502.png",
"name": "Tucker",
"release": {
"au": "2016-03-19",
@@ -23265,7 +23265,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034b0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034b0902.png",
"name": "Link - Ocarina of Time",
"release": {
"au": "2016-12-03",
@@ -23282,7 +23282,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cb0201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0201-02a10e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0201-02a10e02.png",
"name": "Boo - Baseball",
"release": {
"au": "2017-03-11",
@@ -23299,7 +23299,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c20401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20401-02760e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20401-02760e02.png",
"name": "Peach - Golf",
"release": {
"au": "2017-03-11",
@@ -23353,7 +23353,7 @@
}
],
"head": "03e70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03e70001-012a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03e70001-012a0502.png",
"name": "Elvis",
"release": {
"au": "2016-03-19",
@@ -23383,7 +23383,7 @@
}
],
"head": "19ac0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19ac0000-03850002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19ac0000-03850002.png",
"name": "Pichu",
"release": {
"au": "2019-07-19",
@@ -23461,7 +23461,7 @@
}
],
"head": "08030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08030000-03760402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08030000-03760402.png",
"name": "Pearl",
"release": {
"au": "2018-07-13",
@@ -23527,7 +23527,7 @@
}
],
"head": "08030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08030000-04380402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08030000-04380402.png",
"name": "Pearl - Side Order",
"release": {
"au": "2024-09-05",
@@ -23569,7 +23569,7 @@
}
],
"head": "0a140001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a140001-03cb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a140001-03cb0502.png",
"name": "Shino",
"release": {
"au": "2021-11-05",
@@ -23731,7 +23731,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034c0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034c0902.png",
"name": "Link - Majora's Mask",
"release": {
"au": "2017-06-24",
@@ -23785,7 +23785,7 @@
}
],
"head": "01c10101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10101-017a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10101-017a0502.png",
"name": "Lottie - Black Skirt And Bow",
"release": {
"au": "2016-06-18",
@@ -23839,7 +23839,7 @@
}
],
"head": "05130001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05130001-02e70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05130001-02e70502.png",
"name": "Vivian",
"release": {
"au": "2016-11-10",
@@ -23893,7 +23893,7 @@
}
],
"head": "041b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041b0001-00f10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041b0001-00f10502.png",
"name": "Bettina",
"release": {
"au": "2015-11-21",
@@ -23923,7 +23923,7 @@
}
],
"head": "3dc10000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3dc10000-04230002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3dc10000-04230002.png",
"name": "Alex",
"release": {
"au": "2022-09-09",
@@ -23977,7 +23977,7 @@
}
],
"head": "01aa0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01aa0001-00530502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01aa0001-00530502.png",
"name": "Lyle",
"release": {
"au": "2015-10-03",
@@ -24031,7 +24031,7 @@
}
],
"head": "02f00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f00001-00a70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f00001-00a70502.png",
"name": "Walker",
"release": {
"au": "2015-10-03",
@@ -24085,7 +24085,7 @@
}
],
"head": "03c10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c10001-00bb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c10001-00bb0502.png",
"name": "Ozzie",
"release": {
"au": "2015-11-21",
@@ -24163,7 +24163,7 @@
}
],
"head": "0008ff00",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0008ff00-023b0702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0008ff00-023b0702.png",
"name": "Turbo Charge Donkey Kong",
"release": {
"au": "2015-09-24",
@@ -24217,7 +24217,7 @@
}
],
"head": "04520001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04520001-00730502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04520001-00730502.png",
"name": "Sterling",
"release": {
"au": "2015-10-03",
@@ -24283,7 +24283,7 @@
}
],
"head": "01810001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810001-01d40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810001-01d40502.png",
"name": "Isabelle - Character Parfait",
"release": {
"au": null,
@@ -24337,7 +24337,7 @@
}
],
"head": "049f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049f0001-03010502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049f0001-03010502.png",
"name": "Claude",
"release": {
"au": "2016-11-10",
@@ -24391,7 +24391,7 @@
}
],
"head": "02ea0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ea0001-01d50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ea0001-01d50502.png",
"name": "Goldie - Amiibo Festival",
"release": {
"au": "2015-11-21",
@@ -24445,7 +24445,7 @@
}
],
"head": "02d60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d60001-00560502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d60001-00560502.png",
"name": "Fauna",
"release": {
"au": "2015-10-03",
@@ -24499,7 +24499,7 @@
}
],
"head": "02700001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02700001-00ff0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02700001-00ff0502.png",
"name": "Ankha",
"release": {
"au": "2015-11-21",
@@ -24553,7 +24553,7 @@
}
],
"head": "01a20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a20001-03b90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a20001-03b90502.png",
"name": "Gulliver",
"release": {
"au": "2021-11-05",
@@ -24607,7 +24607,7 @@
}
],
"head": "02670001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02670001-01080502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02670001-01080502.png",
"name": "Kid Cat",
"release": {
"au": "2015-11-21",
@@ -24637,7 +24637,7 @@
}
],
"head": "38430001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38430001-04271902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38430001-04271902.png",
"name": "Romin Kirishima",
"release": {
"au": null,
@@ -24691,7 +24691,7 @@
}
],
"head": "02720001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02720001-01860502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02720001-01860502.png",
"name": "Katt",
"release": {
"au": "2016-06-18",
@@ -24733,7 +24733,7 @@
}
],
"head": "00240000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00240000-038d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00240000-038d0002.png",
"name": "Piranha Plant",
"release": {
"au": "2019-02-15",
@@ -24787,7 +24787,7 @@
}
],
"head": "03e80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03e80001-02f50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03e80001-02f50502.png",
"name": "Rex",
"release": {
"au": "2016-11-10",
@@ -24841,7 +24841,7 @@
}
],
"head": "02dd0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02dd0001-00ea0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02dd0001-00ea0502.png",
"name": "Beau",
"release": {
"au": "2015-11-21",
@@ -24967,7 +24967,7 @@
}
],
"head": "01410000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01410000-035c0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01410000-035c0902.png",
"name": "Bokoblin",
"release": {
"au": "2017-03-03",
@@ -24984,7 +24984,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cf0201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0201-02b50e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0201-02b50e02.png",
"name": "Rosalina - Baseball",
"release": {
"au": "2017-03-11",
@@ -25014,7 +25014,7 @@
}
],
"head": "19960000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19960000-023d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19960000-023d0002.png",
"name": "Mewtwo",
"release": {
"au": "2015-10-24",
@@ -25068,7 +25068,7 @@
}
],
"head": "03930001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03930001-00a00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03930001-00a00502.png",
"name": "Bertha",
"release": {
"au": "2015-10-03",
@@ -25085,7 +25085,7 @@
"gameSeries": "Pokemon",
"gamesSwitch": [],
"head": "1d000001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1d000001-025c0d02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1d000001-025c0d02.png",
"name": "Shadow Mewtwo",
"release": {
"au": "2016-03-19",
@@ -25139,7 +25139,7 @@
}
],
"head": "04650001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04650001-006e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04650001-006e0502.png",
"name": "Puck",
"release": {
"au": "2015-10-03",
@@ -25277,7 +25277,7 @@
}
],
"head": "01060000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01060000-03590902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01060000-03590902.png",
"name": "Urbosa",
"release": {
"au": "2017-11-10",
@@ -25331,7 +25331,7 @@
}
],
"head": "025f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025f0001-01c50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025f0001-01c50502.png",
"name": "Rosie",
"release": {
"au": "2016-06-18",
@@ -25385,7 +25385,7 @@
}
],
"head": "210b0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_210b0000-03a50002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_210b0000-03a50002.png",
"name": "Byleth",
"release": {
"au": "2021-03-26",
@@ -25439,7 +25439,7 @@
}
],
"head": "04b40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b40001-030c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b40001-030c0502.png",
"name": "Spike",
"release": {
"au": "2016-11-10",
@@ -25625,7 +25625,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-03990902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-03990902.png",
"name": "Link - Link's Awakening",
"release": {
"au": "2019-09-20",
@@ -25679,7 +25679,7 @@
}
],
"head": "041a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041a0001-00e00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041a0001-00e00502.png",
"name": "Moose",
"release": {
"au": "2015-11-21",
@@ -25809,7 +25809,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-02390602.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-02390602.png",
"name": "8-Bit Mario Modern Color",
"release": {
"au": "2015-10-24",
@@ -25863,7 +25863,7 @@
}
],
"head": "04800001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04800001-008d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04800001-008d0502.png",
"name": "Cobb",
"release": {
"au": "2015-10-03",
@@ -25880,7 +25880,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c80101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80101-02910e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80101-02910e02.png",
"name": "Diddy Kong - Soccer",
"release": {
"au": "2017-03-11",
@@ -25934,7 +25934,7 @@
}
],
"head": "02ef0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ef0001-00580502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ef0001-00580502.png",
"name": "Portia",
"release": {
"au": "2015-10-03",
@@ -25988,7 +25988,7 @@
}
],
"head": "029a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_029a0001-00ee0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_029a0001-00ee0502.png",
"name": "Benedict",
"release": {
"au": "2015-11-21",
@@ -26042,7 +26042,7 @@
}
],
"head": "02800001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02800001-00830502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02800001-00830502.png",
"name": "Pudge",
"release": {
"au": "2015-10-03",
@@ -26096,7 +26096,7 @@
}
],
"head": "022d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_022d0001-00f20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_022d0001-00f20502.png",
"name": "Jay",
"release": {
"au": "2015-11-21",
@@ -26202,7 +26202,7 @@
}
],
"head": "35c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c00000-02500a02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c00000-02500a02.png",
"name": "Shovel Knight",
"release": {
"au": "2015-12-11",
@@ -26232,7 +26232,7 @@
}
],
"head": "38c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38c00000-03911602.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38c00000-03911602.png",
"name": "Loot Goblin",
"release": {
"au": null,
@@ -26286,7 +26286,7 @@
}
],
"head": "02690001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02690001-011f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02690001-011f0502.png",
"name": "Tabby",
"release": {
"au": "2016-03-19",
@@ -26340,7 +26340,7 @@
}
],
"head": "02810001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02810001-01200502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02810001-01200502.png",
"name": "Kody",
"release": {
"au": "2016-03-19",
@@ -26357,7 +26357,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ca0501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0501-029f0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0501-029f0e02.png",
"name": "Bowser Jr. - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -26411,7 +26411,7 @@
}
],
"head": "044b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044b0001-016c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044b0001-016c0502.png",
"name": "Apollo",
"release": {
"au": "2016-03-19",
@@ -26465,7 +26465,7 @@
}
],
"head": "01840501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01840501-03a90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01840501-03a90502.png",
"name": "Timmy & Tommy",
"release": {
"au": "2021-10-05",
@@ -26519,7 +26519,7 @@
}
],
"head": "027e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_027e0001-01690502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_027e0001-01690502.png",
"name": "Maple",
"release": {
"au": "2016-03-19",
@@ -26637,7 +26637,7 @@
}
],
"head": "00000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000100-00190002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000100-00190002.png",
"name": "Dr. Mario",
"release": {
"au": "2015-07-23",
@@ -26654,7 +26654,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cc0501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0501-02a90e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0501-02a90e02.png",
"name": "Baby Mario - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -26671,7 +26671,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cd0301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0301-02ac0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0301-02ac0e02.png",
"name": "Baby Luigi - Tennis",
"release": {
"au": "2017-03-11",
@@ -26725,7 +26725,7 @@
}
],
"head": "02080001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02080001-00960502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02080001-00960502.png",
"name": "Annalisa",
"release": {
"au": "2015-10-03",
@@ -26779,7 +26779,7 @@
}
],
"head": "032d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032d0001-00bc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032d0001-00bc0502.png",
"name": "Tia",
"release": {
"au": "2015-11-21",
@@ -26833,7 +26833,7 @@
}
],
"head": "03bc0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03bc0001-008a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03bc0001-008a0502.png",
"name": "Yuka",
"release": {
"au": "2015-10-03",
@@ -26911,7 +26911,7 @@
}
],
"head": "01830000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830000-02420502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830000-02420502.png",
"name": "Tom Nook",
"release": {
"au": "2015-11-21",
@@ -26965,7 +26965,7 @@
}
],
"head": "03090001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03090001-00c60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03090001-00c60502.png",
"name": "Pate",
"release": {
"au": "2015-11-21",
@@ -27067,7 +27067,7 @@
}
],
"head": "1f000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f000000-000a0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f000000-000a0002.png",
"name": "Kirby",
"release": {
"au": "2014-11-29",
@@ -27121,7 +27121,7 @@
}
],
"head": "04a40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a40001-00d40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a40001-00d40502.png",
"name": "Carmen",
"release": {
"au": "2015-11-21",
@@ -27163,7 +27163,7 @@
}
],
"head": "019c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019c0001-01730502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019c0001-01730502.png",
"name": "Phineas",
"release": {
"au": "2016-06-18",
@@ -27217,7 +27217,7 @@
}
],
"head": "03380001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03380001-011d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03380001-011d0502.png",
"name": "Lily",
"release": {
"au": "2016-03-19",
@@ -27271,7 +27271,7 @@
}
],
"head": "025d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025d0001-00550502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_025d0001-00550502.png",
"name": "Bob",
"release": {
"au": "2015-10-03",
@@ -27349,7 +27349,7 @@
}
],
"head": "35010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35010000-02e30f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35010000-02e30f02.png",
"name": "Nabiru",
"release": {
"au": null,
@@ -27403,7 +27403,7 @@
}
],
"head": "018b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018b0001-01150502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018b0001-01150502.png",
"name": "Cyrus",
"release": {
"au": "2016-03-19",
@@ -27445,7 +27445,7 @@
}
],
"head": "350a0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_350a0000-04111802.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_350a0000-04111802.png",
"name": "Palamute",
"release": {
"au": "2021-03-26",
@@ -27511,7 +27511,7 @@
}
],
"head": "01810401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810401-03aa0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810401-03aa0502.png",
"name": "Isabelle",
"release": {
"au": "2021-11-05",
@@ -27541,7 +27541,7 @@
}
],
"head": "33c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_33c00000-04200002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_33c00000-04200002.png",
"name": "Kazuya",
"release": {
"au": "2023-01-13",
@@ -27583,7 +27583,7 @@
}
],
"head": "05810000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05810000-001c0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05810000-001c0002.png",
"name": "Falco",
"release": {
"au": "2015-11-21",
@@ -27637,7 +27637,7 @@
}
],
"head": "03a60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a60001-00c80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a60001-00c80502.png",
"name": "Savannah",
"release": {
"au": "2015-11-21",
@@ -27667,7 +27667,7 @@
}
],
"head": "22810000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22810000-02510002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22810000-02510002.png",
"name": "Lucas",
"release": {
"au": "2016-01-30",
@@ -27721,7 +27721,7 @@
}
],
"head": "043d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043d0001-007c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043d0001-007c0502.png",
"name": "Phil",
"release": {
"au": "2015-10-03",
@@ -27775,7 +27775,7 @@
}
],
"head": "019f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019f0001-01110502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019f0001-01110502.png",
"name": "Pete",
"release": {
"au": "2016-03-19",
@@ -27829,7 +27829,7 @@
}
],
"head": "03800001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03800001-01870502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03800001-01870502.png",
"name": "Graham",
"release": {
"au": "2016-06-18",
@@ -27907,7 +27907,7 @@
}
],
"head": "35030100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35030100-02e50f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35030100-02e50f02.png",
"name": "Barioth and Ayuria",
"release": {
"au": null,
@@ -27961,7 +27961,7 @@
}
],
"head": "030e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030e0001-012f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030e0001-012f0502.png",
"name": "Freckles",
"release": {
"au": "2016-03-19",
@@ -28003,7 +28003,7 @@
}
],
"head": "0a1f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1f0001-03d60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1f0001-03d60502.png",
"name": "Roswell",
"release": {
"au": "2021-11-05",
@@ -28121,7 +28121,7 @@
}
],
"head": "00050000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00050000-00140002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00050000-00140002.png",
"name": "Bowser",
"release": {
"au": "2015-01-29",
@@ -28175,7 +28175,7 @@
}
],
"head": "02fa0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02fa0001-00970502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02fa0001-00970502.png",
"name": "Benjamin",
"release": {
"au": "2015-10-03",
@@ -28289,7 +28289,7 @@
}
],
"head": "05c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00000-04121302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00000-04121302.png",
"name": "Samus - Metroid Dread",
"release": {
"au": "2021-10-08",
@@ -28343,7 +28343,7 @@
}
],
"head": "02db0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02db0001-005e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02db0001-005e0502.png",
"name": "Lopez",
"release": {
"au": "2015-10-03",
@@ -28397,7 +28397,7 @@
}
],
"head": "04cc0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04cc0001-00a40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04cc0001-00a40502.png",
"name": "Willow",
"release": {
"au": "2015-10-03",
@@ -28451,7 +28451,7 @@
}
],
"head": "03450001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03450001-005f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03450001-005f0502.png",
"name": "Jambette",
"release": {
"au": "2015-10-03",
@@ -28481,7 +28481,7 @@
}
],
"head": "19060000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19060000-00240002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_19060000-00240002.png",
"name": "Charizard",
"release": {
"au": "2015-04-25",
@@ -28535,7 +28535,7 @@
}
],
"head": "04a70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a70001-01a60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a70001-01a60502.png",
"name": "Mira",
"release": {
"au": "2016-06-18",
@@ -28649,7 +28649,7 @@
}
],
"head": "00000300",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000300-03a60102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000300-03a60102.png",
"name": "Mario - Cat",
"release": {
"au": "2021-02-12",
@@ -28703,7 +28703,7 @@
}
],
"head": "01b10101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b10101-017b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b10101-017b0502.png",
"name": "Shrunk - Loud Jacket",
"release": {
"au": "2016-06-18",
@@ -28745,7 +28745,7 @@
}
],
"head": "0a0f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0f0001-03c60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0f0001-03c60502.png",
"name": "Raymond",
"release": {
"au": "2021-11-05",
@@ -28799,7 +28799,7 @@
}
],
"head": "0a120001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a120001-03c90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a120001-03c90502.png",
"name": "Ione",
"release": {
"au": "2021-11-05",
@@ -28853,7 +28853,7 @@
}
],
"head": "03170001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03170001-00a60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03170001-00a60502.png",
"name": "Molly",
"release": {
"au": "2015-10-03",
@@ -28907,7 +28907,7 @@
}
],
"head": "01a90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a90001-01760502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a90001-01760502.png",
"name": "Gracie",
"release": {
"au": "2016-06-18",
@@ -28989,7 +28989,7 @@
}
],
"head": "21090000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21090000-03701202.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21090000-03701202.png",
"name": "Tiki",
"release": {
"au": "2017-10-20",
@@ -29043,7 +29043,7 @@
}
],
"head": "03730001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03730001-01340502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03730001-01340502.png",
"name": "Hans",
"release": {
"au": "2016-03-19",
@@ -29097,7 +29097,7 @@
}
],
"head": "019b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019b0001-00b60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019b0001-00b60502.png",
"name": "Nat",
"release": {
"au": "2015-11-21",
@@ -29151,7 +29151,7 @@
}
],
"head": "01860301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01860301-01750502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01860301-01750502.png",
"name": "Tommy - Suit",
"release": {
"au": "2016-06-18",
@@ -29253,7 +29253,7 @@
}
],
"head": "34800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34800000-02580002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34800000-02580002.png",
"name": "Mega Man - Gold Edition",
"release": {
"au": null,
@@ -29307,7 +29307,7 @@
}
],
"head": "01850201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01850201-01170502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01850201-01170502.png",
"name": "Timmy - Full Apron",
"release": {
"au": "2016-03-19",
@@ -29469,7 +29469,7 @@
}
],
"head": "01010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-04190902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-04190902.png",
"name": "Zelda - Tears of the Kingdom",
"release": {
"au": "2023-11-03",
@@ -29523,7 +29523,7 @@
}
],
"head": "026e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026e0001-00ba0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026e0001-00ba0502.png",
"name": "Felicity",
"release": {
"au": "2015-11-21",
@@ -29577,7 +29577,7 @@
}
],
"head": "01a20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a20001-017d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a20001-017d0502.png",
"name": "Gulliver",
"release": {
"au": "2016-06-18",
@@ -29594,7 +29594,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c60201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60201-02880e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c60201-02880e02.png",
"name": "Waluigi - Baseball",
"release": {
"au": "2017-03-11",
@@ -29648,7 +29648,7 @@
}
],
"head": "01920001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01920001-010d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01920001-010d0502.png",
"name": "Blathers",
"release": {
"au": "2016-03-19",
@@ -29750,7 +29750,7 @@
}
],
"head": "1f000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f000000-02540c02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f000000-02540c02.png",
"name": "Kirby",
"release": {
"au": "2016-06-11",
@@ -29804,7 +29804,7 @@
}
],
"head": "024b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024b0001-01260502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024b0001-01260502.png",
"name": "Rodeo",
"release": {
"au": "2016-03-19",
@@ -29821,7 +29821,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cc0401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0401-02a80e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0401-02a80e02.png",
"name": "Baby Mario - Golf",
"release": {
"au": "2017-03-11",
@@ -29875,7 +29875,7 @@
}
],
"head": "03d10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d10001-00c20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d10001-00c20502.png",
"name": "Kitt",
"release": {
"au": "2015-11-21",
@@ -29929,7 +29929,7 @@
}
],
"head": "03440001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03440001-00c50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03440001-00c50502.png",
"name": "Prince",
"release": {
"au": "2015-11-21",
@@ -29983,7 +29983,7 @@
}
],
"head": "01820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820001-01d80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820001-01d80502.png",
"name": "K. K. Slider - Pikopuri",
"release": {
"au": null,
@@ -30025,7 +30025,7 @@
}
],
"head": "06400100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06400100-001e0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06400100-001e0002.png",
"name": "Olimar",
"release": {
"au": "2015-07-23",
@@ -30079,7 +30079,7 @@
}
],
"head": "03ae0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ae0001-00870502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ae0001-00870502.png",
"name": "Clyde",
"release": {
"au": "2015-10-03",
@@ -30133,7 +30133,7 @@
}
],
"head": "049d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049d0001-00ed0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049d0001-00ed0502.png",
"name": "Ruby",
"release": {
"au": "2015-11-21",
@@ -30187,7 +30187,7 @@
}
],
"head": "021a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021a0001-00da0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021a0001-00da0502.png",
"name": "Groucho",
"release": {
"au": "2015-11-21",
@@ -30277,7 +30277,7 @@
}
],
"head": "1f020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f020000-00280002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f020000-00280002.png",
"name": "King Dedede",
"release": {
"au": "2015-01-29",
@@ -30355,7 +30355,7 @@
}
],
"head": "21040000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21040000-02520002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21040000-02520002.png",
"name": "Roy",
"release": {
"au": "2016-03-19",
@@ -30385,7 +30385,7 @@
}
],
"head": "350b0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_350b0000-042d1802.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_350b0000-042d1802.png",
"name": "Malzeno",
"release": {
"au": "2022-06-30",
@@ -30547,7 +30547,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-03710102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-03710102.png",
"name": "Mario - Wedding",
"release": {
"au": "2017-10-27",
@@ -30661,7 +30661,7 @@
}
],
"head": "00030102",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-00430302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-00430302.png",
"name": "Light Blue Yarn Yoshi",
"release": {
"au": "2015-06-25",
@@ -30715,7 +30715,7 @@
}
],
"head": "04c60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c60001-01670502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c60001-01670502.png",
"name": "Baabara",
"release": {
"au": "2016-03-19",
@@ -30745,7 +30745,7 @@
}
],
"head": "07800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07800000-002d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07800000-002d0002.png",
"name": "Mr. Game & Watch",
"release": {
"au": "2015-09-26",
@@ -30787,7 +30787,7 @@
}
],
"head": "06000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06000000-00120002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06000000-00120002.png",
"name": "Captain Falcon",
"release": {
"au": "2014-12-12",
@@ -30841,7 +30841,7 @@
}
],
"head": "04e50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e50001-01ad0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e50001-01ad0502.png",
"name": "Static",
"release": {
"au": "2016-06-18",
@@ -30895,7 +30895,7 @@
}
],
"head": "04110001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04110001-01ab0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04110001-01ab0502.png",
"name": "Rod",
"release": {
"au": "2016-06-18",
@@ -30949,7 +30949,7 @@
}
],
"head": "03950001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03950001-02fc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03950001-02fc0502.png",
"name": "Bitty",
"release": {
"au": "2016-11-10",
@@ -31075,7 +31075,7 @@
}
],
"head": "00020100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020100-03a70102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020100-03a70102.png",
"name": "Peach - Cat",
"release": {
"au": "2021-02-12",
@@ -31129,7 +31129,7 @@
}
],
"head": "044e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044e0001-03150502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_044e0001-03150502.png",
"name": "Buzz",
"release": {
"au": "2016-11-10",
@@ -31183,7 +31183,7 @@
}
],
"head": "01920001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01920001-03ad0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01920001-03ad0502.png",
"name": "Blathers",
"release": {
"au": "2021-11-05",
@@ -31237,7 +31237,7 @@
}
],
"head": "04a50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a50001-00740502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a50001-00740502.png",
"name": "Bonbon",
"release": {
"au": "2015-10-03",
@@ -31291,7 +31291,7 @@
}
],
"head": "04fa0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fa0001-01680502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fa0001-01680502.png",
"name": "Rolf",
"release": {
"au": "2016-03-19",
@@ -31345,7 +31345,7 @@
}
],
"head": "04360001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04360001-01940502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04360001-01940502.png",
"name": "Queenie",
"release": {
"au": "2016-06-18",
@@ -31399,7 +31399,7 @@
}
],
"head": "02de0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02de0001-009c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02de0001-009c0502.png",
"name": "Diana",
"release": {
"au": "2015-10-03",
@@ -31429,7 +31429,7 @@
}
],
"head": "38030001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38030001-03961702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38030001-03961702.png",
"name": "Hayakawa",
"release": {
"au": null,
@@ -31483,7 +31483,7 @@
}
],
"head": "03bd0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03bd0001-00f90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03bd0001-00f90502.png",
"name": "Alice",
"release": {
"au": "2015-11-21",
@@ -31573,7 +31573,7 @@
}
],
"head": "00070000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00070000-02630102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00070000-02630102.png",
"name": "Wario",
"release": {
"au": "2016-10-08",
@@ -31627,7 +31627,7 @@
}
],
"head": "021e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021e0001-01230502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021e0001-01230502.png",
"name": "Paula",
"release": {
"au": "2016-03-19",
@@ -31644,7 +31644,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d00401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00401-02bc0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00401-02bc0e02.png",
"name": "Metal Mario - Golf",
"release": {
"au": "2017-03-11",
@@ -31698,7 +31698,7 @@
}
],
"head": "02320001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02320001-02ea0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02320001-02ea0502.png",
"name": "Piper",
"release": {
"au": "2016-11-10",
@@ -31788,7 +31788,7 @@
}
],
"head": "1f010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f010000-02550c02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f010000-02550c02.png",
"name": "Meta Knight",
"release": {
"au": "2016-06-11",
@@ -31842,7 +31842,7 @@
}
],
"head": "03390001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03390001-01b10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03390001-01b10502.png",
"name": "Ribbot",
"release": {
"au": "2016-06-18",
@@ -31896,7 +31896,7 @@
}
],
"head": "04b60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b60001-02ec0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b60001-02ec0502.png",
"name": "Hornsby",
"release": {
"au": "2016-11-10",
@@ -31950,7 +31950,7 @@
}
],
"head": "01850401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01850401-01790502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01850401-01790502.png",
"name": "Timmy - Suit",
"release": {
"au": "2016-06-18",
@@ -31992,7 +31992,7 @@
}
],
"head": "0a010001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a010001-03ac0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a010001-03ac0502.png",
"name": "Wilbur",
"release": {
"au": "2021-11-05",
@@ -32046,7 +32046,7 @@
}
],
"head": "032a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032a0001-03070502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_032a0001-03070502.png",
"name": "Ellie",
"release": {
"au": "2016-11-10",
@@ -32100,7 +32100,7 @@
}
],
"head": "027d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_027d0001-00630502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_027d0001-00630502.png",
"name": "Bluebear",
"release": {
"au": "2015-10-03",
@@ -32170,7 +32170,7 @@
}
],
"head": "00060000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00060000-00150002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00060000-00150002.png",
"name": "Bowser Jr.",
"release": {
"au": "2015-07-23",
@@ -32212,7 +32212,7 @@
}
],
"head": "22400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22400000-002b0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22400000-002b0002.png",
"name": "Shulk",
"release": {
"au": "2015-01-29",
@@ -32302,7 +32302,7 @@
}
],
"head": "00130000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00130000-02660102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00130000-02660102.png",
"name": "Daisy",
"release": {
"au": "2016-11-05",
@@ -32319,7 +32319,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c90101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90101-02960e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90101-02960e02.png",
"name": "Bowser - Soccer",
"release": {
"au": "2017-03-11",
@@ -32373,7 +32373,7 @@
}
],
"head": "04e40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e40001-01b60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e40001-01b60502.png",
"name": "Sally",
"release": {
"au": "2016-06-18",
@@ -32415,7 +32415,7 @@
}
],
"head": "0a110001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a110001-03c80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a110001-03c80502.png",
"name": "Sasha",
"release": {
"au": "2021-11-05",
@@ -32493,7 +32493,7 @@
}
],
"head": "21030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21030000-002a0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21030000-002a0002.png",
"name": "Robin",
"release": {
"au": "2015-04-25",
@@ -32547,7 +32547,7 @@
}
],
"head": "02b10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b10001-00690502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b10001-00690502.png",
"name": "Patty",
"release": {
"au": "2015-10-03",
@@ -32601,7 +32601,7 @@
}
],
"head": "03160001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03160001-01c00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03160001-01c00502.png",
"name": "Gloria",
"release": {
"au": "2016-06-18",
@@ -32655,7 +32655,7 @@
}
],
"head": "01820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820001-00a80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820001-00a80502.png",
"name": "K.K. Slider",
"release": {
"au": "2015-11-21",
@@ -32709,7 +32709,7 @@
}
],
"head": "03fb0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fb0001-01cf0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fb0001-01cf0502.png",
"name": "Simon",
"release": {
"au": "2016-06-18",
@@ -32883,7 +32883,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-04180902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-04180902.png",
"name": "Link - Tears of the Kingdom",
"release": {
"au": "2023-05-12",
@@ -32937,7 +32937,7 @@
}
],
"head": "03b00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03b00001-01a90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03b00001-01a90502.png",
"name": "Papi",
"release": {
"au": "2016-06-18",
@@ -32991,7 +32991,7 @@
}
],
"head": "03240001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03240001-01890502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03240001-01890502.png",
"name": "Dizzy",
"release": {
"au": "2016-06-18",
@@ -33045,7 +33045,7 @@
}
],
"head": "02170001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02170001-01b30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02170001-01b30502.png",
"name": "Chow",
"release": {
"au": "2016-06-18",
@@ -33099,7 +33099,7 @@
}
],
"head": "02b20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b20001-00c40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b20001-00c40502.png",
"name": "Tipper",
"release": {
"au": "2015-11-21",
@@ -33153,7 +33153,7 @@
}
],
"head": "04fe0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fe0001-00590502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04fe0001-00590502.png",
"name": "Leonardo",
"release": {
"au": "2015-10-03",
@@ -33315,7 +33315,7 @@
}
],
"head": "01000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000100-00160002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000100-00160002.png",
"name": "Toon Link",
"release": {
"au": "2015-01-29",
@@ -33369,7 +33369,7 @@
}
],
"head": "02020001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02020001-01030502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02020001-01030502.png",
"name": "Pango",
"release": {
"au": "2015-11-21",
@@ -33399,7 +33399,7 @@
}
],
"head": "07810000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07810000-00330002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07810000-00330002.png",
"name": "R.O.B. - NES",
"release": {
"au": "2015-09-26",
@@ -33416,7 +33416,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d10201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10201-02bf0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10201-02bf0e02.png",
"name": "Pink Gold Peach - Baseball",
"release": {
"au": "2017-03-11",
@@ -33470,7 +33470,7 @@
}
],
"head": "33400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_33400000-00320002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_33400000-00320002.png",
"name": "Pac-Man",
"release": {
"au": "2015-04-25",
@@ -33512,7 +33512,7 @@
}
],
"head": "0a150001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a150001-03cc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a150001-03cc0502.png",
"name": "Marlo",
"release": {
"au": "2021-11-05",
@@ -33529,7 +33529,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c10301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10301-02700e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10301-02700e02.png",
"name": "Luigi - Tennis",
"release": {
"au": "2017-03-11",
@@ -33583,7 +33583,7 @@
}
],
"head": "01c10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10001-00540502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10001-00540502.png",
"name": "Lottie",
"release": {
"au": "2015-10-03",
@@ -33600,7 +33600,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c20301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20301-02750e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20301-02750e02.png",
"name": "Peach - Tennis",
"release": {
"au": "2017-03-11",
@@ -33654,7 +33654,7 @@
}
],
"head": "027f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_027f0001-00b90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_027f0001-00b90502.png",
"name": "Poncho",
"release": {
"au": "2015-11-21",
@@ -33708,7 +33708,7 @@
}
],
"head": "03ec0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ec0001-01830502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ec0001-01830502.png",
"name": "Mott",
"release": {
"au": "2016-06-18",
@@ -33762,7 +33762,7 @@
}
],
"head": "042b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_042b0001-01af0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_042b0001-01af0502.png",
"name": "Zucker",
"release": {
"au": "2016-06-18",
@@ -33840,7 +33840,7 @@
}
],
"head": "00130003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00130003-039eff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00130003-039eff02.png",
"name": "Daisy - Power Up Band",
"release": {
"au": null,
@@ -33942,7 +33942,7 @@
}
],
"head": "34800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34800000-00310002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34800000-00310002.png",
"name": "Mega Man",
"release": {
"au": "2015-01-29",
@@ -33996,7 +33996,7 @@
}
],
"head": "035a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035a0001-00850502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_035a0001-00850502.png",
"name": "Gruff",
"release": {
"au": "2015-10-03",
@@ -34062,7 +34062,7 @@
}
],
"head": "05c10000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c10000-03661302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c10000-03661302.png",
"name": "Metroid",
"release": {
"au": "2017-09-16",
@@ -34116,7 +34116,7 @@
}
],
"head": "030c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030c0001-01b80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030c0001-01b80502.png",
"name": "Pompom",
"release": {
"au": "2016-06-18",
@@ -34170,7 +34170,7 @@
}
],
"head": "01930001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01930001-03ae0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01930001-03ae0502.png",
"name": "Celeste",
"release": {
"au": "2021-11-05",
@@ -34224,7 +34224,7 @@
}
],
"head": "04c90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c90001-030d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c90001-030d0502.png",
"name": "Cashmere",
"release": {
"au": "2016-11-10",
@@ -34278,7 +34278,7 @@
}
],
"head": "034a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_034a0001-01430502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_034a0001-01430502.png",
"name": "Diva",
"release": {
"au": "2016-03-19",
@@ -34332,7 +34332,7 @@
}
],
"head": "04790001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04790001-00920502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04790001-00920502.png",
"name": "Truffles",
"release": {
"au": "2015-10-03",
@@ -34386,7 +34386,7 @@
}
],
"head": "042a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_042a0001-012d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_042a0001-012d0502.png",
"name": "Marina",
"release": {
"au": "2016-03-19",
@@ -34440,7 +34440,7 @@
}
],
"head": "03fa0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fa0001-00d00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fa0001-00d00502.png",
"name": "Nana",
"release": {
"au": "2015-11-21",
@@ -34457,7 +34457,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ca0301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0301-029d0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0301-029d0e02.png",
"name": "Bowser Jr. - Tennis",
"release": {
"au": "2017-03-11",
@@ -34547,7 +34547,7 @@
}
],
"head": "08000200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000200-02600402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000200-02600402.png",
"name": "Inkling Boy - Purple",
"release": {
"au": "2016-07-09",
@@ -34601,7 +34601,7 @@
}
],
"head": "04c70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c70001-00940502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c70001-00940502.png",
"name": "Eunice",
"release": {
"au": "2015-10-03",
@@ -34618,7 +34618,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c90501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90501-029a0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90501-029a0e02.png",
"name": "Bowser - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -34696,7 +34696,7 @@
}
],
"head": "00080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00080000-00030002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00080000-00030002.png",
"name": "Donkey Kong",
"release": {
"au": "2014-11-29",
@@ -34786,7 +34786,7 @@
}
],
"head": "000a0003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_000a0003-03a0ff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_000a0003-03a0ff02.png",
"name": "Toad - Power Up Band",
"release": {
"au": null,
@@ -34840,7 +34840,7 @@
}
],
"head": "03ed0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ed0001-01a30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ed0001-01a30502.png",
"name": "Rory",
"release": {
"au": "2016-06-18",
@@ -34894,7 +34894,7 @@
}
],
"head": "029b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_029b0001-00cb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_029b0001-00cb0502.png",
"name": "Egbert",
"release": {
"au": "2015-11-21",
@@ -35012,7 +35012,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-00000002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-00000002.png",
"name": "Mario",
"release": {
"au": "2014-11-29",
@@ -35029,7 +35029,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cf0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0101-02b40e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0101-02b40e02.png",
"name": "Rosalina - Soccer",
"release": {
"au": "2017-03-11",
@@ -35203,7 +35203,7 @@
}
],
"head": "01000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034e0902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01000000-034e0902.png",
"name": "Link - Skyward Sword",
"release": {
"au": "2017-06-24",
@@ -35257,7 +35257,7 @@
}
],
"head": "02870001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02870001-005a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02870001-005a0502.png",
"name": "Cheri",
"release": {
"au": "2015-10-03",
@@ -35311,7 +35311,7 @@
}
],
"head": "01830201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830201-03a80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830201-03a80502.png",
"name": "Tom Nook",
"release": {
"au": "2021-11-05",
@@ -35328,7 +35328,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c10501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10501-02720e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10501-02720e02.png",
"name": "Luigi - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -35345,7 +35345,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c40101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40101-027d0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40101-027d0e02.png",
"name": "Yoshi - Soccer",
"release": {
"au": "2017-03-11",
@@ -35399,7 +35399,7 @@
}
],
"head": "03d20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d20001-00e50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d20001-00e50502.png",
"name": "Mathilda",
"release": {
"au": "2015-11-21",
@@ -35416,7 +35416,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c00301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00301-026b0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00301-026b0e02.png",
"name": "Mario - Tennis",
"release": {
"au": "2017-03-11",
@@ -35506,7 +35506,7 @@
}
],
"head": "08000300",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000300-036b0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000300-036b0402.png",
"name": "Inkling Squid - Neon Purple",
"release": {
"au": "2017-07-21",
@@ -35560,7 +35560,7 @@
}
],
"head": "04d20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d20001-01a70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d20001-01a70502.png",
"name": "Pietro",
"release": {
"au": "2016-06-18",
@@ -35577,7 +35577,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cc0301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0301-02a70e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0301-02a70e02.png",
"name": "Baby Mario - Tennis",
"release": {
"au": "2017-03-11",
@@ -35594,7 +35594,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c80201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80201-02920e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80201-02920e02.png",
"name": "Diddy Kong - Baseball",
"release": {
"au": "2017-03-11",
@@ -35648,7 +35648,7 @@
}
],
"head": "03100001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03100001-00f80502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03100001-00f80502.png",
"name": "Drake",
"release": {
"au": "2015-11-21",
@@ -35702,7 +35702,7 @@
}
],
"head": "050f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050f0001-03140502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050f0001-03140502.png",
"name": "Dobie",
"release": {
"au": "2016-11-10",
@@ -35840,7 +35840,7 @@
}
],
"head": "00020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020000-00360102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020000-00360102.png",
"name": "Peach",
"release": {
"au": "2015-03-21",
@@ -35857,7 +35857,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c70201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70201-028d0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70201-028d0e02.png",
"name": "Donkey Kong - Baseball",
"release": {
"au": "2017-03-11",
@@ -35899,7 +35899,7 @@
}
],
"head": "0a1a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1a0001-03d10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1a0001-03d10502.png",
"name": "Zoe",
"release": {
"au": "2021-11-05",
@@ -35953,7 +35953,7 @@
}
],
"head": "01830001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830001-00450502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830001-00450502.png",
"name": "Tom Nook",
"release": {
"au": "2015-10-03",
@@ -36007,7 +36007,7 @@
}
],
"head": "03570001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03570001-00eb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03570001-00eb0502.png",
"name": "Nan",
"release": {
"au": "2015-11-21",
@@ -36024,7 +36024,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c40201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40201-027e0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40201-027e0e02.png",
"name": "Yoshi - Baseball",
"release": {
"au": "2017-03-11",
@@ -36150,7 +36150,7 @@
}
],
"head": "00020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020000-00010002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00020000-00010002.png",
"name": "Peach",
"release": {
"au": "2014-11-29",
@@ -36228,7 +36228,7 @@
}
],
"head": "00140000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00140000-02670102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00140000-02670102.png",
"name": "Waluigi",
"release": {
"au": "2016-11-05",
@@ -36282,7 +36282,7 @@
}
],
"head": "01820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820001-03b20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820001-03b20502.png",
"name": "K.K. Slider",
"release": {
"au": "2021-11-05",
@@ -36336,7 +36336,7 @@
}
],
"head": "03a50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a50001-015b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a50001-015b0502.png",
"name": "Victoria",
"release": {
"au": "2016-03-19",
@@ -36390,7 +36390,7 @@
}
],
"head": "026b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026b0001-00e90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026b0001-00e90502.png",
"name": "Kitty",
"release": {
"au": "2015-11-21",
@@ -36444,7 +36444,7 @@
}
],
"head": "04150001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04150001-01bb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04150001-01bb0502.png",
"name": "Rizzo",
"release": {
"au": "2016-06-18",
@@ -36461,7 +36461,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c80401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80401-02940e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80401-02940e02.png",
"name": "Diddy Kong - Golf",
"release": {
"au": "2017-03-11",
@@ -36515,7 +36515,7 @@
}
],
"head": "04e20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e20001-01090502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e20001-01090502.png",
"name": "Agent S",
"release": {
"au": "2015-11-21",
@@ -36545,7 +36545,7 @@
}
],
"head": "1b920000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1b920000-00250002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1b920000-00250002.png",
"name": "Greninja",
"release": {
"au": "2015-05-30",
@@ -36562,7 +36562,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c20201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20201-02740e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c20201-02740e02.png",
"name": "Peach - Baseball",
"release": {
"au": "2017-03-11",
@@ -36616,7 +36616,7 @@
}
],
"head": "043f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043f0001-01550502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043f0001-01550502.png",
"name": "Flora",
"release": {
"au": "2016-03-19",
@@ -36670,7 +36670,7 @@
}
],
"head": "04a60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a60001-00a30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04a60001-00a30502.png",
"name": "Cole",
"release": {
"au": "2015-10-03",
@@ -36724,7 +36724,7 @@
}
],
"head": "04290001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04290001-00700502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04290001-00700502.png",
"name": "Octavian",
"release": {
"au": "2015-10-03",
@@ -36814,7 +36814,7 @@
}
],
"head": "00230000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00230000-03680102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00230000-03680102.png",
"name": "Koopa Troopa",
"release": {
"au": "2017-10-07",
@@ -36868,7 +36868,7 @@
}
],
"head": "04630001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04630001-01310502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04630001-01310502.png",
"name": "Friga",
"release": {
"au": "2016-03-19",
@@ -36922,7 +36922,7 @@
}
],
"head": "03420001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03420001-01280502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03420001-01280502.png",
"name": "Cousteau",
"release": {
"au": "2016-03-19",
@@ -36976,7 +36976,7 @@
}
],
"head": "018f0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018f0101-01190502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018f0101-01190502.png",
"name": "Don Resetti - Without Hat",
"release": {
"au": "2016-03-19",
@@ -37018,7 +37018,7 @@
}
],
"head": "0a130001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a130001-03ca0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a130001-03ca0502.png",
"name": "Tiansheng",
"release": {
"au": "2021-11-05",
@@ -37072,7 +37072,7 @@
}
],
"head": "02a20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a20001-01ba0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a20001-01ba0502.png",
"name": "Becky",
"release": {
"au": "2016-06-18",
@@ -37126,7 +37126,7 @@
}
],
"head": "02220001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02220001-01440502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02220001-01440502.png",
"name": "Klaus",
"release": {
"au": "2016-03-19",
@@ -37180,7 +37180,7 @@
}
],
"head": "041e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041e0001-015f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041e0001-015f0502.png",
"name": "Chadder",
"release": {
"au": "2016-03-19",
@@ -37270,7 +37270,7 @@
}
],
"head": "08000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-03690402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-03690402.png",
"name": "Inkling Girl - Neon Pink",
"release": {
"au": "2017-07-21",
@@ -37348,7 +37348,7 @@
}
],
"head": "00150000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00150000-03670102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00150000-03670102.png",
"name": "Goomba",
"release": {
"au": "2017-10-07",
@@ -37390,7 +37390,7 @@
}
],
"head": "32400100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_32400100-03640002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_32400100-03640002.png",
"name": "Bayonetta - Player 2",
"release": {
"au": "2017-07-22",
@@ -37528,7 +37528,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-003c0102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-003c0102.png",
"name": "Mario - Gold Edition",
"release": {
"au": "2015-06-25",
@@ -37606,7 +37606,7 @@
}
],
"head": "05c00100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00100-001d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00100-001d0002.png",
"name": "Zero Suit Samus",
"release": {
"au": "2015-07-04",
@@ -37700,7 +37700,7 @@
}
],
"head": "00000003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000003-039bff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000003-039bff02.png",
"name": "Mario - Power Up Band",
"release": {
"au": null,
@@ -37730,7 +37730,7 @@
}
],
"head": "07400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07400000-00100002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07400000-00100002.png",
"name": "Pit",
"release": {
"au": "2014-12-12",
@@ -37784,7 +37784,7 @@
}
],
"head": "04950001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04950001-01920502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04950001-01920502.png",
"name": "Dotty",
"release": {
"au": "2016-06-18",
@@ -37838,7 +37838,7 @@
}
],
"head": "01b60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b60001-00ae0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b60001-00ae0502.png",
"name": "Katie",
"release": {
"au": "2015-11-21",
@@ -37988,7 +37988,7 @@
}
],
"head": "01010100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010100-00170002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010100-00170002.png",
"name": "Sheik",
"release": {
"au": "2015-01-29",
@@ -38005,7 +38005,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d10501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10501-02c20e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10501-02c20e02.png",
"name": "Pink Gold Peach - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -38059,7 +38059,7 @@
}
],
"head": "01af0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01af0001-011c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01af0001-011c0502.png",
"name": "Jingle",
"release": {
"au": "2016-03-19",
@@ -38113,7 +38113,7 @@
}
],
"head": "026f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026f0001-01900502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_026f0001-01900502.png",
"name": "Lolly",
"release": {
"au": "2016-06-18",
@@ -38203,7 +38203,7 @@
}
],
"head": "08000100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-025f0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000100-025f0402.png",
"name": "Inkling Girl - Lime Green",
"release": {
"au": "2016-07-09",
@@ -38220,7 +38220,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d00501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00501-02bd0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00501-02bd0e02.png",
"name": "Metal Mario - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -38286,7 +38286,7 @@
}
],
"head": "08050200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050200-041b0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050200-041b0402.png",
"name": "Octoling - Blue",
"release": {
"au": "2022-11-11",
@@ -38352,7 +38352,7 @@
}
],
"head": "21060000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21060000-03601202.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21060000-03601202.png",
"name": "Alm",
"release": {
"au": "2017-05-20",
@@ -38382,7 +38382,7 @@
}
],
"head": "37c10000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37c10000-038c0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_37c10000-038c0002.png",
"name": "Richter",
"release": {
"au": "2020-01-17",
@@ -38436,7 +38436,7 @@
}
],
"head": "033f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033f0001-008f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033f0001-008f0502.png",
"name": "Jeremiah",
"release": {
"au": "2015-10-03",
@@ -38453,7 +38453,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c90401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90401-02990e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90401-02990e02.png",
"name": "Bowser - Golf",
"release": {
"au": "2017-03-11",
@@ -38507,7 +38507,7 @@
}
],
"head": "019e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019e0001-00ad0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_019e0001-00ad0502.png",
"name": "Booker",
"release": {
"au": "2015-11-21",
@@ -38561,7 +38561,7 @@
}
],
"head": "02ec0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ec0001-01c40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ec0001-01c40502.png",
"name": "Lucky",
"release": {
"au": "2016-06-18",
@@ -38639,7 +38639,7 @@
}
],
"head": "01820000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820000-02400502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01820000-02400502.png",
"name": "K. K. Slider",
"release": {
"au": "2015-11-21",
@@ -38693,7 +38693,7 @@
}
],
"head": "01b50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b50001-00510502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01b50001-00510502.png",
"name": "Luna",
"release": {
"au": "2015-10-03",
@@ -38747,7 +38747,7 @@
}
],
"head": "049e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049e0001-01b70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049e0001-01b70502.png",
"name": "Doc",
"release": {
"au": "2016-06-18",
@@ -38801,7 +38801,7 @@
}
],
"head": "04540001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04540001-01ae0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04540001-01ae0502.png",
"name": "Celia",
"release": {
"au": "2016-06-18",
@@ -38855,7 +38855,7 @@
}
],
"head": "03990001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03990001-01c20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03990001-01c20502.png",
"name": "Hippeux",
"release": {
"au": "2016-06-18",
@@ -38872,7 +38872,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cd0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0101-02aa0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0101-02aa0e02.png",
"name": "Baby Luigi - Soccer",
"release": {
"au": "2017-03-11",
@@ -38926,7 +38926,7 @@
}
],
"head": "04ec0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ec0001-00770502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ec0001-00770502.png",
"name": "Poppy",
"release": {
"au": "2015-10-03",
@@ -38980,7 +38980,7 @@
}
],
"head": "04b20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b20001-01b90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b20001-01b90502.png",
"name": "Tank",
"release": {
"au": "2016-06-18",
@@ -39022,7 +39022,7 @@
}
],
"head": "01c10201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10201-03bb0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01c10201-03bb0502.png",
"name": "Lottie - Island",
"release": {
"au": "2021-11-05",
@@ -39076,7 +39076,7 @@
}
],
"head": "02f90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f90001-01020502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f90001-01020502.png",
"name": "Marcel",
"release": {
"au": "2015-11-21",
@@ -39130,7 +39130,7 @@
}
],
"head": "018a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018a0001-00a90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018a0001-00a90502.png",
"name": "Reese",
"release": {
"au": "2015-11-21",
@@ -39172,7 +39172,7 @@
}
],
"head": "06420000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06420000-035f1102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06420000-035f1102.png",
"name": "Pikmin",
"release": {
"au": "2017-07-29",
@@ -39226,7 +39226,7 @@
}
],
"head": "03a40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a40001-014f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03a40001-014f0502.png",
"name": "Buck",
"release": {
"au": "2016-03-19",
@@ -39280,7 +39280,7 @@
}
],
"head": "04e70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e70001-01320502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04e70001-01320502.png",
"name": "Ricky",
"release": {
"au": "2016-03-19",
@@ -39334,7 +39334,7 @@
}
],
"head": "04610001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04610001-01610502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04610001-01610502.png",
"name": "Cube",
"release": {
"au": "2016-03-19",
@@ -39364,7 +39364,7 @@
}
],
"head": "38400001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38400001-04241902.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38400001-04241902.png",
"name": "Yuga Ohdo",
"release": {
"au": null,
@@ -39381,7 +39381,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ce0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0101-02af0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0101-02af0e02.png",
"name": "Birdo - Soccer",
"release": {
"au": "2017-03-11",
@@ -39398,7 +39398,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c30301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30301-027a0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30301-027a0e02.png",
"name": "Daisy - Tennis",
"release": {
"au": "2017-03-11",
@@ -39452,7 +39452,7 @@
}
],
"head": "03d60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d60001-01570502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d60001-01570502.png",
"name": "Astrid",
"release": {
"au": "2016-03-19",
@@ -39530,7 +39530,7 @@
}
],
"head": "01810100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810100-023f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810100-023f0502.png",
"name": "Isabelle - Winter Outfit",
"release": {
"au": "2015-11-21",
@@ -39596,7 +39596,7 @@
}
],
"head": "01930000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01930000-02480502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01930000-02480502.png",
"name": "Celeste",
"release": {
"au": "2016-01-30",
@@ -39710,7 +39710,7 @@
}
],
"head": "00030102",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-00420302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-00420302.png",
"name": "Pink Yarn Yoshi",
"release": {
"au": "2015-06-25",
@@ -39740,7 +39740,7 @@
}
],
"head": "38040001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38040001-03971702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38040001-03971702.png",
"name": "Ganda",
"release": {
"au": null,
@@ -39757,7 +39757,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c30201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30201-02790e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30201-02790e02.png",
"name": "Daisy - Baseball",
"release": {
"au": "2017-03-11",
@@ -39774,7 +39774,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c90301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90301-02980e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90301-02980e02.png",
"name": "Bowser - Tennis",
"release": {
"au": "2017-03-11",
@@ -39828,7 +39828,7 @@
}
],
"head": "04690001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04690001-01640502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04690001-01640502.png",
"name": "Boomer",
"release": {
"au": "2016-03-19",
@@ -39906,7 +39906,7 @@
}
],
"head": "00090000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00090000-02650102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00090000-02650102.png",
"name": "Diddy Kong",
"release": {
"au": "2016-11-05",
@@ -39960,7 +39960,7 @@
}
],
"head": "03c40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c40001-012b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c40001-012b0502.png",
"name": "Canberra",
"release": {
"au": "2016-03-19",
@@ -39977,7 +39977,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d10401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10401-02c10e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10401-02c10e02.png",
"name": "Pink Gold Peach - Golf",
"release": {
"au": "2017-03-11",
@@ -40031,7 +40031,7 @@
}
],
"head": "050b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050b0001-00990502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_050b0001-00990502.png",
"name": "Chief",
"release": {
"au": "2015-10-03",
@@ -40121,7 +40121,7 @@
}
],
"head": "08000200",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000200-036a0402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08000200-036a0402.png",
"name": "Inkling Boy - Neon Green",
"release": {
"au": "2017-07-21",
@@ -40175,7 +40175,7 @@
}
],
"head": "03940001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03940001-00890502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03940001-00890502.png",
"name": "Biff",
"release": {
"au": "2015-10-03",
@@ -40205,7 +40205,7 @@
}
],
"head": "06c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06c00000-000f0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_06c00000-000f0002.png",
"name": "Little Mac",
"release": {
"au": "2014-12-12",
@@ -40259,7 +40259,7 @@
}
],
"head": "03b10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03b10001-00f00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03b10001-00f00502.png",
"name": "Julian",
"release": {
"au": "2015-11-21",
@@ -40313,7 +40313,7 @@
}
],
"head": "02650001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02650001-01540502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02650001-01540502.png",
"name": "Moe",
"release": {
"au": "2016-03-19",
@@ -40330,7 +40330,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cc0201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0201-02a60e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cc0201-02a60e02.png",
"name": "Baby Mario - Baseball",
"release": {
"au": "2017-03-11",
@@ -40384,7 +40384,7 @@
}
],
"head": "01a10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a10001-01100502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a10001-01100502.png",
"name": "Phyllis",
"release": {
"au": "2016-03-19",
@@ -40426,7 +40426,7 @@
}
],
"head": "0a0a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0a0001-03c10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0a0001-03c10502.png",
"name": "Megan",
"release": {
"au": "2021-11-05",
@@ -40540,7 +40540,7 @@
}
],
"head": "00030102",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-00410302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030102-00410302.png",
"name": "Green Yarn Yoshi",
"release": {
"au": "2015-06-25",
@@ -40594,7 +40594,7 @@
}
],
"head": "02f30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f30001-02f90502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f30001-02f90502.png",
"name": "Maddie",
"release": {
"au": "2016-11-10",
@@ -40648,7 +40648,7 @@
}
],
"head": "04ce0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ce0001-00db0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ce0001-00db0502.png",
"name": "Wendy",
"release": {
"au": "2015-11-21",
@@ -40702,7 +40702,7 @@
}
],
"head": "04dd0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04dd0001-00a20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04dd0001-00a20502.png",
"name": "Peanut",
"release": {
"au": "2015-10-03",
@@ -40744,7 +40744,7 @@
}
],
"head": "0a190001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a190001-03d00502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a190001-03d00502.png",
"name": "Chabwick",
"release": {
"au": "2021-11-05",
@@ -40798,7 +40798,7 @@
}
],
"head": "01980001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01980001-00b10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01980001-00b10502.png",
"name": "Leila",
"release": {
"au": "2015-11-21",
@@ -40840,7 +40840,7 @@
}
],
"head": "22410000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22410000-041e0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22410000-041e0002.png",
"name": "Pyra",
"release": {
"au": "2023-07-21",
@@ -40898,7 +40898,7 @@
}
],
"head": "03740101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03740101-03190502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03740101-03190502.png",
"name": "Rilla",
"release": {
"au": null,
@@ -40952,7 +40952,7 @@
}
],
"head": "01800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01800000-00080002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01800000-00080002.png",
"name": "Villager",
"release": {
"au": "2014-11-29",
@@ -41006,7 +41006,7 @@
}
],
"head": "01880001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01880001-03af0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01880001-03af0502.png",
"name": "Mabel",
"release": {
"au": "2021-11-05",
@@ -41060,7 +41060,7 @@
}
],
"head": "049b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049b0001-00610502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_049b0001-00610502.png",
"name": "Tiffany",
"release": {
"au": "2015-10-03",
@@ -41077,7 +41077,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ca0401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0401-029e0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0401-029e0e02.png",
"name": "Bowser Jr. - Golf",
"release": {
"au": "2017-03-11",
@@ -41167,7 +41167,7 @@
}
],
"head": "1f030000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f030000-02570c02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f030000-02570c02.png",
"name": "Waddle Dee",
"release": {
"au": "2016-06-11",
@@ -41221,7 +41221,7 @@
}
],
"head": "02c70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c70001-01220502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c70001-01220502.png",
"name": "Del",
"release": {
"au": "2016-03-19",
@@ -41275,7 +41275,7 @@
}
],
"head": "02f20001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f20001-00cc0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02f20001-00cc0502.png",
"name": "Cookie",
"release": {
"au": "2015-11-21",
@@ -41292,7 +41292,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c70301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70301-028e0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70301-028e0e02.png",
"name": "Donkey Kong - Tennis",
"release": {
"au": "2017-03-11",
@@ -41358,7 +41358,7 @@
}
],
"head": "01810000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810000-037d0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810000-037d0002.png",
"name": "Isabelle",
"release": {
"au": "2019-07-19",
@@ -41412,7 +41412,7 @@
}
],
"head": "34c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34c00000-02530002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_34c00000-02530002.png",
"name": "Ryu",
"release": {
"au": "2016-03-19",
@@ -41466,7 +41466,7 @@
}
],
"head": "03980001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03980001-00bf0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03980001-00bf0502.png",
"name": "Harry",
"release": {
"au": "2015-11-21",
@@ -41520,7 +41520,7 @@
}
],
"head": "04010001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04010001-00660502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04010001-00660502.png",
"name": "Deli",
"release": {
"au": "2015-10-03",
@@ -41578,7 +41578,7 @@
}
],
"head": "02e00101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02e00101-031d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02e00101-031d0502.png",
"name": "Chelsea",
"release": {
"au": null,
@@ -41728,7 +41728,7 @@
}
],
"head": "01020100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01020100-001b0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01020100-001b0002.png",
"name": "Ganondorf",
"release": {
"au": "2015-07-04",
@@ -41745,7 +41745,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c30401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30401-027b0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c30401-027b0e02.png",
"name": "Daisy - Golf",
"release": {
"au": "2017-03-11",
@@ -41762,7 +41762,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d10301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10301-02c00e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d10301-02c00e02.png",
"name": "Pink Gold Peach - Tennis",
"release": {
"au": "2017-03-11",
@@ -41816,7 +41816,7 @@
}
],
"head": "03e60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03e60001-00ec0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03e60001-00ec0502.png",
"name": "Bud",
"release": {
"au": "2015-11-21",
@@ -41846,7 +41846,7 @@
}
],
"head": "3a000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3a000000-03a10002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3a000000-03a10002.png",
"name": "Joker",
"release": {
"au": "2020-09-25",
@@ -41912,7 +41912,7 @@
}
],
"head": "03710001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03710001-005c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03710001-005c0502.png",
"name": "Al",
"release": {
"au": "2015-10-03",
@@ -41966,7 +41966,7 @@
}
],
"head": "03fe0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fe0001-01a40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03fe0001-01a40502.png",
"name": "Elise",
"release": {
"au": "2016-06-18",
@@ -42020,7 +42020,7 @@
}
],
"head": "05c30000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c30000-03800002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c30000-03800002.png",
"name": "Dark Samus",
"release": {
"au": "2020-01-17",
@@ -42074,7 +42074,7 @@
}
],
"head": "03db0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03db0001-006d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03db0001-006d0502.png",
"name": "Marcie",
"release": {
"au": "2015-10-03",
@@ -42128,7 +42128,7 @@
}
],
"head": "02160001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02160001-00570502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02160001-00570502.png",
"name": "Curt",
"release": {
"au": "2015-10-03",
@@ -42182,7 +42182,7 @@
}
],
"head": "05150001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05150001-005b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05150001-005b0502.png",
"name": "Kyle",
"release": {
"au": "2015-10-03",
@@ -42260,7 +42260,7 @@
}
],
"head": "21050100",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21050100-03630002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_21050100-03630002.png",
"name": "Corrin - Player 2",
"release": {
"au": "2017-07-22",
@@ -42314,7 +42314,7 @@
}
],
"head": "024a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024a0001-01d10502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_024a0001-01d10502.png",
"name": "Angus",
"release": {
"au": "2016-06-18",
@@ -42368,7 +42368,7 @@
}
],
"head": "04780001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04780001-01630502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04780001-01630502.png",
"name": "Curly",
"release": {
"au": "2016-03-19",
@@ -42458,7 +42458,7 @@
}
],
"head": "00030003",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030003-039fff02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00030003-039fff02.png",
"name": "Yoshi - Power Up Band",
"release": {
"au": null,
@@ -42475,7 +42475,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c00401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00401-026c0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00401-026c0e02.png",
"name": "Mario - Golf",
"release": {
"au": "2017-03-11",
@@ -42492,7 +42492,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cd0401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0401-02ad0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0401-02ad0e02.png",
"name": "Baby Luigi - Golf",
"release": {
"au": "2017-03-11",
@@ -42509,7 +42509,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c50501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50501-02860e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c50501-02860e02.png",
"name": "Wario - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -42526,7 +42526,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ca0201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0201-029c0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0201-029c0e02.png",
"name": "Bowser Jr. - Baseball",
"release": {
"au": "2017-03-11",
@@ -42592,7 +42592,7 @@
}
],
"head": "01810201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810201-011a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810201-011a0502.png",
"name": "Isabelle - Kimono",
"release": {
"au": "2016-03-19",
@@ -42646,7 +42646,7 @@
}
],
"head": "033c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033c0001-01000502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_033c0001-01000502.png",
"name": "Drift",
"release": {
"au": "2015-11-21",
@@ -42700,7 +42700,7 @@
}
],
"head": "03270001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03270001-01c30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03270001-01c30502.png",
"name": "Margie",
"release": {
"au": "2016-06-18",
@@ -42754,7 +42754,7 @@
}
],
"head": "030d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030d0001-01840502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_030d0001-01840502.png",
"name": "Mallary",
"release": {
"au": "2016-06-18",
@@ -42771,7 +42771,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c90201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90201-02970e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c90201-02970e02.png",
"name": "Bowser - Baseball",
"release": {
"au": "2017-03-11",
@@ -42861,7 +42861,7 @@
}
],
"head": "1f020000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f020000-02560c02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1f020000-02560c02.png",
"name": "King Dedede",
"release": {
"au": "2016-06-11",
@@ -42915,7 +42915,7 @@
}
],
"head": "35060000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35060000-040d0f02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35060000-040d0f02.png",
"name": "Ena",
"release": {
"au": "2021-07-09",
@@ -42932,7 +42932,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c10201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10201-026f0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c10201-026f0e02.png",
"name": "Luigi - Baseball",
"release": {
"au": "2017-03-11",
@@ -42962,7 +42962,7 @@
}
],
"head": "07820000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07820000-002f0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07820000-002f0002.png",
"name": "Duck Hunt",
"release": {
"au": "2015-09-26",
@@ -43016,7 +43016,7 @@
}
],
"head": "03ab0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ab0001-03160502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ab0001-03160502.png",
"name": "Cleo",
"release": {
"au": "2016-11-10",
@@ -43070,7 +43070,7 @@
}
],
"head": "018c0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018c0101-01180502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018c0101-01180502.png",
"name": "Digby - Raincoat",
"release": {
"au": "2016-03-19",
@@ -43087,7 +43087,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cf0501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0501-02b80e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0501-02b80e02.png",
"name": "Rosalina - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -43129,7 +43129,7 @@
}
],
"head": "0a0d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0d0001-03c40502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0d0001-03c40502.png",
"name": "Cyd",
"release": {
"au": "2021-11-05",
@@ -43259,7 +43259,7 @@
}
],
"head": "00050000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00050000-00390102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00050000-00390102.png",
"name": "Bowser",
"release": {
"au": "2015-03-21",
@@ -43301,7 +43301,7 @@
}
],
"head": "0a200001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a200001-03d70502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a200001-03d70502.png",
"name": "Faith",
"release": {
"au": "2021-11-05",
@@ -43355,7 +43355,7 @@
}
],
"head": "03ad0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ad0001-01b20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ad0001-01b20502.png",
"name": "Annalise",
"release": {
"au": "2016-06-18",
@@ -43493,7 +43493,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-003d0102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-003d0102.png",
"name": "Mario - Silver Edition",
"release": {
"au": "2015-05-30",
@@ -43523,7 +43523,7 @@
}
],
"head": "1bd70000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1bd70000-03860002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1bd70000-03860002.png",
"name": "Incineroar",
"release": {
"au": "2019-11-15",
@@ -43540,7 +43540,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c40501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40501-02810e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c40501-02810e02.png",
"name": "Yoshi - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -43594,7 +43594,7 @@
}
],
"head": "02c90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c90001-00cd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02c90001-00cd0502.png",
"name": "Sly",
"release": {
"au": "2015-11-21",
@@ -43648,7 +43648,7 @@
}
],
"head": "02990001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02990001-00950502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02990001-00950502.png",
"name": "Goose",
"release": {
"au": "2015-10-03",
@@ -43726,7 +43726,7 @@
}
],
"head": "08040000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08040000-03770402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08040000-03770402.png",
"name": "Marina",
"release": {
"au": "2018-07-13",
@@ -43792,7 +43792,7 @@
}
],
"head": "08040000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08040000-04390402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08040000-04390402.png",
"name": "Marina - Side Order",
"release": {
"au": "2024-09-05",
@@ -43834,7 +43834,7 @@
}
],
"head": "32400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_32400000-025b0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_32400000-025b0002.png",
"name": "Bayonetta",
"release": {
"au": "2017-07-22",
@@ -43888,7 +43888,7 @@
}
],
"head": "03080001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03080001-014d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03080001-014d0502.png",
"name": "Joey",
"release": {
"au": "2016-03-19",
@@ -43918,7 +43918,7 @@
}
],
"head": "1d400000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1d400000-03870002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_1d400000-03870002.png",
"name": "Pokemon Trainer",
"release": {
"au": "2019-07-19",
@@ -43972,7 +43972,7 @@
}
],
"head": "02620001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02620001-01370502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02620001-01370502.png",
"name": "Tangy",
"release": {
"au": "2016-03-19",
@@ -44026,7 +44026,7 @@
}
],
"head": "04880001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04880001-00980502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04880001-00980502.png",
"name": "Pancetti",
"release": {
"au": "2015-10-03",
@@ -44080,7 +44080,7 @@
}
],
"head": "05c20000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c20000-037f0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c20000-037f0002.png",
"name": "Ridley",
"release": {
"au": "2018-12-07",
@@ -44097,7 +44097,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c70401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70401-028f0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c70401-028f0e02.png",
"name": "Donkey Kong - Golf",
"release": {
"au": "2017-03-11",
@@ -44151,7 +44151,7 @@
}
],
"head": "036d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036d0001-03040502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036d0001-03040502.png",
"name": "Louie",
"release": {
"au": "2016-11-10",
@@ -44205,7 +44205,7 @@
}
],
"head": "040c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040c0001-01590502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_040c0001-01590502.png",
"name": "Dora",
"release": {
"au": "2016-03-19",
@@ -44259,7 +44259,7 @@
}
],
"head": "02a50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a50001-018c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a50001-018c0502.png",
"name": "Broffina",
"release": {
"au": "2016-06-18",
@@ -44313,7 +44313,7 @@
}
],
"head": "043e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043e0001-01490502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043e0001-01490502.png",
"name": "Blanche",
"release": {
"au": "2016-03-19",
@@ -44330,7 +44330,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c00501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00501-026d0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00501-026d0e02.png",
"name": "Mario - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -44384,7 +44384,7 @@
}
],
"head": "03ee0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ee0001-008b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03ee0001-008b0502.png",
"name": "Lionel",
"release": {
"au": "2015-10-03",
@@ -44438,7 +44438,7 @@
}
],
"head": "023d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023d0001-01b50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_023d0001-01b50502.png",
"name": "Jacques",
"release": {
"au": "2016-06-18",
@@ -44492,7 +44492,7 @@
}
],
"head": "04c50001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c50001-01010502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c50001-01010502.png",
"name": "Vesta",
"release": {
"au": "2015-11-21",
@@ -44546,7 +44546,7 @@
}
],
"head": "03560001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03560001-01350502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03560001-01350502.png",
"name": "Chevre",
"release": {
"au": "2016-03-19",
@@ -44600,7 +44600,7 @@
}
],
"head": "02fc0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02fc0001-018f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02fc0001-018f0502.png",
"name": "Shep",
"release": {
"au": "2016-06-18",
@@ -44690,7 +44690,7 @@
}
],
"head": "35c20000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c20000-036d0a02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c20000-036d0a02.png",
"name": "Specter Knight",
"release": {
"au": null,
@@ -44744,7 +44744,7 @@
}
],
"head": "05110001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05110001-01950502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05110001-01950502.png",
"name": "Fang",
"release": {
"au": "2016-06-18",
@@ -44810,7 +44810,7 @@
}
],
"head": "01810501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810501-03bf0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01810501-03bf0502.png",
"name": "Isabelle - Sweater",
"release": {
"au": "2021-11-05",
@@ -44864,7 +44864,7 @@
}
],
"head": "04970001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04970001-007a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04970001-007a0502.png",
"name": "Snake",
"release": {
"au": "2015-10-03",
@@ -44922,7 +44922,7 @@
}
],
"head": "0a1c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1c0001-03d30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a1c0001-03d30502.png",
"name": "Rio",
"release": {
"au": "2021-11-05",
@@ -44976,7 +44976,7 @@
}
],
"head": "028b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028b0001-00e30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028b0001-00e30502.png",
"name": "Pekoe",
"release": {
"au": "2015-11-21",
@@ -45030,7 +45030,7 @@
}
],
"head": "01930001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01930001-01740502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01930001-01740502.png",
"name": "Celeste",
"release": {
"au": "2016-06-18",
@@ -45084,7 +45084,7 @@
}
],
"head": "02b70001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b70001-030f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02b70001-030f0502.png",
"name": "Norma",
"release": {
"au": "2016-11-10",
@@ -45138,7 +45138,7 @@
}
],
"head": "02eb0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02eb0001-00de0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02eb0001-00de0502.png",
"name": "Butch",
"release": {
"au": "2015-11-21",
@@ -45192,7 +45192,7 @@
}
],
"head": "04ee0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ee0001-014b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ee0001-014b0502.png",
"name": "Marshal",
"release": {
"au": "2016-03-19",
@@ -45270,7 +45270,7 @@
}
],
"head": "08050300",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050300-03900402.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_08050300-03900402.png",
"name": "Octoling Octopus",
"release": {
"au": "2018-11-11",
@@ -45400,7 +45400,7 @@
}
],
"head": "00000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-02380602.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00000000-02380602.png",
"name": "8-Bit Mario Classic Color",
"release": {
"au": "2015-09-12",
@@ -45454,7 +45454,7 @@
}
],
"head": "02600001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02600001-00d20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02600001-00d20502.png",
"name": "Olivia",
"release": {
"au": "2015-11-21",
@@ -45604,7 +45604,7 @@
}
],
"head": "01010000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-000e0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01010000-000e0002.png",
"name": "Zelda",
"release": {
"au": "2014-12-12",
@@ -45694,7 +45694,7 @@
}
],
"head": "05c00000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00000-03651302.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05c00000-03651302.png",
"name": "Samus Aran",
"release": {
"au": "2017-09-16",
@@ -45748,7 +45748,7 @@
}
],
"head": "02d80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d80001-00e20502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02d80001-00e20502.png",
"name": "Zell",
"release": {
"au": "2015-11-21",
@@ -45802,7 +45802,7 @@
}
],
"head": "03830001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03830001-009b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03830001-009b0502.png",
"name": "Clay",
"release": {
"au": "2015-10-03",
@@ -45819,7 +45819,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cb0301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0301-02a20e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cb0301-02a20e02.png",
"name": "Boo - Tennis",
"release": {
"au": "2017-03-11",
@@ -45873,7 +45873,7 @@
}
],
"head": "02ea0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ea0001-01800502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02ea0001-01800502.png",
"name": "Goldie",
"release": {
"au": "2016-06-18",
@@ -45903,7 +45903,7 @@
}
],
"head": "38020001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38020001-03951702.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_38020001-03951702.png",
"name": "Yabe",
"release": {
"au": null,
@@ -45945,7 +45945,7 @@
}
],
"head": "22800000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22800000-002c0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22800000-002c0002.png",
"name": "Ness",
"release": {
"au": "2015-04-25",
@@ -46035,7 +46035,7 @@
}
],
"head": "35c10000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c10000-036c0a02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35c10000-036c0a02.png",
"name": "Plague Knight",
"release": {
"au": null,
@@ -46089,7 +46089,7 @@
}
],
"head": "03410001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03410001-030e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03410001-030e0502.png",
"name": "Tad",
"release": {
"au": "2016-11-10",
@@ -46143,7 +46143,7 @@
}
],
"head": "041d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041d0001-018a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_041d0001-018a0502.png",
"name": "Penelope",
"release": {
"au": "2016-06-18",
@@ -46160,7 +46160,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cf0401",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0401-02b70e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cf0401-02b70e02.png",
"name": "Rosalina - Golf",
"release": {
"au": "2017-03-11",
@@ -46190,7 +46190,7 @@
}
],
"head": "07420000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07420000-001f0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_07420000-001f0002.png",
"name": "Palutena",
"release": {
"au": "2015-07-04",
@@ -46244,7 +46244,7 @@
}
],
"head": "04cd0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04cd0001-01520502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04cd0001-01520502.png",
"name": "Curlos",
"release": {
"au": "2016-03-19",
@@ -46298,7 +46298,7 @@
}
],
"head": "04100001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04100001-007f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04100001-007f0502.png",
"name": "Samson",
"release": {
"au": "2015-10-03",
@@ -46352,7 +46352,7 @@
}
],
"head": "01a60001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a60001-00500502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a60001-00500502.png",
"name": "Saharah",
"release": {
"au": "2015-10-03",
@@ -46406,7 +46406,7 @@
}
],
"head": "03d90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d90001-01a50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03d90001-01a50502.png",
"name": "Walt",
"release": {
"au": "2016-06-18",
@@ -46460,7 +46460,7 @@
}
],
"head": "043b0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043b0001-03030502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_043b0001-03030502.png",
"name": "Julia",
"release": {
"au": "2016-11-10",
@@ -46514,7 +46514,7 @@
}
],
"head": "037e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_037e0001-01560502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_037e0001-01560502.png",
"name": "Hamlet",
"release": {
"au": "2016-03-19",
@@ -46568,7 +46568,7 @@
}
],
"head": "02200001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02200001-00fd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02200001-00fd0502.png",
"name": "Charlise",
"release": {
"au": "2015-11-21",
@@ -46622,7 +46622,7 @@
}
],
"head": "03c00001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c00001-03100502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03c00001-03100502.png",
"name": "Gonzo",
"release": {
"au": "2016-11-10",
@@ -46676,7 +46676,7 @@
}
],
"head": "03230001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03230001-00760502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03230001-00760502.png",
"name": "Opal",
"release": {
"au": "2015-10-03",
@@ -46730,7 +46730,7 @@
}
],
"head": "046c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046c0001-008c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_046c0001-008c0502.png",
"name": "Flo",
"release": {
"au": "2015-10-03",
@@ -46784,7 +46784,7 @@
}
],
"head": "02a40001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a40001-00720502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02a40001-00720502.png",
"name": "Knox",
"release": {
"au": "2015-10-03",
@@ -46874,7 +46874,7 @@
}
],
"head": "00080000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00080000-02640102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_00080000-02640102.png",
"name": "Donkey Kong",
"release": {
"au": "2016-10-08",
@@ -46928,7 +46928,7 @@
}
],
"head": "02fb0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02fb0001-00900502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_02fb0001-00900502.png",
"name": "Cherry",
"release": {
"au": "2015-10-03",
@@ -46994,7 +46994,7 @@
}
],
"head": "018d0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018d0000-024c0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018d0000-024c0502.png",
"name": "Rover",
"release": {
"au": "2016-03-19",
@@ -47048,7 +47048,7 @@
}
],
"head": "03820001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03820001-016b0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_03820001-016b0502.png",
"name": "Soleil",
"release": {
"au": "2016-03-19",
@@ -47102,7 +47102,7 @@
}
],
"head": "028d0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028d0001-01bd0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028d0001-01bd0502.png",
"name": "Barold",
"release": {
"au": "2016-06-18",
@@ -47119,7 +47119,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ce0201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0201-02b00e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ce0201-02b00e02.png",
"name": "Birdo - Baseball",
"release": {
"au": "2017-03-11",
@@ -47221,7 +47221,7 @@
}
],
"head": "000a0000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_000a0000-00380102.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_000a0000-00380102.png",
"name": "Toad",
"release": {
"au": "2015-03-21",
@@ -47275,7 +47275,7 @@
}
],
"head": "04000001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04000001-006f0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04000001-006f0502.png",
"name": "Shari",
"release": {
"au": "2015-10-03",
@@ -47329,7 +47329,7 @@
}
],
"head": "01a30001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a30001-004a0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01a30001-004a0502.png",
"name": "Joan",
"release": {
"au": "2015-10-03",
@@ -47346,7 +47346,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09ca0101",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0101-029b0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09ca0101-029b0e02.png",
"name": "Bowser Jr. - Soccer",
"release": {
"au": "2017-03-11",
@@ -47400,7 +47400,7 @@
}
],
"head": "04ed0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ed0001-00620502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04ed0001-00620502.png",
"name": "Sheldon",
"release": {
"au": "2015-10-03",
@@ -47454,7 +47454,7 @@
}
],
"head": "028c0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028c0001-013e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_028c0001-013e0502.png",
"name": "Chester",
"release": {
"au": "2016-03-19",
@@ -47471,7 +47471,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09cd0501",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0501-02ae0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09cd0501-02ae0e02.png",
"name": "Baby Luigi - Horse Racing",
"release": {
"au": "2017-03-11",
@@ -47525,7 +47525,7 @@
}
],
"head": "021f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021f0001-03170502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_021f0001-03170502.png",
"name": "Ike",
"release": {
"au": "2016-11-10",
@@ -47579,7 +47579,7 @@
}
],
"head": "01970001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01970001-01770502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01970001-01770502.png",
"name": "Leilani",
"release": {
"au": "2016-06-18",
@@ -47633,7 +47633,7 @@
}
],
"head": "05140001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05140001-01530502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05140001-01530502.png",
"name": "Skye",
"release": {
"au": "2016-03-19",
@@ -47675,7 +47675,7 @@
}
],
"head": "0a020001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a020001-03b30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a020001-03b30502.png",
"name": "C.J.",
"release": {
"au": "2021-11-05",
@@ -47692,7 +47692,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09d00201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00201-02ba0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09d00201-02ba0e02.png",
"name": "Metal Mario - Baseball",
"release": {
"au": "2017-03-11",
@@ -47734,7 +47734,7 @@
}
],
"head": "35090000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35090000-04101802.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_35090000-04101802.png",
"name": "Palico",
"release": {
"au": "2021-03-26",
@@ -47751,7 +47751,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c00201",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00201-026a0e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c00201-026a0e02.png",
"name": "Mario - Baseball",
"release": {
"au": "2017-03-11",
@@ -47805,7 +47805,7 @@
}
],
"head": "01940001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01940001-03b60502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01940001-03b60502.png",
"name": "Kicks",
"release": {
"au": "2021-11-05",
@@ -47859,7 +47859,7 @@
}
],
"head": "04c80001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c80001-02ed0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04c80001-02ed0502.png",
"name": "Stella",
"release": {
"au": "2016-11-10",
@@ -47913,7 +47913,7 @@
}
],
"head": "05100001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05100001-01070502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_05100001-01070502.png",
"name": "Freya",
"release": {
"au": "2015-11-21",
@@ -47955,7 +47955,7 @@
}
],
"head": "0a0e0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0e0001-03c50502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_0a0e0001-03c50502.png",
"name": "Judy",
"release": {
"au": "2021-11-05",
@@ -48009,7 +48009,7 @@
}
],
"head": "036a0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036a0001-019d0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_036a0001-019d0502.png",
"name": "Peewee",
"release": {
"au": "2016-06-18",
@@ -48063,7 +48063,7 @@
}
],
"head": "01830301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830301-03be0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_01830301-03be0502.png",
"name": "Tom Nook - Coat",
"release": {
"au": "2021-11-05",
@@ -48080,7 +48080,7 @@
"gameSeries": "Mario Sports Superstars",
"gamesSwitch": [],
"head": "09c80301",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80301-02930e02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_09c80301-02930e02.png",
"name": "Diddy Kong - Tennis",
"release": {
"au": "2017-03-11",
@@ -48134,7 +48134,7 @@
}
],
"head": "018f0001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018f0001-00b30502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_018f0001-00b30502.png",
"name": "Don Resetti",
"release": {
"au": "2015-11-21",
@@ -48188,7 +48188,7 @@
}
],
"head": "04b90001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b90001-01600502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04b90001-01600502.png",
"name": "Merengue",
"release": {
"au": "2016-03-19",
@@ -48242,7 +48242,7 @@
}
],
"head": "04d10001",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d10001-009e0502.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_04d10001-009e0502.png",
"name": "Muffy",
"release": {
"au": "2015-10-03",
@@ -48272,7 +48272,7 @@
}
],
"head": "22430000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22430000-043d1b02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22430000-043d1b02.png",
"name": "Noah",
"release": {
"au": "2024-01-19",
@@ -48302,7 +48302,7 @@
}
],
"head": "22440000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22440000-043e1b02.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_22440000-043e1b02.png",
"name": "Mio",
"release": {
"au": "2024-01-19",
@@ -48332,7 +48332,7 @@
}
],
"head": "3f000000",
- "image": "https://raw.githubusercontent.com/GreemDev/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3f000000-042e0002.png",
+ "image": "https://raw.githubusercontent.com/Ryubing/Ryujinx/refs/heads/master/assets/amiibo/images/icon_3f000000-042e0002.png",
"name": "Sora",
"release": {
"au": "2024-02-16",
diff --git a/distribution/macos/shortcut-template.plist b/distribution/macos/shortcut-template.plist
index 27a9e46a9..c6368a08f 100644
--- a/distribution/macos/shortcut-template.plist
+++ b/distribution/macos/shortcut-template.plist
@@ -19,7 +19,7 @@