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
pokemon | moves | |
-----------------------+------- | |
mew | 242 | |
clefable | 144 | |
clefairy | 141 | |
mewtwo | 134 | |
mewtwo-mega-x | 134 | |
mewtwo-mega-y | 134 | |
gallade | 131 | |
gallade-mega | 131 |
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
root stage | count | |
------------+------- | |
eevee | 50 | |
ralts | 43 | |
luvdisc | 36 | |
meowth | 30 | |
charmander | 26 | |
shinx | 26 | |
gastly | 25 | |
magikarp | 25 |
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
pokemon | move | |
---------------------+------------ | |
bulbasaur | sunny-day | |
ivysaur | sunny-day | |
venusaur | sunny-day | |
venusaur-mega | sunny-day | |
charmander | sunny-day | |
charmeleon | sunny-day | |
caterpie | | |
metapod | |
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
Bul-basaur | |
Ivysaur | |
Venusaur | |
Char-man-der | |
Charmeleon | |
Charizard | |
Squir-tle | |
Wartor-tle | |
Blas-toise | |
Cater-pie |
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
identifier | experience | |
-------------+------------ | |
ivysaur | 2 | |
venusaur | 6 | |
charmeleon | 2 | |
charizard | 6 | |
wartortle | 2 | |
blastoise | 6 | |
metapod | 2 | |
butterfree | 6 |
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
identifier | |
------------ | |
farfetchd | |
hitmonlee | |
hitmonchan | |
hitmontop | |
ditto | |
sudowoodo | |
unown | |
wobbuffet |
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
pidgey | |
pidgeotto | |
pidgeot | |
spearow | |
ekans | |
arbok | |
nidoran-f | |
nidorina | |
nidoqueen | |
nidoran-m |
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
/* | |
Rip the face sprites from Pokémon Super Mystery Dungeon. | |
The sprites are in romfs/face_graphic.bin. They're all in a seemingly-random | |
order and I haven't figured out how to map them to Pokémon yet. | |
*/ | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> |
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
╔═╦╗╔╦═╦═╦╗╔╗Put This On | |
║═╣║║║╔╣╔╣╚╝║Your Channel If | |
║╔╣╚╝║║║║╚╗╔╝You Are Or | |
╚╝╚══╩╝╚╝♥╚╝Support Furries |
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
bulbasaur: grass/poison | |
ivysaur: grass/poison | |
venusaur: grass/poison | |
venusaur-mega: grass/poison | |
charmander: fire | |
charmeleon: fire | |
charizard: fire/flying | |
charizard-mega-x: fire/dragon | |
charizard-mega-y: fire/flying | |
squirtle: water |