Skip to content

Commit 5f0464e

Browse files
authored
Added missing boss icons to the Personal best broadcasts (#58)
1 parent 64e6f9b commit 5f0464e

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

trackscape-discord-shared/src/osrs_broadcast_handler.rs

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -914,6 +914,48 @@ impl<T: DropLogs, CL: ClanMateCollectionLogTotals, CM: ClanMates, J: JobQueue>
914914
x if x.contains("tombs of amascut") => {
915915
"https://oldschool.runescape.wiki/images/Tombs_of_Amascut.png".to_string()
916916
}
917+
x if x.contains("colosseum") => {
918+
"https://oldschool.runescape.wiki/images/Sol_Heredit.png".to_string()
919+
}
920+
x if x.contains("hueycoatl") => {
921+
"https://oldschool.runescape.wiki/images/The_Hueycoatl.png".to_string()
922+
}
923+
x if x.contains("whisperer") => {
924+
"https://oldschool.runescape.wiki/images/The_Whisperer.png".to_string()
925+
}
926+
x if x.contains("leviathan") => {
927+
"https://oldschool.runescape.wiki/images/The_Leviathan.png".to_string()
928+
}
929+
x if x.contains("mimic") => {
930+
"https://oldschool.runescape.wiki/images/The_Mimic.png".to_string()
931+
}
932+
x if x.contains("zulrah") => {
933+
"https://oldschool.runescape.wiki/images/Zulrah_(serpentine).png".to_string()
934+
}
935+
x if x.contains("corrupted gauntlet") => {
936+
"https://oldschool.runescape.wiki/images/Corrupted_Hunllef.png".to_string()
937+
}
938+
x if x.contains("gauntlet") => {
939+
"https://oldschool.runescape.wiki/images/Crystalline_Hunllef.png".to_string()
940+
}
941+
x if x.contains("inferno") => {
942+
"https://oldschool.runescape.wiki/images/TzKal-Zuk.png".to_string()
943+
}
944+
x if x.contains("fight caves") => {
945+
"https://oldschool.runescape.wiki/images/TzTok-Jad.png".to_string()
946+
}
947+
x if x.contains("duke sucellus") => {
948+
"https://oldschool.runescape.wiki/images/Duke_Sucellus.png".to_string()
949+
}
950+
x if x.contains("phantom muspah") => {
951+
"https://oldschool.runescape.wiki/images/Phantom_Muspah_(ranged).png".to_string()
952+
}
953+
x if x.contains("royal titans") => {
954+
"https://oldschool.runescape.wiki/images/Eldric_the_Ice_King.png".to_string()
955+
}
956+
x if x.contains("grotesque guardians") => {
957+
"https://oldschool.runescape.wiki/images/Dusk_(2nd_form).png".to_string()
958+
}
917959
_ => format!("https://oldschool.runescape.wiki/images/{}.png", activity).to_string(),
918960
}
919961
}

0 commit comments

Comments
 (0)