Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 230 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 230 Bytes

pokemon

Class Pokemon

const myPikachu = new Pokemon({
  id: 25,
  level: 50,
  nature: Pokemon.Nature.HARDY,
  effort: {
    satk: 252
  },
  individual: {
    satk: 31
  }
})

myPikachu.getSatk() // => 102