cleanup atlas buttons table

This commit is contained in:
Spit
2026-07-27 20:08:17 +03:00
parent 2c34773280
commit 74c7506e63
5 changed files with 790 additions and 1404 deletions
+35 -219
View File
@@ -6,225 +6,41 @@ file due to slight translation differences between Atlas languages.
The English file also contains the loot tables for the battleground loot tables.
]]
------------
-- Layout --
------------
AtlasLootBattlegrounds = {
BloodRing = {
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"BRRepFriendly1",
"BRRepHonored1",
"BRRepRevered1",
"BRRepExalted1",
"BRRepTokens1",
},
AlteracValleyNorth = {
"Stormpike1",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"AVRepFriendly",
"AVRepHonored",
"AVRepRevered",
"AVRepExalted",
},
AlteracValleySouth = {
"Frostwolf1",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"AVRepFriendly",
"AVRepHonored",
"AVRepRevered",
"AVRepExalted",
},
ArathiBasin = {
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"ABRepFriendly",
"ABRepHonored5059",
"ABRepRevered5059",
"ABRepExalted",
},
WarsongGulch = {
"",
"",
"",
"",
"",
"WSGRepFriendly",
"WSGRepHonored5059",
"WSGRepRevered5059",
"WSGRepExalted60",
},
AtlasLootBossButtons = AtlasLootBossButtons or {}
AtlasLootBossButtons.BloodRing = {
[62] = "BRRepFriendly1",
[63] = "BRRepHonored1",
[64] = "BRRepRevered1",
[65] = "BRRepExalted1",
[66] = "BRRepTokens1",
}
AtlasLootBossButtons.AlteracValleyNorth = {
[1] = "Stormpike1",
[64] = "AVRepFriendly",
[65] = "AVRepHonored",
[66] = "AVRepRevered",
[67] = "AVRepExalted",
}
AtlasLootBossButtons.AlteracValleySouth = {
[1] = "Frostwolf1",
[46] = "AVRepFriendly",
[47] = "AVRepHonored",
[48] = "AVRepRevered",
[49] = "AVRepExalted",
}
AtlasLootBossButtons.ArathiBasin = {
[11] = "ABRepFriendly",
[12] = "ABRepHonored5059",
[13] = "ABRepRevered5059",
[14] = "ABRepExalted",
}
AtlasLootBossButtons.WarsongGulch = {
[6] = "WSGRepFriendly",
[7] = "WSGRepHonored5059",
[8] = "WSGRepRevered5059",
[9] = "WSGRepExalted60",
}
----------------------