-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio.js
35 lines (32 loc) · 831 Bytes
/
desafio.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class Heroi {
constructor(nome, idade, tipo) {
this.nome = nome;
this.idade = idade;
this.tipo = tipo;
}
atacar() {
let ataque;
switch (this.tipo) {
case 'mago':
ataque = 'usou magia';
break;
case 'guerreiro':
ataque = 'usou espada';
break;
case 'monge':
ataque = 'usou artes marciais';
break;
case 'ninja':
ataque = 'usou shuriken';
break;
default:
ataque = 'não tem um ataque definido';
}
console.log(`o ${this.tipo} atacou usando ${ataque}`);
}
}
// Exemplo de uso:
/*const heroi1 = new Heroi('Arthur', 30, 'guerreiro');
heroi1.atacar(); // Saída: o guerreiro atacou usando espada*/
const heroi1 = new Heroi('Diego', 25, 'mago');
heroi1.atacar(); // Saída: o mago atacou usando magia