-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesafio do heroi.js
35 lines (32 loc) · 950 Bytes
/
desafio do heroi.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 = 'realizou um ataque desconhecido';
}
console.log(`O ${this.tipo} ${this.nome} atacou usando ${ataque}`);
}
}
// Exemplo de uso:
const heroi1 = new Heroi('Arthur', 30, 'guerreiro');
const heroi2 = new Heroi('Merlin', 150, 'mago');
heroi1.atacar(); // Saída: O guerreiro Arthur atacou usando espada
heroi2.atacar(); // Saída: O mago Merlin atacou usando magia