Guest User

Untitled

a guest
Jan 12th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // Class pkmn
  2. /*
  3. Plant > Water > Fire > Ground > Rock > Fly > Plant
  4. */
  5.  
  6. module.exports = class Pkmn {
  7. constructor(name, atk, def, type) {
  8. this.name = name;
  9. this.atk = atk;
  10. this.def = def;
  11. this.type = type;
  12. console.log('Pkmn loaded');
  13. }
  14. };
Add Comment
Please, Sign In to add comment