-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.json
93 lines (93 loc) · 2.15 KB
/
paths.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[
{
"pathId": 1,
"preSelection": "",
"postSelection": "Does it have limbs?",
"type": "continuation",
"options": [5, 2]
},
{
"pathId": 2,
"preSelection": "No",
"postSelection": "What shaped body does it have?",
"type": "continuation",
"options": [3, 4]
},
{
"pathId": 3,
"preSelection": "Long, slender, tube-shaped",
"postSelection": "Your animal is a caecilian!",
"type": "completion",
"options": [4, 5]
},
{
"pathId": 4,
"preSelection": "Wide head and narrow tail",
"postSelection": "Your animal is a early stage tadpole!",
"type": "completion",
"options": []
},
{
"pathId": 5,
"preSelection": "Yes",
"postSelection": "Does it have a tail?",
"type": "continuation",
"options": [6, 7]
},
{
"pathId": 6,
"preSelection": "Yes",
"postSelection": "Does it's tail have fins?",
"type": "continuation",
"options": [10, 11]
},
{
"pathId": 7,
"preSelection": "No",
"postSelection": "What consistency is the skin of the animal?",
"type": "continuation",
"options": [8, 9]
},
{
"pathId": 8,
"preSelection": "Smooth, most skin without warts or bumps",
"postSelection": "Your animal is an adult frog!",
"type": "completion",
"options": []
},
{
"pathId": 9,
"preSelection": "Bumpy, dry skin with warts, shorter and thicker limbs",
"postSelection": "Your animal is an adult toad!",
"type": "completion",
"options": []
},
{
"pathId": 10,
"preSelection": "Yes",
"postSelection": "Does your animal have gills?",
"type": "continuation",
"options": [12, 13]
},
{
"pathId": 11,
"preSelection": "No",
"postSelection": "Your animal is an adult salamander!",
"type": "completion",
"options": []
},
{
"pathId": 12,
"preSelection": "Frilly, bush like gills protuding from neck",
"postSelection": "Your animal is a larval salamander!",
"type": "completion",
"options": []
},
{
"pathId": 13,
"preSelection": "No gills",
"postSelection": "Your animal is a late-stage tadpole!",
"type": "completion",
"options": []
}
]