From 6edc8e5363135cc27bec787cda6880d2bb660788 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sun, 16 Aug 2020 05:23:16 -0400 Subject: [PATCH] Further update currency filtering --- resources/parsers/currency.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/resources/parsers/currency.py b/resources/parsers/currency.py index 84705f4..207f3ab 100644 --- a/resources/parsers/currency.py +++ b/resources/parsers/currency.py @@ -141,11 +141,21 @@ class CurrencyParser(): base_text=[ 'Cartographer\'s Chisel', 'Orb of Scouring', 'Orb of Regret', 'Silver Coin', 'Gemcutter\'s Prism', 'Eternal Orb', 'Master Cartographer\'s Seal', 'Albino Rhoa Feather', 'Orb of Chance', 'Sextant', + 'Awakener\'s Orb', 'Bestiary Orb', 'Orb of Annulment', 'Ancient Orb', 'Engineer\'s Orb', + 'Harbinger\'s Orb', 'Orb of Binding', ], font_size=display_dict['uncommon_font_size'], minimap_size=2, sound='5 175', ) + self.template.rare_currency( + description='Misc Currency Shards', + class_text='Currency', + base_text='Shard', + font_size=display_dict['uncommon_font_size'], + minimap_size=2, + sound='5 175', + ) # Misc low importance currency. self.template.rare_currency( @@ -566,7 +576,7 @@ class PostEquipment_CurrencyParser(): # Orb of Alchemy, 2x2. self.template.currency_recipe_low_level( description='Chance at Orb of Alchemy - 2x2 or smaller', - item_level='<= 59', + item_level='<= 55', rarity='Rare', width='<= 2', height='<= 2', @@ -575,7 +585,7 @@ class PostEquipment_CurrencyParser(): # Orb of Alchemy, 3x1. self.template.currency_recipe_low_level( description='Chance at Orb of Alchemy - 3x1 or smaller', - item_level='<= 59', + item_level='<= 55', rarity='Rare', width='<= 3', height='<= 1', -- GitLab