This file contains 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 <pebble.h> | |
#include "pokedex.h" | |
#define POKEDEX_DATA 0 | |
#define DATA 0 | |
int DEBUG = 0; | |
int pokedex[152]; | |
uint8_t array[19]; |
This file contains 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
var DEBUG = true; | |
//var name = "name", type = "type", stage = "stage", caught = "caught"; | |
var grass = "grass", water = "water", fire = "fire", bug = "bug", | |
psychic = "psychic", flying = "flying", ghost = "ghost", fighting = "fighting", | |
normal = "normal", poison = "poison", electric = "electric", ground = "ground", | |
fairy = "fairy", rock = "rock", ice = "ice", dragon = "dragon"; | |
var Pokemon = [ | |
{ name : "MissingNo", type : "blank", stage : 100, caught : 0, species : "Glitch Pokemon"}, |
This file contains 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
/* | |
This File Contains all the Pokemon Information | |
Kanto Pokedex | |
001 ... 151 | |
Bulbasaur Mew | |
*/ | |
#define NUM_POKEMON 151 |