-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCardArr.js
86 lines (85 loc) · 1.85 KB
/
CardArr.js
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
84
85
86
let CardArr = {
"King": {
"type": "King",
"animations": {
"face": {
"x_px": 9, // 495px
"y_px": 6, // 510px
"frameNr": 48
},
"bg": {
"x_px": 1,
"y_px": 1,
"frameNr": 1
}
},
"description": "The King.",
"cid": null,
"alreadyUsed": false,
"roundsLeft": 10,
"marked": false,
"MPS": 5,
"HP": 5,
"AP": 2,
"AT": "Physical",
"effects": {
"Motivate 1": 0
}
},
"Queen": {
"type": "Queen",
"animations": {
"face": {
"x_px": 1, // 55px
"y_px": 1, // 85px
"frameNr": 1
},
"bg": {
"x_px": 1,
"y_px": 1,
"frameNr": 1
}
},
"frameNr": 1,
"description": "The Queen.",
"cid": null,
"alreadyUsed": false,
"roundsLeft": 10,
"marked": false,
"MPS": 5,
"HP": 5,
"AP": 2,
"AT": "Physical",
"effects": {
"Motivate 2": 0
}
},
"Dwarf": {
"type": "Dwarf",
"animations": {
"face": {
"x_px": 1, // 55px
"y_px": 1, // 85px
"frameNr": 1
},
"bg": {
"x_px": 1,
"y_px": 1,
"frameNr": 1
}
},
"description": "A Dwarf",
"cid": null,
"alreadyUsed": false,
"roundsLeft": 4,
"marked": false,
"MPS": 2,
"HP": 6,
"AP": 3,
"AT": "Physical",
"effects": {
"Blocker": 0
}
}
};
export default CardArr;