forked from Openarl/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameVersions.lua
63 lines (62 loc) · 1.92 KB
/
GameVersions.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
-- Game versions
---Default target version for unknown builds and builds created before 3.0.0.
legacyTargetVersion = "2_6"
---Default target for new builds and target to convert legacy builds to.
liveTargetVersion = "3_0"
-- Skill tree versions
---Added for convenient indexing of skill tree versions.
---@type string[]
treeVersionList = { "2_6", "3_6", "3_7", "3_8", "3_9", "3_10", "3_11", "3_12" , "3_13"}
--- Always points to the latest skill tree version.
latestTreeVersion = treeVersionList[#treeVersionList]
---Tree version where multiple skill trees per build were introduced to PoBC.
defaultTreeVersion = treeVersionList[2]
---Display, comparison and export data for all supported skill tree versions.
---@type table<string, {display: string, num: number, url: string}>
treeVersions = {
["2_6"] = {
display = "2.6",
num = 2.06,
url = "https://www.pathofexile.com/passive-skill-tree/2.6.2/",
},
["3_6"] = {
display = "3.6(虚空幻境)",
num = 3.06,
url = "https://www.pathofexile.com/passive-skill-tree/3.6.0/",
},
["3_7"] = {
display = "3.7(军团)",
num = 3.07,
url = "https://www.pathofexile.com/passive-skill-tree/3.7.0/",
},
["3_8"] = {
display = "3.8(枯疫)",
num = 3.08,
url = "https://www.pathofexile.com/passive-skill-tree/3.8.0/",
},
["3_9"] = {
display = "3.9(灾变 )",
num = 3.09,
url = "https://www.pathofexile.com/passive-skill-tree/3.9.0/",
},
["3_10"] = {
display = "3.10(惊悸迷雾)",
num = 3.10,
url = "https://www.pathofexile.com/passive-skill-tree/3.10.0/",
},
["3_11"] = {
display = "3.11(庄园)",
num = 3.11,
url = "https://www.pathofexile.com/passive-skill-tree/3.11.0/",
},
["3_12"] = {
display = "3.12(夺宝奇兵)",
num = 3.12,
url = "https://www.pathofexile.com/passive-skill-tree/3.12.0/",
},
["3_13"] = {
display = "3.13(驱灵仪式)",
num = 3.13,
url = "https://www.pathofexile.com/passive-skill-tree/3.13.0/",
},
}