Skip to content

Commit

Permalink
feat: added tank/healer items to party finder stats (#514)
Browse files Browse the repository at this point in the history
Co-authored-by: songreaver <87545636+kemmisch@users.noreply.github.com>
  • Loading branch information
TakoTheDev and Kemmisch authored Oct 6, 2024
1 parent 0e58556 commit 61ad08c
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ object PartyFinderStats {
itemIds.contains("SHADOW_FURY") -> add("§8Shadow Fury")
itemIds.contains("FLOWER_OF_TRUTH") -> add("§cFoT")
}
//Tank & Healer
when {
itemIds.contains("GLOOMLOCK_GRIMOIRE") -> add("§5Gloomlock")
itemIds.contains("TRIBAL_SPEAR") -> add("§6Tribal Spear")
itemIds.contains("LAST_BREATH") -> add("§6Last Breath")
}
//Miscellaneous
add(checkItemId(itemIds, "GYROKINETIC_WAND", "§5Gyro"))
add(checkItemId(itemIds, "DARK_CLAYMORE", "§7Claymore"))
Expand All @@ -177,6 +183,7 @@ object PartyFinderStats {
checkStonk(itemIds, extraAttribs)?.run { add(this) }
add(checkItemId(itemIds, "BONZO_STAFF", "§9Bonzo Staff"))
add(checkItemId(itemIds, "JERRY_STAFF", "§eJerry-chine"))
add(checkItemId(itemIds, "FIRE_FREEZE_STAFF", "§4Fire Freeze"))

remove(null)
}
Expand Down

0 comments on commit 61ad08c

Please sign in to comment.