-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrolls.json
More file actions
30 lines (30 loc) · 766 Bytes
/
rolls.json
File metadata and controls
30 lines (30 loc) · 766 Bytes
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
{
"rock": {
"defeats": ["fire", "scissors", "sponge"],
"defeated_by": ["paper", "air", "water"]
},
"paper": {
"defeats": ["rock", "water", "air"],
"defeated_by": ["scissors", "fire", "sponge"]
},
"scissors": {
"defeats": ["paper", "sponge", "air"],
"defeated_by": ["fire", "rock", "water"]
},
"fire": {
"defeats": ["scissors", "sponge", "paper"],
"defeated_by": ["rock", "water", "air"]
},
"sponge": {
"defeats": ["paper", "air", "water"],
"defeated_by": ["rock", "fire", "scissors"]
},
"air": {
"defeats": ["water", "rock", "fire"],
"defeated_by": ["paper", "sponge", "scissors"]
},
"water": {
"defeats": ["rock", "fire", "scissors"],
"defeated_by": ["air", "paper", "sponge"]
}
}