]> git.tdb.fi Git - poefilter.git/commitdiff
Add categories for particularly important flasks and accessories filters-delve
authorMikko Rasa <tdb@tdb.fi>
Wed, 5 Sep 2018 15:40:12 +0000 (18:40 +0300)
committerMikko Rasa <tdb@tdb.fi>
Wed, 5 Sep 2018 15:40:12 +0000 (18:40 +0300)
delve.filter
delve_endgame.filter
delve_fast.filter
filters_delve.txt

index 943f312b87565fe9cd29bc0a6fc83e30d2509656..460c82647501546bb7eea0cc2800266ca92eb5cd 100644 (file)
@@ -1647,6 +1647,22 @@ Show
        DisableDropSound
        Class "Belt"
        BaseType "Stygian Vise"
+# accessory.important
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Ring"
+       BaseType "Topaz Ring" "Ruby Ring" "Sapphire Ring" "Two-Stone Ring" "Amethyst Ring" "Diamond Ring"
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Amulet"
+       BaseType "Agate Amulet" "Turquoise Amulet" "Citrine Amulet"
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Belt"
+       BaseType "Rustic Sash" "Chain Belt" "Leather Belt"
 # accessory
 Show
        SetFontSize 25
@@ -5778,6 +5794,12 @@ Show
 Show
        SetFontSize 25
        Class "Quiver"
+# flask.important
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Flask"
+       BaseType "Quicksilver Flask" "Quartz Flask"
 # flask.life.best_at_level
 Show
        SetFontSize 25
index cdaa8b551a3e44986a59c9040577e06b529f8eba..d6fabb80d45ae0ad36b0c98c8988a605e65cc1e7 100644 (file)
@@ -1647,6 +1647,22 @@ Show
        DisableDropSound
        Class "Belt"
        BaseType "Stygian Vise"
+# accessory.important
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Ring"
+       BaseType "Topaz Ring" "Ruby Ring" "Sapphire Ring" "Two-Stone Ring" "Amethyst Ring" "Diamond Ring"
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Amulet"
+       BaseType "Agate Amulet" "Turquoise Amulet" "Citrine Amulet"
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Belt"
+       BaseType "Rustic Sash" "Chain Belt" "Leather Belt"
 # accessory
 Show
        SetFontSize 25
@@ -1938,6 +1954,12 @@ Show
 Show
        SetFontSize 25
        Class "Quiver"
+# flask.important
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Flask"
+       BaseType "Quicksilver Flask" "Quartz Flask"
 # flask.life.best_at_level
 Show
        SetFontSize 25
index 4a2c712ab8f8ec09c0d1ebef3e4ead7e997d3b1d..5ba703a8d75c79d54bdfc47a7ebec92f40e8f2a1 100644 (file)
@@ -1618,6 +1618,22 @@ Show
        DisableDropSound
        Class "Belt"
        BaseType "Stygian Vise"
+# accessory.important
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Ring"
+       BaseType "Topaz Ring" "Ruby Ring" "Sapphire Ring" "Two-Stone Ring" "Amethyst Ring" "Diamond Ring"
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Amulet"
+       BaseType "Agate Amulet" "Turquoise Amulet" "Citrine Amulet"
+Show
+       SetFontSize 25
+       SetBorderColor 150 0 0 127
+       Class "Belt"
+       BaseType "Rustic Sash" "Chain Belt" "Leather Belt"
 # equipment.endgame.6link
 Show
        SetFontSize 31
index c14ee8d9c7d5fe84a76f58b6b4375ae4e12c6231..2313e8456f99bacc7420e84649f4f551573146eb 100644 (file)
@@ -227,6 +227,46 @@ category "accessory"
        };
 };
 
+category "accessory.important"
+{
+       or
+       {
+               and
+               {
+                       class "Ring";
+                       or
+                       {
+                               base_type "Topaz Ring";
+                               base_type "Ruby Ring";
+                               base_type "Sapphire Ring";
+                               base_type "Two-Stone Ring";
+                               base_type "Amethyst Ring";
+                               base_type "Diamond Ring";
+                       };
+               };
+               and
+               {
+                       class "Amulet";
+                       or
+                       {
+                               base_type "Agate Amulet";
+                               base_type "Turquoise Amulet";
+                               base_type "Citrine Amulet";
+                       };
+               };
+               and
+               {
+                       class "Belt";
+                       or
+                       {
+                               base_type "Rustic Sash";
+                               base_type "Chain Belt";
+                               base_type "Leather Belt";
+                       };
+               };
+       };
+};
+
 category "accessory.endgame.uncommon"
 {
        or
@@ -335,6 +375,16 @@ category "quiver"
        class "Quiver";
 };
 
+category "flask.important"
+{
+       class "Flask";
+       or
+       {
+               base_type "Quicksilver Flask";
+               base_type "Quartz Flask";
+       };
+};
+
 category "recipe.6s"
 {
        min_sockets 6;
@@ -826,6 +876,12 @@ theme
                font_size 1.0;
        };
 
+       appearance "accessory.important"
+       {
+               font_size 1.0;
+               border_color "fire.50%";
+       };
+
        appearance "accessory.endgame.uncommon"
        {
                font_size 1.25;
@@ -915,6 +971,12 @@ theme
                font_size 1.0;
        };
 
+       appearance "flask.important"
+       {
+               font_size 1.0;
+               border_color "fire.50%";
+       };
+
        appearance "recipe.6s"
        {
                font_size 1.25;
@@ -1004,6 +1066,7 @@ filter "delve_base"
        show "jewel.*";
        show "unique";
        show "accessory.endgame.uncommon";
+       show "accessory.important";
        show "accessory";
        show "equipment.*";
        show "recipe.6s";
@@ -1014,6 +1077,7 @@ filter "delve_base"
        show "recipe.quality.chisel";
        show "equipment.*.base";
        show "quiver";
+       show "flask.important";
        show "flask.*.best_at_level";
        show "flask.utility";
        show "recipe.*";