forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameVersions.lua
71 lines (70 loc) · 1.68 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
64
65
66
67
68
69
70
71
defaultTargetVersion = "2_6"
liveTargetVersion = "3_0"
targetVersionList = { "2_6", "3_0" }
targetVersions = {
["2_6"] = {
short = "2.6",
long = "2.6 (Atlas of Worlds)",
treeVersionList = { "2_6" },
defaultTreeVersion = "2_6",
latestTreeVersion = "2_6",
},
["3_0"] = {
short = "3.11",
long = "3.11 (Conquerors of the Atlas)",
treeVersionList = { "3_6", "3_7", "3_8", "3_9", "3_10", "3_11", "3_12" },
defaultTreeVersion = "3_6",
latestTreeVersion = "3_12",
},
}
treeVersionList = { "2_6", "3_6", "3_7", "3_8", "3_9", "3_10", "3_11", "3_12" }
treeVersions = {
["2_6"] = {
short = "2.6",
num = 2.06,
export = "https://www.pathofexile.com/passive-skill-tree/2.6.2/",
targetVersion = "2_6",
},
["3_6"] = {
short = "3.6",
num = 3.06,
export = "https://www.pathofexile.com/passive-skill-tree/3.6.0/",
targetVersion = "3_0",
},
["3_7"] = {
short = "3.7",
num = 3.07,
export = "https://www.pathofexile.com/passive-skill-tree/3.7.0/",
targetVersion = "3_0",
},
["3_8"] = {
short = "3.8",
num = 3.08,
export = "https://www.pathofexile.com/passive-skill-tree/3.8.0/",
targetVersion = "3_0",
},
["3_9"] = {
short = "3.9",
num = 3.09,
export = "https://www.pathofexile.com/passive-skill-tree/3.9.0/",
targetVersion = "3_0",
},
["3_10"] = {
short = "3.10",
num = 3.10,
export = "https://www.pathofexile.com/passive-skill-tree/3.10.0/",
targetVersion = "3_0",
},
["3_11"] = {
short = "3.11",
num = 3.11,
export = "https://www.pathofexile.com/passive-skill-tree/3.11.0/",
targetVersion = "3_0",
},
["3_12"] = {
short = "3.12",
num = 3.12,
export = "https://www.pathofexile.com/passive-skill-tree/3.12.0/",
targetVersion = "3_0",
},
}