Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. const pkmn = {
  3.     bulbasaur: {
  4.         name: 'bulbasaur',
  5.         attacks: [
  6.             {
  7.                 name: 'growl',
  8.                 power: 0
  9.             },
  10.             {
  11.                 name: 'tackle',
  12.                 attack: 5
  13.             }
  14.         ],
  15.         HP: 25,
  16.         defence: 10
  17.     },
  18.     charmander: {
  19.         name: 'charmander',
  20.         attacks: [
  21.             {
  22.                 name: 'tailwhip',
  23.                 power: 0
  24.             },
  25.             {
  26.                 name: 'scratch',
  27.                 attack: 5
  28.             }
  29.         ],
  30.         HP: 25,
  31.         defence: 10
  32.     },
  33.     squirtle: {
  34.         name: 'squirtle',
  35.         attacks: [
  36.             {
  37.                 name: 'growl',
  38.                 power: 0
  39.             },
  40.             {
  41.                 name: 'tackle',
  42.                 attack: 5
  43.             }
  44.         ],
  45.         HP: 25,
  46.         defence: 10
  47.     }
  48. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement