forked from l-amb/RetroCity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuests.json
More file actions
109 lines (109 loc) · 2.2 KB
/
Quests.json
File metadata and controls
109 lines (109 loc) · 2.2 KB
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
{
"TutorialI": {
"name": "TutorialI",
"display": "Tutorial Quest",
"info": "Hello & welcome to Retro City, to start off try and harvest the bushes behind you.",
"tasktype": "Harvest",
"countmin": 0,
"countmax": 2,
"reward": [
{
"rtype": "Money",
"data": 5
},
{
"rtype": "Quest",
"data": "TutorialII"
}
],
"requirement": []
},
"TutorialII": {
"name": "TutorialII",
"display": "Tutorial Quest",
"info": "Great Job, I gave you $5 for that. Now you have to enter the yellow supermarket and sell your fruits on the right.",
"tasktype": "SellFruit",
"countmin": 0,
"countmax": 2,
"reward": [
{
"rtype": "Money",
"data": 10
}
],
"requirement": [
{
"rtype": "Quest",
"data": "TutorialI"
}
]
},
"FishingI": {
"name": "FishingI",
"display": "Fishing Quest I",
"info": "To prove that you can fish, you need to collect {min}/{max} of any kind of fish.",
"tasktype": "Fish",
"countmin": 0,
"countmax": 3,
"reward": [
{
"rtype": "Money",
"data": 120
}
],
"requirement": [
{
"rtype": "Item",
"data": "Fishing Rod"
}
]
},
"FishingII": {
"name": "FishingII",
"display": "Fishing Quest II",
"info": "Last time, you need to collect {min}/{max} of any kind of fish.",
"tasktype": "Fish",
"countmin": 0,
"countmax": 18,
"reward": [
{
"rtype": "Money",
"data": 250
}
],
"requirement": [
{
"rtype": "Item",
"data": "Fishing Rod"
},
{
"rtype": "Quest",
"data": "FishingI"
}
]
},
"FishingIII": {
"name": "FishingIII",
"display": "Fishing Quest III",
"info": "Get Tony to apply gold to your fishing rod. {min}/{max}",
"tasktype": "Fish",
"countmin": 0,
"countmax": 1,
"reward": [
{
"rtype": "Money",
"data": 85
}
],
"requirement": [
{
"rtype": "Item",
"data": "Fishing Rod"
},
{
"rtype": "Quest",
"data": "FishingII"
}
]
}
}