fonsleenaars / tqdb

Python parser for the Titan Quest Anniversary Edition, Ragnarok, Atlantis, Eternal Ember DLC database.
https://tq-db.net
MIT License
50 stars 15 forks source link

Bandit King's Cover is not a part of Suit of the Bandit King #68

Open fonsleenaars opened 5 years ago

fonsleenaars commented 5 years ago

CastleGaming on Steam reported:

I would've reported this on the issue tracker, but I too had trouble creating an account for some reason. There's a set from Atlantis called "Suit of the Bandit King" that contains 4 items: Torso, Arm, and Leg Armor in addition to an Amulet. However, if you look at the new Legendary Helmets for Atlantis, it contains "Bandit King's Cover", and says that it's a part of the "Suit of the Bandit King" set, but for some reason it's not included with the set. Bug?

Sir-Mac commented 5 years ago

I will add another observation about this particular set and its parts. So this thread is about two bugs now.

Two items have the same name "Bandit King's Treasure". One is item to occupy necklace slot and one is item to occupy ring slot.

Let me explain by example from the code (it applies only in the file x3items_nonvoiced.txt, all language versions)

x3tagUArmor013=Bandit King's Treasure (UArmor0XX means, that the item will occupy NECKLACE slot) x3tagUArmor113=Bandit King's Grip (UArmor1XX means, that the item will occupy ARM armor slot) x3tagUArmor313=Bandit King's Cover (UArmor3XX means, that the item will occupy HEAD armor slot) x3tagUArmor213=Bandit King's Tracks (UArmor2XX means, that the item will occupy LEG armor slot) x3tagUArmor413=Bandit King's Treasure (UArmor4XX means, that the item will occupy RING slot) - AND THIS ITEM IS MISSING IN THE DATABASE x3tagUArmor513=Bandit King's Hideout (UArmor5XX means, that the item will occupy TORSO armor slot)

Thank you for solving both issues with the Bandit King's set.