dtalley11

examplepokedex.js

Feb 2nd, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Example Pokedex
  2. exports.BattlePokedex = {
  3.     // Pokemon that has a prevo and evo
  4.     charmeleon:{
  5.         num:5,
  6.         species:"Charmeleon",
  7.         types:["Fire"],
  8.         genderRatio:{M:0.875,F:0.125},
  9.         baseStats:{hp:58,atk:64,def:58,spa:80,spd:65,spe:80},
  10.         abilities:{0:"Blaze",H:"Solar Power"},
  11.         heightm:1.1,
  12.         weightkg:19,
  13.         color:"Red",
  14.         prevo:"charmander",
  15.         evos:["charizard"],
  16.         evoLevel:16,
  17.         eggGroups:["Monster","Dragon"]
  18.     },
  19.    
  20.     // Pokemon that has megaevolution
  21.     charizard:{
  22.         num:6,species:"Charizard",
  23.         types:["Fire","Flying"],
  24.         genderRatio:{M:0.875,F:0.125},
  25.         baseStats:{hp:78,atk:84,def:78,spa:109,spd:85,spe:100},
  26.         abilities:{0:"Blaze",H:"Solar Power"},
  27.         heightm:1.7,
  28.         weightkg:90.5,
  29.         color:"Red",
  30.         prevo:"charmeleon",
  31.         evoLevel:36,
  32.         eggGroups:["Monster","Dragon"],
  33.         otherFormes:["charizardmegax","charizardmegay"]
  34.     },
  35.  
  36.     // A megaevolution entry
  37.     charizardmegax:{
  38.         num:6,
  39.         species:"Charizard-Mega-X",
  40.         baseSpecies:"Charizard",
  41.         forme:"Mega-X",
  42.         formeLetter:"M",
  43.         types:["Fire","Dragon"],
  44.         baseStats:{hp:78,atk:130,def:111,spa:130,spd:85,spe:100},
  45.         abilities:{0:"Tough Claws"},
  46.         heightm:1.7,
  47.         weightkg:110.5,
  48.         color:"Red",
  49.         prevo:"charmeleon",
  50.         evoLevel:36,
  51.         eggGroups:["Monster","Dragon"]
  52.     },
  53.  
  54.     // Charizardme Gay
  55.     charizardmegay:{
  56.         num:6,species:"Charizard-Mega-Y",
  57.         baseSpecies:"Charizard",
  58.         forme:"Mega-Y",
  59.         formeLetter:"M",
  60.         types:["Fire","Flying"],
  61.         baseStats:{hp:78,atk:104,def:78,spa:159,spd:115,spe:100},
  62.         abilities:{0:"Drought"},
  63.     `   heightm:1.7,w
  64.         eightkg:100.5,
  65.         color:"Red",
  66.         prevo:"charmeleon",
  67.         evoLevel:36,
  68.         eggGroups:["Monster","Dragon"]
  69.     },
  70.  
  71.     // Base pokemon who doesn't evolve
  72.     zapdos:{
  73.         num:145,
  74.         species:"Zapdos",
  75.         types:["Electric","Flying"],
  76.         gender:"N",
  77.         baseStats:{hp:90,atk:90,def:85,spa:125,spd:90,spe:100},
  78.         abilities:{0:"Pressure",H:"Static"},
  79.         heightm:1.6,
  80.         weightkg:52.6,
  81.         color:"Yellow",
  82.         eggGroups:["Undiscovered"]
  83.     },
  84.  
  85.     // CAP pokemon
  86.     cawmodore:{
  87.         num:-6,
  88.         species:"Cawmodore",
  89.         types:["Steel","Flying"],
  90.         baseStats:{hp:50,atk:92,def:130,spa:65,spd:75,spe:118},
  91.         abilities:{0:"Intimidate",1:"Volt Absorb",H:"Big Pecks"},
  92.         heightm:1.7,
  93.         weightkg:37.0,
  94.         color:"",
  95.         eggGroups:["Flying"]},
  96.        
  97.     // Fakemon Pokemon
  98.     syclant:{
  99.         num:-51,
  100.         species:"Syclant",
  101.         types:["Ice","Bug"],
  102.         baseStats:{hp:70,atk:116,def:70,spa:114,spd:64,spe:121},
  103.         abilities:{0:"Compound Eyes",1:"Mountaineer"},
  104.         heightm:1.7,
  105.         weightkg:52,
  106.         color:"",
  107.         eggGroups:["Bug"]
  108.     },
  109.  
  110.     // This.
  111.     missingno:{
  112.         num:0,
  113.         species:"Missingno.",
  114.         types:["Bird","Normal"],
  115.         baseStats:{hp:33,atk:136,def:0,spa:6,spd:6,spe:29},
  116.         abilities:{0:"",H:""},
  117.         heightm:3,
  118.         weightkg:1590.8,
  119.         color:"Gray",
  120.         eggGroups:["Undiscovered"]
  121.     },
  122. }
Advertisement
Add Comment
Please, Sign In to add comment