-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeck.json
74 lines (74 loc) · 1.54 KB
/
deck.json
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
{
"game": {
"players": 2,
"abilities": [
"health", "energy"
]
},
"characters": [
{
"name": "Blob monster",
"health": 5,
"energy": 4,
"ability": "Draw two cards"
}, {
"name": "Bed monster",
"health": 3,
"energy": 5,
"ability": "Discard a card, draw three cards"
}
],
"cards": [
{
"name": "Slimethrower",
"qty": 7,
"type": "action",
"text": "Attack for 2 HP"
}, {
"name": "Laser Eyes",
"qty": 5,
"type": "action",
"text": "Attack for 3 HP"
}, {
"name": "Magnet Hands",
"qty": 0,
"type": "action",
"text": "Draw 4 cards"
}, {
"name": "Tentacles",
"qty": 6,
"type": "action",
"text": "Draw 7 cards"
}, {
"name": "Nullifying Goo",
"qty": 10,
"type": "shield",
"text": "(1E) Block action or shield"
}, {
"name": "Om Nom Nom",
"qty": 8,
"type": "shield",
"text": "(1E) Block action, +1 cards"
}, {
"name": "Solar Power",
"qty": 10,
"type": "shield",
"text": "(3E) Block action or shield, +2 energy"
}, {
"name": "Art of War",
"qty": 8,
"type": "shield",
"text": "(2E) Block action or shield, +1 card, +1 energy"
}, {
"name": "Lucky Break",
"qty": 2,
"type": "shield",
"text": "(0E) Block shield"
}, {
"name": "Soul Eater",
"qty": 4,
"type": "shield",
"text": "(3E) Block shield, enemy gets -2 energy"
}
]
}