blob: 5706ba14279ed872daca5e76ded49fb7807da52f (
plain) (
blame)
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
|
package models;
import java.io.Serializable;
public class Ability implements Serializable {
public long id;
public long monsterId;
public String Name;
public String description;
public AbilityType type;
public float power;
public Ability() {
super();
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public long getMonsterId() {
return monsterId;
}
public void setMonsterId(long monsterId) {
this.monsterId = monsterId;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public AbilityType getType() {
return type;
}
public void setType(AbilityType type) {
this.type = type;
}
public float getPower() {
return power;
}
public void setPower(float power) {
this.power = power;
}
}
|