This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Hibiscus with Blue Flowers": { | |
| "min": 95, | |
| "max": 282, | |
| "average": 188, | |
| "overlap": 0, | |
| "data": [ | |
| { | |
| "set": "Quaint Cottage Collection", | |
| "owned": 31, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Random swaps picker for Faulty Technology Pokémon challenge runs. | |
| Inspired by the challenge as found on Smogon's forums | |
| https://www.smogon.com/forums/threads/faulty-technology.3509964/ | |
| This script requires Python 3.6 or above. | |
| Can be run from a command prompt/terminal with no arguments: | |
| Windows: | |
| py -3 faulty_technology.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <pksm.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| int main(int argc, char **argv) | |
| { | |
| unsigned char *saveData = (unsigned char *)atoi(argv[0]); | |
| unsigned char version = *argv[2]; | |
| struct pkx options[28]; | |
| char *labels[28] = {0}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <picoc_unix.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| int main(int argc, char** argv) | |
| { | |
| unsigned char* saveData = (unsigned char*) atoi(argv[0]); | |
| int saveLength = atoi(argv[1]); | |
| char* languages[7] = {"\u65e5\u672c\u8a9e", "English", "Fran\u00e7ais", "Italiano", "Deutsche", "Espa\u00f1ol", "\ud55c\uad6d\uc5b4"}; |