-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathArmadura.java
48 lines (43 loc) · 990 Bytes
/
Armadura.java
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
44
45
46
47
48
import java.util.*;
public class Armadura extends Item
{
private String nome;
private int protecao;
public Armadura(String nome){
this.nome = nome;
if(nome.equals("couro")){
this.protecao = 1;
}else{
if(nome.equals("metal")){
this.protecao = 2;
}
else{
if(nome.equals("mithrill")){
this.protecao = 3;
}
}
}
}
public static Armadura Armadura(){
int numero = (int) (Math.random()*3);
String n = "";
switch (numero) {
case 0:
n = "couro";
break;
case 1:
n = "metal";
break;
case 2:
n = "mithrill";
break;
}
return new Armadura(n);
}
public int getProtecao(){
return protecao;
}
public String getNome(){
return nome;
}
}