-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.lua
57 lines (53 loc) · 1.31 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
Config = {}
Config.Round = {
["DefaultTime"] = (60 * 10) + 54,
}
Config.Moods = {
{
['Hour'] = 12,
['Look'] = 'int_Lost_small',
['Intensity'] = 0.9,
['Weather'] = 'FOGGY'
},
{
['Hour'] = 0,
['Look'] = 'lab_none_exit_OVR',
['Intensity'] = 0.95,
['Weather'] = 'FOGGY'
},
{
['Hour'] = 12,
['Look'] = 'mp_bkr_ware01',
['Intensity'] = 0.80,
['Weather'] = 'EXTRASUNNY'
}
}
Config.Models = {
{"joel", "Joel"},
{"ElliePatrol", "Ellie"},
{"s_m_y_dealer_01", "Hunter"},
{"csb_mweather", "Firefly"},
}
Config.Ranks = {
{
['MinScore'] = 0, ['Unlocks'] = {{'WEAPON_MACHETE'}}
},
{
['MinScore'] = 1, ['Unlocks'] = {{'WEAPON_PISTOL', 1}}
},
{
['MinScore'] = 2, ['Unlocks'] = {{'WEAPON_PISTOL', 4}, {'WEAPON_MOLOTOV', 2}}
},
{
['MinScore'] = 4, ['Unlocks'] = {{'WEAPON_PISTOL', 8}, {'WEAPON_DOUBLEACTION', 4}}
},
{
['MinScore'] = 8, ['Unlocks'] = {{'WEAPON_PISTOL', 14}, {'WEAPON_DOUBLEACTION', 12}, {'WEAPON_PUMPSHOTGUN', 6}}
},
{
['MinScore'] = 16, ['Unlocks'] = {{'WEAPON_PUMPSHOTGUN', 12}, {'WEAPON_PIPEBOMB', 2}}
},
{
['MinScore'] = 32, ['Unlocks'] = {{'WEAPON_SMG', 64, 'COMPONENT_AT_SR_SUPP'}}
}
}