Skip to content

Instantly share code, notes, and snippets.

View moiseslodeiro's full-sized avatar
😀

Moisés Lodeiro moiseslodeiro

😀
View GitHub Profile
class Pokemon {
constructor (name, level, type) {
this.hp = 200
this.name = name
this.type = type
this.level = level
this.attack = 0
this.defense = 0
}