-
Notifications
You must be signed in to change notification settings - Fork 0
/
cards.js
142 lines (140 loc) · 2.21 KB
/
cards.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
module.exports = {
cards: [
{
"name": "Jab",
"type": "Strike",
"value": 1,
"text": "Cannot be blocked by multi attacks",
},
{
"name": "Cross Chop",
"type": "Chop",
"value": 1,
},
{
"name": "Curb Stomp",
"type": "Stomp",
"value": 1,
"text": "Some kind of stun effect",
},
{
"name": "Hook",
"type": "Strike",
"value": 2,
},
{
"name": "Back Kick",
"type": "Kick",
"value": 2,
},
{
"name": "Atomic Drop",
"type": "Drop",
"value": 2,
"text": "If this move is not blocked, your opponent discards two cards",
},
{
"name": "Lariat",
"type": "Throw",
"value": 2,
"text": "Can only be blocked by moves of 3 or more",
},
{
"name": "Slam",
"type": "Throw",
"value": 3,
},
{
"name": "Double Axe Handle",
"type": "Strike",
"value": 3,
},
{
"name": "Driver",
"type": "Throw",
"value": 3,
},
{
"name": "Uppercut",
"type": "Strike",
"value": 4,
"text": "Can be blocked by moves of 3 or more"
},
{
"name": "Headbutt",
"type": "Strike",
"value": 4,
},
{
"name": "Facebuster",
"type": "Throw",
"value": 4,
},
{
"name": "Armbreaker",
"type": "Throw",
"value": 4,
},
{
"name": "DDT",
"type": "Throw",
"value": 5,
},
{
"name": "Throat Slash",
"type": "Taunt",
"value": 1,
"text": "Your opponent discards a card (and redraws)",
},
{
"name": "Grapple",
"type": "Grapple",
"value": 2,
},
{
"name": "Flip the bird",
"type": "Taunt",
"value": 2,
},
{
"name": "Suck It!",
"type": "Taunt",
"value": 3,
},
{
"name": "The Four Horsemen",
"type": "Taunt",
"value": 4,
},
{
"name": "You can’t see me",
"type": "Taunt",
"value": 5,
},
{
"name": "Duck",
"type": "Dodge",
"value": 1,
},
{
"name": "Shoulder Block",
"type": "Block",
"value": 2,
},
{
"name": "Elbow block",
"type": "Block",
"value": 2,
},
{
"name": "Knee block",
"type": "Block",
"value": 2,
},
{
"name": "Sidestep",
"type": "Dodge",
"value": 3,
}
],
};