blob: 419861be9b876eff95025e0b6defb50edbe2fd58 (
plain)
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
|
package eu.equalparts.cardbase.cards;
import eu.equalparts.cardbase.comparator.SpecialFields.DirtyNumber;
import eu.equalparts.cardbase.comparator.SpecialFields.Rarity;
public class Card {
public String name;
public String layout;
public String manaCost;
public Integer cmc;
public String type;
@Rarity
public String rarity;
public String text;
public String flavor;
public String artist;
@DirtyNumber
public String number;
@DirtyNumber
public String power;
@DirtyNumber
public String toughness;
public Integer loyalty;
public Integer multiverseid;
public String imageName;
public String watermark;
// Not part of upstream JSON
public String setCode;
public String imageCode;
public Integer count;
@Override
public Card clone() {
Card clone = new Card();
clone.name = this.name;
clone.layout = this.layout;
clone.manaCost = this.manaCost;
clone.cmc = this.cmc;
clone.type = this.type;
clone.rarity = this.rarity;
clone.text = this.text;
clone.flavor = this.flavor;
clone.artist = this.artist;
clone.number = this.number;
clone.power = this.power;
clone.toughness = this.toughness;
clone.loyalty = this.loyalty;
clone.multiverseid = this.multiverseid;
clone.imageName = this.imageName;
clone.watermark = this.watermark;
clone.setCode = this.setCode;
clone.imageCode = this.imageCode;
clone.count = this.count;
return clone;
}
}
|