-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlevels.lua
More file actions
96 lines (96 loc) · 3.73 KB
/
Copy pathlevels.lua
File metadata and controls
96 lines (96 loc) · 3.73 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
return { -- table of skills
["CHEMISTRY"] = { -- Identifier
description = "Mix compounds and create chemical substances",
-- XP required to progress from the current level to the next level.
-- Starting level is 1.
-- The first entry corresponds to the XP needed to go from Level 1 to Level 2.
-- For example:
-- Total XP to reach Level 3 is cumulative:
-- - Level 1 to Level 2 requires 100 XP (first entry).
-- - Level 2 to Level 3 requires 150 XP (second entry).
-- - Therefore, total XP to reach Level 3 is 100 (to reach Level 2) + 150 (to reach Level 3) = 250 XP.
-- Note:
-- - Each level requires the specified amount of XP to progress from the previous level.
-- - The XP required for each level is not just an incremental increase over the previous level's requirement.
-- - For instance, Level 3 requires 150 XP more than Level 2, not just an additional 50 XP over Level 2's requirement.
xpPerLevel = {
100, -- Level 1 to Level 2 requires 100 XP
150, -- Level 2 to Level 3 requires 150 XP
200, -- Level 3 to Level 4 requires 200 XP
250, -- Level 4 to Level 5 requires 250 XP
300, -- Level 5 to Level 6 requires 300 XP
350, -- Level 6 to Level 7 requires 350 XP
400, -- Level 7 to Level 8 requires 400 XP
450, -- Level 8 to Level 9 requires 450 XP
500, -- Level 9 to Level 10 requires 500 XP
-- The number of entries determines the maximum level attainable.
-- In this case, maximum level is Level 10 (starting from Level 1).
},
},
["COOKING"] = {
description = "Prepare meals and master culinary techniques",
xpPerLevel = {
100, 150, 200, 250, 300, 350, 400, 450, 500, 550,
},
},
["CRAFTING"] = {
description = "Create items and tools from raw materials",
xpPerLevel = {
100, 150, 200, 250, 300, 350, 400, 450, 500, 550,
},
},
["STAMINA"] = {
description = "Increase endurance and physical performance",
xpPerLevel = {
100, 150, 200, 250, 300, 350, 400, 450, 500, 550,
},
},
["HACKING"] = {
description = "Bypass security systems and crack codes",
xpPerLevel = {
120, 170, 230, 290, 360, 430, 500, 580, 660, 750,
},
},
["MEDICINE"] = {
description = "Treat injuries and administer medical care",
xpPerLevel = {
110, 160, 220, 280, 350, 420, 490, 570, 650, 740,
},
},
["ARCHERY"] = {
description = "Master bow techniques and precision shooting",
xpPerLevel = {
100, 150, 210, 270, 340, 410, 480, 560, 640, 730,
},
},
["BLACKSMITHING"] = {
description = "Forge weapons and armor from metal",
xpPerLevel = {
130, 180, 240, 310, 380, 450, 530, 610, 690, 780,
},
},
["SURVIVAL"] = {
description = "Adapt to harsh environments and find resources",
xpPerLevel = {
100, 160, 220, 290, 360, 430, 510, 590, 670, 760,
},
},
["ENGINEERING"] = {
description = "Design and build mechanical contraptions",
xpPerLevel = {
120, 170, 230, 300, 370, 450, 530, 620, 710, 800,
},
},
["ASTRONOMY"] = {
description = "Study celestial bodies and navigate by stars",
xpPerLevel = {
130, 190, 250, 320, 390, 470, 550, 640, 730, 830,
},
},
["PHOTOGRAPHY"] = {
description = "Capture moments and master camera techniques",
xpPerLevel = {
100, 160, 220, 290, 360, 440, 520, 610, 700, 800,
},
},
}