-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.lua
106 lines (105 loc) · 4.34 KB
/
config.lua
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
Config = {}
Config.Locale = "pl"
--You can add here buttons like inventory menu button. When player click this button, then action will be cancel.
Config.cancel_buttons = {289, 170, 168, 56}
options =
{
['seed_weed'] = {
object = 'prop_weed_01',
end_object = 'prop_weed_02',
fail_msg = 'Niestety, twoja roślinka zwiędła!',
success_msg = 'Gratulacje, dokonałeś zbiorów z roślinki!',
start_msg = 'Rozpoczynam uprawę rośliniki.',
success_item = 'weed',
cops = 0,
first_step = 2.35,
steps = 7,
cords = {
{x = -427.05, y = 1575.25, z = 357, distance = 20.25},
{x = 2213.05, y = 5576.25, z = 53, distance = 10.25},
{x = 1198.05, y = -215.25, z = 55, distance = 20.25},
{x = 706.05, y = 1269.25, z = 358, distance = 10.25},
},
animations_start = {
{lib = 'amb@world_human_gardener_plant@male@enter', anim = 'enter', timeout = '2500'},
{lib = 'amb@world_human_gardener_plant@male@idle_a', anim = 'idle_a', timeout = '2500'},
},
animations_end = {
{lib = 'amb@world_human_gardener_plant@male@exit', anim ='exit', timeout = '2500'},
{lib = 'amb@world_human_cop_idles@male@idle_a', anim ='idle_a', timeout = '2500'},
},
animations_step = {
{lib = 'amb@world_human_gardener_plant@male@enter', anim = 'enter', timeout = '2500'},
{lib = 'amb@world_human_gardener_plant@male@idle_a', anim ='idle_a', timeout = '18500'},
{lib = 'amb@world_human_gardener_plant@male@exit', anim ='exit', timeout = '2500'},
},
grow = {
2.24, 1.95, 1.65, 1.45, 1.20, 1.00
},
questions = {
{
title = 'Widzisz, że twoja roślinka kiełkuje, co robisz?',
steps = {
{label = 'Podlewam Roślinę', value = 1},
{label = 'Nawożę Roslinę', value = 2},
{label = 'Czekam', value = 3}
},
correct = 1
},
{
title = 'Na twojej roślince pojawiły się zółte kropki, co robisz?',
steps = {
{label = 'Podlewam Roślinę', value = 1},
{label = 'Nawożę Roslinę', value = 2},
{label = 'Czekam', value = 3}
},
correct = 2
},
{
title = 'Na liściach twojej rośliny pojawił się niebieski pył, co robisz?',
steps = {
{label = 'Zrywam poszczególne liście', value = 1},
{label = 'Posypuje liście nawozem', value = 2},
{label = 'Czekam', value = 3}
},
correct = 3
},
{
title = 'U twojej roślinki pojawiły się pierwsze topy, co robisz?',
steps = {
{label = 'Podlewam Roślinę', value = 1},
{label = 'Zrywam je od razu', value = 2},
{label = 'Nawożę roślinę', value = 3}
},
correct = 1
},
{
title = 'Po podlaniu twojej roślinki, zaczeły się pojawiać dziwne liście, co robisz?',
steps = {
{label = 'Podlewam Roślinę', value = 1},
{label = 'Nawożę Roslinę', value = 2},
{label = 'Czekam', value = 3}
},
correct = 2
},
{
title = 'Twoja roślinka jest już prawie gotowa do ścięcia, co robisz?',
steps = {
{label = 'Podlewam Roślinę', value = 1},
{label = 'Nawożę Roslinę', value = 2},
{label = 'Czekam', value = 3}
},
correct = 1
},
{
title = 'Twoja roślinka jest gotowa do zbiorów, co robisz?',
steps = {
{label = 'Zbierz przy użyciu nożyczek', value = 1, min = 5, max = 25},
{label = 'Zbierz rękoma', value = 1, min = 10, max = 15},
{label = 'Zetnij sekatorem', value = 1, min = 2, max = 40}
},
correct = 1
},
},
},
}