diff --git a/pug/pug.py b/pug/pug.py index 6d4f57e..16ccc64 100644 --- a/pug/pug.py +++ b/pug/pug.py @@ -174,6 +174,7 @@ class Pug: tov_progress = self.get_raid_progression(player_dict, "Trial of Valor") en_progress = self.get_raid_progression(player_dict, "The Emerald Nightmare") nh_progress = self.get_raid_progression(player_dict, "The Nighthold") + tos_progress = self.get_raid_progression(player_dict, "Tomb of Sargeras") mythic_progress = self.get_mythic_progression(player_dict) armory_url = 'http://{}.battle.net/wow/{}/character/{}/{}/advanced'.format( @@ -206,6 +207,10 @@ class Pug: nh_progress["normal"], nh_progress["heroic"], nh_progress["mythic"]) + return_string += "[TOS]: {1}/{0} (N), {2}/{0} (H), {3}/{0} (M)\n".format(tos_progress["total_bosses"], + tos_progress["normal"], + tos_progress["heroic"], + tos_progress["mythic"]) # Gems return_string += "[Gems Equipped]: %s/%s\n" % ( sockets["equipped_gems"], sockets["total_sockets"])