-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquest.json
109 lines (109 loc) · 3.58 KB
/
quest.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "PickupCoins",
"description": "Add kind to the firs action",
"definition": {
"steps": [
{
"id": "start_talk",
"description": "Talk to the NPC",
"tasks": [
{
"id": "start_quest",
"description": "Start the quest",
"actionItems": [
{
"type": "CUSTOM",
"parameters": {
"id": "user_ok"
}
}
]
}
]
},
{
"id": "pick_up_coins",
"description": "Pickups all coins",
"tasks": [
{
"id": "coin_1",
"description": "Pickup coin 1",
"actionItems": [
{
"type": "CUSTOM",
"parameters": {
"id": "coin1"
}
}
]
},
{
"id": "coin_2",
"description": "Pickup coin 2",
"actionItems": [
{
"type": "CUSTOM",
"parameters": {
"id": "coin2"
}
}
]
},
{
"id": "coin_3",
"description": "Pickup coin 3",
"actionItems": [
{
"type": "CUSTOM",
"parameters": {
"id": "coin3"
}
}
]
},
{
"id": "coin_4",
"description": "Pickup coin 4",
"actionItems": [
{
"type": "CUSTOM",
"parameters": {
"id": "coin4"
}
}
]
}
]
},
{
"id": "finish_talk",
"description": "Talk again to the NPC",
"tasks": [
{
"id": "end_talk",
"description": "Talk",
"actionItems": [
{
"type": "CUSTOM",
"parameters": {
"id": "receive_reward"
}
}
]
}
]
}
],
"connections": [
{
"stepFrom": "start_talk",
"stepTo": "pick_up_coins"
},
{
"stepFrom": "pick_up_coins",
"stepTo": "finish_talk"
}
]
},
"imageUrl": "https://avatars.githubusercontent.com/u/36207937?v=4"
}