Files
PathOfBuilding/GameVersions.lua
2020-06-17 04:17:02 +02:00

65 lines
1.5 KiB
Lua

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" },
defaultTreeVersion = "3_6",
latestTreeVersion = "3_11",
},
}
treeVersionList = { "2_6", "3_6", "3_7", "3_8", "3_9", "3_10", "3_11" }
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",
},
}