@@ -869,6 +869,10 @@ class Auction(AuctionEntry):
869
869
The number of hireling jobs the character has.
870
870
hireling_outfits: :class:`int`
871
871
The number of hireling outfits the character has.
872
+ exalted_dust: :class:`int`
873
+ The amount of exalted dust the character has.
874
+ exalted_dust_limit: :class:`int`
875
+ The dust limit of the character.
872
876
items: :class:`ItemSummary`
873
877
The items the character has across inventory, depot and item stash.
874
878
store_items: :class:`ItemSummary`
@@ -930,6 +934,8 @@ def __init__(self, **kwargs):
930
934
self .hirelings : int = kwargs .get ("hirelings" , 0 )
931
935
self .hireling_jobs : int = kwargs .get ("hireling_jobs" , 0 )
932
936
self .hireling_outfits : int = kwargs .get ("hireling_outfits" , 0 )
937
+ self .exalted_dust : int = kwargs .get ("exalted_dust" , 0 )
938
+ self .exalted_dust_limit : int = kwargs .get ("exalted_dust_limit" , 0 )
933
939
self .items : ItemSummary = kwargs .get ("items" )
934
940
self .store_items : ItemSummary = kwargs .get ("store_items" )
935
941
self .mounts : Mounts = kwargs .get ("mounts" )
@@ -971,6 +977,8 @@ def __init__(self, **kwargs):
971
977
"hirelings" ,
972
978
"hireling_jobs" ,
973
979
"hireling_outfits" ,
980
+ "exalted_dust" ,
981
+ "exalted_dust_limit" ,
974
982
"items" ,
975
983
"store_items" ,
976
984
"mounts" ,
@@ -1312,6 +1320,11 @@ def _parse_general_table(self, table):
1312
1320
self .hirelings = parse_integer (hirelings_data .get ("hirelings" , "" ))
1313
1321
self .hireling_jobs = parse_integer (hirelings_data .get ("hireling_jobs" , "" ))
1314
1322
self .hireling_outfits = parse_integer (hirelings_data .get ("hireling_outfits" , "" ))
1323
+ if len (content_containers ) == 9 :
1324
+ dust_data = self ._parse_data_table (content_containers [8 ])
1325
+ dust_values = dust_data .get ("exalted_dust" , "0/0" ).split ("/" )
1326
+ self .exalted_dust = parse_integer (dust_values [0 ])
1327
+ self .exalted_dust_limit = parse_integer (dust_values [1 ])
1315
1328
# endregion
1316
1329
1317
1330
0 commit comments