Skip to content

Commit c80f20f

Browse files
committed
#808 Added Heroic Tragedy, Mageblood, Screams of the Desiccated
1 parent f8ea745 commit c80f20f

5 files changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Source: https://poedb.tw/us/Belts#BeltsItem
2+
# Note: Only contains bases relevant to the uniques we are tracking
3+
baseType,category,relatedUniques
4+
"Leather Belt",belt,"Screams of the Desiccated"
5+
"Heavy Belt",belt,"Mageblood"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Unique Name: Heroic Tragedy
2+
# Base Types: Timeless Jewel
3+
# Total modifiers on each item: 2
4+
# Can have duplicate modifiers: False
5+
# Modifier distrubution: "rest":2
6+
# Source: https://poedb.tw/us/Heroic_Tragedy
7+
minRoll,maxRoll,textRolls,position,effect,static,unique
8+
100,8000,,0,"Remembrancing # songworthy deeds by the line of # Passives in radius are Conquered by the Kalguur",,True
9+
,,"Vorana|Uhtred|Medved",1,"Remembrancing # songworthy deeds by the line of # Passives in radius are Conquered by the Kalguur",,True
10+
,,,0,"Historic",True,True
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Unique Name: Mageblood
2+
# Base Types: Heavy Belt
3+
# Total modifiers on each item: 6
4+
# Can have duplicate modifiers: False
5+
# Modifier distrubution: "rest":6
6+
# Source: https://poedb.tw/us/Mageblood
7+
minRoll,maxRoll,textRolls,position,effect,static,unique
8+
30,50,,0,"+# to Dexterity",,True
9+
15,25,,0,"+# to # Resistance",,True
10+
,,"Fire|Cold",1,"+# to # Resistance",,True
11+
,,,0,"Magic Utility Flasks cannot be Used",True,True
12+
,,"Rightmost|Leftmost",0,"# # Magic Utility Flasks constantly apply their Flask Effects to you",,True
13+
1,5,,1,"# # Magic Utility Flasks constantly apply their Flask Effects to you",,True
14+
,,,0,"Magic Utility Flask Effects cannot be removed",True,True
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Unique Name: Screams of the Desiccated
2+
# Base Types: Leather Belt
3+
# Total modifiers on each item: 3|4|5
4+
# Can have duplicate modifiers: False
5+
# Modifier distrubution: 2:2,"rest":1|2|3
6+
# Source: https://poedb.tw/us/Screams_of_the_Desiccated
7+
minRoll,maxRoll,textRolls,position,effect,unique
8+
23,32,,0,"+# to Intelligence",True
9+
23,37,,0,"+# to Chaos Resistance",True
10+
,,"Acceleration|Brutal|Greater Freezing|Greater Shocking|Greater Skeletal|Diamond|Echoing|Gloom|Impenetrable|Massive|Replenishing|Resistance|Resonating",0,"You have # Shrine Buff while affected by no Flasks",True
11+
15,20,,0,"#% increased Effect of Shrine Buffs on you",True

src/backend_data_retrieval/data_retrieval_app/external_data_retrieval/detectors/unique_detector.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ class UniqueUnidentifiedDetector(UniqueDetector):
5757
"Amethyst Ring",
5858
"Great Crown",
5959
"Simple Robe",
60+
"Leather Belt",
6061
]
6162

6263
wanted_item_icons = {
@@ -90,6 +91,8 @@ class UniqueUnidentifiedDetector(UniqueDetector):
9091
"SynthesisPhysical.png": "Circle of Nostalgia",
9192
"TheEpiphany.png": "Forbidden Shako",
9293
"MyriadGraspGrand.png": "Skin of the Lords",
94+
"ExpeditonCivilization.png": "Heroic Tragedy",
95+
"Soulcord.png": "Screams of the Desiccated",
9396
}
9497

9598
def _check_if_wanted(self, df: pd.DataFrame) -> pd.DataFrame:
@@ -132,6 +135,7 @@ class UniqueJewelDetector(UniqueDetector):
132135
"Militant Faith",
133136
"Elegant Hubris",
134137
"Voices",
138+
"Heroic Tragedy",
135139
]
136140

137141
def __str__(self):
@@ -150,6 +154,7 @@ class UniqueJewelleryDetector(UniqueDetector):
150154
"Circle of Regret",
151155
"Circle of Fear",
152156
"Circle of Nostalgia",
157+
"Screams of the Desiccated",
153158
]
154159

155160
def __str__(self):

0 commit comments

Comments
 (0)