-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMove.java
83 lines (64 loc) · 1.45 KB
/
Move.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import java.io.*;
import java.util.ArrayList;
import java.util.Scanner;
public class Move {
private String Name;
private String Type;
private int Power;
private char Category;
private char Contact;
private char SpecialMod;
public Move (String Name, String Type, int Power, char Category, char Contact) {
this.Name= Name;
this.Type = Type;
this.Power = Power;
this.Category = Category;
this.Contact = Contact;
}
public Move (String Name, String Type, int Power, char Category,char Contact, char SpecialMod) {
this.Name= Name;
this.Type = Type;
this.Power = Power;
this.Category = Category;
this.Contact = Contact;
this.SpecialMod = SpecialMod;
}
public static Move getMoveObject(String MoveName, ArrayList<Move> Action) {
int i = -1;
do {
i++;
} while (!MoveName.equals(Action.get(i).getName()));
return Action.get(i);
}
public String getName() {
return Name;
}
public String getType() {
return Type;
}
public int getPower() {
return Power;
}
public char getCategory() {
return Category;
}
public char getSpecialMod() {
return SpecialMod;
}
public char getContact() {
return Contact;
}
public int getStrikeType(char StrikeType, int Strike, Scanner scanner) {
if (StrikeType == 'D') {
Strike = 2;
}
if (StrikeType == 'M') {
System.out.println("Number of strikes?");
Strike = scanner.nextInt();
}
return Strike;
}
public String toString() {
return Name;
}
}