-
Notifications
You must be signed in to change notification settings - Fork 0
/
ds.3
43 lines (38 loc) · 1.07 KB
/
ds.3
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
36
37
38
39
40
41
42
43
// Definindo a classe Heroi
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 = "usou um ataque desconhecido";
}
console.log(`O ${this.tipo} atacou usando ${ataque}`);
}
}
// Exemplo de uso
let heroi1 = new Heroi("Herói 1", 30, "mago");
let heroi2 = new Heroi("Herói 2", 25, "guerreiro");
let heroi3 = new Heroi("Herói 3", 28, "monge");
let heroi4 = new Heroi("Herói 4", 22, "ninja");
// Atacando
heroi1.atacar(); // Saída: O mago atacou usando magia
heroi2.atacar(); // Saída: O guerreiro atacou usando espada
heroi3.atacar(); // Saída: O monge atacou usando artes marciais
heroi4.atacar(); // Saída: O ninja atacou usando shuriken