diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ad82f39 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "task-list"] + path = task-list + url = https://github.com/OSRS-Taskman/task-list diff --git a/README.md b/README.md index 98badba..94bb747 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,21 @@ See live version - https://www.osrstaskapp.com/ ## Initial Setup ### +### Initialie Submodules +`git submodule update --init` + ### Install latest Python 3 version ### `https://www.python.org/downloads/` ### Create a virtualenv ### `python3 -m venv /path/` -### Activate virtualenv ### +### Activate virtualenv (Linux) ### `source /path/bin/activate` +### Activate virtualenv (Windows) ### +`/path/Scripts/Activate.ps1` + ### Create a sendgrind API account for free ### https://sendgrid.com/en-us @@ -27,9 +33,6 @@ export SENDGRID_API_KEY=192b9bdd22ab9ed4d12e236c78afcb9a393ec15f71bbf5dc987d5472 export SECRET_KEY=192b9bdd22ab9ed4d12e236c78afcb9a393ec15f71bbf5dc987d54727823bcbf ``` -### Clone dev branch ### -The dev branch has changes suitable for development, which includes using a local database. - ### Install dependencies ### `pip install -r requirements.txt` @@ -41,7 +44,7 @@ Alternatively, if you use Docker, you can run a Mongo DB instance using `docker In mongoDB Compass or CLI, connect to `mongodb://localhost:27017/` -### Release version will use a MongoDB Atlas Cluster. +### Release version will use a MongoDB Atlas Cluster. ### Test it ### @@ -51,4 +54,3 @@ Run `python taskapp.py` or `source dev.sh && python taskapp.py` Open `http://127.0.0.1:5000/` on a browser to open the app - diff --git a/static/js/task.js b/static/js/task.js index e292207..117c66b 100644 --- a/static/js/task.js +++ b/static/js/task.js @@ -1,4 +1,4 @@ -$(window).on('load', function(){ +$(window).on('load', function(){ var frameSpeed = 1000, frameContainer = $('#frame-container'), frames = $('.frame',frameContainer ), @@ -11,10 +11,10 @@ $(window).on('load', function(){ showFrame = function (n){ if (n != frameCount){ return frames.hide().eq(n).show() && messages.hide().eq(n).show(); - + } return frames.eq(frameCount).show() && messages.eq(messageCount).show(); - + }, nextFrame = function(){ if (index == frameCount){ @@ -51,7 +51,7 @@ $(document).on('click', '#start', function(){ imageLink.href = data.link; imageLink.setAttribute('data-tip', data.tip); message.innerHTML = data.name; - image.src = "/static/assets/" + data.image; + image.src = data.image; document.getElementById("start").disabled = true; document.getElementById("complete").disabled = false; }, 6000); @@ -163,7 +163,7 @@ $(document).on('click', '#easy_complete', function(){ task.innerHTML = "You have no easy task!"; image.src = "/static/assets/Cake_of_guidance_detail.png"; imagePreview.src = "/static/assets/Cake_of_guidance_detail.png"; - + }); }); @@ -246,7 +246,7 @@ $(document).on('click', '#master_complete', function(){ type : 'POST' }); - + }); $(document).ready(function(){ @@ -267,9 +267,9 @@ $(document).ready(function(){ } var elementTarget = this; var parent = elementTarget.parentElement; - - - + + + $('form').submit(false); req = $.ajax({ url : '/update_completed/', @@ -288,7 +288,7 @@ $(document).ready(function(){ else { updatePercent.innerHTML = data[tier] + '%'; } - + for (const child of elementTarget.children) { if (child.tagName === 'DIV') { $(child).addClass('square-complete'); @@ -317,7 +317,7 @@ $(document).ready(function(){ } var elementTarget = this; var parent = elementTarget.parentElement; - + $('form').submit(false); req = $.ajax({ @@ -338,7 +338,7 @@ $(document).ready(function(){ console.log(tier) updatePercent.innerHTML = data[tier] + '%'; } - + for (const child of elementTarget.children) { if (child.tagName === 'DIV') { $(child).addClass('square-incomplete'); @@ -487,7 +487,7 @@ $(document).on('click', '.missing-easy', function(){ else { tasks[i].style.display = 'none'; } - + } }); @@ -503,7 +503,7 @@ $(document).on('click', '.missing-medium', function(){ else { tasks[i].style.display = 'none'; } - + } }); @@ -520,7 +520,7 @@ $(document).on('click', '.missing-hard', function(){ else { tasks[i].style.display = 'none'; } - + } }); @@ -535,7 +535,6 @@ $(document).on('click', '.missing-elite', function(){ else { tasks[i].style.display = 'none'; } - + } }); - diff --git a/task-list b/task-list new file mode 160000 index 0000000..9be4451 --- /dev/null +++ b/task-list @@ -0,0 +1 @@ +Subproject commit 9be445121321efa6ff287f2351b5d0206d38de6e diff --git a/task_database.py b/task_database.py index c50bbbf..e49b879 100644 --- a/task_database.py +++ b/task_database.py @@ -6,7 +6,6 @@ import config import user_dao from user_dao import UserDatabaseObject, convert_database_user -from user_migrate import migrate_database_user_to_new_format from task_types import TaskData, LeaderboardEntry, TaskData mydb = config.MONGO_CLIENT["TaskApp"] @@ -102,9 +101,7 @@ def add_task_account(username, is_official, lms_enabled): 'master' : {"completedTasks" : []}, 'passive': {"completedTasks" : []}, 'extra': {"completedTasks" : []}, - 'bossPets': {"completedTasks" : []}, - 'skillPets': {"completedTasks" : []}, - 'otherPets': {"completedTasks" : []} + 'pets': {"completedTasks" : []}, } }) @@ -244,7 +241,7 @@ def __set_current_task(username: str, tier: str, task_id: str, current: bool): else: task_coll.update_one( {"username": username}, - {"$set": {f"tiers.{cleaned_tier}.currentTask": {"uuid": task_id}}}, + {"$set": {f"tiers.{cleaned_tier}.currentTask": {"id": task_id}}}, ) @@ -253,31 +250,31 @@ def __set_task_complete(username: str, tier: str, task_id: int, complete: bool): task_coll = mydb['taskLists'] cleaned_tier = tier.replace("Tasks", "") if complete: - result = task_coll.update_one( + task_coll.update_one( {"username": username}, { "$push": { - f"tiers.{cleaned_tier}.completedTasks": {"uuid": task_id} + f"tiers.{cleaned_tier}.completedTasks": {"id": task_id} } } ) if not complete: - remove_completed = task_coll.update_one( + task_coll.update_one( { "username" : username }, { "$pull" : { - f"tiers.{cleaned_tier}.completedTasks" : {"uuid" : task_id} + f"tiers.{cleaned_tier}.completedTasks" : {"id" : task_id} } }) - + ''' generate_task_unofficial_tier: The generate_task_unofficial_tier function, randomly generates a task for a unofficial user. -taskCurrent is set to True for the choosen task. +taskCurrent is set to True for the choosen task. Unofficial accounts are allowed to re-roll tasks. If they already have a task, the taskCurrent is set to False. @@ -295,15 +292,15 @@ def generate_task_for_tier(username, tier) -> TaskData or None: # type: ignore if user.current_task_for_tier(tier) is None: all_tasks = tasklists.list_for_tier(tier, user.lms_enabled) - completed_task_ids = list(map(lambda x: x.uuid, user.get_task_list(tier).completed_tasks)) - uncompleted_tasks = list(filter(lambda x: x.uuid not in completed_task_ids, all_tasks)) + completed_task_ids = list(map(lambda x: x.id, user.get_task_list(tier).completed_tasks)) + uncompleted_tasks = list(filter(lambda x: x.id not in completed_task_ids, all_tasks)) if len(uncompleted_tasks) != 0: - if tier == "masterTasks" and uncompleted_tasks[0].uuid == "6b09384d-c06b-44ac-8a07-b7038cd30710": + if tier == "masterTasks" and uncompleted_tasks[0].id == "6b09384d-c06b-44ac-8a07-b7038cd30710": generated_task = uncompleted_tasks[0] - __set_current_task(username, tier, generated_task.uuid, True) + __set_current_task(username, tier, generated_task.id, True) return generated_task generated_task = random.choice(uncompleted_tasks) - __set_current_task(username, tier, generated_task.uuid, True) + __set_current_task(username, tier, generated_task.id, True) return generated_task else: @@ -317,10 +314,10 @@ def generate_task_for_tier(username, tier) -> TaskData or None: # type: ignore generate_task: The generate_task function, randomly generates a task for a official user. -lists of tasks are gathered for each tier. +lists of tasks are gathered for each tier. A task is choosen from the first tier that has tasks. -This allows for new tasks to be added in a lower tier due to game updates. -taskCurrent is set to True for the choosen task. +This allows for new tasks to be added in a lower tier due to game updates. +taskCurrent is set to True for the choosen task. Args: str: username - username of the user. @@ -338,8 +335,8 @@ def generate_task(username: str) -> TaskData or None: # type: ignore def get_incomplete_tasks(tier: str) -> list[TaskData]: all_tasks = tasklists.list_for_tier(tier, user.lms_enabled) - completed_task_ids = list(map(lambda x: x.uuid, user.get_task_list(tier).completed_tasks)) - return list(filter(lambda x: x.uuid not in completed_task_ids, all_tasks)) + completed_task_ids = list(map(lambda x: x.id, user.get_task_list(tier).completed_tasks)) + return list(filter(lambda x: x.id not in completed_task_ids, all_tasks)) tasks_easy = get_incomplete_tasks('easy') tasks_medium = get_incomplete_tasks('medium') @@ -349,26 +346,26 @@ def get_incomplete_tasks(tier: str) -> list[TaskData]: if len(tasks_easy) != 0: generated_task = random.choice(tasks_easy) - __set_current_task(username, 'easyTasks', generated_task.uuid, True) + __set_current_task(username, 'easyTasks', generated_task.id, True) return generated_task elif len(tasks_medium) != 0: generated_task = random.choice(tasks_medium) - __set_current_task(username, 'mediumTasks', generated_task.uuid, True) + __set_current_task(username, 'mediumTasks', generated_task.id, True) return generated_task elif len(tasks_hard) != 0: generated_task = random.choice(tasks_hard) - __set_current_task(username, 'hardTasks', generated_task.uuid, True) + __set_current_task(username, 'hardTasks', generated_task.id, True) return generated_task elif len(tasks_elite) != 0: generated_task = random.choice(tasks_elite) - __set_current_task(username, 'eliteTasks', generated_task.uuid, True) + __set_current_task(username, 'eliteTasks', generated_task.id, True) return generated_task elif len(tasks_master) != 0: - if tasks_master[0].uuid == "6b09384d-c06b-44ac-8a07-b7038cd30710": + if tasks_master[0].id == "6b09384d-c06b-44ac-8a07-b7038cd30710": generated_task = tasks_master[0] else: generated_task = random.choice(tasks_master) - __set_current_task(username, 'masterTasks', generated_task.uuid, True) + __set_current_task(username, 'masterTasks', generated_task.id, True) return generated_task return None @@ -449,7 +446,7 @@ def complete_task(username: str) -> dict: ''' get_task_progress: -The get_task_progress function, determines the percentage of progress for each tier. Rounded down. +The get_task_progress function, determines the percentage of progress for each tier. Rounded down. Args: str: username - username of the user. @@ -470,11 +467,9 @@ def get_task_progress(username: str): master = user.get_tier_progress('master') passive = user.get_tier_progress('passive') extra = user.get_tier_progress('extra') - boss_pets = user.get_tier_progress('bossPets') - skill_pets = user.get_tier_progress('skillPets') - other_pets = user.get_tier_progress('otherPets') - all_pets_total = boss_pets.total + skill_pets.total + other_pets.total - all_pets_total_complete = boss_pets.total_complete + skill_pets.total_complete + other_pets.total_complete + pets = user.get_tier_progress('pets') + all_pets_total = pets.total + all_pets_total_complete = pets.total_complete all_pets_percent_complete = floor(all_pets_total_complete / all_pets_total * 100) progress = { @@ -488,86 +483,6 @@ def get_task_progress(username: str): 'all_pets' : {'percent_complete' : all_pets_percent_complete} } return progress - return easy.percent_complete, medium.percent_complete, hard.percent_complete, elite.percent_complete, master.percent_complete, \ - passive.percent_complete, extra.percent_complete, all_pets_percent_complete, \ - easy.total_complete, easy.total, medium.total_complete, medium.total, hard.total_complete, hard.total, \ - elite.total_complete, elite.total, master.total_complete, master.total - - -''' -get_task_lists: - -The get_task_lists function, generates the list of tasks for each tier. - -# Can be optimized by doing a single query to the DB. - -Args: - str: username - username of the user. - - -Returns: - tuple: easy_list, medium_list, hard_list, elite_list bosspet_list, skillpet_list, otherpet_list, extra_list, passive_list - list of tasks for each tier. - -''' - - -def get_task_lists(username): - coll = mydb['taskLists'] - task_list_query = coll.find_one({"username" : username}, {"_id" : 0 , "username" : 1, "tiers": 1}) - bossPets = [] - skillPets = [] - otherPets = [] - completed_bossPet_ids = task_list_query['tiers']['bossPets']['completedTasks'] - completed_skillPet_ids = task_list_query['tiers']['skillPets']['completedTasks'] - completed_otherPet_ids = task_list_query['tiers']['otherPets']['completedTasks'] - - - - for boss_pet_task in tasklists.boss_pet: - if any(x.get("uuid") == boss_pet_task.uuid for x in completed_bossPet_ids): - boss_pet_task.isCompleted = True - else: - boss_pet_task.isCompleted = False - bossPets.append(boss_pet_task) - - for skill_pet_task in tasklists.skill_pet: - if any(x.get("uuid") == skill_pet_task.uuid for x in completed_skillPet_ids): - skill_pet_task.isCompleted = True - else: - skill_pet_task.isCompleted = False - skillPets.append(skill_pet_task) - - for other_pet_task in tasklists.other_pet: - if any(x.get("uuid") == other_pet_task.uuid for x in completed_otherPet_ids): - other_pet_task.isCompleted = True - else: - other_pet_task.isCompleted = False - otherPets.append(other_pet_task) - - return bossPets, skillPets, otherPets - # task_query_easy = coll.find({'username': username}, {'easyTasks': 1}) - # task_query_medium = coll.find({'username': username}, {'mediumTasks': 1}) - # task_query_hard = coll.find({'username': username}, {'hardTasks': 1}) - # task_query_elite = coll.find({'username': username}, {'eliteTasks': 1}) - # task_query_master = coll.find({'username': username}, {'masterTasks' : 1}) - # task_query_bosspet = coll.find({'username': username}, {'bossPetTasks': 1}) - # task_query_skillpet = coll.find({'username': username}, {'skillPetTasks': 1}) - # task_query_otherpet = coll.find({'username': username}, {'otherPetTasks': 1}) - # task_query_extra = coll.find({'username': username}, {'extraTasks': 1}) - # task_query_passive = coll.find({'username': username}, {'passiveTasks': 1}) - - # easy_list = task_query_easy[0]['easyTasks'] - # medium_list = task_query_medium[0]['mediumTasks'] - # hard_list = task_query_hard[0]['hardTasks'] - # elite_list = task_query_elite[0]['eliteTasks'] - # master_list = task_query_master[0]['masterTasks'] - # bosspet_list = task_query_bosspet[0]['bossPetTasks'] - # skillpet_list = task_query_skillpet[0]['skillPetTasks'] - # otherpet_list = task_query_otherpet[0]['otherPetTasks'] - # extra_list = task_query_extra[0]['extraTasks'] - # passive_list = task_query_passive[0]['passiveTasks'] - - # return easy_list, medium_list, hard_list, elite_list, master_list, bosspet_list, skillpet_list, otherpet_list, extra_list, passive_list ''' @@ -591,7 +506,7 @@ def manual_complete_tasks(username, tier, task_id): if tier in exclude_list: tier = tier.replace('Tasks', '') task = user_dao.task_info_for_id(tasklists.list_for_tier(tier), task_id) - return task.name, task.asset_image, task.tip, task.wiki_link + return task.name, task.image_link, task.tip, task.wiki_link ''' @@ -616,7 +531,7 @@ def manual_revert_tasks(username, tier, task_id): tier = tier.replace('Tasks', '') task = user_dao.task_info_for_id(tasklists.list_for_tier(tier), task_id) task.isCompleted = False - return task.name, task.asset_image, task.tip, task.wiki_link + return task.name, task.image_link, task.tip, task.wiki_link def update_imported_tasks(username: str, all_tasks: list, username2: str): @@ -629,13 +544,13 @@ def update_imported_tasks(username: str, all_tasks: list, username2: str): if current_task is not None: tasks_to_check.append(current_task) # store the whole object - all_task_ids = {task["uuid"] for group in all_tasks for task in group} + all_task_ids = {task["id"] for group in all_tasks for task in group} for current_task in tasks_to_check: - uuid = current_task[3] # the task uuid + task_id = current_task[3] tier = current_task[2] # the tier name - if uuid in all_task_ids: - __set_current_task(username, tier, uuid, False) # ✅ dynamically uses tier + if task_id in all_task_ids: + __set_current_task(username, tier, task_id, False) # ✅ dynamically uses tier # Rest of your function remains unchanged easy_diaries = { @@ -724,20 +639,20 @@ def update_imported_tasks(username: str, all_tasks: list, username2: str): coll.update_one({'username': username}, {'$set': {'ign': username2}}) for diary in diaries['tiers']['easy']['completedTasks']: - if diary['uuid'] in easy_diaries: - __set_task_complete(username, 'easyTasks', diary['uuid'], True) + if diary['id'] in easy_diaries: + __set_task_complete(username, 'easyTasks', diary['id'], True) for diary in diaries['tiers']['medium']['completedTasks']: - if diary['uuid'] in medium_diaries: - __set_task_complete(username, 'mediumTasks', diary['uuid'], True) + if diary['id'] in medium_diaries: + __set_task_complete(username, 'mediumTasks', diary['id'], True) for diary in diaries['tiers']['hard']['completedTasks']: - if diary['uuid'] in hard_diaries: - __set_task_complete(username, 'hardTasks', diary['uuid'], True) + if diary['id'] in hard_diaries: + __set_task_complete(username, 'hardTasks', diary['id'], True) for diary in diaries['tiers']['elite']['completedTasks']: - if diary['uuid'] in elite_diaries: - __set_task_complete(username, 'eliteTasks', diary['uuid'], True) + if diary['id'] in elite_diaries: + __set_task_complete(username, 'eliteTasks', diary['id'], True) ''' @@ -745,19 +660,19 @@ def update_imported_tasks(username: str, all_tasks: list, username2: str): The import_spreadsheet function, Imports a spreadsheet into the database. Reads google sheets and imports it into the database. -A tier is only imported if the spreadsheet tasks length matches our task length. -So that tasks are not updated with the wrong ID's. +A tier is only imported if the spreadsheet tasks length matches our task length. +So that tasks are not updated with the wrong ID's. Args: str: username - username of the user. str: url - url of the spreadsheet. -# very annoying to maintain since it is a google sheet, order of their rows is important. +# very annoying to maintain since it is a google sheet, order of their rows is important. Returns: str: error - error message if there is an error. - list: each element is a str: of the tier import status. + list: each element is a str: of the tier import status. ''' # def import_spreadsheet(username, url): @@ -933,7 +848,7 @@ def lms_status_change(username, lms_status): Args: str: username - The username of the user to change the lms status for. - + Returns: None @@ -954,7 +869,7 @@ def official_status_change(username): Args: str: username - The username of the user. str: username_value - The new username of the user. - + Returns: str: error - The error message if there is one. bool: success - Whether the username change was successful or not. @@ -1024,11 +939,11 @@ def official_icon(easy, medium, hard, elite): The unoffical_log_count function, gives a rough collection log count for an unofficial user. -# Since tasks are not 1:1 to collection log slots, many tasks have increases to their log count. +# Since tasks are not 1:1 to collection log slots, many tasks have increases to their log count. Args: str: username - The username of the user. - + Returns: str: total_count - The total log count for the user. @@ -1353,13 +1268,13 @@ def unoffical_log_count(username): ''' unofficial_icon: -The unofficial_icon function, determines the rank_icon to be displayed for unofficial users. +The unofficial_icon function, determines the rank_icon to be displayed for unofficial users. # TODO: add recently added rank_icon Args: str: username - The username of the user. - + Returns: str: rank_icon - The rank_icon to be displayed. @@ -1382,21 +1297,22 @@ def unofficial_icon(username): return rank_icon def get_leaderboard() -> list[LeaderboardEntry]: - def to_user(data): - user = convert_database_user(migrate_database_user_to_new_format(data)) - return LeaderboardEntry(user.username, user.lms_enabled, user.get_tier_progress('easy'), - user.get_tier_progress('medium'), user.get_tier_progress('hard'), - user.get_tier_progress('elite'), user.get_tier_progress('master')) + # def to_user(data): + # user = convert_database_user(migrate_database_user_to_new_format(data)) + # return LeaderboardEntry(user.username, user.lms_enabled, user.get_tier_progress('easy'), + # user.get_tier_progress('medium'), user.get_tier_progress('hard'), + # user.get_tier_progress('elite'), user.get_tier_progress('master')) - coll = mydb['taskAccounts'] - return list(sorted(map(to_user, coll.find({'isOfficial': True})), key=lambda x: x.points(), reverse=True)) + # coll = mydb['taskAccounts'] + # return list(sorted(map(to_user, coll.find({'isOfficial': True})), key=lambda x: x.points(), reverse=True)) + return [] def test(): task_coll = mydb["taskLists"] # results = task_coll.find_one({"username": "Gerni Task"}, {'tiers': 1, 'username': 1}) results = task_coll.find({}, {'tiers': 1, 'username': 1}) valid = True - + for result in results: easy = result['tiers']['easy'] medium = result['tiers']['medium'] @@ -1496,7 +1412,7 @@ def copy_tier_tasks(source_username: str, target_username: str, tiers: list[str] updates = {} for tier in tiers: tier_data = source_doc.get("tiers", {}).get(tier, {}) - + # Copy completedTasks if it exists if "completedTasks" in tier_data: updates[f"tiers.{tier}.completedTasks"] = tier_data["completedTasks"] diff --git a/task_types.py b/task_types.py index e6e59ad..d522c7f 100644 --- a/task_types.py +++ b/task_types.py @@ -1,39 +1,40 @@ from dataclasses import dataclass from datetime import datetime +from enum import Enum @dataclass -class ColLogData: - category: str - log_name: str - exclude: list - include: list - multi_category: list - multi: list - log_count: int +class VerificationData: + method: str + +# TODO: achievement diary and skill verification methods +@dataclass +class CollectionLogVerificationData(VerificationData): + item_ids: list[int] count: int + @dataclass class TaskData: - id: int + id: str name: str tip: str - is_lms: str wiki_link: str - wiki_image: str - asset_image: str - col_log_data: ColLogData - uuid: str + image_link: str + tags: list["TaskTag"] + verification: VerificationData + +class TaskTag(Enum): + LMS = "lms" + @dataclass class UserCurrentTask: - uuid: str - task_id: int = None + id: str assigned_date: datetime = None @dataclass class UserCompletedTask: - uuid: str - task_id: int = None + id: str assigned_date: datetime = None completed_date: datetime = None @@ -51,13 +52,12 @@ class TierProgress: class PageTask: def __init__(self, is_completed: bool, is_current: bool, task_data: TaskData): self.name = task_data.name - self.asset_image = task_data.asset_image self.is_completed = is_completed self.id = task_data.id self.is_current = is_current self.wiki_link = task_data.wiki_link + self.image_link = task_data.image_link self.tip = task_data.tip - self.uuid = task_data.uuid @dataclass class LeaderboardEntry: @@ -73,4 +73,3 @@ class LeaderboardEntry: def points(self) -> int: return self.easy_progress.percent_complete + self.medium_progress.percent_complete + \ self.hard_progress.percent_complete + self.elite_progress.percent_complete - diff --git a/taskapp.py b/taskapp.py index b82a69a..99a99f9 100644 --- a/taskapp.py +++ b/taskapp.py @@ -8,14 +8,12 @@ import task_login import tasklists from task_database import (get_taskCurrent, generate_task, complete_task, get_task_progress, - get_task_lists, manual_complete_tasks, manual_revert_tasks, + manual_complete_tasks, manual_revert_tasks, get_lms_status, lms_status_change, update_imported_tasks, - official_status_change, username_change, official_icon, unofficial_icon, get_taskCurrent_tier, generate_task_for_tier, + official_status_change, username_change, get_taskCurrent_tier, generate_task_for_tier, complete_task_unofficial_tier, get_user, get_leaderboard) import send_grid_email -from rank_check import get_collection_log, check_collection_log -from templesync import check_logs, read_json_file, import_logs -import time +from templesync import check_logs app = Flask(__name__) @@ -44,7 +42,7 @@ ''' before_request function: -The before_request function is run before every request to force HTTPS protocol. +The before_request function is run before every request to force HTTPS protocol. Args: None @@ -78,7 +76,7 @@ def before_request(): Args: Wrap(*args, **kwargs): Returns: - redirect request: to login page if the user is not logged in. + redirect request: to login page if the user is not logged in. ''' @@ -118,18 +116,18 @@ def __init__(self): # Converts dict from users task data to a list of user data represented as another list. # Also filters out LMS fields # Going forward, convert pages to use the class above instead -def filter_lms(t_list): - items = [] - for item in t_list: - for x in item['taskname'].items(): - if 'LMS' not in x: - tip = item.get('taskTip') - newItemAsList = [x[0], x[1], item['status'], item['_id'],item['taskCurrent'],] - if tip is not None: - newItemAsList.append(tip) - newItemAsList.append(item['wikiLink']) - items.append(newItemAsList) - return items +# def filter_lms(t_list): +# items = [] +# for item in t_list: +# for x in item['taskname'].items(): +# if 'LMS' not in x: +# tip = item.get('taskTip') +# newItemAsList = [x[0], x[1], item['status'], item['_id'],item['taskCurrent'],] +# if tip is not None: +# newItemAsList.append(tip) +# newItemAsList.append(item['wikiLink']) +# items.append(newItemAsList) +# return items def token_required(f): @@ -223,7 +221,7 @@ def api_complete_task(user): All @app.route functions: The @app.route functions are used to route the user to the correct page. -@app.route functions render an HTML template and pass in variables to the template. +@app.route functions render an HTML template and pass in variables to the template. Many @app.route functions call functions from task_login.py and/or task_database.py Functions will be explained in more detail in the functions themselves. ''' @@ -245,12 +243,12 @@ def register(): error = 'Passwords did not match. Please try again.' flash(error) return render_template('registerV2.html') - + if request.form.get('official') == 'on': official = True else: official = False - + if request.form.get('lms_status') == None: lms = False else: @@ -264,25 +262,25 @@ def register(): error = create_user[1] flash(error) return render_template('registerV2.html') - + send_verification_email_inital(request.form['email'], request.form["username"]) flash(f'Account {request.form['username']} Created Successfully!') flash(f'Verfication email was sent to {request.form['email']}, please check your email. (be sure to check your spam folder)') return redirect('/login/') - + error = 'Please fill out the captcha!' flash(error) return render_template('registerV2.html') - + else: return render_template('registerV2.html') - + except Exception as e: error = 'An error occurred while processing your request, please try again.' print(e) return error - - + + # AJAX route for user registration. @app.route('/register/user/', methods=['POST']) @@ -302,11 +300,11 @@ def register_user(): if not create_user[0]: error = create_user[1] return {'success' : False, 'error' : error} - + send_verification_email_inital(request.form['email'], request.form["username"]) flash('Verification email was sent to %s, please check your email (be sure to check your spam folder).' % request.form['email']) return {'success' : True, 'error' : None} - + error = 'Please fill out the captcha!' return {'success' : False, 'error' : error} except Exception as e: @@ -347,7 +345,7 @@ def login(): return render_template('loginV2.html') else: return render_template('loginV2.html') - + except Exception as e: error = "An error occurred while processing your request, please try again." print(e) @@ -389,7 +387,7 @@ def dashboard(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -440,10 +438,10 @@ def collection_log_check(): form_data = request.form rs_username = form_data['username'] lms_enabled = get_lms_status(session['username']) - easy_check = check_logs(rs_username, read_json_file('tasks/easy.json'), 'check', lms_enabled=lms_enabled) - medium_check = check_logs(rs_username, read_json_file('tasks/medium.json'), 'check', lms_enabled=lms_enabled) - hard_check = check_logs(rs_username, read_json_file('tasks/hard.json'), 'check', lms_enabled=lms_enabled) - elite_check = check_logs(rs_username, read_json_file('tasks/elite.json'),'check', lms_enabled=lms_enabled) + easy_check = check_logs(rs_username, tasklists.list_for_tier('easy', lms_enabled), 'check') + medium_check = check_logs(rs_username, tasklists.list_for_tier('medium', lms_enabled), 'check') + hard_check = check_logs(rs_username, tasklists.list_for_tier('hard', lms_enabled), 'check') + elite_check = check_logs(rs_username, tasklists.list_for_tier('elite', lms_enabled), 'check') return render_template('collection_log_check.html', rs_username = rs_username, @@ -457,10 +455,10 @@ def collection_log_check(): def collection_log_import(): form_data = request.form rs_username = form_data['username'] - easy_import = check_logs(rs_username, read_json_file('tasks/easy.json'), 'import') - medium_import = check_logs(rs_username, read_json_file('tasks/medium.json'), 'import') - hard_import = check_logs(rs_username, read_json_file('tasks/hard.json'), 'import') - elite_import = check_logs(rs_username, read_json_file('tasks/elite.json'), 'import') + easy_import = check_logs(rs_username, tasklists.list_for_tier('easy'), 'import') + medium_import = check_logs(rs_username, tasklists.list_for_tier('medium'), 'import') + hard_import = check_logs(rs_username, tasklists.list_for_tier('hard'), 'import') + elite_import = check_logs(rs_username, tasklists.list_for_tier('elite'), 'import') all_tasks = [easy_import, medium_import, hard_import, elite_import] update = update_imported_tasks(session['username'], all_tasks, form_data['username']) @@ -477,7 +475,7 @@ def collection_log_import(): def generate_button(): username = session['username'] task = generate_task(username) - data = {"name" : task.name, "image" : task.asset_image, "tip" : task.tip, "link" : task.wiki_link} + data = {"name" : task.name, "image" : task.image_link, "tip" : task.tip, "link" : task.wiki_link} return data @app.route('/complete/', methods =['POST']) @@ -498,10 +496,10 @@ def generate_unofficial(): tier = request.form["tier"] task = generate_task_for_tier(username, tier) if task: - data = {"name" : task.name, "image" : task.asset_image, "tip" : task.tip, "link" : task.wiki_link} + data = {"name" : task.name, "image" : task.image_link, "tip" : task.tip, "link" : task.wiki_link} return data tier = tier.replace('Tasks', '') - data = {"name" : f"You have no {tier} task!", + data = {"name" : f"You have no {tier} task!", "image" : "Cake_of_guidance_detail.png", "tip" : "Generate a Task!", "link" : "#" @@ -523,7 +521,7 @@ def complete_unofficial(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -537,54 +535,53 @@ def complete_unofficial(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } return data return data - -# route for task-list page, this page lists all tasks easy, medium, hard, elite, extra, passive and pets. -@app.route('/task-list/', methods=['GET']) -@login_required -def task_list(): - user_info = BasePageInfo() - # if not user_info.email_bool: - # return render_template('email-verify.html') - task = get_task_lists(user_info.username) - - # TODO Refactor template to use the user page_tasks class - items_easy = filter_lms(task[0]) - items_medium = filter_lms(task[1]) - items_hard = filter_lms(task[2]) - items_elite = filter_lms(task[3]) - items_master = filter_lms(task[4]) - items_bosspet = filter_lms(task[5]) - items_skillpet = filter_lms(task[6]) - items_otherpet = filter_lms(task[7]) - items_extra = filter_lms(task[8]) - items_passive = filter_lms(task[9]) - - return render_template( - 'task_list.html', - username=user_info.username, - email_verify=user_info.email_bool, - email_val=user_info.email_val, - items_easy=items_easy, - items_medium=items_medium, - items_hard=items_hard, - items_elite=items_elite, - items_master=items_master, - items_bosspet=items_bosspet, - items_skillpet=items_skillpet, - items_otherpet=items_otherpet, - items_extra=items_extra, - items_passive=items_passive, - taskapp_email=taskapp_email, - official=user_info.official - ) +# # route for task-list page, this page lists all tasks easy, medium, hard, elite, extra, passive and pets. +# @app.route('/task-list/', methods=['GET']) +# @login_required +# def task_list(): +# user_info = BasePageInfo() +# # if not user_info.email_bool: +# # return render_template('email-verify.html') +# task = get_task_lists(user_info.username) + +# # TODO Refactor template to use the user page_tasks class +# items_easy = filter_lms(task[0]) +# items_medium = filter_lms(task[1]) +# items_hard = filter_lms(task[2]) +# items_elite = filter_lms(task[3]) +# items_master = filter_lms(task[4]) +# items_bosspet = filter_lms(task[5]) +# items_skillpet = filter_lms(task[6]) +# items_otherpet = filter_lms(task[7]) +# items_extra = filter_lms(task[8]) +# items_passive = filter_lms(task[9]) + +# return render_template( +# 'task_list.html', +# username=user_info.username, +# email_verify=user_info.email_bool, +# email_val=user_info.email_val, +# items_easy=items_easy, +# items_medium=items_medium, +# items_hard=items_hard, +# items_elite=items_elite, +# items_master=items_master, +# items_bosspet=items_bosspet, +# items_skillpet=items_skillpet, +# items_otherpet=items_otherpet, +# items_extra=items_extra, +# items_passive=items_passive, +# taskapp_email=taskapp_email, +# official=user_info.official +# ) def single_task_list(list_title, task_type): user_info = BasePageInfo() @@ -596,11 +593,11 @@ def single_task_list(list_title, task_type): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } - + return render_template( 'task-list.html', @@ -649,40 +646,7 @@ def task_list_master(): @app.route('/task-list-pets/', methods=['GET']) @login_required def task_list_pets(): - user_info = BasePageInfo() - - # if not user_info.email_bool: - # return render_template('email-verify.html') - task = get_task_lists(user_info.username) - progress = get_task_progress(user_info.username) - items_bosspet = task[0] - items_skillpet = task[1] - items_otherpet = task[2] - - - context = { - 'easy': progress['easy']['percent_complete'], - 'medium': progress['medium']['percent_complete'], - 'hard': progress['hard']['percent_complete'], - 'elite': progress['elite']['percent_complete'], - 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], - 'extra' : progress['extra']['percent_complete'], - 'allPets' : progress['all_pets']['percent_complete'], - } - - return render_template( - 'task-list-pets.html', - username=user_info.username, - email_verify=user_info.email_bool, - email_val=user_info.email_val, - items_bosspet=items_bosspet, - items_skillpet=items_skillpet, - items_otherpet=items_otherpet, - taskapp_email=taskapp_email, - official=user_info.official, - **context - ) + return single_task_list(list_title='Pets Task List', task_type='pets') # route for extra task list, only shows extra tasks. @app.route('/task-list-extra/', methods=['GET']) @@ -742,7 +706,7 @@ def update(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -765,7 +729,7 @@ def revert(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -787,7 +751,7 @@ def faq(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -815,7 +779,7 @@ def wall_of_pain(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -839,7 +803,7 @@ def sync_collection_logs(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -865,7 +829,7 @@ def rank_check(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -891,7 +855,7 @@ def send_reset_email(email, username): Thank you for using Task App - If you did not make this request simply ignore this email. + If you did not make this request simply ignore this email. ''' ) @@ -958,7 +922,7 @@ def reset_request(): try: if session.get('username'): return redirect(url_for('dashboard')) - return render_template('password-request.html') + return render_template('password-request.html') except Exception as e: print(str(e)) @@ -971,7 +935,7 @@ def reset_password_request(): error = 'Email Address not found' flash(error) return render_template('password-request.html') - + send_reset_email(request.form['email'], email_query['username']) flash(f'Email was sent to {request.form['email']}. Be sure to check your spam folder.') return render_template('password-request.html') @@ -991,7 +955,7 @@ def reset_token(token): return redirect(url_for('reset_request')) return render_template('password-reset.html') - + if request.method == 'POST': user = task_login.verify_reset_token(token) form_data = request.form @@ -999,7 +963,7 @@ def reset_token(token): repeat_password = form_data['confirmPassword'] if password != repeat_password: flash("Passwords did not match. Please Try again.") - return render_template('passwork-reset.html') + return render_template('password-reset.html') else: change_pass = task_login.change_password(user, password) if change_pass[0] == True: @@ -1024,7 +988,7 @@ def profile(): 'hard': progress['hard']['percent_complete'], 'elite': progress['elite']['percent_complete'], 'master' : progress['master']['percent_complete'], - 'passive' : progress['passive']['percent_complete'], + 'passive' : progress['passive']['percent_complete'], 'extra' : progress['extra']['percent_complete'], 'allPets' : progress['all_pets']['percent_complete'], } @@ -1062,7 +1026,7 @@ def change_username(): if change_username_result == True and change_username_result_task_account == True: session['username'] = new_username return {'success' : True} - + return {'success': False, 'error': change_username_result} @app.route("/profile/change-password/", methods=['POST']) @@ -1078,7 +1042,7 @@ def change_password(): return {'success' : True} if not change_password[0]: return {'success' : False, 'error' : change_password[1]} - + return {'success' : False, 'error' : 'An error occurred!'} diff --git a/tasklists.py b/tasklists.py index 57aeb52..965faca 100644 --- a/tasklists.py +++ b/tasklists.py @@ -1,33 +1,31 @@ import json -from task_types import TaskData, ColLogData -def to_col_log_data(data: dict) -> ColLogData or None: # type: ignore +from task_types import TaskData, TaskTag, VerificationData, CollectionLogVerificationData + +def to_verification_data(data: dict) -> VerificationData or None: # type: ignore if data is None: return None - return ColLogData(category=data.get('category'), - log_name=data.get('logName'), - exclude=data.get('exclude'), - include=data.get('include'), - multi=data.get('multi'), - multi_category=data.get('multi_category'), - log_count=data['logCount'], - count=data.get('count')) + + method: str = data['method'] + if (method != "collection-log"): + return None + + return CollectionLogVerificationData(method=data['method'], + item_ids=data['itemIds'], + count=data['count']) def to_task_class(data: dict) -> TaskData: - return TaskData(id=data['_id'], + return TaskData(id=data['id'], name=data['name'], tip=data.get('tip'), - is_lms=data.get("isLMS") is True, wiki_link=data['wikiLink'], - wiki_image=data.get('wikiImage'), - asset_image=data['assetImage'], - col_log_data=to_col_log_data(data.get('colLogData')), - uuid=data['uuid'] - ) + image_link=data['imageLink'], + tags=data.get('tags', []), + verification=to_verification_data(data.get('verification'))) def read_tasks(filename: str) -> list[TaskData]: - with open('tasks/' + filename + '.json') as f: + with open('task-list/tiers/' + filename + '.json') as f: json_list = json.load(f) - return list(map(to_task_class, json_list)) + return list(map(to_task_class, json_list.get('tasks'))) easy = read_tasks('easy') @@ -37,9 +35,10 @@ def read_tasks(filename: str) -> list[TaskData]: master = read_tasks('master') passive = read_tasks('passive') extra = read_tasks('extra') -boss_pet = read_tasks('bossPets') -skill_pet = read_tasks('skillPets') -other_pet = read_tasks('otherPets') +pets = read_tasks('pets') +# boss_pet = read_tasks('bossPets') +# skill_pet = read_tasks('skillPets') +# other_pet = read_tasks('otherPets') # def list_for_tier(tier: str, include_lms: bool = True) -> list[TaskData]: @@ -53,9 +52,7 @@ def list_for_tier(tier: str, include_lms: bool = True) -> list[TaskData]: 'extraTasks' : extra, 'passive': passive, 'extra': extra, - 'bossPets': boss_pet, - 'skillPets': skill_pet, - 'otherPets': other_pet, + 'pets': pets, 'easy': easy, 'medium': medium, 'hard': hard, @@ -63,5 +60,5 @@ def list_for_tier(tier: str, include_lms: bool = True) -> list[TaskData]: 'master': master }[tier] if not include_lms: - return list(filter(lambda x: not x.is_lms, all_tasks)) + return [task for task in all_tasks if (TaskTag.LMS not in task.tags)] return all_tasks diff --git a/tasks/bossPets.json b/tasks/bossPets.json deleted file mode 100644 index 2e4d2c2..0000000 --- a/tasks/bossPets.json +++ /dev/null @@ -1,296 +0,0 @@ -[ - { - "_id": 1, - "name": "Abyssal orphan", - "assetImage": "Abyssal_orphan.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_orphan", - "uuid": "73e30a9b-5200-4f96-b6fb-a75f625b47d1" - }, - { - "_id": 2, - "name": "Baby mole", - "assetImage": "Baby_mole.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Baby_mole", - "uuid": "3afb6939-aacb-4509-8bf0-417082f87a67" - }, - { - "_id": 3, - "name": "Bran", - "assetImage": "bran.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Bran", - "uuid": "2cf9303e-1477-4261-8ef7-6d0228236cfd" - }, - { - "_id": 4, - "name": "Callisto cub", - "assetImage": "Callisto_cub.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Callisto_cub", - "uuid": "601856e9-e047-40c5-8181-951569fa1863" - }, - { - "_id": 5, - "name": "Dom", - "assetImage": "Dom.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dom#Follower", - "uuid": "7ad4c073-35e5-4da1-94e1-5f22b15938f5" - }, - { - "_id": 6, - "name": "Hellpuppy", - "assetImage": "Hellpuppy.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Hellpuppy", - "uuid": "8e5f0ca4-268e-468a-8940-8b773fed2202" - }, - { - "_id": 7, - "name": "Huberte", - "assetImage": "Huberte_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Huberte", - "uuid": "45d661bf-9fec-4260-af34-7c5325d7ac36" - }, - { - "_id": 8, - "name": "Ikkle hydra", - "assetImage": "Ikkle_hydra.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Ikkle_hydra", - "uuid": "4663bc6a-a704-48e8-9369-69c226f53ca9" - }, - { - "_id": 9, - "name": "Jal-nib-rek/Tzrek-zuk", - "assetImage": "Jal-nib-rek.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jal-nib-rek", - "uuid": "afde6030-8cba-4e6f-8be6-b54dd5883a40" - }, - { - "_id": 10, - "name": "Kalphite princess", - "assetImage": "Kalphite_princess_2nd_form.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Kalphite_princess", - "uuid": "43ed2a3b-b36c-4ff4-a229-9639dcc7a429" - }, - { - "_id": 11, - "name": "Lil' zik", - "assetImage": "Lil_zik.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Lil%27_zik", - "uuid": "4f26629c-5429-4a90-a4fa-79434c38770f" - }, - { - "_id": 12, - "name": "Little nightmare", - "assetImage": "Little_nightmare.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Little_nightmare", - "uuid": "db2932e6-f8b4-48bc-92a2-502705655b17" - }, - { - "_id": 13, - "name": "Moxi", - "assetImage": "Moxi.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Moxi", - "uuid": "771a2df5-06ea-4380-b439-369c455368a2" - }, - { - "_id": 14, - "name": "Muphin", - "assetImage": "Muphin_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Muphin", - "uuid": "1931d9d2-ec87-4359-8872-1ab639a30ba5" - }, - { - "_id": 15, - "name": "Nexling", - "assetImage": "Nexling.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nexling", - "uuid": "b808dd19-a954-45d4-b762-7073f23ff1d2" - }, - { - "_id": 16, - "name": "Nid", - "assetImage": "nid.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nid", - "uuid": "4982f7b4-7ebf-4180-bb13-ef46db459cc5" - }, - { - "_id": 17, - "name": "Noon/Midnight", - "assetImage": "Noon.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Noon", - "uuid": "ba76bd78-d812-44be-9f32-ec103c7a691a" - }, - { - "_id": 18, - "name": "Olmlet", - "assetImage": "Olmlet.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Olmlet", - "uuid": "b9d43521-5207-4c9c-b1e8-138e73652c59" - }, - { - "_id": 19, - "name": "Pet chaos elemental", - "assetImage": "Pet_chaos_elemental.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_chaos_elemental", - "uuid": "2c998e4b-6632-4f04-9357-076e06f35309" - }, - { - "_id": 20, - "name": "Pet dagannoth prime", - "assetImage": "Pet_dagannoth_prime.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_dagannoth_prime", - "uuid": "ae72d0c5-2131-4ac5-88ba-2673493be3bd" - }, - { - "_id": 21, - "name": "Pet dagannoth rex", - "assetImage": "Pet_dagannoth_rex.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_dagannoth_rex", - "uuid": "b6d9eebb-2cc9-4e0d-8bc2-9aae715488ac" - }, - { - "_id": 22, - "name": "Pet dagannoth supreme", - "assetImage": "Pet_dagannoth_supreme.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_dagannoth_supreme", - "uuid": "9cd3429d-1b46-4ef7-9948-78a9813227ca" - }, - { - "_id": 23, - "name": "Pet dark core/corporeal critter", - "assetImage": "Pet_dark_core.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_dark_core", - "uuid": "836487ea-37f7-4850-bb23-7f1d6275de9e" - }, - { - "_id": 24, - "name": "Pet general graardor", - "assetImage": "Pet_general_graardor.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_general_graardor", - "uuid": "28c5fef8-e1ab-42ea-90a1-dfcfdd602401" - }, - { - "_id": 25, - "name": "Pet k'ril tsutsaroth", - "assetImage": "Pet_kril_tsutsaroth.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_k%27ril_tsutsaroth", - "uuid": "7e690297-f53a-4a54-88b8-e5fbb40f0296" - }, - { - "_id": 26, - "name": "Pet kraken", - "assetImage": "Pet_kraken.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_kraken", - "uuid": "57762bb9-1c7e-4325-846c-6ce541e48aa4" - }, - { - "_id": 27, - "name": "Pet kree'arra", - "assetImage": "Pet_kreearra.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_kree%27arra", - "uuid": "31ef9651-6bb0-468c-92c7-fd272a4cf9b1" - }, - { - "_id": 28, - "name": "Pet smoke devil", - "assetImage": "Pet_smoke_devil.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_smoke_devil", - "uuid": "b82d1edf-a609-4757-aa7a-dabadbe441cc" - }, - { - "_id": 29, - "name": "Pet snakeling", - "assetImage": "Pet_snakeling.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_snakeling", - "uuid": "871c2274-585c-40b2-ab9d-fc1b78ae18d5" - }, - { - "_id": 30, - "name": "Pet zilyana", - "assetImage": "Pet_zilyana.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_zilyana", - "uuid": "6a001a9b-b3f2-421c-a62a-faafc5e1dae0" - }, - { - "_id": 31, - "name": "Prince black dragon", - "assetImage": "Prince_black_dragon.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Prince_black_dragon", - "uuid": "d7d850c8-53a6-4758-8873-bb3752566d10" - }, - { - "_id": 32, - "name": "Scorpia's offspring", - "assetImage": "Scorpias_offspring.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Scorpia offspring", - "uuid": "0e2558cf-ec25-4974-907a-1b12df022394" - }, - { - "_id": 33, - "name": "Scurry", - "assetImage": "Scurry.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Scurry", - "uuid": "94a57c56-aa5d-4220-ba2f-f17aeb10446e" - }, - { - "_id": 34, - "name": "Skotos", - "assetImage": "Skotos.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Skotos", - "uuid": "ed9d9451-7b8f-4b4e-90bc-804a95a8e55b" - }, - { - "_id": 35, - "name": "Sraracha", - "assetImage": "Sraracha.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Sraracha", - "uuid": "7c752184-9bc7-4af2-8479-0ceb6437d15d" - }, - { - "_id": 36, - "name": "Tzrek-jad", - "assetImage": "Tzrek-jad.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Tzrek-jad", - "uuid": "9ddc93bc-0df1-468f-b836-cf8e8b0a4e56" - }, - { - "_id": 37, - "name": "Tumeken's guardian", - "assetImage": "Tumeken's_Guardian.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Tumeken%27s_guardian", - "uuid": "166e46d1-86cf-4ecf-bd5c-23b9a3243dff" - }, - { - "_id": 38, - "name": "Venenatis spiderling", - "assetImage": "Venenatis_spiderling.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Venenatis_spiderling", - "uuid": "6da482f4-54e5-4001-9853-60e2ca9844e0" - }, - { - "_id": 39, - "name": "Vet'ion jr", - "assetImage": "Vetion_jr.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Vetion_junior", - "uuid": "9f8c0e97-5b85-4777-9077-29adf17473f9" - }, - { - "_id": 40, - "name": "Vorki", - "assetImage": "Vorki.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Vorki", - "uuid": "3723a146-1332-4974-8d3e-79bc2b637117" - }, - { - "_id": 41, - "name": "Smol Heredit", - "assetImage": "smol_heredit.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Smol_heredit", - "uuid": "9383ce8b-2674-48cb-a84d-f6adad1aa403" - }, - { - "_id": 42, - "name": "Yami", - "assetImage": "yami.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Yami", - "uuid": "bd567454-c7fa-4294-8323-a8f208a3db56" - } -] \ No newline at end of file diff --git a/tasks/easy.json b/tasks/easy.json deleted file mode 100644 index 5edf8b1..0000000 --- a/tasks/easy.json +++ /dev/null @@ -1,11666 +0,0 @@ -[ - { - "_id": 1, - "name": "Get bolt racks from Barrows", - "tip": "Bolt racks are obtained from the Barrows Combat Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/d/de/Bolt_rack_5.png", - "assetImage": "Bolt_rack_5.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4740, - "name": "Bolt rack" - } - ], - "logCount": 1 - }, - "uuid": "5aa40ab6-d572-4b7b-ae0e-bed226478f13" - }, - { - "_id": 2, - "name": "Get a Mole claw + skin", - "tip": "Mole Skin and Mole Claw are guarenteed drops from the Giant Mole Boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giant_Mole", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d8/Mole_claw.png", - "assetImage": "Mole_claw.png", - "colLogData": { - "category": "Bosses", - "logName": "giant_mole", - "include": [ - { - "id": 7416, - "name": "Mole claw" - }, - { - "id": 7418, - "name": "Mole skin" - } - ], - "logCount": 2 - }, - "uuid": "11968c49-8398-4125-826c-829dfe85b0b2" - }, - { - "_id": 3, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 1 - }, - "uuid": "b9fe2097-02ec-4885-8072-1a303c93e147" - }, - { - "_id": 4, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 2 - }, - "uuid": "c09587c2-f732-42ff-8bb1-35f9d657e9c7" - }, - { - "_id": 5, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 3 - }, - "uuid": "f1587710-61b2-4ecf-9fe5-ef63be0aed95" - }, - { - "_id": 6, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 4 - }, - "uuid": "25bfc85a-0429-478a-b3af-498e35918a71" - }, - { - "_id": 7, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 5 - }, - "uuid": "4943aa05-a4b2-48ca-876d-42dc98e063a7" - }, - { - "_id": 8, - "name": "Get 3 new uniques from beginner clues", - "tip": "Potential reward from beginner clues. Typically you would want to kill Goblins or Minotaurs for the clues themselves. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)", - "wikiImage": "https://oldschool.runescape.wiki/images/9/93/Clue_scroll_%28beginner%29.png?c3ba4", - "assetImage": "Clue_scroll_beginner.png", - "colLogData": { - "category": "Clues", - "logName": "beginner_treasure_trails", - "include": [ - { - "id": 23285, - "name": "Mole slippers" - }, - { - "id": 23288, - "name": "Frog slippers" - }, - { - "id": 23291, - "name": "Bear feet" - }, - { - "id": 23294, - "name": "Demon feet" - }, - { - "id": 23297, - "name": "Jester cape" - }, - { - "id": 23300, - "name": "Shoulder parrot" - }, - { - "id": 23303, - "name": "Monk's robe top (t)" - }, - { - "id": 23306, - "name": "Monk's robe (t)" - }, - { - "id": 23309, - "name": "Amulet of defence (t)" - }, - { - "id": 23312, - "name": "Sandwich lady hat" - }, - { - "id": 23315, - "name": "Sandwich lady top" - }, - { - "id": 23318, - "name": "Sandwich lady bottom" - }, - { - "id": 23321, - "name": "Rune scimitar ornament kit (guthix)" - }, - { - "id": 23324, - "name": "Rune scimitar ornament kit (saradomin)" - }, - { - "id": 23327, - "name": "Rune scimitar ornament kit (zamorak)" - } - ], - "logCount": 3 - }, - "uuid": "b8bd103e-f072-46ff-894e-3a8b91052849" - }, - { - "_id": 9, - "name": "Get 3 new uniques from beginner clues", - "tip": "Potential reward from beginner clues. Typically you would want to kill Goblins or Minotaurs for the clues themselves. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)", - "wikiImage": "https://oldschool.runescape.wiki/images/9/93/Clue_scroll_%28beginner%29.png?c3ba4", - "assetImage": "Clue_scroll_beginner.png", - "colLogData": { - "category": "Clues", - "logName": "beginner_treasure_trails", - "include": [ - { - "id": 23285, - "name": "Mole slippers" - }, - { - "id": 23288, - "name": "Frog slippers" - }, - { - "id": 23291, - "name": "Bear feet" - }, - { - "id": 23294, - "name": "Demon feet" - }, - { - "id": 23297, - "name": "Jester cape" - }, - { - "id": 23300, - "name": "Shoulder parrot" - }, - { - "id": 23303, - "name": "Monk's robe top (t)" - }, - { - "id": 23306, - "name": "Monk's robe (t)" - }, - { - "id": 23309, - "name": "Amulet of defence (t)" - }, - { - "id": 23312, - "name": "Sandwich lady hat" - }, - { - "id": 23315, - "name": "Sandwich lady top" - }, - { - "id": 23318, - "name": "Sandwich lady bottom" - }, - { - "id": 23321, - "name": "Rune scimitar ornament kit (guthix)" - }, - { - "id": 23324, - "name": "Rune scimitar ornament kit (saradomin)" - }, - { - "id": 23327, - "name": "Rune scimitar ornament kit (zamorak)" - } - ], - "logCount": 6 - }, - "uuid": "8b801928-9c3b-4497-806c-dbaa4a918090" - }, - { - "_id": 10, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 5 - }, - "uuid": "cd746414-1422-4fe1-bc10-adc8c02f833c" - }, - { - "_id": 11, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 10 - }, - "uuid": "531a9fcb-edf7-4a9d-a31d-231fa4777a8d" - }, - { - "_id": 12, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 15 - }, - "uuid": "2a0f94af-b882-4f1d-b676-b7f14d455619" - }, - { - "_id": 13, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 20 - }, - "uuid": "8cb12adf-67b6-4a84-8227-846fbfedb541" - }, - { - "_id": 14, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 25 - }, - "uuid": "f2d67787-b4c5-4055-b9dd-9fd6a6890d90" - }, - { - "_id": 15, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 30 - }, - "uuid": "29d36179-66b9-454f-b35d-a707d1bc7f96" - }, - { - "_id": 16, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 5 - }, - "uuid": "c4401064-7921-4c46-b64a-239b2375b02f" - }, - { - "_id": 17, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 10 - }, - "uuid": "272fe596-e5f7-4bb2-be8d-deb4216564e2" - }, - { - "_id": 18, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 15 - }, - "uuid": "db97ec80-5975-46e3-b1f7-063366e5ea1e" - }, - { - "_id": 19, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 20 - }, - "uuid": "5719bb08-b9c3-4fee-b069-bd37b9589b39" - }, - { - "_id": 20, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 5 - }, - "uuid": "11fdf715-6c49-425e-a523-ba415e5e1f42" - }, - { - "_id": 21, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 10 - }, - "uuid": "38482a9b-dd2f-4a4c-a673-4dd771ba8000" - }, - { - "_id": 22, - "name": "Get Runner boots", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6b/Runner_boots.png?e6850", - "assetImage": "Runner_boots.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10552, - "name": "Runner boots" - } - ], - "logCount": 1 - }, - "uuid": "a3b1b2c4-05cd-4171-aaec-9a074c0d713c" - }, - { - "_id": 23, - "name": "Get Penance gloves", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/3/34/Penance_gloves.png?a35d6", - "assetImage": "Penance_gloves.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10553, - "name": "Penance gloves" - } - ], - "logCount": 1 - }, - "uuid": "1bc6158d-dd1e-499e-8ffd-3225eace2dae" - }, - { - "_id": 24, - "name": "Get a Granite body", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/1/15/Granite_body.png?3be38", - "assetImage": "Granite_body.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10564, - "name": "Granite body" - } - ], - "logCount": 1 - }, - "uuid": "c59bd20a-c811-47dd-85bb-23a68b92b144" - }, - { - "_id": 25, - "name": "Get 1 new halo", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/6/67/Saradomin_halo.png?82a64", - "assetImage": "Saradomin_halo.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 12637, - "name": "Saradomin halo" - }, - { - "id": 12638, - "name": "Zamorak halo" - }, - { - "id": 12639, - "name": "Guthix halo" - } - ], - "logCount": 1 - }, - "uuid": "5d8fc07b-a864-4afb-aec1-edefcdf60140" - }, - { - "_id": 26, - "name": "Get the full Red decorative set", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/0/0d/Decorative_armour_%28red_platebody%29_detail.png/130px-Decorative_armour_%28red_platebody%29_detail.png?2cf65", - "assetImage": "130px-Decorative_armour_red_platebody_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 25163, - "name": "Decorative boots (red)" - }, - { - "id": 25165, - "name": "Decorative full helm (red)" - }, - { - "id": 4068, - "name": "Decorative sword (red)" - }, - { - "id": 4069, - "name": "Decorative armour (red platebody)" - }, - { - "id": 4070, - "name": "Decorative armour (red platelegs)" - }, - { - "id": 4071, - "name": "Decorative helm (red)" - }, - { - "id": 4072, - "name": "Decorative shield (red)" - }, - { - "id": 11893, - "name": "Decorative armour (red plateskirt)" - } - ], - "logCount": 8 - }, - "uuid": "af93b5ec-e862-4af6-b299-605da3275e74" - }, - { - "_id": 27, - "name": "Get the Zamorak hood & cloak", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "http://oldschool.runescape.wiki/images/9/9c/Castlewars_hood_%28Zamorak%29.png", - "assetImage": "Castlewars_hood_Zamorak.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 4515, - "name": "Castlewars hood (Zamorak)" - }, - { - "id": 4516, - "name": "Castlewars cloak (Zamorak)" - } - ], - "logCount": 2 - }, - "uuid": "46ca45fc-4654-40dd-bcfa-9157b15f216f" - }, - { - "_id": 28, - "name": "Get the Saradomin hood & cloak", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b2/Castlewars_hood_%28Saradomin%29.png?7fde8", - "assetImage": "Castlewars_hood_Saradomin.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 4513, - "name": "Castlewars hood (Saradomin)" - }, - { - "id": 4514, - "name": "Castlewars cloak (Saradomin)" - } - ], - "logCount": 2 - }, - "uuid": "b05c1479-a3ab-475d-92ff-463be1232224" - }, - { - "_id": 29, - "name": "Get 1 Angler piece", - "tip": "Potential reward from the Fishing Trawler minigame. Protip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler", - "wikiImage": "http://oldschool.runescape.wiki/images/a/a0/Angler_top.png?14388", - "assetImage": "Angler_top.png", - "colLogData": { - "category": "Minigames", - "logName": "fishing_trawler", - "include": [ - { - "id": 13258, - "name": "Angler hat" - }, - { - "id": 13259, - "name": "Angler top" - }, - { - "id": 13260, - "name": "Angler waders" - }, - { - "id": 13261, - "name": "Angler boots" - } - ], - "logCount": 1 - }, - "uuid": "549a24ea-4798-4734-9f0c-b8cb39323c60" - }, - { - "_id": 30, - "name": "Get 1 Angler piece", - "tip": "Potential reward from the Fishing Trawler minigame. Protip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler", - "wikiImage": "http://oldschool.runescape.wiki/images/a/a0/Angler_top.png?14388", - "assetImage": "Angler_top.png", - "colLogData": { - "category": "Minigames", - "logName": "fishing_trawler", - "include": [ - { - "id": 13258, - "name": "Angler hat" - }, - { - "id": 13259, - "name": "Angler top" - }, - { - "id": 13260, - "name": "Angler waders" - }, - { - "id": 13261, - "name": "Angler boots" - } - ], - "logCount": 2 - }, - "uuid": "1e9b6339-c463-4f6e-aae8-eff2943e1ea6" - }, - { - "_id": 31, - "name": "Get 1 Angler piece", - "tip": "Potential reward from the Fishing Trawler minigame. Protip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler", - "wikiImage": "http://oldschool.runescape.wiki/images/a/a0/Angler_top.png?14388", - "assetImage": "Angler_top.png", - "colLogData": { - "category": "Minigames", - "logName": "fishing_trawler", - "include": [ - { - "id": 13258, - "name": "Angler hat" - }, - { - "id": 13259, - "name": "Angler top" - }, - { - "id": 13260, - "name": "Angler waders" - }, - { - "id": 13261, - "name": "Angler boots" - } - ], - "logCount": 3 - }, - "uuid": "3b8b6926-f4c2-406b-a3de-090775321720" - }, - { - "_id": 32, - "name": "Get 1 Angler piece", - "tip": "Potential reward from the Fishing Trawler minigame. Protip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler", - "wikiImage": "http://oldschool.runescape.wiki/images/a/a0/Angler_top.png?14388", - "assetImage": "Angler_top.png", - "colLogData": { - "category": "Minigames", - "logName": "fishing_trawler", - "include": [ - { - "id": 13258, - "name": "Angler hat" - }, - { - "id": 13259, - "name": "Angler top" - }, - { - "id": 13260, - "name": "Angler waders" - }, - { - "id": 13261, - "name": "Angler boots" - } - ], - "logCount": 4 - }, - "uuid": "1c6e5f0c-1874-4633-ac5b-ca427b5a8431" - }, - { - "_id": 33, - "name": "Get 1 new unique from Gnome Restaurant", - "tip": "Potential reward from the Gnome Restaurant minigame. Complete hard deliveries. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Gnome_Restaurant", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3a/Gnome_scarf.png?2d77d", - "assetImage": "Gnome_scarf.png", - "colLogData": { - "category": "Minigames", - "logName": "gnome_restaurant", - "include": [ - { - "id": 9469, - "name": "Grand seed pod" - }, - { - "id": 9470, - "name": "Gnome scarf" - }, - { - "id": 9472, - "name": "Gnome goggles" - }, - { - "id": 9475, - "name": "Mint cake" - } - ], - "logCount": 1 - }, - "uuid": "b5c34649-5e54-4d0c-999d-7f9ebf72d781" - }, - { - "_id": 34, - "name": "Get the next tier of MTA wand", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3d/Beginner_wand.png?a58fd", - "assetImage": "Beginner_wand.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6908, - "name": "Beginner wand" - } - ], - "logCount": 1 - }, - "uuid": "7c8cd7c2-9588-46e4-a55b-4c6e3b849c61" - }, - { - "_id": 35, - "name": "Get the next tier of MTA wand", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/5/55/Teacher_wand.png?a58fd", - "assetImage": "Teacher_wand.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6910, - "name": "Apprentice wand" - } - ], - "logCount": 1 - }, - "uuid": "cf28416e-9126-4ec3-b375-d3e7b84b89b4" - }, - { - "_id": 36, - "name": "Get the next tier of MTA wand", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/5/55/Teacher_wand.png?a58fd", - "assetImage": "Teacher_wand.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6912, - "name": "Teacher wand" - } - ], - "logCount": 1 - }, - "uuid": "99060197-8200-4f3f-8e36-9bdb3bae4daa" - }, - { - "_id": 37, - "name": "Unlock bones to peaches", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c7/Bones_to_Peaches.png?32e63", - "assetImage": "Bones_to_Peaches.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6926, - "name": "Bones to Peaches" - } - ], - "logCount": 1 - }, - "uuid": "706bf548-5893-4b6b-849d-a3f8ae699201" - }, - { - "_id": 38, - "name": "Get Infinity boots", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "http://oldschool.runescape.wiki/images/d/d8/Infinity_boots.png?6a89d", - "assetImage": "Infinity_boots.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6920, - "name": "Infinity boots" - } - ], - "logCount": 1 - }, - "uuid": "623e01ec-3fc9-4d79-8cf9-473438deface" - }, - { - "_id": 39, - "name": "Get Infinity gloves", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "http://oldschool.runescape.wiki/images/c/c2/Infinity_gloves.png?6a89d", - "assetImage": "Infinity_gloves.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6922, - "name": "Infinity gloves" - } - ], - "logCount": 1 - }, - "uuid": "eb9282b7-017a-4cb5-9bc4-6710307486bc" - }, - { - "_id": 40, - "name": "Get a Void Knight seal", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/8/8e/Void_seal.png?9b904", - "assetImage": "Void_seal.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 11666, - "name": "Void seal" - } - ], - "logCount": 1 - }, - "uuid": "100fc573-a473-4f8e-82d8-bda08f454a06" - }, - { - "_id": 41, - "name": "Get Void Knight gloves", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/9/91/Void_knight_gloves.png?9c4d4", - "assetImage": "Void_knight_gloves.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 8842, - "name": "Void knight gloves" - } - ], - "logCount": 1 - }, - "uuid": "010d0bc4-d9e1-46da-a802-ed62efe66de7" - }, - { - "_id": 42, - "name": "Get 1 piece of Rogue equipment", - "tip": "Potential reward from the Rogues Den Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Rogues%27_Den", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Rogue_top.png?2c8da", - "assetImage": "Rogue_top.png", - "colLogData": { - "category": "Minigames", - "logName": "rogues_den", - "include": [ - { - "id": 5553, - "name": "Rogue top" - }, - { - "id": 5554, - "name": "Rogue mask" - }, - { - "id": 5555, - "name": "Rogue trousers" - }, - { - "id": 5556, - "name": "Rogue gloves" - }, - { - "id": 5557, - "name": "Rogue boots" - } - ], - "logCount": 1 - }, - "uuid": "330d732a-5aad-463a-a79e-7b07f9dfbc2f" - }, - { - "_id": 43, - "name": "Get 1 piece of Rogue equipment", - "tip": "Potential reward from the Rogues Den Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Rogues%27_Den", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Rogue_top.png?2c8da", - "assetImage": "Rogue_top.png", - "colLogData": { - "category": "Minigames", - "logName": "rogues_den", - "include": [ - { - "id": 5553, - "name": "Rogue top" - }, - { - "id": 5554, - "name": "Rogue mask" - }, - { - "id": 5555, - "name": "Rogue trousers" - }, - { - "id": 5556, - "name": "Rogue gloves" - }, - { - "id": 5557, - "name": "Rogue boots" - } - ], - "logCount": 2 - }, - "uuid": "b8dea3b4-7391-4487-a008-06348a866d93" - }, - { - "_id": 44, - "name": "Get 1 piece of Rogue equipment", - "tip": "Potential reward from the Rogues Den Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Rogues%27_Den", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Rogue_top.png?2c8da", - "assetImage": "Rogue_top.png", - "colLogData": { - "category": "Minigames", - "logName": "rogues_den", - "include": [ - { - "id": 5553, - "name": "Rogue top" - }, - { - "id": 5554, - "name": "Rogue mask" - }, - { - "id": 5555, - "name": "Rogue trousers" - }, - { - "id": 5556, - "name": "Rogue gloves" - }, - { - "id": 5557, - "name": "Rogue boots" - } - ], - "logCount": 3 - }, - "uuid": "336e3028-a91b-4acb-ac66-256aa99ff381" - }, - { - "_id": 45, - "name": "Get 1 piece of Rogue equipment", - "tip": "Potential reward from the Rogues Den Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Rogues%27_Den", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Rogue_top.png?2c8da", - "assetImage": "Rogue_top.png", - "colLogData": { - "category": "Minigames", - "logName": "rogues_den", - "include": [ - { - "id": 5553, - "name": "Rogue top" - }, - { - "id": 5554, - "name": "Rogue mask" - }, - { - "id": 5555, - "name": "Rogue trousers" - }, - { - "id": 5556, - "name": "Rogue gloves" - }, - { - "id": 5557, - "name": "Rogue boots" - } - ], - "logCount": 4 - }, - "uuid": "44c15a4c-fd1e-47ae-8651-7f807cce9ea5" - }, - { - "_id": 46, - "name": "Get 1 piece of Rogue equipment", - "tip": "Potential reward from the Rogues Den Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Rogues%27_Den", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Rogue_top.png?2c8da", - "assetImage": "Rogue_top.png", - "colLogData": { - "category": "Minigames", - "logName": "rogues_den", - "include": [ - { - "id": 5553, - "name": "Rogue top" - }, - { - "id": 5554, - "name": "Rogue mask" - }, - { - "id": 5555, - "name": "Rogue trousers" - }, - { - "id": 5556, - "name": "Rogue gloves" - }, - { - "id": 5557, - "name": "Rogue boots" - } - ], - "logCount": 5 - }, - "uuid": "1555801d-9603-42c2-90bd-f056bc8404fe" - }, - { - "_id": 47, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 1 - }, - "uuid": "679c04c8-ff5b-4c47-a9dc-a4984d8366bb" - }, - { - "_id": 48, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 2 - }, - "uuid": "9157d0d5-abca-4654-8646-38b293c22754" - }, - { - "_id": 49, - "name": "Get 1 piece of Lumberjack equipment", - "tip": "Guarenteed reward from the Temple Trekking Minigame find the correct \"Bog\" event. Do easy Treks for best results. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking", - "wikiImage": "https://oldschool.runescape.wiki/images/4/48/Lumberjack_top.png?bdfeb", - "assetImage": "Lumberjack_top.png", - "colLogData": { - "category": "Minigames", - "logName": "temple_trekking", - "include": [ - { - "id": 10933, - "name": "Lumberjack boots" - }, - { - "id": 10939, - "name": "Lumberjack top" - }, - { - "id": 10940, - "name": "Lumberjack legs" - }, - { - "id": 10941, - "name": "Lumberjack hat" - } - ], - "logCount": 1 - }, - "uuid": "16e4779b-6093-4be1-9cac-17f36c5958fd" - }, - { - "_id": 50, - "name": "Get 1 piece of Lumberjack equipment", - "tip": "Guarenteed reward from the Temple Trekking Minigame find the correct \"Bog\" event. Do easy Treks for best results. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking", - "wikiImage": "https://oldschool.runescape.wiki/images/4/48/Lumberjack_top.png?bdfeb", - "assetImage": "Lumberjack_top.png", - "colLogData": { - "category": "Minigames", - "logName": "temple_trekking", - "include": [ - { - "id": 10933, - "name": "Lumberjack boots" - }, - { - "id": 10939, - "name": "Lumberjack top" - }, - { - "id": 10940, - "name": "Lumberjack legs" - }, - { - "id": 10941, - "name": "Lumberjack hat" - } - ], - "logCount": 2 - }, - "uuid": "505a8138-9414-406c-a739-a9c907c3e85f" - }, - { - "_id": 51, - "name": "Get 1 piece of Lumberjack equipment", - "tip": "Guarenteed reward from the Temple Trekking Minigame find the correct \"Bog\" event. Do easy Treks for best results. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking", - "wikiImage": "https://oldschool.runescape.wiki/images/4/48/Lumberjack_top.png?bdfeb", - "assetImage": "Lumberjack_top.png", - "colLogData": { - "category": "Minigames", - "logName": "temple_trekking", - "include": [ - { - "id": 10933, - "name": "Lumberjack boots" - }, - { - "id": 10939, - "name": "Lumberjack top" - }, - { - "id": 10940, - "name": "Lumberjack legs" - }, - { - "id": 10941, - "name": "Lumberjack hat" - } - ], - "logCount": 3 - }, - "uuid": "3c6bfbd5-f950-4e8c-8a7f-43afc849fe49" - }, - { - "_id": 52, - "name": "Get 1 piece of Lumberjack equipment", - "tip": "Guarenteed reward from the Temple Trekking Minigame find the correct \"Bog\" event. Do easy Treks for best results. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking", - "wikiImage": "https://oldschool.runescape.wiki/images/4/48/Lumberjack_top.png?bdfeb", - "assetImage": "Lumberjack_top.png", - "colLogData": { - "category": "Minigames", - "logName": "temple_trekking", - "include": [ - { - "id": 10933, - "name": "Lumberjack boots" - }, - { - "id": 10939, - "name": "Lumberjack top" - }, - { - "id": 10940, - "name": "Lumberjack legs" - }, - { - "id": 10941, - "name": "Lumberjack hat" - } - ], - "logCount": 4 - }, - "uuid": "79a0736d-d4a6-4708-a18b-f236f2cab147" - }, - { - "_id": 53, - "name": "Get the Gricoller's can", - "tip": "Can be purchased as a reward from the Tithe Farm Minigame. Plant those seeds! ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ed/Gricoller%27s_can.png?e5e8b", - "assetImage": "Gricollers_can.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13353, - "name": "Gricoller's can" - } - ], - "logCount": 1 - }, - "uuid": "bd2c8923-be2b-4295-acd6-5f949dc3e27e" - }, - { - "_id": 54, - "name": "Get 1 piece of Farmer's equipment", - "tip": "Can be purchased as a reward from the Tithe Farm Minigame. Plant those seeds! ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm", - "wikiImage": "https://oldschool.runescape.wiki/images/b/bd/Farmer%27s_jacket.png?a4894", - "assetImage": "Farmers_jacket.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13640, - "name": "Farmer's boro trousers" - }, - { - "id": 13642, - "name": "Farmer's jacket" - }, - { - "id": 13644, - "name": "Farmer's boots" - }, - { - "id": 13646, - "name": "Farmer's strawhat" - } - ], - "logCount": 1 - }, - "uuid": "f580b79d-da36-4d99-acd9-b23cabc31b68" - }, - { - "_id": 55, - "name": "Get 1 piece of Farmer's equipment", - "tip": "Can be purchased as a reward from the Tithe Farm Minigame. Plant those seeds! ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm", - "wikiImage": "https://oldschool.runescape.wiki/images/b/bd/Farmer%27s_jacket.png?a4894", - "assetImage": "Farmers_jacket.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13640, - "name": "Farmer's boro trousers" - }, - { - "id": 13642, - "name": "Farmer's jacket" - }, - { - "id": 13644, - "name": "Farmer's boots" - }, - { - "id": 13646, - "name": "Farmer's strawhat" - } - ], - "logCount": 2 - }, - "uuid": "ae71c97d-0a6f-46e7-82e3-a7b1178c9f87" - }, - { - "_id": 56, - "name": "Get Blue Rum", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/2/28/Rum_%28blue%29.png?e408a", - "assetImage": "Rum_blue.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8941, - "name": "Rum (blue)" - } - ], - "logCount": 1 - }, - "uuid": "8513ab1a-12dd-4f24-9939-a36a7015bbc5" - }, - { - "_id": 57, - "name": "Get Red Rum", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "http://oldschool.runescape.wiki/images/2/24/Rum_%28red%29.png?5ee08", - "assetImage": "Rum_red.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8940, - "name": "Rum (red)" - } - ], - "logCount": 1 - }, - "uuid": "02111c7f-3db9-4eed-b848-dfa0e18a91d5" - }, - { - "_id": 58, - "name": "Get The stuff", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/4/40/The_stuff.png?19cf0", - "assetImage": "The_stuff.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8988, - "name": "The stuff" - } - ], - "logCount": 1 - }, - "uuid": "18edfb99-8954-400f-b6ec-a4f6281e5b39" - }, - { - "_id": 59, - "name": "Get the Pearl fishing rod", - "tip": "Can be purchased as a reward from the Aerial Fishing hunter method. Good luck with that RSI. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Aerial_fishing", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7b/Pearl_fishing_rod.png?9bfc6", - "assetImage": "Pearl_fishing_rod.png", - "colLogData": { - "category": "Other", - "logName": "aerial_fishing", - "include": [ - { - "id": 22846, - "name": "Pearl fishing rod" - } - ], - "logCount": 1 - }, - "uuid": "db8b3842-abfa-4b64-bf59-c820a0dce83d" - }, - { - "_id": 60, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters. PRO TIP: Don't go 19,000 dry for goblin scroll...", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "champions_challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 1 - }, - "uuid": "ddd13c53-541f-4330-ad5d-b8b8fbe2a0ac" - }, - { - "_id": 61, - "name": "Get the Marksman headpiece", - "tip": "Guarenteed from Chompy bird hunting. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_bird_hunting", - "wikiImage": "https://oldschool.runescape.wiki/images/2/22/Chompy_bird_hat_%28marksman%29.png?88998", - "assetImage": "Chompy_bird_hat_marksman.png", - "colLogData": { - "category": "Other", - "logName": "chompy_bird_hunting", - "include": [ - { - "id": 2983, - "name": "Chompy bird hat (marksman)" - } - ], - "logCount": 1 - }, - "uuid": "1d7c9237-a900-44f7-92e0-9013fb45dda8" - }, - { - "_id": 62, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "http://oldschool.runescape.wiki/images/d/df/Tea_flask.png?176d3", - "assetImage": "Tea_flask.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25617, - "name": "Tea flask" - } - ], - "logCount": 1 - }, - "uuid": "44cb00e0-3fab-4361-b9cf-22127b1c2f2d" - }, - { - "_id": 63, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "http://oldschool.runescape.wiki/images/a/a3/Rune_satchel.png", - "assetImage": "Rune_satchel.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25623, - "name": "Rune satchel" - } - ], - "logCount": 1 - }, - "uuid": "740a7a6e-efdf-4cc0-bac3-b27e38445ea3" - }, - { - "_id": 64, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "https://oldschool.runescape.wiki/images/0/06/Green_satchel.png?c2fed", - "assetImage": "Green_satchel.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25619, - "name": "Green satchel" - } - ], - "logCount": 1 - }, - "uuid": "977865aa-cb22-4d3f-ad89-d7959e99570b" - }, - { - "_id": 65, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "https://oldschool.runescape.wiki/images/5/57/Red_satchel.png?19ca9", - "assetImage": "Red_satchel.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25620, - "name": "Red satchel" - } - ], - "logCount": 1 - }, - "uuid": "122ccccc-fb1d-4d01-bd9e-78397735ffee" - }, - { - "_id": 66, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "http://oldschool.runescape.wiki/images/d/da/Black_satchel.png?493a6", - "assetImage": "Black_satchel.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25621, - "name": "Black satchel" - } - ], - "logCount": 1 - }, - "uuid": "8817aa4f-8fb2-4210-b506-d9f111442060" - }, - { - "_id": 67, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c6/Gold_satchel.png?a9d55", - "assetImage": "Gold_satchel.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25622, - "name": "Gold satchel" - } - ], - "logCount": 1 - }, - "uuid": "7e168420-ec5d-4e6f-be37-6c070e257d1c" - }, - { - "_id": 68, - "name": "Get 1 unique from Creature Creation", - "tip": "Can be received as a drop from the Creature Creation \"Minigame\". Make a abominiation with two different ingredients, mix together and murder. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation", - "wikiImage": "https://oldschool.runescape.wiki/images/d/da/Plain_satchel.png", - "assetImage": "Plain_satchel.png", - "colLogData": { - "category": "Other", - "logName": "creature_creation", - "include": [ - { - "id": 25618, - "name": "Plain satchel" - } - ], - "logCount": 1 - }, - "uuid": "e0cd073e-8844-43f0-bff7-dad3bdf88c26" - }, - { - "_id": 69, - "name": "Get a Rune defender", - "tip": "Can be received as a drop from Cycolps in the warrier guild. Good ole defender grind.", - "wikiLink": "https://oldschool.runescape.wiki/w/Defender", - "wikiImage": "https://oldschool.runescape.wiki/images/5/58/Rune_defender.png?710be", - "assetImage": "Rune_defender.png", - "colLogData": { - "category": "Other", - "logName": "cyclopes", - "include": [ - { - "id": 8850, - "name": "Rune defender" - } - ], - "logCount": 1 - }, - "uuid": "e3bf623c-08f8-47be-98f7-bb9d5d313c2a" - }, - { - "_id": 70, - "name": "Get 2 unique notes from Fossil Island", - "tip": "Can be received by opening the chest(s) on Fossil Island with 100 Numulite. Killing hoop snakes for the Numulite is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_note", - "wikiImage": "http://oldschool.runescape.wiki/images/8/82/Scribbled_note.png", - "assetImage": "Scribbled_note.png", - "colLogData": { - "category": "Other", - "logName": "fossil_island_notes", - "include": [ - { - "id": 21664, - "name": "Scribbled note" - }, - { - "id": 21666, - "name": "Partial note" - }, - { - "id": 21668, - "name": "Ancient note" - }, - { - "id": 21670, - "name": "Ancient writings" - }, - { - "id": 21672, - "name": "Experimental note" - }, - { - "id": 21674, - "name": "Paragraph of text" - }, - { - "id": 21676, - "name": "Musty smelling note" - }, - { - "id": 21678, - "name": "Hastily scrawled note" - }, - { - "id": 21680, - "name": "Old writing" - }, - { - "id": 21682, - "name": "Short note" - } - ], - "logCount": 2 - }, - "uuid": "3dfeba06-9e6d-4d2c-bfbf-06df8ea9bdbe" - }, - { - "_id": 71, - "name": "Get 2 unique notes from Fossil Island", - "tip": "Can be received by opening the chest(s) on Fossil Island with 100 Numulite. Killing hoop snakes for the Numulite is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_note", - "wikiImage": "http://oldschool.runescape.wiki/images/8/82/Scribbled_note.png", - "assetImage": "Scribbled_note.png", - "colLogData": { - "category": "Other", - "logName": "fossil_island_notes", - "include": [ - { - "id": 21664, - "name": "Scribbled note" - }, - { - "id": 21666, - "name": "Partial note" - }, - { - "id": 21668, - "name": "Ancient note" - }, - { - "id": 21670, - "name": "Ancient writings" - }, - { - "id": 21672, - "name": "Experimental note" - }, - { - "id": 21674, - "name": "Paragraph of text" - }, - { - "id": 21676, - "name": "Musty smelling note" - }, - { - "id": 21678, - "name": "Hastily scrawled note" - }, - { - "id": 21680, - "name": "Old writing" - }, - { - "id": 21682, - "name": "Short note" - } - ], - "logCount": 4 - }, - "uuid": "0a52ddc7-b1b5-4708-bc50-173fa1a7155a" - }, - { - "_id": 72, - "name": "Get 1 piece of Prospector equipment", - "tip": "Can be purchased as a reward from the Motherlode Mine training method. Pay-Dirt!", - "wikiLink": "https://oldschool.runescape.wiki/w/Motherlode_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Prospector_helmet.png?5ad7c", - "assetImage": "Prospector_helmet.png", - "colLogData": { - "category": "Other", - "logName": "mortherlode_mine", - "include": [ - { - "id": 12013, - "name": "Prospector helmet" - }, - { - "id": 12014, - "name": "Prospector jacket" - }, - { - "id": 12015, - "name": "Prospector legs" - }, - { - "id": 12016, - "name": "Prospector boots" - } - ], - "logCount": 1 - }, - "uuid": "2be9c352-1a18-4302-84ec-683f5d769f69" - }, - { - "_id": 73, - "name": "Get 1 piece of Prospector equipment", - "tip": "Can be purchased as a reward from the Motherlode Mine training method. Pay-Dirt!", - "wikiLink": "https://oldschool.runescape.wiki/w/Motherlode_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Prospector_helmet.png?5ad7c", - "assetImage": "Prospector_helmet.png", - "colLogData": { - "category": "Other", - "logName": "mortherlode_mine", - "include": [ - { - "id": 12013, - "name": "Prospector helmet" - }, - { - "id": 12014, - "name": "Prospector jacket" - }, - { - "id": 12015, - "name": "Prospector legs" - }, - { - "id": 12016, - "name": "Prospector boots" - } - ], - "logCount": 2 - }, - "uuid": "be16323f-4b35-4512-957e-ce9a5ccabbdf" - }, - { - "_id": 74, - "name": "Get 1 piece of Prospector equipment", - "tip": "Can be purchased as a reward from the Motherlode Mine training method. Pay-Dirt!", - "wikiLink": "https://oldschool.runescape.wiki/w/Motherlode_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Prospector_helmet.png?5ad7c", - "assetImage": "Prospector_helmet.png", - "colLogData": { - "category": "Other", - "logName": "mortherlode_mine", - "include": [ - { - "id": 12013, - "name": "Prospector helmet" - }, - { - "id": 12014, - "name": "Prospector jacket" - }, - { - "id": 12015, - "name": "Prospector legs" - }, - { - "id": 12016, - "name": "Prospector boots" - } - ], - "logCount": 3 - }, - "uuid": "4e38dc44-1494-4bbd-ad8e-ee3c55890dc9" - }, - { - "_id": 75, - "name": "Get 1 piece of Prospector equipment", - "tip": "Can be purchased as a reward from the Motherlode Mine training method. Pay-Dirt!", - "wikiLink": "https://oldschool.runescape.wiki/w/Motherlode_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Prospector_helmet.png?5ad7c", - "assetImage": "Prospector_helmet.png", - "colLogData": { - "category": "Other", - "logName": "mortherlode_mine", - "include": [ - { - "id": 12013, - "name": "Prospector helmet" - }, - { - "id": 12014, - "name": "Prospector jacket" - }, - { - "id": 12015, - "name": "Prospector legs" - }, - { - "id": 12016, - "name": "Prospector boots" - } - ], - "logCount": 4 - }, - "uuid": "7a0d1fcf-b7ff-495a-aa13-50fb60d23c0b" - }, - { - "_id": 76, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 2 - }, - "uuid": "58843200-d64c-455b-8865-911273653123" - }, - { - "_id": 77, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 4 - }, - "uuid": "627a33a0-0296-4e1c-a95e-1f84d01242f4" - }, - { - "_id": 78, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 6 - }, - "uuid": "ab2bd500-f465-4622-975b-99dc0139dd03" - }, - { - "_id": 79, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 8 - }, - "uuid": "cb9a9784-58fd-4313-a4cd-8bfa7beedea1" - }, - { - "_id": 80, - "name": "Get Revenant ether", - "tip": "Can be received as a drop from any Revenant. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenant_ether", - "wikiImage": "http://oldschool.runescape.wiki/images/3/37/Revenant_ether_5.png?bdfe9", - "assetImage": "Revenant_ether_5.png", - "colLogData": { - "category": "Other", - "logName": "revenants", - "include": [ - { - "id": 21820, - "name": "Revenant ether" - } - ], - "logCount": 1 - }, - "uuid": "71d38c35-279f-48a7-806f-1ef8919042a1" - }, - { - "_id": 81, - "name": "Get 1 piece of Graceful equipment", - "tip": "Can be purchased from Grace in the Rogues Den. Run laps, get marks. Eww Agility. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "http://oldschool.runescape.wiki/images/8/8b/Graceful_top.png?b619b", - "assetImage": "Graceful_top.png", - "colLogData": { - "category": "Other", - "logName": "rooftop_agility", - "include": [ - { - "id": 11850, - "name": "Graceful hood" - }, - { - "id": 11852, - "name": "Graceful cape" - }, - { - "id": 11854, - "name": "Graceful top" - }, - { - "id": 11856, - "name": "Graceful legs" - }, - { - "id": 11858, - "name": "Graceful gloves" - }, - { - "id": 11860, - "name": "Graceful boots" - } - ], - "logCount": 1 - }, - "uuid": "dd45bc38-10b7-4ed0-b916-d165ab22d6cc" - }, - { - "_id": 82, - "name": "Get 1 piece of Graceful equipment", - "tip": "Can be purchased from Grace in the Rogues Den. Run laps, get marks. Eww Agility. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "http://oldschool.runescape.wiki/images/8/8b/Graceful_top.png?b619b", - "assetImage": "Graceful_top.png", - "colLogData": { - "category": "Other", - "logName": "rooftop_agility", - "include": [ - { - "id": 11850, - "name": "Graceful hood" - }, - { - "id": 11852, - "name": "Graceful cape" - }, - { - "id": 11854, - "name": "Graceful top" - }, - { - "id": 11856, - "name": "Graceful legs" - }, - { - "id": 11858, - "name": "Graceful gloves" - }, - { - "id": 11860, - "name": "Graceful boots" - } - ], - "logCount": 2 - }, - "uuid": "4dc07249-8bf3-4c48-bfe0-bb2f8d60019b" - }, - { - "_id": 83, - "name": "Get 1 piece of Graceful equipment", - "tip": "Can be purchased from Grace in the Rogues Den. Run laps, get marks. Eww Agility. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "http://oldschool.runescape.wiki/images/8/8b/Graceful_top.png?b619b", - "assetImage": "Graceful_top.png", - "colLogData": { - "category": "Other", - "logName": "rooftop_agility", - "include": [ - { - "id": 11850, - "name": "Graceful hood" - }, - { - "id": 11852, - "name": "Graceful cape" - }, - { - "id": 11854, - "name": "Graceful top" - }, - { - "id": 11856, - "name": "Graceful legs" - }, - { - "id": 11858, - "name": "Graceful gloves" - }, - { - "id": 11860, - "name": "Graceful boots" - } - ], - "logCount": 3 - }, - "uuid": "87a7c0ff-8302-4991-84eb-7be03c50d793" - }, - { - "_id": 84, - "name": "Get 1 piece of Graceful equipment", - "tip": "Can be purchased from Grace in the Rogues Den. Run laps, get marks. Agility isn't too bad. \u00a0", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "http://oldschool.runescape.wiki/images/8/8b/Graceful_top.png?b619b", - "assetImage": "Graceful_top.png", - "colLogData": { - "category": "Other", - "logName": "rooftop_agility", - "include": [ - { - "id": 11850, - "name": "Graceful hood" - }, - { - "id": 11852, - "name": "Graceful cape" - }, - { - "id": 11854, - "name": "Graceful top" - }, - { - "id": 11856, - "name": "Graceful legs" - }, - { - "id": 11858, - "name": "Graceful gloves" - }, - { - "id": 11860, - "name": "Graceful boots" - } - ], - "logCount": 4 - }, - "uuid": "6f7d8645-04d3-429b-9704-45f1497d5d48" - }, - { - "_id": 85, - "name": "Get 1 piece of Graceful equipment", - "tip": "Can be purchased from Grace in the Rogues Den. Run laps, get marks. Agility isn't too bad.", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "http://oldschool.runescape.wiki/images/8/8b/Graceful_top.png?b619b", - "assetImage": "Graceful_top.png", - "colLogData": { - "category": "Other", - "logName": "rooftop_agility", - "include": [ - { - "id": 11850, - "name": "Graceful hood" - }, - { - "id": 11852, - "name": "Graceful cape" - }, - { - "id": 11854, - "name": "Graceful top" - }, - { - "id": 11856, - "name": "Graceful legs" - }, - { - "id": 11858, - "name": "Graceful gloves" - }, - { - "id": 11860, - "name": "Graceful boots" - } - ], - "logCount": 5 - }, - "uuid": "efaae8b8-bce5-4768-a39e-0a6676b51191" - }, - { - "_id": 86, - "name": "Get 1 piece of Graceful equipment", - "tip": "Can be purchased from Grace in the Rogues Den. Run laps, get marks. Agility isn't too bad.", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "http://oldschool.runescape.wiki/images/8/8b/Graceful_top.png?b619b", - "assetImage": "Graceful_top.png", - "colLogData": { - "category": "Other", - "logName": "rooftop_agility", - "include": [ - { - "id": 11850, - "name": "Graceful hood" - }, - { - "id": 11852, - "name": "Graceful cape" - }, - { - "id": 11854, - "name": "Graceful top" - }, - { - "id": 11856, - "name": "Graceful legs" - }, - { - "id": 11858, - "name": "Graceful gloves" - }, - { - "id": 11860, - "name": "Graceful boots" - } - ], - "logCount": 6 - }, - "uuid": "1f55ec85-697f-4c80-a26a-da7580b88a61" - }, - { - "_id": 87, - "name": "Get a Crawling hand", - "tip": "Can be received as drop from Crawling hands. Coincidence? Maybe. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Crawling_Hand", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/3/36/Crawling_hand_%28item%29_detail.png/140px-Crawling_hand_%28item%29_detail.png?c3edf", - "assetImage": "140px-Crawling_hand_item_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 7975, - "name": "Crawling hand (item)" - } - ], - "logCount": 1 - }, - "uuid": "b52923c1-618c-4fa8-a3e2-1e4675b727c5" - }, - { - "_id": 88, - "name": "Get a Cockatrice head", - "tip": "Can be received as a drop from Cockatrice.", - "wikiLink": "https://oldschool.runescape.wiki/w/Cockatrice_head", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/0/0d/Cockatrice_head_detail.png/170px-Cockatrice_head_detail.png?bb55d", - "assetImage": "170px-Cockatrice_head_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 7976, - "name": "Cockatrice head" - } - ], - "logCount": 1 - }, - "uuid": "ae74ef41-338f-42c5-83db-3759e1de9c46" - }, - { - "_id": 89, - "name": "Get 1 unique from Mogres", - "tip": "Can be received as a drop from Mogres. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mogre", - "wikiImage": "https://oldschool.runescape.wiki/images/0/02/Mudskipper_hat.png?32287", - "assetImage": "Mudskipper_hat.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 6665, - "name": "Mudskipper hat" - }, - { - "id": 6666, - "name": "Flippers" - } - ], - "logCount": 1 - }, - "uuid": "f16da428-4a7a-4dfb-8837-b494e54a4bd4" - }, - { - "_id": 90, - "name": "Get 1 unique from Mogres", - "tip": "Can be received as a drop from Mogres. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mogre", - "wikiImage": "https://oldschool.runescape.wiki/images/0/02/Mudskipper_hat.png?32287", - "assetImage": "Mudskipper_hat.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 6665, - "name": "Mudskipper hat" - }, - { - "id": 6666, - "name": "Flippers" - } - ], - "logCount": 2 - }, - "uuid": "cff8777d-62da-4940-b6a6-a00aa530d9a8" - }, - { - "_id": 91, - "name": "Get a Brine sabre", - "tip": "Can be received as a drop from Brine Rats.", - "wikiLink": "https://oldschool.runescape.wiki/w/Brine_sabre", - "wikiImage": "https://oldschool.runescape.wiki/images/4/49/Brine_sabre.png?0495e", - "assetImage": "Brine_sabre.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 11037, - "name": "Brine sabre" - } - ], - "logCount": 1 - }, - "uuid": "218fc6e6-2c40-4202-8b96-d6e4074dec6b" - }, - { - "_id": 92, - "name": "Get 1 unique from Turoths", - "tip": "Can be received as a drop from Turoths. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Turoth", - "wikiImage": "https://oldschool.runescape.wiki/images/8/82/Leaf-bladed_sword.png?55232", - "assetImage": "Leaf-bladed_sword.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 11902, - "name": "Leaf-bladed sword" - }, - { - "id": 4113, - "name": "Mystic robe bottom (light)" - } - ], - "logCount": 1 - }, - "uuid": "a72d7040-26de-4198-922d-11438edcb6b8" - }, - { - "_id": 93, - "name": "Get 1 unique from Turoths", - "tip": "Can be received as a drop from Turoths. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Turoth", - "wikiImage": "https://oldschool.runescape.wiki/images/8/82/Leaf-bladed_sword.png?55232", - "assetImage": "Leaf-bladed_sword.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 11902, - "name": "Leaf-bladed sword" - }, - { - "id": 4113, - "name": "Mystic robe bottom (light)" - } - ], - "logCount": 2 - }, - "uuid": "22d0d7a3-7f32-4eda-aa5c-1ea38342e018" - }, - { - "_id": 94, - "name": "Get a Black mask", - "tip": "Can be received as a drop from Cave Horrors. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Black_mask", - "wikiImage": "https://oldschool.runescape.wiki/images/0/04/Black_mask.png?3855c", - "assetImage": "Black_mask.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 8901, - "name": "Black mask (10)" - } - ], - "logCount": 1 - }, - "uuid": "9cfb5c46-ab53-4519-8dbc-91901dbae8e1" - }, - { - "_id": 95, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4119, - "name": "Bronze boots" - }, - { - "id": 4121, - "name": "Iron boots" - }, - { - "id": 4123, - "name": "Steel boots" - }, - { - "id": 4125, - "name": "Black boots" - }, - { - "id": 4127, - "name": "Mithril boots" - } - ], - "logCount": 1 - }, - "uuid": "5563c02a-0615-4afd-b11e-9fc2fb1c10c8" - }, - { - "_id": 96, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4119, - "name": "Bronze boots" - }, - { - "id": 4121, - "name": "Iron boots" - }, - { - "id": 4123, - "name": "Steel boots" - }, - { - "id": 4125, - "name": "Black boots" - }, - { - "id": 4127, - "name": "Mithril boots" - } - ], - "logCount": 2 - }, - "uuid": "9c8888e3-24f3-429e-b682-605199e48532" - }, - { - "_id": 97, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4119, - "name": "Bronze boots" - }, - { - "id": 4121, - "name": "Iron boots" - }, - { - "id": 4123, - "name": "Steel boots" - }, - { - "id": 4125, - "name": "Black boots" - }, - { - "id": 4127, - "name": "Mithril boots" - } - ], - "logCount": 3 - }, - "uuid": "68cbb071-cca7-4db4-9cec-64a9eec6d11f" - }, - { - "_id": 98, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4119, - "name": "Bronze boots" - }, - { - "id": 4121, - "name": "Iron boots" - }, - { - "id": 4123, - "name": "Steel boots" - }, - { - "id": 4125, - "name": "Black boots" - }, - { - "id": 4127, - "name": "Mithril boots" - } - ], - "logCount": 4 - }, - "uuid": "85b5057d-1b4b-489d-bf0f-eb3a1927ef40" - }, - { - "_id": 99, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4119, - "name": "Bronze boots" - }, - { - "id": 4121, - "name": "Iron boots" - }, - { - "id": 4123, - "name": "Steel boots" - }, - { - "id": 4125, - "name": "Black boots" - }, - { - "id": 4127, - "name": "Mithril boots" - } - ], - "logCount": 5 - }, - "uuid": "a39723bd-cc16-49e8-ac94-268114557270" - }, - { - "_id": 100, - "name": "Get a Mystic hat (light)", - "tip": "Can be received as a drop from Wall Beast or Basilisk. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mystic_hat_(light)", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f6/Mystic_hat_%28light%29.png?2e842", - "assetImage": "Mystic_hat_light.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4109, - "name": "Mystic hat (light)" - } - ], - "logCount": 1 - }, - "uuid": "5831eabc-6c96-4d91-895c-d5d920becef7" - }, - { - "_id": 101, - "name": "Get Mystic gloves (light)", - "tip": "Can be received as a drop from Desert Lizards, Rockslugs, Lizards, Small Lizards and, Sulphur Lizards. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mystic_gloves_(light)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/ae/Mystic_gloves_%28light%29.png?13156", - "assetImage": "Mystic_gloves_light.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4115, - "name": "Mystic gloves (light)" - } - ], - "logCount": 1 - }, - "uuid": "ee1314d6-e68f-493e-846b-f64c03875f1e" - }, - { - "_id": 102, - "name": "Get Mystic boots (light)", - "tip": "Can be received as a drop from Cockatrice.", - "wikiLink": "https://oldschool.runescape.wiki/w/Mystic_boots_(light)", - "wikiImage": "https://oldschool.runescape.wiki/images/b/bf/Mystic_boots_%28light%29.png?0327e", - "assetImage": "Mystic_boots_light.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4117, - "name": "Mystic boots (light)" - } - ], - "logCount": 1 - }, - "uuid": "aa41aa8b-e14c-4748-808b-cdba71863b7b" - }, - { - "_id": 103, - "name": "Get 1 unique from Infernal Mages", - "tip": "Can be received as a drop from Infernal Mages. Note, the Lava Battlestaff does not count as it is not in theeee Collection Log. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Infernal_Mage", - "wikiImage": "https://oldschool.runescape.wiki/images/0/0f/Mystic_hat_%28dark%29.png?3175b", - "assetImage": "Mystic_hat_dark.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4099, - "name": "Mystic hat (dark)" - }, - { - "id": 4107, - "name": "Mystic boots (dark)" - } - ], - "logCount": 1 - }, - "uuid": "f0749db6-81db-43ed-b9fb-464e549fb7cd" - }, - { - "_id": 104, - "name": "Get 1 unique from Infernal Mages", - "tip": "Can be received as a drop from Infernal Mages. Note, the Lava Battlestaff does not count as it is not in theeee Collection Log. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Infernal_Mage", - "wikiImage": "https://oldschool.runescape.wiki/images/0/0f/Mystic_hat_%28dark%29.png?3175b", - "assetImage": "Mystic_hat_dark.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4099, - "name": "Mystic hat (dark)" - }, - { - "id": 4107, - "name": "Mystic boots (dark)" - } - ], - "logCount": 2 - }, - "uuid": "47ba20ae-3b46-44f7-acf6-305f863966a9" - }, - { - "_id": 105, - "name": "Get Mystic gloves (dark)", - "tip": "Can be received as a drop from Banshees. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mystic_gloves_(dark)", - "wikiImage": "https://oldschool.runescape.wiki/images/0/0d/Mystic_gloves_%28dark%29.png?ae043", - "assetImage": "Mystic_gloves_dark.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4105, - "name": "Mystic gloves (dark)" - } - ], - "logCount": 1 - }, - "uuid": "dac8b81a-91fb-41f4-9831-2c30cc2bf73d" - }, - { - "_id": 106, - "name": "Get 1 unique Tzhaar drop", - "tip": "Can be received as a drop from TzHaar creatures. Recommended to kill Kets until you have all their unique drops, the kill Xils. ", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Obsidian_cape.png?922cd", - "assetImage": "Obsidian_cape.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 6522, - "name": "Toktz-xil-ul" - }, - { - "id": 6523, - "name": "Toktz-xil-ak" - }, - { - "id": 6524, - "name": "Toktz-ket-xil" - }, - { - "id": 6525, - "name": "Toktz-xil-ek" - }, - { - "id": 6528, - "name": "Tzhaar-ket-om" - }, - { - "id": 6568, - "name": "Obsidian cape" - } - ], - "logCount": 1 - }, - "uuid": "1f1cf951-abfb-4585-9376-3bdf7299ea49" - }, - { - "_id": 107, - "name": "Get 1 unique Tzhaar drop", - "tip": "Can be received as a drop from TzHaar creatures. Recommended to kill Kets until you have all their unique drops, the kill Xils. ", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Obsidian_cape.png?922cd", - "assetImage": "Obsidian_cape.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 6522, - "name": "Toktz-xil-ul" - }, - { - "id": 6523, - "name": "Toktz-xil-ak" - }, - { - "id": 6524, - "name": "Toktz-ket-xil" - }, - { - "id": 6525, - "name": "Toktz-xil-ek" - }, - { - "id": 6528, - "name": "Tzhaar-ket-om" - }, - { - "id": 6568, - "name": "Obsidian cape" - } - ], - "logCount": 2 - }, - "uuid": "08c4f12a-cdb2-4997-87c3-038ecdd3986f" - }, - { - "_id": 108, - "name": "Get a Big swordfish", - "tip": "Obainted randomly while fishing for swordfish. Good luck!", - "wikiLink": "https://oldschool.runescape.wiki/w/Big_swordfish", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e3/Big_swordfish.png?b038d", - "assetImage": "Big_swordfish.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 7991, - "name": "Big swordfish" - } - ], - "logCount": 1 - }, - "uuid": "1b8cd395-3105-4960-b022-3eda90e2c92e" - }, - { - "_id": 109, - "name": "Get a Big bass", - "tip": "Obtained randomly while Big Net fishing. Good luck!", - "wikiLink": "https://oldschool.runescape.wiki/w/Big_bass", - "wikiImage": "https://oldschool.runescape.wiki/images/9/91/Big_bass.png?4a0cb", - "assetImage": "Big_bass.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 7989, - "name": "Big bass" - } - ], - "logCount": 1 - }, - "uuid": "e5677372-12dd-46ef-888a-aee6859f7de9" - }, - { - "_id": 110, - "name": "Get a Long bone", - "tip": "Can be received as a drop from any monster that drop big bones.", - "wikiLink": "https://oldschool.runescape.wiki/w/Long_bone", - "wikiImage": "https://oldschool.runescape.wiki/images/7/73/Long_bone.png?ba205", - "assetImage": "Long_bone.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 10976, - "name": "Long bone" - } - ], - "logCount": 1 - }, - "uuid": "f0fb02a2-f3d4-4721-977e-235b27f551ab" - }, - { - "_id": 111, - "name": "Get an Ecumenical key", - "tip": "Can be received as a drop from any monster in the Wilderness God Wars Dungeon. Recommended to kill imps and hopping between two worlds for faster kills. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ecumenical_key", - "wikiImage": "https://oldschool.runescape.wiki/images/2/29/Ecumenical_key.png?0cb90", - "assetImage": "Ecumenical_key.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 11942, - "name": "Ecumenical key" - } - ], - "logCount": 1 - }, - "uuid": "7d05f60d-7f02-4bb3-bd03-796859a1bb6e" - }, - { - "_id": 112, - "name": "Get 1 unique Dark totem piece / Ancient shard", - "tip": "Can be received as a drop from any monster in the Catacombs of Kourend. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Catacombs_of_Kourend", - "wikiImage": "https://oldschool.runescape.wiki/images/8/8e/Dark_totem_base.png?6325f", - "assetImage": "Dark_totem_base.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 19679, - "name": "Dark totem base" - }, - { - "id": 19681, - "name": "Dark totem middle" - }, - { - "id": 19683, - "name": "Dark totem top" - }, - { - "id": 19677, - "name": "Ancient shard" - } - ], - "logCount": 1 - }, - "uuid": "f9b3c56f-b509-4d0d-977b-7d4dd72904cb" - }, - { - "_id": 113, - "name": "Get 1 unique Dark totem piece / Ancient shard", - "tip": "Can be received as a drop from any monster in the Catacombs of Kourend. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Catacombs_of_Kourend", - "wikiImage": "https://oldschool.runescape.wiki/images/8/8e/Dark_totem_base.png?6325f", - "assetImage": "Dark_totem_base.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 19679, - "name": "Dark totem base" - }, - { - "id": 19681, - "name": "Dark totem middle" - }, - { - "id": 19683, - "name": "Dark totem top" - }, - { - "id": 19677, - "name": "Ancient shard" - } - ], - "logCount": 2 - }, - "uuid": "db0a6174-d76d-41e6-8259-927406ff796c" - }, - { - "_id": 114, - "name": "Get 1 unique Dark totem piece / Ancient shard", - "tip": "Can be received as a drop from any monster in the Catacombs of Kourend. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Catacombs_of_Kourend", - "wikiImage": "https://oldschool.runescape.wiki/images/8/8e/Dark_totem_base.png?6325f", - "assetImage": "Dark_totem_base.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 19679, - "name": "Dark totem base" - }, - { - "id": 19681, - "name": "Dark totem middle" - }, - { - "id": 19683, - "name": "Dark totem top" - }, - { - "id": 19677, - "name": "Ancient shard" - } - ], - "logCount": 3 - }, - "uuid": "bb3b0772-7b40-4eaa-a1da-02db6d035c81" - }, - { - "_id": 115, - "name": "Get 1 unique Dark totem piece / Ancient shard", - "tip": "Can be received as a drop from any monster in the Catacombs of Kourend. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Catacombs_of_Kourend", - "wikiImage": "https://oldschool.runescape.wiki/images/8/8e/Dark_totem_base.png?6325f", - "assetImage": "Dark_totem_base.png", - "colLogData": { - "category": "Bosses", - "logName": "skotizo", - "include": [ - { - "id": 19679, - "name": "Dark totem base" - }, - { - "id": 19681, - "name": "Dark totem middle" - }, - { - "id": 19683, - "name": "Dark totem top" - }, - { - "id": 19677, - "name": "Ancient shard" - } - ], - "logCount": 4 - }, - "uuid": "503c3e6f-5d1f-4643-bc8b-b76ab7832920" - }, - { - "_id": 116, - "name": "Get Mining gloves", - "tip": "Can be purchased as a reward in the Mining Guild. Obtain unidentified minerals by minining in the guild. Mining iron ore is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mining_gloves", - "wikiImage": "https://oldschool.runescape.wiki/images/9/96/Mining_gloves.png?92f52", - "assetImage": "Mining_gloves.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 21343, - "name": "Mining gloves" - } - ], - "logCount": 1 - }, - "uuid": "eb5d9f9a-bb6d-4301-bc2e-6183ee67acf8" - }, - { - "_id": 117, - "name": "Get a Right skull half", - "tip": "Can be received as a drop from Minotaurs in the Stronghold of Security. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Right_skull_half", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e6/Right_skull_half.png?fbc71", - "assetImage": "Right_skull_half.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 9007, - "name": "Right skull half" - } - ], - "logCount": 1 - }, - "uuid": "041f133c-d775-48a6-b000-41e6438ead3d" - }, - { - "_id": 118, - "name": "Get a Left skull half", - "tip": "Can be received as a drop from Ankou in the Stronghold of Security. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Left_skull_half", - "wikiImage": "https://oldschool.runescape.wiki/images/9/97/Left_skull_half.png?3c002", - "assetImage": "Left_skull_half.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 9008, - "name": "Left skull half" - } - ], - "logCount": 1 - }, - "uuid": "c66d13eb-955f-426c-9336-18e0a74eda78" - }, - { - "_id": 119, - "name": "Get a Top of sceptre", - "tip": "Can be received as a drop from Catablepon in the Stronghold of Security.", - "wikiLink": "https://oldschool.runescape.wiki/w/Top_of_sceptre", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f0/Top_of_sceptre.png?ef5c8", - "assetImage": "Top_of_sceptre.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 9010, - "name": "Top of sceptre" - } - ], - "logCount": 1 - }, - "uuid": "f877eaa5-be6b-4857-92e9-4e3b4b3f0196" - }, - { - "_id": 120, - "name": "Get a Bottom of sceptre", - "tip": "Can be received as a drop from Flesh Crawlers in the Stronghold of Security.", - "wikiLink": "https://oldschool.runescape.wiki/w/Bottom_of_sceptre", - "wikiImage": "https://oldschool.runescape.wiki/images/9/92/Bottom_of_sceptre.png?3c002", - "assetImage": "Bottom_of_sceptre.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 9011, - "name": "Bottom of sceptre" - } - ], - "logCount": 1 - }, - "uuid": "948af1a0-9dc4-4b46-8fa6-3ea53a6dd795" - }, - { - "_id": 121, - "name": "Get a Mossy key", - "tip": "Can be received as a drop from Moss Giants", - "wikiLink": "https://oldschool.runescape.wiki/w/Mossy_key", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2f/Mossy_key.png?0ae48", - "assetImage": "Mossy_key.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 22374, - "name": "Mossy key" - } - ], - "logCount": 1 - }, - "uuid": "137485e0-7e45-4b0b-8bd7-2902827e0e8c" - }, - { - "_id": 122, - "name": "Get a Giant key", - "tip": "Can be received as a drop from Hill Giants", - "wikiLink": "https://oldschool.runescape.wiki/w/Giant_key", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3b/Giant_key.png?14675", - "assetImage": "Giant_key.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 20754, - "name": "Giant key" - } - ], - "logCount": 1 - }, - "uuid": "ed0f9787-cb56-401c-a8e6-0e07f002e920" - }, - { - "_id": 123, - "name": "Get a Fresh crab claw & Fresh crab shell", - "tip": "Can be received as a drop from Crabs.", - "wikiLink": "https://oldschool.runescape.wiki/w/Fresh_crab_claw", - "wikiImage": "http://oldschool.runescape.wiki/images/0/09/Fresh_crab_claw.png?8ceed", - "assetImage": "Fresh_crab_claw.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 7536, - "name": "Fresh crab claw" - }, - { - "id": 7538, - "name": "Fresh crab shell" - } - ], - "logCount": 2 - }, - "uuid": "5a597f8d-b452-4ac3-98f4-69914b8a4f94" - }, - { - "_id": 124, - "name": "Get a Xeric's talisman (inert)", - "tip": "Can be received as a drop from Lizardmen. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Xeric%27s_talisman", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e4/Xeric%27s_talisman_%28inert%29.png?a14a5", - "assetImage": "Xerics_talisman_inert.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 13392, - "name": "Xeric's talisman (inert)" - } - ], - "logCount": 1 - }, - "uuid": "902a9f32-a41a-41f9-b00e-68efba892cbe" - }, - { - "_id": 125, - "name": "Complete the Ardougne Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ardougne_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "c366a4e5-3463-46e5-a9d1-da706a86d051" - }, - { - "_id": 126, - "name": "Complete the Desert Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "1c486d16-4538-424d-986a-efb457de0a8a" - }, - { - "_id": 127, - "name": "Complete the Falador Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Falador_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "c82332c7-d026-4d53-a8cc-50ed31e2b182" - }, - { - "_id": 128, - "name": "Complete the Fremennik Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fremennik_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "82f153a8-37e7-40df-bb02-03a520ec3439" - }, - { - "_id": 129, - "name": "Complete the Kandarin Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kandarin_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "740deabc-99c8-42ff-8d15-e6442796368d" - }, - { - "_id": 130, - "name": "Complete the Karamja Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Karamja_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "fb3e6897-aa5e-4ea4-a6e0-1e6e6dc4347c" - }, - { - "_id": 131, - "name": "Complete the Kourend&Kebos Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kourend_%26_Kebos_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "753aa85c-d122-4551-b9ab-a34fbe403526" - }, - { - "_id": 132, - "name": "Complete the Lumbridge&Draynor Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Lumbridge_%26_Draynor_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "43847c48-e6e2-4c36-b2d4-d883b9f332a1" - }, - { - "_id": 133, - "name": "Complete the Morytania Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Morytania_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "309d3dbb-6b68-4697-8562-c72e6c48e8e5" - }, - { - "_id": 134, - "name": "Complete the Varrock Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Varrock_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "cf8660d4-cf64-4448-a4fd-e9b622293e53" - }, - { - "_id": 135, - "name": "Complete the Western Provinces Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Western_Provinces_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "3f4958dd-c0f7-4315-90c6-710ee0db254a" - }, - { - "_id": 136, - "name": "Complete the Wilderness Easy Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "e4efcd63-f488-4a91-9307-c6662e9f612f" - }, - { - "_id": 137, - "name": "Get a Supply crate from Mahogany Homes", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame. Don't pull a Kats and do Daddys Home. :) ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/c/ce/Supply_crate_%28Mahogany_Homes%29_detail.png/1024px-Supply_crate_%28Mahogany_Homes%29_detail.png?ea54c", - "assetImage": "1024px-Supply_crate_Mahogany_Homes_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 24884, - "name": "Supply crate (Mahogany Homes)" - } - ], - "logCount": 1 - }, - "uuid": "d6f7fda8-e5fb-48fd-addd-2f23e9f5fc01" - }, - { - "_id": 138, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 1 - }, - "uuid": "043ba4f2-591d-4828-8fb2-aa88260f5fcf" - }, - { - "_id": 139, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 2 - }, - "uuid": "e77633b4-40f3-4dd6-9e6e-5554ecbec38c" - }, - { - "_id": 140, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 3 - }, - "uuid": "c13a79ba-49f7-46ae-ab34-09b2dea01df1" - }, - { - "_id": 141, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 4 - }, - "uuid": "0fe7ee39-2387-48e3-8316-1f3a73ba7d31" - }, - { - "_id": 142, - "name": "Get 5 unique items at Camdozaal", - "tip": "Can be received as drops from performing various activities within the Ruins_of_Camdozaal.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ruins_of_Camdozaal", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Barronite_mace_detail.png/130px-Barronite_mace_detail.png?9bbfe", - "assetImage": "130px-Barronite_mace_detail.png", - "colLogData": { - "category": "Other", - "logName": "camdozaal", - "include": [ - { - "id": 25635, - "name": "Barronite head" - }, - { - "id": 25637, - "name": "Barronite handle" - }, - { - "id": 25639, - "name": "Barronite guard" - }, - { - "id": 25641, - "name": "Barronite mace" - }, - { - "id": 25644, - "name": "Imcando hammer" - }, - { - "id": 25686, - "name": "Ancient globe" - }, - { - "id": 25688, - "name": "Ancient ledger" - }, - { - "id": 25690, - "name": "Ancient astroscope" - }, - { - "id": 25692, - "name": "Ancient treatise" - }, - { - "id": 25694, - "name": "Ancient carcanet" - } - ], - "logCount": 5 - }, - "uuid": "bab635a9-86a7-4c36-ab44-e5f888a9dbd7" - }, - { - "_id": 143, - "name": "Get 5 unique items at Camdozaal", - "tip": "Can be received as drops from performing various activities within the Ruins_of_Camdozaal.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ruins_of_Camdozaal", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Barronite_mace_detail.png/130px-Barronite_mace_detail.png?9bbfe", - "assetImage": "130px-Barronite_mace_detail.png", - "colLogData": { - "category": "Other", - "logName": "camdozaal", - "include": [ - { - "id": 25635, - "name": "Barronite head" - }, - { - "id": 25637, - "name": "Barronite handle" - }, - { - "id": 25639, - "name": "Barronite guard" - }, - { - "id": 25641, - "name": "Barronite mace" - }, - { - "id": 25644, - "name": "Imcando hammer" - }, - { - "id": 25686, - "name": "Ancient globe" - }, - { - "id": 25688, - "name": "Ancient ledger" - }, - { - "id": 25690, - "name": "Ancient astroscope" - }, - { - "id": 25692, - "name": "Ancient treatise" - }, - { - "id": 25694, - "name": "Ancient carcanet" - } - ], - "logCount": 10 - }, - "uuid": "7c1f973f-a2d1-4411-ab44-b08caf32728e" - }, - { - "_id": 144, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 1 - }, - "uuid": "29f0793b-ab50-48f5-8e5f-c665b37f302b" - }, - { - "_id": 145, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 2 - }, - "uuid": "eaa7fb4c-8647-4952-866f-0ff17175566f" - }, - { - "_id": 146, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 3 - }, - "uuid": "5cf8c24d-4c39-4626-a529-8e92c0beaae1" - }, - { - "_id": 147, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 4 - }, - "uuid": "c58b3f37-57d8-4230-917e-b1a6289a085f" - }, - { - "_id": 148, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Kovac%27s_grog_detail.png/100px-Kovac%27s_grog_detail.png?9a07a", - "assetImage": "Kovac's_grog_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 1 - }, - "uuid": "59834ab0-010c-45d2-91d3-73dd45bb5963" - }, - { - "_id": 149, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Kovac%27s_grog_detail.png/100px-Kovac%27s_grog_detail.png?9a07a", - "assetImage": "Kovac's_grog_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 2 - }, - "uuid": "c66b3654-6987-43c3-8b0b-de91e8819932" - }, - { - "_id": 150, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Kovac%27s_grog_detail.png/100px-Kovac%27s_grog_detail.png?9a07a", - "assetImage": "Kovac's_grog_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 3 - }, - "uuid": "ea129e62-a3e5-4b86-96fd-b0c8dceb8856" - }, - { - "_id": 151, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Kovac%27s_grog_detail.png/100px-Kovac%27s_grog_detail.png?9a07a", - "assetImage": "Kovac's_grog_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 4 - }, - "uuid": "de313a0b-4736-4e55-bf95-9d1f7329d533" - }, - { - "_id": 152, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 1 - }, - "uuid": "435f3e9f-ccca-4737-ae89-2824cd6daae8" - }, - { - "_id": 153, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 2 - }, - "uuid": "80517ba8-fb7c-4651-b1b5-d3a783e85d57" - }, - { - "_id": 154, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 3 - }, - "uuid": "41b23fa2-f349-40a2-8e74-f9c8480ef821" - }, - { - "_id": 155, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 4 - }, - "uuid": "313c1d01-15b6-4eb9-8dd6-c5267d31efd2" - }, - { - "_id": 156, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 5 - }, - "uuid": "da5aff6e-1998-46d2-9224-13d072d4f0fc" - }, - { - "_id": 157, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 6 - }, - "uuid": "de27674a-64dc-4adc-bc3b-bf781e450235" - }, - { - "_id": 158, - "name": "Get a Warped sceptre", - "tip": "Can be obtained by slaughtering Warped Terror Birds / Warped Tortoises", - "wikiLink": "https://oldschool.runescape.wiki/w/Warped_sceptre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Warped_sceptre_detail.png/140px-Warped_sceptre_detail.png?f7367", - "assetImage": "warped_sceptre.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 28583, - "name": "Warped sceptre (uncharged)" - } - ], - "logCount": 1 - }, - "uuid": "ffc96e1a-1d48-42c4-97f5-a6946bc61379" - }, - { - "_id": 159, - "name": "Get 1 unique from the Hunter Guild", - "tip": "Received as a drop when completing Hunters Rumours", - "wikiLink": "https://oldschool.runescape.wiki/w/Hunter_Guild#Other", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Huntsman's_kit_detail.png/200px-Huntsman's_kit_detail.png", - "assetImage": "huntsman_kit.png", - "colLogData": { - "category": "Other", - "logName": "hunter_guild", - "include": [ - { - "id": 29309, - "name": "Huntsman's kit" - }, - { - "id": 29263, - "name": "Guild hunter headwear" - }, - { - "id": 29265, - "name": "Guild hunter top" - }, - { - "id": 29267, - "name": "Guild hunter legs" - }, - { - "id": 29269, - "name": "Guild hunter boots" - } - ], - "logCount": 1 - }, - "uuid": "3009ea17-7f32-4d11-bd8f-87ec11e8c8d7" - }, - { - "_id": 160, - "name": "Get the Sulphur blades", - "tip": "Received as a drop from sulphur Nagua", - "wikiLink": "https://oldschool.runescape.wiki/w/Sulphur_Nagua", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Sulphur_blades_detail.png/200px-Sulphur_blades_detail.png", - "assetImage": "sulphur_blades.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 29084, - "name": "Sulphur blades" - } - ], - "logCount": 1 - }, - "uuid": "3a0fb1be-70be-4caa-a84b-99d2c331cbfe" - }, - { - "_id": 161, - "name": "Get a Colossal wyrm teleport scroll", - "tip": "Obtained by spending termites through Wyrm Agility Course", - "wikiLink": "https://oldschool.runescape.wiki/w/Colossal_Wyrm_Agility_Course", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Colossal_wyrm_teleport_scroll_detail.png/320px-Colossal_wyrm_teleport_scroll_detail.png?a3e16", - "assetImage": "Colossal_wyrm_teleport_scroll_detail.png", - "colLogData": { - "category": "Other", - "logName": "colossal_wyrm_agility", - "include": [ - { - "id": 30040, - "name": "Colossal wyrm teleport scroll" - } - ], - "logCount": 1 - }, - "uuid": "f000fd28-3515-4667-a1fc-65ef5c6333aa" - }, - { - "_id": 162, - "name": "Get 1 unique from Vale Totems", - "tip": "This fletching minigame takes place in Auburn Valley. You can chop your own logs", - "wikiLink": "https://oldschool.runescape.wiki/w/Vale_Totems", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Vale_offerings_detail.png/320px-Vale_offerings_detail.png", - "assetImage": "Vale_offerings_detail.png", - "colLogData": { - "category": "N/A", - "logName": "N/A", - "include": [ - { - "id": 31032, - "name": "Ent Branch" - }, - { - "id": 31043, - "name": "Fletching knife" - }, - { - "id": 31052, - "name": "Bow string spool" - }, - { - "id": 31034, - "name": "Greenman mask" - } - ], - "logCount": 1 - }, - "uuid": "583f9e90-f977-40f9-adba-111f8064f289" - }, - { - "_id": 163, - "name": "Get 1 unique from Vale Totems", - "tip": "This fletching minigame takes place in Auburn Valley. You can chop your own logs", - "wikiLink": "https://oldschool.runescape.wiki/w/Vale_Totems", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Vale_offerings_detail.png/320px-Vale_offerings_detail.png", - "assetImage": "Vale_offerings_detail.png", - "colLogData": { - "category": "N/A", - "logName": "N/A", - "include": [ - { - "id": 31032, - "name": "Ent Branch" - }, - { - "id": 31043, - "name": "Fletching knife" - }, - { - "id": 31052, - "name": "Bow string spool" - }, - { - "id": 31034, - "name": "Greenman mask" - } - ], - "logCount": 2 - }, - "uuid": "50bf552f-5f5a-48b1-aeff-28a2e81d240c" - } -] \ No newline at end of file diff --git a/tasks/elite.json b/tasks/elite.json deleted file mode 100644 index e2d421d..0000000 --- a/tasks/elite.json +++ /dev/null @@ -1,25972 +0,0 @@ -[ - { - "_id": 1, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "Barrows Chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 21 - }, - "uuid": "d6e8750c-2f7d-4f37-8f92-2074caa777f7" - }, - { - "_id": 2, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "Barrows Chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 22 - }, - "uuid": "9ea4f86d-9d21-4f81-9bf9-550c391eb11d" - }, - { - "_id": 3, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "Barrows Chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 23 - }, - "uuid": "a7e6f9ca-cf1f-4473-8ca7-0a5596354f98" - }, - { - "_id": 4, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "Barrows Chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 24 - }, - "uuid": "10f3e3c9-bb43-4e7c-99ba-9d934864ab6c" - }, - { - "_id": 5, - "name": "Get a unique from Unsired", - "tip": "Can be received as a drop from the Abyssal Sire Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_Sire", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e8/Unsired.png?a6ba9", - "assetImage": "Unsired.png", - "colLogData": { - "category": "Bosses", - "logName": "Abyssal Sire", - "include": [ - { - "id": 7979, - "name": "Abyssal head" - }, - { - "id": 13265, - "name": "Abyssal dagger" - }, - { - "id": 13274, - "name": "Bludgeon spine" - }, - { - "id": 13275, - "name": "Bludgeon claw" - }, - { - "id": 13276, - "name": "Bludgeon axon" - } - ], - "logCount": 4 - }, - "uuid": "e5cda43a-6499-4217-b338-9df09310c56d" - }, - { - "_id": 6, - "name": "Get a unique from Unsired", - "tip": "Can be received as a drop from the Abyssal Sire Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_Sire", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e8/Unsired.png?a6ba9", - "assetImage": "Unsired.png", - "colLogData": { - "category": "Bosses", - "logName": "Abyssal Sire", - "include": [ - { - "id": 7979, - "name": "Abyssal head" - }, - { - "id": 13265, - "name": "Abyssal dagger" - }, - { - "id": 13274, - "name": "Bludgeon spine" - }, - { - "id": 13275, - "name": "Bludgeon claw" - }, - { - "id": 13276, - "name": "Bludgeon axon" - } - ], - "logCount": 5 - }, - "uuid": "8f5d712e-edd6-4cdc-acb4-6e0527cd3797" - }, - { - "_id": 7, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - } - ], - "logCount": 6 - }, - "uuid": "96916f7a-a15a-4160-8098-a3698f55caa2" - }, - { - "_id": 8, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 7 - }, - "uuid": "27a60620-436b-4a23-a154-0fa3220c918f" - }, - { - "_id": 9, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 8 - }, - "uuid": "f0fb0203-b108-4126-9ad8-6011370b88ef" - }, - { - "_id": 10, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 9 - }, - "uuid": "a00fc4d8-2de6-41d1-a142-6e4b016862b8" - }, - { - "_id": 11, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 10 - }, - "uuid": "ca0679ce-5203-4345-ac38-be2218d7f776" - }, - { - "_id": 12, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 11 - }, - "uuid": "a7dc7154-91bd-44d7-a538-b7a3f4d791a8" - }, - { - "_id": 13, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 12 - }, - "uuid": "39d53b8c-25de-4170-98cf-c3703dbf0b0a" - }, - { - "_id": 14, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 13 - }, - "uuid": "7e34b4cb-bec2-4719-b3c8-5519bf30e33f" - }, - { - "_id": 15, - "name": "Get 1 unique crystal/stone from Cerberus", - "tip": "Received as a drop from the Cerberus Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Cerberus", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6b/Eternal_crystal.png?944ec", - "assetImage": "Eternal_crystal.png", - "colLogData": { - "category": "Bosses", - "logName": "Cerberus", - "include": [ - { - "id": 13227, - "name": "Eternal crystal" - }, - { - "id": 13229, - "name": "Pegasian crystal" - }, - { - "id": 13231, - "name": "Primordial crystal" - }, - { - "id": 13233, - "name": "Smouldering stone" - }, - { - "id": 13249, - "name": "Key master teleport" - } - ], - "logCount": 4 - }, - "uuid": "06d7bf93-bfb0-48f5-9596-11e284627e14" - }, - { - "_id": 16, - "name": "Get 1 unique crystal/stone from Cerberus", - "tip": "Received as a drop from the Cerberus Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Cerberus", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6b/Eternal_crystal.png?944ec", - "assetImage": "Eternal_crystal.png", - "colLogData": { - "category": "Bosses", - "logName": "Cerberus", - "include": [ - { - "id": 13227, - "name": "Eternal crystal" - }, - { - "id": 13229, - "name": "Pegasian crystal" - }, - { - "id": 13231, - "name": "Primordial crystal" - }, - { - "id": 13233, - "name": "Smouldering stone" - }, - { - "id": 13249, - "name": "Key master teleport" - } - ], - "logCount": 5 - }, - "uuid": "73c45c46-9af7-4980-92a1-1d94732d6f59" - }, - { - "_id": 17, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 3 - }, - "uuid": "78e20879-4033-47fd-ae7e-f771767d1552" - }, - { - "_id": 18, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 4 - }, - "uuid": "715be139-7855-46d2-a695-1afe326b6ce2" - }, - { - "_id": 19, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 5 - }, - "uuid": "0810d7ea-b5ca-47b7-8b3f-76fa26eb2e25" - }, - { - "_id": 20, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 6 - }, - "uuid": "39c656de-200b-4eef-9b98-5ca7f6dc5db2" - }, - { - "_id": 21, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 7 - }, - "uuid": "55c48146-9e7c-475d-988f-cbfc112526d3" - }, - { - "_id": 22, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 8 - }, - "uuid": "8b56cab6-32aa-48b3-a6e5-2582a38112e2" - }, - { - "_id": 23, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 9 - }, - "uuid": "52fcaaea-d8af-480b-aa30-8e44dbf8a820" - }, - { - "_id": 24, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 10 - }, - "uuid": "5473ea3f-ec40-4b76-9f6a-3bf2b6c77f07" - }, - { - "_id": 25, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 11 - }, - "uuid": "f9de495b-e893-495b-b273-ef8b4a6cfa54" - }, - { - "_id": 26, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 12 - }, - "uuid": "76365902-f30b-48c2-96aa-abe45f1dfb56" - }, - { - "_id": 27, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 13 - }, - "uuid": "344eb1bf-e31a-4233-87b1-1ded1ebc1ab6" - }, - { - "_id": 28, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 14 - }, - "uuid": "479aba9b-8de1-47e1-bda1-ae33e8bbe10e" - }, - { - "_id": 29, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 15 - }, - "uuid": "f30c795e-c5f3-4ce6-9dcf-9f915b17a0c4" - }, - { - "_id": 30, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 16 - }, - "uuid": "f1abb59f-e446-402c-a55a-35ed2e7f1876" - }, - { - "_id": 31, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 17 - }, - "uuid": "76123ba1-38dd-4908-bf15-7d8e0272ab95" - }, - { - "_id": 32, - "name": "Get 1 unique drop from God Wars Dungeon", - "tip": "Can be received as a drop from the God Wars Dungeon Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "wikiImage": "http://oldschool.runescape.wiki/images/b/b7/Armadyl_helmet.png", - "assetImage": "Armadyl_helmet.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "K'ril Tsutsaroth", - "General Graardor", - "Kree'arra", - "Commander Zilyana" - ], - "include": [ - { - "id": 11812, - "name": "Bandos hilt" - }, - { - "id": 11832, - "name": "Bandos chestplate" - }, - { - "id": 11834, - "name": "Bandos tassets" - }, - { - "id": 11836, - "name": "Bandos boots" - }, - { - "id": 11826, - "name": "Armadyl helmet" - }, - { - "id": 11828, - "name": "Armadyl chestplate" - }, - { - "id": 11830, - "name": "Armadyl chainskirt" - }, - { - "id": 11810, - "name": "Armadyl hilt" - }, - { - "id": 11838, - "name": "Saradomin sword" - }, - { - "id": 11785, - "name": "Armadyl crossbow" - }, - { - "id": 11814, - "name": "Saradomin hilt" - }, - { - "id": 13256, - "name": "Saradomin's light" - }, - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - }, - { - "id": 26370, - "name": "Ancient hilt" - }, - { - "id": 26372, - "name": "Nihil horn" - }, - { - "id": 26376, - "name": "Torva full helm (damaged)" - }, - { - "id": 26378, - "name": "Torva platebody (damaged)" - }, - { - "id": 26380, - "name": "Torva platelegs (damaged)" - }, - { - "id": 26235, - "name": "Zaryte vambraces" - } - ], - "logCount": 18 - }, - "uuid": "904f026f-4669-44e7-8dfc-c757ce508070" - }, - { - "_id": 33, - "name": "Get a Spirit shield or Holy elixir", - "tip": "Can be received as a drop from the Corporeal Beast Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Corporeal_Beast", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/2/23/Blessed_spirit_shield_detail.png/120px-Blessed_spirit_shield_detail.png?69cbc", - "assetImage": "120px-Blessed_spirit_shield_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Corporeal Beast", - "include": [ - { - "id": 12829, - "name": "Spirit shield" - }, - { - "id": 12833, - "name": "Holy elixir" - } - ], - "logCount": 1 - }, - "uuid": "b626a508-95ef-407e-ab7f-e4884d14cbf4" - }, - { - "_id": 34, - "name": "Get a Spirit shield or Holy elixir", - "tip": "Can be received as a drop from the Corporeal Beast Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Corporeal_Beast", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/2/23/Blessed_spirit_shield_detail.png/120px-Blessed_spirit_shield_detail.png?69cbc", - "assetImage": "120px-Blessed_spirit_shield_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Corporeal Beast", - "include": [ - { - "id": 12829, - "name": "Spirit shield" - }, - { - "id": 12833, - "name": "Holy elixir" - } - ], - "logCount": 2 - }, - "uuid": "9c3ea304-99f5-42e2-b5f1-7154e9600d1b" - }, - { - "_id": 35, - "name": "Get a new Boss pet", - "tip": "Can be obtained rarley, from any Boss. Advised to go for the Chaos Elemental Pet as the drop rate is much lowered compared to the other bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f4/Olmlet.png?f8c27", - "assetImage": "Olmlet.png", - "colLogData": { - "category": "Other", - "logName": "All Pets", - "include": [ - { - "id": 13262, - "name": "Abyssal orphan" - }, - { - "id": 12646, - "name": "Baby mole" - }, - { - "id": 13178, - "name": "Callisto cub" - }, - { - "id": 13247, - "name": "Hellpuppy" - }, - { - "id": 30152, - "name": "Huberte" - }, - { - "id": 22746, - "name": "Ikkle hydra" - }, - { - "id": 21291, - "name": "Jal-nib-rek" - }, - { - "id": 12647, - "name": "Kalphite princess" - }, - { - "id": 22473, - "name": "Lil' zik" - }, - { - "id": 24491, - "name": "Little nightmare" - }, - { - "id": 30154, - "name": "Moxi" - }, - { - "id": 27590, - "name": "Muphin" - }, - { - "id": 26348, - "name": "Nexling" - }, - { - "id": 29836, - "name": "Nid" - }, - { - "id": 21748, - "name": "Noon" - }, - { - "id": 20851, - "name": "Olmlet" - }, - { - "id": 11995, - "name": "Pet chaos elemental" - }, - { - "id": 12643, - "name": "Pet dagannoth supreme" - }, - { - "id": 12644, - "name": "Pet dagannoth prime" - }, - { - "id": 12645, - "name": "Pet dagannoth rex" - }, - { - "id": 12816, - "name": "Pet dark core" - }, - { - "id": 12650, - "name": "Pet general graardor" - }, - { - "id": 12652, - "name": "Pet k'ril tsutsaroth" - }, - { - "id": 12655, - "name": "Pet kraken" - }, - { - "id": 12649, - "name": "Pet kree'arra" - }, - { - "id": 12648, - "name": "Pet smoke devil" - }, - { - "id": 12921, - "name": "Pet snakeling" - }, - { - "id": 12651, - "name": "Pet zilyana" - }, - { - "id": 12653, - "name": "Prince black dragon" - }, - { - "id": 13181, - "name": "Scorpia's offspring" - }, - { - "id": 28801, - "name": "Scurry" - }, - { - "id": 21273, - "name": "Skotos" - }, - { - "id": 23495, - "name": "Sraracha" - }, - { - "id": 13225, - "name": "Tzrek-jad" - }, - { - "id": 27352, - "name": "Tumeken's guardian" - }, - { - "id": 13177, - "name": "Venenatis spiderling" - }, - { - "id": 13179, - "name": "Vet'ion jr." - }, - { - "id": 21992, - "name": "Vorki" - }, - { - "id": 28960, - "name": "Smol heredit" - }, - { - "id": 30622, - "name": "Bran" - }, - { - "id": 28250, - "name": "Baron" - }, - { - "id": 28252, - "name": "Lil'viathan" - }, - { - "id": 28246, - "name": "Wisp" - }, - { - "id": 28248, - "name": "Butch" - }, - { - "id": 31130, - "name": "Dom" - } - ], - "logCount": 2 - }, - "uuid": "b890a852-597e-4cb1-9bee-0d472977278a" - }, - { - "_id": 36, - "name": "Get a new Boss pet", - "tip": "Can be obtained rarley, from any Boss. Advised to go for the Chaos Elemental Pet as the drop rate is much lowered compared to the other bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f4/Olmlet.png?f8c27", - "assetImage": "Olmlet.png", - "colLogData": { - "category": "Other", - "logName": "All Pets", - "include": [ - { - "id": 13262, - "name": "Abyssal orphan" - }, - { - "id": 12646, - "name": "Baby mole" - }, - { - "id": 13178, - "name": "Callisto cub" - }, - { - "id": 13247, - "name": "Hellpuppy" - }, - { - "id": 30152, - "name": "Huberte" - }, - { - "id": 22746, - "name": "Ikkle hydra" - }, - { - "id": 21291, - "name": "Jal-nib-rek" - }, - { - "id": 12647, - "name": "Kalphite princess" - }, - { - "id": 22473, - "name": "Lil' zik" - }, - { - "id": 24491, - "name": "Little nightmare" - }, - { - "id": 30154, - "name": "Moxi" - }, - { - "id": 27590, - "name": "Muphin" - }, - { - "id": 26348, - "name": "Nexling" - }, - { - "id": 29836, - "name": "Nid" - }, - { - "id": 21748, - "name": "Noon" - }, - { - "id": 20851, - "name": "Olmlet" - }, - { - "id": 11995, - "name": "Pet chaos elemental" - }, - { - "id": 12643, - "name": "Pet dagannoth supreme" - }, - { - "id": 12644, - "name": "Pet dagannoth prime" - }, - { - "id": 12645, - "name": "Pet dagannoth rex" - }, - { - "id": 12816, - "name": "Pet dark core" - }, - { - "id": 12650, - "name": "Pet general graardor" - }, - { - "id": 12652, - "name": "Pet k'ril tsutsaroth" - }, - { - "id": 12655, - "name": "Pet kraken" - }, - { - "id": 12649, - "name": "Pet kree'arra" - }, - { - "id": 12648, - "name": "Pet smoke devil" - }, - { - "id": 12921, - "name": "Pet snakeling" - }, - { - "id": 12651, - "name": "Pet zilyana" - }, - { - "id": 12653, - "name": "Prince black dragon" - }, - { - "id": 13181, - "name": "Scorpia's offspring" - }, - { - "id": 28801, - "name": "Scurry" - }, - { - "id": 21273, - "name": "Skotos" - }, - { - "id": 23495, - "name": "Sraracha" - }, - { - "id": 13225, - "name": "Tzrek-jad" - }, - { - "id": 27352, - "name": "Tumeken's guardian" - }, - { - "id": 13177, - "name": "Venenatis spiderling" - }, - { - "id": 13179, - "name": "Vet'ion jr." - }, - { - "id": 21992, - "name": "Vorki" - }, - { - "id": 28960, - "name": "Smol heredit" - }, - { - "id": 30622, - "name": "Bran" - }, - { - "id": 28250, - "name": "Baron" - }, - { - "id": 28252, - "name": "Lil'viathan" - }, - { - "id": 28246, - "name": "Wisp" - }, - { - "id": 28248, - "name": "Butch" - }, - { - "id": 31130, - "name": "Dom" - } - ], - "logCount": 3 - }, - "uuid": "30b77d52-57b6-41bc-908b-c59be4fbc417" - }, - { - "_id": 37, - "name": "Get a new Boss pet", - "tip": "Can be obtained rarley, from any Boss. Advised to go for the Chaos Elemental Pet as the drop rate is much lowered compared to the other bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f4/Olmlet.png?f8c27", - "assetImage": "Olmlet.png", - "colLogData": { - "category": "Other", - "logName": "All Pets", - "include": [ - { - "id": 13262, - "name": "Abyssal orphan" - }, - { - "id": 12646, - "name": "Baby mole" - }, - { - "id": 13178, - "name": "Callisto cub" - }, - { - "id": 13247, - "name": "Hellpuppy" - }, - { - "id": 30152, - "name": "Huberte" - }, - { - "id": 22746, - "name": "Ikkle hydra" - }, - { - "id": 21291, - "name": "Jal-nib-rek" - }, - { - "id": 12647, - "name": "Kalphite princess" - }, - { - "id": 22473, - "name": "Lil' zik" - }, - { - "id": 24491, - "name": "Little nightmare" - }, - { - "id": 30154, - "name": "Moxi" - }, - { - "id": 27590, - "name": "Muphin" - }, - { - "id": 26348, - "name": "Nexling" - }, - { - "id": 29836, - "name": "Nid" - }, - { - "id": 21748, - "name": "Noon" - }, - { - "id": 20851, - "name": "Olmlet" - }, - { - "id": 11995, - "name": "Pet chaos elemental" - }, - { - "id": 12643, - "name": "Pet dagannoth supreme" - }, - { - "id": 12644, - "name": "Pet dagannoth prime" - }, - { - "id": 12645, - "name": "Pet dagannoth rex" - }, - { - "id": 12816, - "name": "Pet dark core" - }, - { - "id": 12650, - "name": "Pet general graardor" - }, - { - "id": 12652, - "name": "Pet k'ril tsutsaroth" - }, - { - "id": 12655, - "name": "Pet kraken" - }, - { - "id": 12649, - "name": "Pet kree'arra" - }, - { - "id": 12648, - "name": "Pet smoke devil" - }, - { - "id": 12921, - "name": "Pet snakeling" - }, - { - "id": 12651, - "name": "Pet zilyana" - }, - { - "id": 12653, - "name": "Prince black dragon" - }, - { - "id": 13181, - "name": "Scorpia's offspring" - }, - { - "id": 28801, - "name": "Scurry" - }, - { - "id": 21273, - "name": "Skotos" - }, - { - "id": 23495, - "name": "Sraracha" - }, - { - "id": 13225, - "name": "Tzrek-jad" - }, - { - "id": 27352, - "name": "Tumeken's guardian" - }, - { - "id": 13177, - "name": "Venenatis spiderling" - }, - { - "id": 13179, - "name": "Vet'ion jr." - }, - { - "id": 21992, - "name": "Vorki" - }, - { - "id": 28960, - "name": "Smol heredit" - }, - { - "id": 30622, - "name": "Bran" - }, - { - "id": 28250, - "name": "Baron" - }, - { - "id": 28252, - "name": "Lil'viathan" - }, - { - "id": 28246, - "name": "Wisp" - }, - { - "id": 28248, - "name": "Butch" - }, - { - "id": 31130, - "name": "Dom" - } - ], - "logCount": 4 - }, - "uuid": "23076783-9e64-4533-b12c-871ae2b8f102" - }, - { - "_id": 38, - "name": "Get 1 unique from Thermonuclear smoke devil", - "tip": "Can be received as a drop from the Thermonuclear Smoke Devil Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Thermonuclear_smoke_devil", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f7/Occult_necklace.png?30b38", - "assetImage": "Occult_necklace.png", - "colLogData": { - "category": "Bosses", - "logName": "Thermonuclear Smoke Devil", - "include": [ - { - "id": 11998, - "name": "Smoke battlestaff" - }, - { - "id": 12002, - "name": "Occult necklace" - } - ], - "logCount": 2 - }, - "uuid": "98e83f40-6718-406c-86b2-c7bffc5a4958" - }, - { - "_id": 39, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Callisto and Artio", - "Venenatis and Spindel", - "Vet'ion and Calvar'ion" - ], - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 22542, - "name": "Viggora's chainmace (u)" - }, - { - "id": 22547, - "name": "Craw's' bow (u)" - }, - { - "id": 22552, - "name": "Thammaron's sceptre (u)" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - } - ], - "logCount": 4 - }, - "uuid": "ee23229f-5e4c-43ce-9880-1bd04a20a261" - }, - { - "_id": 40, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Callisto and Artio", - "Venenatis and Spindel", - "Vet'ion and Calvar'ion" - ], - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 22542, - "name": "Viggora's chainmace (u)" - }, - { - "id": 22547, - "name": "Craw's' bow (u)" - }, - { - "id": 22552, - "name": "Thammaron's sceptre (u)" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - } - ], - "logCount": 5 - }, - "uuid": "bb33bb71-618a-4372-a02c-70a7a31bc953" - }, - { - "_id": 41, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Callisto and Artio", - "Venenatis and Spindel", - "Vet'ion and Calvar'ion" - ], - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 22542, - "name": "Viggora's chainmace (u)" - }, - { - "id": 22547, - "name": "Craw's' bow (u)" - }, - { - "id": 22552, - "name": "Thammaron's sceptre (u)" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - } - ], - "logCount": 6 - }, - "uuid": "6de68d8e-d7b8-4ab3-a2f2-513c5479adc1" - }, - { - "_id": 42, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Callisto and Artio", - "Venenatis and Spindel", - "Vet'ion and Calvar'ion" - ], - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 22542, - "name": "Viggora's chainmace (u)" - }, - { - "id": 22547, - "name": "Craw's' bow (u)" - }, - { - "id": 22552, - "name": "Thammaron's sceptre (u)" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - } - ], - "logCount": 7 - }, - "uuid": "1f5d3112-dfcb-437f-b83d-dba37d3727fa" - }, - { - "_id": 43, - "name": "Get 1 unique drop from Grotesque Guardians", - "tip": "Received as a drop from the Grotesque Guardians Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grotesque_Guardians", - "wikiImage": "https://oldschool.runescape.wiki/images/c/ce/Black_tourmaline_core.png?e7f8e", - "assetImage": "Black_tourmaline_core.png", - "colLogData": { - "category": "Bosses", - "logName": "Grotesque Guardians", - "include": [ - { - "id": 21730, - "name": "Black tourmaline core" - }, - { - "id": 21736, - "name": "Granite gloves" - }, - { - "id": 21739, - "name": "Granite ring" - }, - { - "id": 21742, - "name": "Granite hammer" - } - ], - "logCount": 4 - }, - "uuid": "1e2cdcc8-3e81-4948-82fb-444415be5ee9" - }, - { - "_id": 44, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 4 - }, - "uuid": "cfe62202-fcff-4c48-a7ce-759ab7abf4fc" - }, - { - "_id": 45, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 5 - }, - "uuid": "23d240d5-ff59-4dfc-a36c-2c04aaea5f98" - }, - { - "_id": 46, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 6 - }, - "uuid": "81bfa29c-7aa1-4c83-9b66-886b8cc7efb0" - }, - { - "_id": 47, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 7 - }, - "uuid": "e242e0f3-f427-4a81-b2b4-35b129d3d77c" - }, - { - "_id": 48, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 8 - }, - "uuid": "00c55616-541b-495f-bb70-8d47b4006f81" - }, - { - "_id": 49, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 9 - }, - "uuid": "3f100c5c-fca5-498f-8100-f244e7e93cf0" - }, - { - "_id": 50, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 10 - }, - "uuid": "b95f9d6f-e329-45e2-a27d-df3e72b499e4" - }, - { - "_id": 51, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 11 - }, - "uuid": "412a88cc-0176-4dd7-beef-f415f336fdf5" - }, - { - "_id": 52, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 12 - }, - "uuid": "899c8e83-2a94-46dc-9d0e-4264ade1fe6b" - }, - { - "_id": 53, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 13 - }, - "uuid": "5089451e-af11-4e7a-939b-69e7264f6567" - }, - { - "_id": 54, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 14 - }, - "uuid": "80d36a85-f35e-4357-b753-3af16d2712db" - }, - { - "_id": 55, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 15 - }, - "uuid": "16c3398a-195b-49ad-b3e0-36e1c2998c02" - }, - { - "_id": 56, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 16 - }, - "uuid": "2d2f9afe-cda9-40aa-b3f0-ee4223e3cc00" - }, - { - "_id": 57, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "colLogData": { - "category": "Raids", - "logName": null, - "multi": [ - "Chambers of Xeric", - "Theatre of Blood", - "Tombs of Amascut" - ], - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - }, - { - "id": 22477, - "name": "Avernic defender hilt" - }, - { - "id": 22481, - "name": "Sanguinesti staff (uncharged)" - }, - { - "id": 22486, - "name": "Scythe of vitur (uncharged)" - }, - { - "id": 22324, - "name": "Ghrazi rapier" - }, - { - "id": 22326, - "name": "Justiciar faceguard" - }, - { - "id": 22327, - "name": "Justiciar chestguard" - }, - { - "id": 22328, - "name": "Justiciar legguards" - }, - { - "id": 20997, - "name": "Twisted bow" - }, - { - "id": 21003, - "name": "Elder maul" - }, - { - "id": 21043, - "name": "Kodai insignia" - }, - { - "id": 13652, - "name": "Dragon claws" - }, - { - "id": 21018, - "name": "Ancestral hat" - }, - { - "id": 21021, - "name": "Ancestral robe top" - }, - { - "id": 21024, - "name": "Ancestral robe bottom" - }, - { - "id": 21015, - "name": "Dinh's bulwark" - }, - { - "id": 21034, - "name": "Dexterous prayer scroll" - }, - { - "id": 21079, - "name": "Arcane prayer scroll" - }, - { - "id": 21012, - "name": "Dragon hunter crossbow" - }, - { - "id": 21000, - "name": "Twisted buckler" - } - ], - "logCount": 17 - }, - "uuid": "b7602f4e-a3bb-4885-ba21-d424501783a6" - }, - { - "_id": 58, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "Easy Treasure Trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 90 - }, - "uuid": "942c15b1-54c5-4641-91a7-4e29cd9e370d" - }, - { - "_id": 59, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "Easy Treasure Trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 95 - }, - "uuid": "950728da-1903-425b-9df7-553c69cdd8eb" - }, - { - "_id": 60, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "Easy Treasure Trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 100 - }, - "uuid": "f4e52da5-2daf-43b2-b3c7-f0471f88bcd0" - }, - { - "_id": 61, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "Easy Treasure Trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 105 - }, - "uuid": "0f4ee6a3-49ac-4d63-8207-4f5ac05e1800" - }, - { - "_id": 62, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "Easy Treasure Trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 110 - }, - "uuid": "cd8f4218-2286-4082-ae04-c26b9973e4c9" - }, - { - "_id": 63, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "Medium Treasure Trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 70 - }, - "uuid": "b2a676cf-90ed-4611-b91d-098b2d52e3db" - }, - { - "_id": 64, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "Medium Treasure Trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 75 - }, - "uuid": "98c3eb0c-fa47-44e4-ac8a-d823af8fea3a" - }, - { - "_id": 65, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "Medium Treasure Trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 80 - }, - "uuid": "455cfd61-97d7-4c6b-bca0-0caaeb8c42f6" - }, - { - "_id": 66, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "Medium Treasure Trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 85 - }, - "uuid": "a1ca4974-b1db-4a25-bd47-e9522c0e4c54" - }, - { - "_id": 67, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "Medium Treasure Trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 90 - }, - "uuid": "7bcf95bd-b5d6-453c-a96f-37c1970f06a1" - }, - { - "_id": 68, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 70 - }, - "uuid": "a389b9be-4778-4114-a3e8-a6074e2bff4f" - }, - { - "_id": 69, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 75 - }, - "uuid": "307948c6-8736-4efb-9c20-d562d0e4c763" - }, - { - "_id": 70, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 80 - }, - "uuid": "de64ec17-cd67-487d-95c6-c9469a63ac0f" - }, - { - "_id": 71, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 85 - }, - "uuid": "5c32272b-9870-4506-bf99-cf5701ad4c72" - }, - { - "_id": 72, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 90 - }, - "uuid": "8adbdd6a-e631-417a-a923-308090132ec3" - }, - { - "_id": 73, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 95 - }, - "uuid": "252a8fea-4e88-4d77-b38d-2f30a61fbf6f" - }, - { - "_id": 74, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 100 - }, - "uuid": "9986b8a0-8b59-43d5-8713-0018b557384a" - }, - { - "_id": 75, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "Hard Treasure Trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 105 - }, - "uuid": "aa52aeff-a9e3-479b-b754-3cf3122b576f" - }, - { - "_id": 76, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 11 - }, - "uuid": "7328a348-7762-404c-a50b-58ce7581e945" - }, - { - "_id": 77, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 12 - }, - "uuid": "0f271100-8134-4cda-a88f-fd92f9c710f6" - }, - { - "_id": 78, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 13 - }, - "uuid": "edb6e10f-f364-4eaa-afb1-4034914ce18b" - }, - { - "_id": 79, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 14 - }, - "uuid": "039f6cbb-88ca-4bd5-be17-b06c2a6e6bd3" - }, - { - "_id": 80, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 15 - }, - "uuid": "a8677299-b940-4f03-a4a9-b71a9cbd0cba" - }, - { - "_id": 81, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 16 - }, - "uuid": "79b49f39-0b86-4041-99e0-b33fcc674cfe" - }, - { - "_id": 82, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 17 - }, - "uuid": "d88bb03a-449f-48b0-87e2-5fa610f3a0b8" - }, - { - "_id": 83, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 18 - }, - "uuid": "45729eb4-1457-4cba-8ff2-73026fa61bdc" - }, - { - "_id": 84, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 19 - }, - "uuid": "67e10bae-fcc6-41bb-b7c6-dac9b5f7eb1f" - }, - { - "_id": 85, - "name": "Get 1 new unique from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "Elite Treasure Trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 20 - }, - "uuid": "c3792f5b-4ac7-4314-b041-29bb8dce87c1" - }, - { - "_id": 86, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 1 - }, - "uuid": "93e3209e-607b-4c40-9f6c-753988da412b" - }, - { - "_id": 87, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 2 - }, - "uuid": "d48e76c4-1112-4a56-b80a-dcc7d12fdce7" - }, - { - "_id": 88, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 3 - }, - "uuid": "04c3c955-3217-42ee-a274-fd6797b7e40c" - }, - { - "_id": 89, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 4 - }, - "uuid": "601006be-34ea-4add-a3d9-25b1e2b83f62" - }, - { - "_id": 90, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 5 - }, - "uuid": "6d808c71-e77c-463b-b9ab-5aaae3fdfb79" - }, - { - "_id": 91, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 6 - }, - "uuid": "dceb048a-21fd-4f6d-8d80-7b9e09c4783f" - }, - { - "_id": 92, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 7 - }, - "uuid": "58c514d1-64ad-4a52-b32f-e008c91aa342" - }, - { - "_id": 93, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 8 - }, - "uuid": "f4289df6-449f-4f94-8115-12537d887a92" - }, - { - "_id": 94, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 9 - }, - "uuid": "6c832a74-ba32-4170-a0ea-fb9361f599ca" - }, - { - "_id": 95, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 10 - }, - "uuid": "b7f61908-4935-4c96-8a17-b2331d55806b" - }, - { - "_id": 96, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 11 - }, - "uuid": "efc55786-fe07-4ebe-baa8-cea40f261d4a" - }, - { - "_id": 97, - "name": "Get 1 new unique from master clues", - "tip": "Potential reward from master clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", - "wikiImage": "http://oldschool.runescape.wiki/images/e/e1/Clue_scroll_%28master%29.png?638dd", - "assetImage": "Clue_scroll_master.png", - "colLogData": { - "category": "Clues", - "logName": "Master Treasure Trails", - "include": [ - { - "id": 19724, - "name": "Left eye patch" - }, - { - "id": 20008, - "name": "Fancy tiara" - }, - { - "id": 20020, - "name": "Lesser demon mask" - }, - { - "id": 20023, - "name": "Greater demon mask" - }, - { - "id": 20026, - "name": "Black demon mask" - }, - { - "id": 20029, - "name": "Old demon mask" - }, - { - "id": 20032, - "name": "Jungle demon mask" - }, - { - "id": 20035, - "name": "Samurai kasa" - }, - { - "id": 20038, - "name": "Samurai shirt" - }, - { - "id": 20041, - "name": "Samurai gloves" - }, - { - "id": 20044, - "name": "Samurai greaves" - }, - { - "id": 20047, - "name": "Samurai boots" - }, - { - "id": 20050, - "name": "Obsidian cape (r)" - }, - { - "id": 20053, - "name": "Half moon spectacles" - }, - { - "id": 20056, - "name": "Ale of the gods" - }, - { - "id": 20062, - "name": "Torture ornament kit" - }, - { - "id": 20065, - "name": "Occult ornament kit" - }, - { - "id": 20068, - "name": "Armadyl godsword ornament kit" - }, - { - "id": 20071, - "name": "Bandos godsword ornament kit" - }, - { - "id": 20074, - "name": "Saradomin godsword ornament kit" - }, - { - "id": 20077, - "name": "Zamorak godsword ornament kit" - }, - { - "id": 20080, - "name": "Mummy's head" - }, - { - "id": 20083, - "name": "Mummy's body" - }, - { - "id": 20086, - "name": "Mummy's hands" - }, - { - "id": 20089, - "name": "Mummy's legs" - }, - { - "id": 20092, - "name": "Mummy's feet" - }, - { - "id": 20095, - "name": "Ankou mask" - }, - { - "id": 20098, - "name": "Ankou top" - }, - { - "id": 20101, - "name": "Ankou gloves" - }, - { - "id": 20104, - "name": "Ankou's leggings" - }, - { - "id": 20107, - "name": "Ankou socks" - }, - { - "id": 20110, - "name": "Bowl wig" - }, - { - "id": 20113, - "name": "Arceuus hood" - }, - { - "id": 20116, - "name": "Hosidius hood" - }, - { - "id": 20119, - "name": "Lovakengj hood" - }, - { - "id": 20122, - "name": "Piscarilius hood" - }, - { - "id": 20125, - "name": "Shayzien hood" - }, - { - "id": 20128, - "name": "Hood of darkness" - }, - { - "id": 20131, - "name": "Robe top of darkness" - }, - { - "id": 20134, - "name": "Gloves of darkness" - }, - { - "id": 20137, - "name": "Robe bottom of darkness" - }, - { - "id": 20140, - "name": "Boots of darkness" - }, - { - "id": 20143, - "name": "Dragon defender ornament kit" - }, - { - "id": 22236, - "name": "Dragon platebody ornament kit" - }, - { - "id": 22239, - "name": "Dragon kiteshield ornament kit" - }, - { - "id": 22246, - "name": "Anguish ornament kit" - }, - { - "id": 23348, - "name": "Tormented ornament kit" - } - ], - "logCount": 12 - }, - "uuid": "f89e4ee0-e17a-45d3-a29d-f0500957263f" - }, - { - "_id": 98, - "name": "Get a Saradomin banner", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\".", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/5/52/Saradomin_banner.png?d4336", - "assetImage": "Saradomin_banner.png", - "colLogData": { - "category": "Minigames", - "logName": "Castle Wars", - "include": [ - { - "id": 11891, - "name": "Saradomin banner" - } - ], - "logCount": 1 - }, - "uuid": "8fe65592-5c80-4548-a54e-a82aee39591b" - }, - { - "_id": 99, - "name": "Get a Zamorak banner", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\".", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/b/b9/Zamorak_banner.png?160d1", - "assetImage": "Zamorak_banner.png", - "colLogData": { - "category": "Minigames", - "logName": "Castle Wars", - "include": [ - { - "id": 11892, - "name": "Zamorak banner" - } - ], - "logCount": 1 - }, - "uuid": "2e7d7cb9-3e4e-4c88-bd14-4902f116cd26" - }, - { - "_id": 100, - "name": "Get a Gold decorative helm", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\".", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d5/Decorative_helm_%28gold%29.png", - "assetImage": "Decorative_helm_gold.png", - "colLogData": { - "category": "Minigames", - "logName": "Castle Wars", - "include": [ - { - "id": 4511, - "name": "Decorative helm (gold)" - } - ], - "logCount": 1 - }, - "uuid": "b25d9d8b-ba1a-4caf-a525-6c1d0bea2469" - }, - { - "_id": 101, - "name": "Get a pair of Gold decorative boots", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\".", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/6/66/Decorative_boots_%28gold%29_detail.png/100px-Decorative_boots_%28gold%29_detail.png?cc1ab", - "assetImage": "100px-Decorative_boots_gold_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Castle Wars", - "include": [ - { - "id": 25171, - "name": "Decorative boots (gold)" - } - ], - "logCount": 1 - }, - "uuid": "eb73c2e6-455c-44b8-bbe3-8f00a88a2bcc" - }, - { - "_id": 102, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c2/Green_naval_shirt.png?25ba7", - "assetImage": "Green_naval_shirt.png", - "colLogData": { - "category": "Minigames", - "logName": "Trouble Brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 18 - }, - "uuid": "61345e27-0112-4061-9591-c5a9fce145f4" - }, - { - "_id": 103, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c2/Green_naval_shirt.png?25ba7", - "assetImage": "Green_naval_shirt.png", - "colLogData": { - "category": "Minigames", - "logName": "Trouble Brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 21 - }, - "uuid": "b8e65242-1874-4a90-83d0-74a4b78755a9" - }, - { - "_id": 104, - "name": "Get the Treasure flag", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "http://oldschool.runescape.wiki/images/1/15/Treasure_flag.png?4169a", - "assetImage": "Treasure_flag.png", - "colLogData": { - "category": "Minigames", - "logName": "Trouble Brewing", - "include": [ - { - "id": 8970, - "name": "Treasure flag" - } - ], - "logCount": 1 - }, - "uuid": "d3994fbd-9f4a-48bc-914e-47b9fc0be9d9" - }, - { - "_id": 105, - "name": "Get the Phasmatys flag", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/6/6a/Phasmatys_flag_detail.png/130px-Phasmatys_flag_detail.png", - "assetImage": "130px-Phasmatys_flag_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Trouble Brewing", - "include": [ - { - "id": 8971, - "name": "Phasmatys flag" - } - ], - "logCount": 1 - }, - "uuid": "527b25b4-e20c-49e5-b8e8-17349c2dfa59" - }, - { - "_id": 106, - "name": "Get the Chompy chick", - "tip": "Received as a drop from Chompy bird hunting after completeling the Western Provinces Elite Diary. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_chick", - "wikiImage": "http://oldschool.runescape.wiki/images/c/cf/Chompy_chick.png", - "assetImage": "Chompy_chick.png", - "colLogData": { - "category": "Other", - "logName": "Chompy Bird Hunting", - "include": [ - { - "id": 13071, - "name": "Chompy chick" - } - ], - "logCount": 1 - }, - "uuid": "34d3a0de-1d7a-4642-8892-e0f44e6dea0e" - }, - { - "_id": 107, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "Champion's Challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 7 - }, - "uuid": "3560ef0c-0923-4911-b2a2-089b60968fb9" - }, - { - "_id": 108, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "Champion's Challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 8 - }, - "uuid": "27de3ec8-a3d0-4a6c-aaeb-0b01f9843e08" - }, - { - "_id": 109, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "Champion's Challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 9 - }, - "uuid": "b65f5060-c058-4aa2-9d46-0f2eba4bc064" - }, - { - "_id": 110, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "Champion's Challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 10 - }, - "uuid": "ded41e2e-9b4d-49e0-8183-9c5b7efb71e2" - }, - { - "_id": 111, - "name": "Upgrade to the (expert) dragon archer headpiece", - "tip": "Guarenteed reward from Chompy bird hunting. The first time you receive this task, you must get the Dragon Archer Hat. Second time get the Expert Dragon Archer Hat. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_bird_hunting", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/6/62/Chompy_bird_hat_%28expert_dragon_archer%29_detail.png/110px-Chompy_bird_hat_%28expert_dragon_archer%29_detail.png", - "assetImage": "110px-Chompy_bird_hat_expert_dragon_archer_detail.png", - "colLogData": { - "category": "Other", - "logName": "Chompy Bird Hunting", - "include": [ - { - "id": 2993, - "name": "Chompy bird hat (dragon archer)" - } - ], - "logCount": 1 - }, - "uuid": "3e7a6706-dff2-452a-8e06-1170d8a13673" - }, - { - "_id": 112, - "name": "Upgrade to the (expert) dragon archer headpiece", - "tip": "Guarenteed reward from Chompy bird hunting. The first time you receive this task, you must get the Dragon Archer Hat. Second time get the Expert Dragon Archer Hat. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_bird_hunting", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/6/62/Chompy_bird_hat_%28expert_dragon_archer%29_detail.png/110px-Chompy_bird_hat_%28expert_dragon_archer%29_detail.png", - "assetImage": "110px-Chompy_bird_hat_expert_dragon_archer_detail.png", - "colLogData": { - "category": "Other", - "logName": "Chompy Bird Hunting", - "include": [ - { - "id": 2995, - "name": "Chompy bird hat (expert dragon archer)" - } - ], - "logCount": 1 - }, - "uuid": "031c79be-210b-4f64-9775-3fefd33561b9" - }, - { - "_id": 113, - "name": "Get a unique from Demonic gorillas", - "tip": "Can be received as a drop from Demonic Gorillas(Murder Monkeys)", - "wikiLink": "https://oldschool.runescape.wiki/w/Demonic_gorilla", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e7/Zenyte_shard.png", - "assetImage": "Zenyte_shard.png", - "colLogData": { - "category": "Other", - "logName": "Glough's Experiments", - "include": [ - { - "id": 19529, - "name": "Zenyte shard" - }, - { - "id": 19586, - "name": "Light frame" - }, - { - "id": 19589, - "name": "Heavy frame" - }, - { - "id": 19592, - "name": "Ballista limbs" - }, - { - "id": 19601, - "name": "Ballista spring" - }, - { - "id": 19610, - "name": "Monkey tail" - } - ], - "logCount": 5 - }, - "uuid": "c07c2020-3fcd-486e-8f6e-4edbd99a8217" - }, - { - "_id": 114, - "name": "Get a unique from Demonic gorillas", - "tip": "Can be received as a drop from Demonic Gorillas(Murder Monkeys)", - "wikiLink": "https://oldschool.runescape.wiki/w/Demonic_gorilla", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e7/Zenyte_shard.png", - "assetImage": "Zenyte_shard.png", - "colLogData": { - "category": "Other", - "logName": "Glough's Experiments", - "include": [ - { - "id": 19529, - "name": "Zenyte shard" - }, - { - "id": 19586, - "name": "Light frame" - }, - { - "id": 19589, - "name": "Heavy frame" - }, - { - "id": 19592, - "name": "Ballista limbs" - }, - { - "id": 19601, - "name": "Ballista spring" - }, - { - "id": 19610, - "name": "Monkey tail" - } - ], - "logCount": 6 - }, - "uuid": "f39ce90f-63f5-40a4-9778-14f4184aafed" - }, - { - "_id": 115, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "My Notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 24 - }, - "uuid": "c9c21f27-eab4-42c8-9fae-3ffa6a86c075" - }, - { - "_id": 116, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "My Notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 26 - }, - "uuid": "8911cba9-5fb2-492c-96e9-94049b61487f" - }, - { - "_id": 117, - "name": "Get a Dust battlestaff", - "tip": "Received as a drop from Superior Slayer Creatures. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dust_battlestaff", - "wikiImage": "https://oldschool.runescape.wiki/images/9/91/Dust_battlestaff.png?b33a3", - "assetImage": "Dust_battlestaff.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 20736, - "name": "Dust battlestaff" - } - ], - "logCount": 1 - }, - "uuid": "314673cb-958c-4efd-8c46-8d1be04ca16a" - }, - { - "_id": 118, - "name": "Get a Mist battlestaff", - "tip": "Received as a drop from Superior Slayer Creatures. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mist_battlestaff", - "wikiImage": "https://oldschool.runescape.wiki/images/b/be/Mist_battlestaff.png", - "assetImage": "Mist_battlestaff.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 20730, - "name": "Mist battlestaff" - } - ], - "logCount": 1 - }, - "uuid": "4d7fc258-383c-4ce3-9148-0904913f4499" - }, - { - "_id": 119, - "name": "Get 1 unique Obsidian armour drop", - "tip": "Can be recevied as a drop from Tzhaar Kets in the inner section of Mor Ul Rek.", - "wikiLink": "https://oldschool.runescape.wiki/w/Obsidian_armour", - "wikiImage": "https://oldschool.runescape.wiki/images/a/ac/Obsidian_platebody.png?db48b", - "assetImage": "Obsidian_platebody.png", - "colLogData": { - "category": "Other", - "logName": "TzHaar", - "include": [ - { - "id": 21298, - "name": "Obsidian helmet" - }, - { - "id": 21301, - "name": "Obsidian platebody" - }, - { - "id": 21304, - "name": "Obsidian platelegs" - } - ], - "logCount": 3 - }, - "uuid": "759566cc-6c18-4618-8cf7-a8560a0f095c" - }, - { - "_id": 120, - "name": "Get a Toktz-mej-tal", - "tip": "Received as a drop from Toktz-mej. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Toktz-mej-tal", - "wikiImage": "http://oldschool.runescape.wiki/images/0/0f/Toktz-mej-tal.png?c01ec", - "assetImage": "Toktz-mej-tal.png", - "colLogData": { - "category": "Other", - "logName": "TzHaar", - "include": [ - { - "id": 6526, - "name": "Toktz-mej-tal" - } - ], - "logCount": 1 - }, - "uuid": "d92bab19-7d60-4310-b583-9da4db52911b" - }, - { - "_id": 121, - "name": "Get dragon limbs", - "tip": "Received as a drop from Rune/Adamant dragons. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_limbs", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/94/Dragon_limbs_detail.png/130px-Dragon_limbs_detail.png?535fd", - "assetImage": "130px-Dragon_limbs_detail.png", - "colLogData": { - "category": "Other", - "logName": "Miscellaneous", - "include": [ - { - "id": 21918, - "name": "Dragon limbs" - } - ], - "logCount": 1 - }, - "uuid": "35a0786a-8487-4321-a0ed-5defd57aea21" - }, - { - "_id": 122, - "name": "Complete the Ardougne Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ardougne_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "8c0cb3d6-e137-4a4a-b567-cab75ed2077f" - }, - { - "_id": 123, - "name": "Complete the Desert Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "7ec18760-279b-403f-a871-8f0bb99d3387" - }, - { - "_id": 124, - "name": "Complete the Falador Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Falador_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "ab7fc232-2f2d-4497-8ea8-c7073d02539b" - }, - { - "_id": 125, - "name": "Complete the Fremennik Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Fremennik_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "3d193ab7-67da-409b-8c21-fa79761e9693" - }, - { - "_id": 126, - "name": "Complete the Kandarin Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kandarin_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "1cb67d59-85dc-4377-a348-30b87d54bbfe" - }, - { - "_id": 127, - "name": "Complete the Karamja Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karamja_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "26fe2217-b7f0-496e-a081-5ab11d8fe7b1" - }, - { - "_id": 128, - "name": "Complete the Kourend&Kebos Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kourend_%26_Kebos_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "308e1019-6b20-45ce-9725-13df969c6f49" - }, - { - "_id": 129, - "name": "Complete the Lumbridge&Draynor Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Lumbridge_%26_Draynor_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "b9e0a625-a86f-43ed-9e51-49e2b562ffa8" - }, - { - "_id": 130, - "name": "Complete the Morytania Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Morytania_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "d2ac7997-c8f8-420a-80c2-ab8e0a686e48" - }, - { - "_id": 131, - "name": "Complete the Varrock Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Varrock_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "63efc541-8946-45e1-b633-c9a56796c655" - }, - { - "_id": 132, - "name": "Complete the Western Provinces Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Western_Provinces_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "0709860d-771d-4173-8160-fdbeccfa54e0" - }, - { - "_id": 133, - "name": "Complete the Wilderness Elite Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "2b10f0dd-ed73-48e9-8ee7-1bb8744f2005" - }, - { - "_id": 134, - "name": "Get the Crystal grail", - "tip": "Guarenteed drop from the Rabbit in Prifddinas.", - "wikiLink": "https://oldschool.runescape.wiki/w/Crystal_grail", - "wikiImage": "https://oldschool.runescape.wiki/images/3/35/Crystal_grail.png?d4723", - "assetImage": "Crystal_grail.png", - "colLogData": { - "category": "Other", - "logName": "Miscellaneous", - "include": [ - { - "id": 24000, - "name": "Crystal grail" - } - ], - "logCount": 1 - }, - "uuid": "ed99af32-87fc-4ef0-a0f7-9c9ffc2f877c" - }, - { - "_id": 135, - "name": "Get the Fish sack", - "tip": "Can be purchased as a reward from Aerial Fishing hunter method. Giga RSI. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fish_sack", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/d/d8/Fish_sack_detail.png/130px-Fish_sack_detail.png?9d6d7", - "assetImage": "130px-Fish_sack_detail.png", - "colLogData": { - "category": "Other", - "logName": "Aerial Fishing", - "include": [ - { - "id": 22838, - "name": "Fish sack" - } - ], - "logCount": 1 - }, - "uuid": "4d4ea1e8-2128-45b6-aefc-2bdbffaa6a42" - }, - { - "_id": 136, - "name": "Get 1 unique piece of the Dagon'hai robes", - "tip": "Can be received as a drop from the Larrens Chest. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagon%27hai_robes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/76/Dagon%27hai_robe_top_detail.png/130px-Dagon%27hai_robe_top_detail.png?47eb4", - "assetImage": "130px-Dagonhai_robe_top_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 24288, - "name": "Dagon'hai hat" - }, - { - "id": 24291, - "name": "Dagon'hai robe top" - }, - { - "id": 24294, - "name": "Dagon'hai robe bottom" - } - ], - "logCount": 1 - }, - "uuid": "d94b002c-302b-4839-b3ec-6425bbd7b9f7" - }, - { - "_id": 137, - "name": "Get 1 unique piece of the Dagon'hai robes", - "tip": "Can be received as a drop from the Larrens Chest. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagon%27hai_robes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/76/Dagon%27hai_robe_top_detail.png/130px-Dagon%27hai_robe_top_detail.png?47eb4", - "assetImage": "130px-Dagonhai_robe_top_detail.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 24288, - "name": "Dagon'hai hat" - }, - { - "id": 24291, - "name": "Dagon'hai robe top" - }, - { - "id": 24294, - "name": "Dagon'hai robe bottom" - } - ], - "logCount": 2 - }, - "uuid": "b6f95d86-6570-4044-8d35-6db7ff236f92" - }, - { - "_id": 138, - "name": "Get 1 unique from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Hallowed Sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 13 - }, - "uuid": "6e15e8ab-b01a-41c4-9ee6-4d54318a6b5a" - }, - { - "_id": 139, - "name": "Get 1 unique from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Hallowed Sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 14 - }, - "uuid": "b437ed18-8908-46ed-b7e8-afc2e53c5fce" - }, - { - "_id": 140, - "name": "Get 1 unique from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Hallowed Sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 15 - }, - "uuid": "70d95a64-3df4-4c35-aa3c-2c4e20040b1e" - }, - { - "_id": 141, - "name": "Get Granite boots", - "tip": "Can be received as a drop from Fossil Island Wyverns. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Granite_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c1/Granite_boots.png?b571b", - "assetImage": "Granite_boots.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 21643, - "name": "Granite boots" - } - ], - "logCount": 1 - }, - "uuid": "7cd66d1c-ca78-4861-837a-5499d184b48e" - }, - { - "_id": 142, - "name": "Get the Hosidius blueprints", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/0/02/Hosidius_blueprints_detail.png/120px-Hosidius_blueprints_detail.png?7b4ca", - "assetImage": "120px-Hosidius_blueprints_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Mahogany Homes", - "include": [ - { - "id": 24885, - "name": "Hosidius blueprints" - } - ], - "logCount": 1 - }, - "uuid": "42680431-10bb-4f3f-b324-12445c5eaced" - }, - { - "_id": 143, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 8 - }, - "uuid": "ce78ed96-2f89-4a2f-91ac-79bd5932fabd" - }, - { - "_id": 144, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 9 - }, - "uuid": "94312599-a8ca-4113-9cd0-665821fabed3" - }, - { - "_id": 145, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 10 - }, - "uuid": "a09d514c-e7e3-43ce-bfe2-c7c9b5f4ee67" - }, - { - "_id": 146, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 11 - }, - "uuid": "8679f5a7-2c16-4cbf-82c2-57b3984640c1" - }, - { - "_id": 147, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 12 - }, - "uuid": "acde9e58-2d10-481c-9a54-377d0bec7493" - }, - { - "_id": 148, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 13 - }, - "uuid": "22048748-c405-4935-b389-553704e7c35b" - }, - { - "_id": 149, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "Shades of Mort'ton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 14 - }, - "uuid": "9fe5cbb4-fc71-49b4-aac1-123075c3dd10" - }, - { - "_id": 150, - "name": "Get a new Golden godsword special from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/a2/Armadyl_hilt_detail.png/120px-Armadyl_hilt_detail.png?50b4f", - "assetImage": "120px-Armadyl_hilt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Last Man Standing", - "include": [ - { - "id": 24868, - "name": "Golden armadyl special attack" - }, - { - "id": 24869, - "name": "Golden bandos special attack" - }, - { - "id": 24870, - "name": "Golden saradomin special attack" - }, - { - "id": 24871, - "name": "Golden zamorak special attack" - } - ], - "logCount": 1 - }, - "uuid": "116ba1f6-6416-4f8f-8e32-42f096b3fe04" - }, - { - "_id": 151, - "name": "Get a new Golden godsword special from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/a2/Armadyl_hilt_detail.png/120px-Armadyl_hilt_detail.png?50b4f", - "assetImage": "120px-Armadyl_hilt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Last Man Standing", - "include": [ - { - "id": 24868, - "name": "Golden armadyl special attack" - }, - { - "id": 24869, - "name": "Golden bandos special attack" - }, - { - "id": 24870, - "name": "Golden saradomin special attack" - }, - { - "id": 24871, - "name": "Golden zamorak special attack" - } - ], - "logCount": 2 - }, - "uuid": "ccf42f4a-78e9-4968-b696-b75522198ef4" - }, - { - "_id": 152, - "name": "Get a new Golden godsword special from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/a2/Armadyl_hilt_detail.png/120px-Armadyl_hilt_detail.png?50b4f", - "assetImage": "120px-Armadyl_hilt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Last Man Standing", - "include": [ - { - "id": 24868, - "name": "Golden armadyl special attack" - }, - { - "id": 24869, - "name": "Golden bandos special attack" - }, - { - "id": 24870, - "name": "Golden saradomin special attack" - }, - { - "id": 24871, - "name": "Golden zamorak special attack" - } - ], - "logCount": 3 - }, - "uuid": "fa5841dd-eb4f-4140-84aa-e10201e3f1cb" - }, - { - "_id": 153, - "name": "Get a new Golden godsword special from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/a2/Armadyl_hilt_detail.png/120px-Armadyl_hilt_detail.png?50b4f", - "assetImage": "120px-Armadyl_hilt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Last Man Standing", - "include": [ - { - "id": 24868, - "name": "Golden armadyl special attack" - }, - { - "id": 24869, - "name": "Golden bandos special attack" - }, - { - "id": 24870, - "name": "Golden saradomin special attack" - }, - { - "id": 24871, - "name": "Golden zamorak special attack" - } - ], - "logCount": 4 - }, - "uuid": "e218b954-430c-4baf-b2eb-aa174cddbfc7" - }, - { - "_id": 154, - "name": "Get a Broken dragon pickaxe", - "tip": "Can be purchased as a reward from the Volcanic Mine Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Volcanic_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragon_pickaxe_%28broken%29_detail.png/130px-Dragon_pickaxe_%28broken%29_detail.png", - "assetImage": "Broken_pickaxe_dragon_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Volcanic Mine", - "include": [ - { - "id": 27695, - "name": "Dragon pickaxe (broken)" - } - ], - "logCount": 1 - }, - "uuid": "33507618-03ae-4ab5-9cdd-195153d55f22" - }, - { - "_id": 155, - "name": "Get 1 unique from Revenants", - "tip": "Can be received as a drop from any Revenant.", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "wikiImage": "https://oldschool.runescape.wiki/images/5/54/Ancient_relic.png?d0ed1", - "assetImage": "Ancient_relic.png", - "colLogData": { - "category": "Other", - "logName": "Revenants", - "include": [ - { - "id": 22557, - "name": "Amulet of avarice" - }, - { - "id": 21804, - "name": "Ancient crystal" - }, - { - "id": 21807, - "name": "Ancient emblem" - }, - { - "id": 21810, - "name": "Ancient totem" - }, - { - "id": 21813, - "name": "Ancient statuette" - }, - { - "id": 22299, - "name": "Ancient medallion" - }, - { - "id": 22302, - "name": "Ancient effigy" - }, - { - "id": 22305, - "name": "Ancient relic" - } - ], - "logCount": 1 - }, - "uuid": "0274364e-fed1-471b-8b43-aa92b86bb4a5" - }, - { - "_id": 156, - "name": "Get 1 unique from Revenants", - "tip": "Can be received as a drop from any Revenant.", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "wikiImage": "https://oldschool.runescape.wiki/images/5/54/Ancient_relic.png?d0ed1", - "assetImage": "Ancient_relic.png", - "colLogData": { - "category": "Other", - "logName": "Revenants", - "include": [ - { - "id": 22557, - "name": "Amulet of avarice" - }, - { - "id": 21804, - "name": "Ancient crystal" - }, - { - "id": 21807, - "name": "Ancient emblem" - }, - { - "id": 21810, - "name": "Ancient totem" - }, - { - "id": 21813, - "name": "Ancient statuette" - }, - { - "id": 22299, - "name": "Ancient medallion" - }, - { - "id": 22302, - "name": "Ancient effigy" - }, - { - "id": 22305, - "name": "Ancient relic" - } - ], - "logCount": 2 - }, - "uuid": "1aa884c8-0dad-41d6-b50b-e9f8d6be03a2" - }, - { - "_id": 157, - "name": "Get 1 unique from Revenants", - "tip": "Can be received as a drop from any Revenant.", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "wikiImage": "https://oldschool.runescape.wiki/images/5/54/Ancient_relic.png?d0ed1", - "assetImage": "Ancient_relic.png", - "colLogData": { - "category": "Other", - "logName": "Revenants", - "include": [ - { - "id": 22557, - "name": "Amulet of avarice" - }, - { - "id": 21804, - "name": "Ancient crystal" - }, - { - "id": 21807, - "name": "Ancient emblem" - }, - { - "id": 21810, - "name": "Ancient totem" - }, - { - "id": 21813, - "name": "Ancient statuette" - }, - { - "id": 22299, - "name": "Ancient medallion" - }, - { - "id": 22302, - "name": "Ancient effigy" - }, - { - "id": 22305, - "name": "Ancient relic" - } - ], - "logCount": 3 - }, - "uuid": "1bd7c8fb-d514-4e21-9cb4-206e0059890d" - }, - { - "_id": 158, - "name": "Get 1 unique from Revenants", - "tip": "Can be received as a drop from any Revenant.", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "wikiImage": "https://oldschool.runescape.wiki/images/5/54/Ancient_relic.png?d0ed1", - "assetImage": "Ancient_relic.png", - "colLogData": { - "category": "Other", - "logName": "Revenants", - "include": [ - { - "id": 22557, - "name": "Amulet of avarice" - }, - { - "id": 21804, - "name": "Ancient crystal" - }, - { - "id": 21807, - "name": "Ancient emblem" - }, - { - "id": 21810, - "name": "Ancient totem" - }, - { - "id": 21813, - "name": "Ancient statuette" - }, - { - "id": 22299, - "name": "Ancient medallion" - }, - { - "id": 22302, - "name": "Ancient effigy" - }, - { - "id": 22305, - "name": "Ancient relic" - } - ], - "logCount": 4 - }, - "uuid": "61f979a2-c77c-4396-9942-ac2eca4032bc" - }, - { - "_id": 159, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Guardians of the Rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 13 - }, - "uuid": "8800fd67-ad98-4bf6-a21b-44d929f294d8" - }, - { - "_id": 160, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Guardians of the Rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 14 - }, - "uuid": "aaaf99d6-412e-4485-a72c-9f4a8e6d0929" - }, - { - "_id": 161, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Guardians of the Rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 15 - }, - "uuid": "ab6d40b8-e5dd-4087-8c3a-da3360da58a0" - }, - { - "_id": 162, - "name": "Get 1 unique from the Phantom Muspah", - "tip": "Can be received a drop from Phantom Muspah Boss", - "wikiLink": "https://oldschool.runescape.wiki/w/Phantom_Muspah", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_essence_500_detail.png/130px-Ancient_essence_500_detail.png", - "assetImage": "Ancient_essence_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Phantom Muspah", - "include": [ - { - "id": 27614, - "name": "Venator shard" - }, - { - "id": 27616, - "name": "Ancient essence" - }, - { - "id": 27622, - "name": "Frozen cache" - }, - { - "id": 27627, - "name": "Ancient icon" - } - ], - "logCount": 3 - }, - "uuid": "f98ccb23-a60c-48c0-a1fa-c20073066a18" - }, - { - "_id": 163, - "name": "Get 1 unique from the Phantom Muspah", - "tip": "Can be received a drop from Phantom Muspah Boss", - "wikiLink": "https://oldschool.runescape.wiki/w/Phantom_Muspah", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_essence_500_detail.png/130px-Ancient_essence_500_detail.png", - "assetImage": "Ancient_essence_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Phantom Muspah", - "include": [ - { - "id": 27614, - "name": "Venator shard" - }, - { - "id": 27616, - "name": "Ancient essence" - }, - { - "id": 27622, - "name": "Frozen cache" - }, - { - "id": 27627, - "name": "Ancient icon" - } - ], - "logCount": 4 - }, - "uuid": "f169e2e7-5331-44b1-831c-d1f280960064" - }, - { - "_id": 164, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "Forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 14 - }, - "uuid": "20120a72-2ec0-4d1d-b3f6-e352c1538e4c" - }, - { - "_id": 165, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "Forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 15 - }, - "uuid": "1564fe31-0378-40f5-a0d3-8dffe126d198" - }, - { - "_id": 166, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "Forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 16 - }, - "uuid": "748277b0-a031-4d59-9f21-0eddecc32d9c" - }, - { - "_id": 167, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "Forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 17 - }, - "uuid": "1277d1cc-43d2-4595-8dde-57f566f9223e" - }, - { - "_id": 168, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "Forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 18 - }, - "uuid": "03d41bd1-94b1-4bb3-89de-4705acb03403" - }, - { - "_id": 169, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "Forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 19 - }, - "uuid": "8e523b1a-eb10-49b2-8a50-3dbd7ebac343" - }, - { - "_id": 170, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 1 - }, - "uuid": "ab560f04-422b-4554-a32f-b1cb2476f34a" - }, - { - "_id": 171, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 2 - }, - "uuid": "5651c9c6-47fd-4308-bfee-1b188a116911" - }, - { - "_id": 172, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 3 - }, - "uuid": "5d08753d-a65d-4b60-b8be-0f407a5b2da2" - }, - { - "_id": 173, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 4 - }, - "uuid": "e02e2da2-8e3b-4b3e-b2f2-95a7d27d8da8" - }, - { - "_id": 174, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 5 - }, - "uuid": "65d6f134-9450-4a2a-8c8c-e57580ac3287" - }, - { - "_id": 175, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 6 - }, - "uuid": "562d4d4e-c575-40b9-aefe-22e064c21fa3" - }, - { - "_id": 176, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 7 - }, - "uuid": "5fc34aae-3efd-43a4-a2ea-397d5485d52b" - }, - { - "_id": 177, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 8 - }, - "uuid": "af7bdd32-562e-42ed-b91a-3d24dfd04709" - }, - { - "_id": 178, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 9 - }, - "uuid": "bb622381-34ea-46c1-bd11-fd1c699b3bb0" - }, - { - "_id": 179, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 10 - }, - "uuid": "7891353d-b6ff-47d5-9b98-9a667942c919" - }, - { - "_id": 180, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "include": [ - { - "id": 26241, - "name": "Virtus mask" - }, - { - "id": 26243, - "name": "Virtus robe top" - }, - { - "id": 26245, - "name": "Virtus robe bottom" - }, - { - "id": 28319, - "name": "Executioner's axe head" - }, - { - "id": 28321, - "name": "Eye of the duke" - }, - { - "id": 28323, - "name": "Siren's staff" - }, - { - "id": 28325, - "name": "Leviathan's lure" - }, - { - "id": 28330, - "name": "Strangled tablet" - }, - { - "id": 28331, - "name": "Sirenic tablet" - }, - { - "id": 28332, - "name": "Scarred tablet" - }, - { - "id": 28333, - "name": "Frozen tablet" - }, - { - "id": 28334, - "name": "Awakener's orb" - }, - { - "id": 28268, - "name": "Blood quartz" - }, - { - "id": 28270, - "name": "Ice quartz" - }, - { - "id": 28272, - "name": "Shadow quartz" - }, - { - "id": 28274, - "name": "Smoke quartz" - }, - { - "id": 28276, - "name": "Chromium ingot" - }, - { - "id": 28279, - "name": "Bellator vestige" - }, - { - "id": 28281, - "name": "Magus vestige" - }, - { - "id": 28283, - "name": "Venator vestige" - }, - { - "id": 28285, - "name": "Ultor vestige" - } - ], - "logCount": 11 - }, - "uuid": "8d4bc7b6-38ea-4154-b4f4-aec7050c9fac" - }, - { - "_id": 181, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "Moons of Peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 11 - }, - "uuid": "ee200487-9a4b-43be-9c73-ae785fca3007" - }, - { - "_id": 182, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "Moons of Peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 12 - }, - "uuid": "d3b42ad9-92c4-4483-8424-dc824bf0d84c" - }, - { - "_id": 183, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "Moons of Peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 13 - }, - "uuid": "a1bb1c3d-cf0b-4199-ae75-63dfbf6ece5f" - }, - { - "_id": 184, - "name": "Get a teleport anchoring scroll", - "tip": "Received as drop from Zombie Pirate Locker", - "wikiLink": "https://oldschool.runescape.wiki/w/Teleport_anchoring_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Teleport_anchoring_scroll_detail.png/200px-Teleport_anchoring_scroll_detail.png", - "assetImage": "teleport_anchoring_scroll.png", - "colLogData": { - "category": "Other", - "logName": "Slayer", - "include": [ - { - "id": 29455, - "name": "Teleport anchoring scroll" - } - ], - "logCount": 1 - }, - "uuid": "f34d3386-783e-4a52-976d-410f457c88c3" - }, - { - "_id": 185, - "name": "Get 1 unique from Fortis Colosseum", - "tip": "Reward from Fortis Colosseum", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Sunfire_splinters_1_detail.png/200px-Sunfire_splinters_1_detail.png", - "assetImage": "dizanas_quiver.png", - "colLogData": { - "category": "Bosses", - "logName": "Fortis Colosseum", - "include": [ - { - "id": 28947, - "name": "Dizana's quiver (uncharged)" - }, - { - "id": 28933, - "name": "Sunfire fanatic helm" - }, - { - "id": 28936, - "name": "Sunfire fanatic cuirass" - }, - { - "id": 28939, - "name": "Sunfire fanatic chausses" - }, - { - "id": 28942, - "name": "Echo crystal" - }, - { - "id": 28919, - "name": "Tonalztics of ralos (uncharged)" - } - ], - "logCount": 1 - }, - "uuid": "f7ff7296-140a-41fd-bb32-25784143bacc" - }, - { - "_id": 186, - "name": "Get 1 unique from Fortis Colosseum", - "tip": "Reward from Fortis Colosseum", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Sunfire_splinters_1_detail.png/200px-Sunfire_splinters_1_detail.png", - "assetImage": "dizanas_quiver.png", - "colLogData": { - "category": "Bosses", - "logName": "Fortis Colosseum", - "include": [ - { - "id": 28947, - "name": "Dizana's quiver (uncharged)" - }, - { - "id": 28933, - "name": "Sunfire fanatic helm" - }, - { - "id": 28936, - "name": "Sunfire fanatic cuirass" - }, - { - "id": 28939, - "name": "Sunfire fanatic chausses" - }, - { - "id": 28942, - "name": "Echo crystal" - }, - { - "id": 28919, - "name": "Tonalztics of ralos (uncharged)" - } - ], - "logCount": 2 - }, - "uuid": "897c72c4-3180-483c-965b-4f0b8831656a" - }, - { - "_id": 187, - "name": "Get 1 unique from Fortis Colosseum", - "tip": "Reward from Fortis Colosseum", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Sunfire_splinters_1_detail.png/200px-Sunfire_splinters_1_detail.png", - "assetImage": "dizanas_quiver.png", - "colLogData": { - "category": "Bosses", - "logName": "Fortis Colosseum", - "include": [ - { - "id": 28947, - "name": "Dizana's quiver (uncharged)" - }, - { - "id": 28933, - "name": "Sunfire fanatic helm" - }, - { - "id": 28936, - "name": "Sunfire fanatic cuirass" - }, - { - "id": 28939, - "name": "Sunfire fanatic chausses" - }, - { - "id": 28942, - "name": "Echo crystal" - }, - { - "id": 28919, - "name": "Tonalztics of ralos (uncharged)" - } - ], - "logCount": 3 - }, - "uuid": "8fab9de0-fa25-4fab-8f58-18c136c83a44" - }, - { - "_id": 189, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when killing Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 3 - }, - "uuid": "a353e0e9-2610-4b12-8408-2268bc0feaa2" - }, - { - "_id": 190, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when killing Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 4 - }, - "uuid": "5fbf995b-7004-422f-ba56-92c7adac208a" - }, - { - "_id": 191, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when killing Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 5 - }, - "uuid": "74b6c5d4-9c45-4a94-a48c-2c78953b4327" - }, - { - "_id": 192, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when killing Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 6 - }, - "uuid": "0e463efe-0e30-4442-99e1-a9f19d82f3ce" - }, - { - "_id": 193, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when killing Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 7 - }, - "uuid": "bd438ab5-1378-4ff1-ba37-e05d312d817a" - }, - { - "_id": 194, - "name": "Get a Chugging barrel", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/Chugging_barrel_%28disassembled%29_detail.png?fa107", - "assetImage": "Chugging_barrel.png", - "colLogData": { - "category": "Minigames", - "logName": "Mastering Mixology", - "include": [ - { - "id": 30002, - "name": "Chugging barrel (disassembled)" - } - ], - "logCount": 1 - }, - "uuid": "b09a5cc4-91b8-4934-9886-aa38552aa1b6" - }, - { - "_id": 195, - "name": "Get a Reagent pouch", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/Reagent_pouch_detail.png?fa107", - "assetImage": "Reagent_pouch_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Mastering Mixology", - "include": [ - { - "id": 29996, - "name": "Reagent pouch" - } - ], - "logCount": 1 - }, - "uuid": "9d839189-e88e-4d29-9436-78753dc632ae" - }, - { - "_id": 196, - "name": "Get 1 unique from the Hueycoatl", - "tip": "Obtained by killing The Hueycoatl", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Hueycoatl", - "wikiImage": "https://oldschool.runescape.wiki/images/Dragon_hunter_wand_detail.png?a3e16", - "assetImage": "Dragon_hunter_wand_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "The Hueycoatl", - "include": [ - { - "id": 30066, - "name": "Tome of earth (empty)" - }, - { - "id": 30068, - "name": "Soiled page" - }, - { - "id": 30070, - "name": "Dragon hunter wand" - }, - { - "id": 30085, - "name": "Hueycoatl hide" - } - ], - "logCount": 3 - }, - "uuid": "a86e6140-2f24-4388-ac5c-f1ddc959d9cf" - }, - { - "_id": 197, - "name": "Get 1 unique from the Hueycoatl", - "tip": "Obtained by killing The Hueycoatl", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Hueycoatl", - "wikiImage": "https://oldschool.runescape.wiki/images/Dragon_hunter_wand_detail.png?a3e16", - "assetImage": "Dragon_hunter_wand_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "The Hueycoatl", - "include": [ - { - "id": 30066, - "name": "Tome of earth (empty)" - }, - { - "id": 30068, - "name": "Soiled page" - }, - { - "id": 30070, - "name": "Dragon hunter wand" - }, - { - "id": 30085, - "name": "Hueycoatl hide" - } - ], - "logCount": 4 - }, - "uuid": "73b5e8f6-f2f2-4342-bead-f0e29a250ed3" - }, - { - "_id": 198, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30803, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 1 - }, - "uuid": "c1bdd336-81e0-451f-be11-54c5e34af795" - }, - { - "_id": 199, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30803, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 2 - }, - "uuid": "aa9616a4-3567-4819-ad25-f4482f9cf0ea" - }, - { - "_id": 200, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30803, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 3 - }, - "uuid": "3d7f58e0-a863-4f83-9e55-a8c8963a9d66" - }, - { - "_id": 201, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30803, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 4 - }, - "uuid": "3f766b62-bbbd-4939-9e44-60ef9ba96ca0" - }, - { - "_id": 202, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30803, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 5 - }, - "uuid": "0bc4e18f-0129-4597-850a-181e269109e9" - }, - { - "_id": 203, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30803, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 6 - }, - "uuid": "bcac6d6d-7138-47d0-bb89-11f490449094" - }, - { - "_id": 204, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Yama", - "include": [ - { - "id": 30775, - "name": "Chasm teleport scroll" - }, - { - "id": 30750, - "name": "Oathplate helm" - }, - { - "id": 30753, - "name": "Oathplate chest" - }, - { - "id": 30756, - "name": "Oathplate legs" - }, - { - "id": 30759, - "name": "Soulflame horn" - }, - { - "id": 30806, - "name": "Rite of vile transference" - }, - { - "id": 30763, - "name": "Forgotten lockbox" - }, - { - "id": 30805, - "name": "Dossier" - }, - { - "id": 30795, - "name": "Barrel of demonic tallow (full)" - }, - { - "id": 30765, - "name": "Oathplate shards" - } - ], - "logCount": 7 - }, - "uuid": "128f0fce-ebc2-4e3e-9644-3cb3dccd49c1" - }, - { - "_id": 205, - "name": "Get 1 unique from Doom of Mokhaiotl", - "tip": "Giant, insect-like, demonic boss found in the Tonali Cavern after completion of The Final Dawn quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Doom_of_Mokhaiotl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Eye_of_ayak_detail.png/320px-Eye_of_ayak_detail.png", - "assetImage": "Eye_of_ayak_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31088, - "name": "Avernic treads" - }, - { - "id": 31115, - "name": "Eye of ayak" - }, - { - "id": 31109, - "name": "Mokhaiotl cloth" - }, - { - "id": 31099, - "name": "Mokhaiotl waystone" - }, - { - "id": 31111, - "name": "Demon tear" - } - ], - "logCount": 3 - }, - "uuid": "03bcbb0b-fcc3-4a7a-9afe-8906d9da8cfe" - }, - { - "_id": 206, - "name": "Get 1 unique from Doom of Mokhaiotl", - "tip": "Giant, insect-like, demonic boss found in the Tonali Cavern after completion of The Final Dawn quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Doom_of_Mokhaiotl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Eye_of_ayak_detail.png/320px-Eye_of_ayak_detail.png", - "assetImage": "Eye_of_ayak_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31088, - "name": "Avernic treads" - }, - { - "id": 31115, - "name": "Eye of ayak" - }, - { - "id": 31109, - "name": "Mokhaiotl cloth" - }, - { - "id": 31099, - "name": "Mokhaiotl waystone" - }, - { - "id": 31111, - "name": "Demon tear" - } - ], - "logCount": 4 - }, - "uuid": "c847f79a-3473-48a4-915d-b2874c4f4544" - } -] \ No newline at end of file diff --git a/tasks/extra.json b/tasks/extra.json deleted file mode 100644 index 2f0e54a..0000000 --- a/tasks/extra.json +++ /dev/null @@ -1,1123 +0,0 @@ -[ - { - "_id": 1, - "name": "Get a Jar of chemicals", - "assetImage": "Jar_of_chemicals.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_chemicals", - "uuid": "08b95c14-4baf-46cf-8d79-f2b9e9bee0f8" - }, - { - "_id": 2, - "name": "Get a Jar of souls", - "assetImage": "Jar_of_souls.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_souls", - "uuid": "7bbf9d8b-3366-4967-9ff4-fc16d61a793b" - }, - { - "_id": 3, - "name": "Get a Jar of sand", - "assetImage": "Jar_of_sand.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_sand", - "uuid": "2e286779-0ca4-4998-a6fb-a977e24dd8b4" - }, - { - "_id": 4, - "name": "Get a Jar of decay", - "assetImage": "Jar_of_decay.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_decay", - "uuid": "0b19601f-7631-4d6d-bb8c-3904c4a4c397" - }, - { - "_id": 5, - "name": "Get a Jar of swamp", - "assetImage": "Jar_of_swamp.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_swamp", - "uuid": "23e11ebd-5776-403b-9392-b56803d92a63" - }, - { - "_id": 6, - "name": "Get a Jar of eyes", - "assetImage": "90px-Jar_of_eyes_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_eyes", - "uuid": "3295429c-cff5-4684-8c4f-1dbd10cce269" - }, - { - "_id": 7, - "name": "Get a Jar of stone", - "assetImage": "Jar_of_stone.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_stone", - "uuid": "45b53558-612b-47df-a7d7-4ed930a836d5" - }, - { - "_id": 8, - "name": "Get a Jar of darkness", - "assetImage": "Jar_of_darkness.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_darkness", - "uuid": "2cb8983b-bdd6-408a-adde-f553f9ac4fac" - }, - { - "_id": 9, - "name": "Get a Jar of dreams", - "assetImage": "Jar_of_dreams.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_dreams", - "uuid": "5ac9cab3-e0ba-4fa3-8d52-9d2f804add99" - }, - { - "_id": 10, - "name": "Get a Jar of dirt", - "assetImage": "90px-Jar_of_dirt_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_dirt", - "uuid": "cdddd0e6-0d6f-4ec5-a486-bff27ab51df2" - }, - { - "_id": 11, - "name": "Get a Jar of miasma", - "assetImage": "90px-Jar_of_miasma_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_miasma", - "uuid": "eb60d1ee-e46a-44fd-bc09-0ae40a2f2ebb" - }, - { - "_id": 12, - "name": "Get a Jar of spirits", - "assetImage": "90px-Jar_of_spirits_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_spirits", - "uuid": "a6ffb904-4857-4727-b9ec-a8663c35f80d" - }, - { - "_id": 13, - "name": "Get a Jar of smoke", - "assetImage": "90px-Jar_of_smoke_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Corp", - "uuid": "acba7294-7fcd-4e76-97ff-6646fba4f0b2" - }, - { - "_id": 14, - "name": "Get a Jar of venom", - "assetImage": "Jar_of_venom_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Jar_of_venom", - "uuid": "0acbd53c-573a-41a5-a1fc-bb10f8d15c12" - }, - { - "_id": 15, - "name": "Get 1 unique sigil from Corp", - "assetImage": "Arcane_sigil.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Corp", - "uuid": "bf3ce43e-d365-419d-a3fc-edbda9b0a850" - }, - { - "_id": 16, - "name": "Get 1 unique sigil from Corp", - "assetImage": "Arcane_sigil.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Corp", - "uuid": "62eb9dd1-9735-487e-a5e9-518baac1eaec" - }, - { - "_id": 17, - "name": "Get 1 unique sigil from Corp", - "assetImage": "Arcane_sigil.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Corp", - "uuid": "53604fab-1b38-4c39-b915-5ae1f4b4164a" - }, - { - "_id": 18, - "name": "Get an Infernal cape", - "assetImage": "Infernal_cape.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Inferno", - "uuid": "e37460e4-157c-4a31-9e8a-c6463cd3b5ce" - }, - { - "_id": 19, - "name": "Get a Skeletal visage", - "assetImage": "Skeletal_visage.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Skeletal_visage", - "uuid": "ce2a4a7c-4139-49c0-b371-f1b696e53ee3" - }, - { - "_id": 20, - "name": "Get a Wyvern visage", - "assetImage": "Wyvern_visage.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Wyvern_visage", - "uuid": "15b63ff4-b9fc-410a-a57b-c1e0ed95c3d3" - }, - { - "_id": 21, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "7987304b-2966-49e6-9a80-bd8d3d396c57" - }, - { - "_id": 22, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "858b573f-dc0b-455c-bb71-8a3d56f6c523" - }, - { - "_id": 23, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "a0793792-aa3b-49bd-89ec-785194665b46" - }, - { - "_id": 24, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "26cd542d-8977-4fd8-ba15-ae95f860d892" - }, - { - "_id": 25, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "e51b93b4-e34c-4676-bee5-a6c89fcd4ffc" - }, - { - "_id": 26, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "7856a350-7499-4169-8e98-bf593157e2ab" - }, - { - "_id": 27, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "b91a7627-773b-41d7-a1eb-8c5c012ddc60" - }, - { - "_id": 28, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "0b728249-aec7-4bfe-b81a-e636b9fef0f6" - }, - { - "_id": 29, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "97553e7a-a2ef-48af-ab80-09c5d7f6c21b" - }, - { - "_id": 30, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "b015b982-db36-4ae2-959d-508d0c4f9f19" - }, - { - "_id": 31, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "619415c4-2d39-4d35-ba3d-80c7ec79736f" - }, - { - "_id": 32, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "e85b38ec-f6ef-4bf3-b3ab-a49420f1a3be" - }, - { - "_id": 33, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "2a43aec3-9dc1-4c6f-94fc-e95602c7fcee" - }, - { - "_id": 34, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "9f7b8000-1d07-405a-84dc-f884885cb0ad" - }, - { - "_id": 35, - "name": "Get 1 unique from Raids (CoX or ToB or ToA)", - "assetImage": "Twisted_bow.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "uuid": "31a2fc7a-2c4f-47ac-b7e9-e0deeffecb8b" - }, - { - "_id": 36, - "name": "Finish all shared clue rewards ", - "assetImage": "Clue_scroll.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "5f272adf-4ea5-4015-9fae-6f9138ce1422" - }, - { - "_id": 37, - "name": "Finish all easy clue uniques", - "assetImage": "Clue_scroll_easy.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "c8733aeb-f8d8-422b-b128-5d6ea45ab384" - }, - { - "_id": 38, - "name": "Finish all medium clue uniques", - "assetImage": "Clue_scroll_medium.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "0cbe75ae-3e49-4aa4-88b3-d8e88366a926" - }, - { - "_id": 39, - "name": "Finish all hard clue uniques", - "assetImage": "Clue_scroll_hard.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "1e04d6ac-7bbb-4d5d-acd9-b2b8654c83a3" - }, - { - "_id": 40, - "name": "Finish all elite clue uniques", - "assetImage": "Clue_scroll_elite.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "2efbb4f6-0506-49ee-9a40-71099d3e46f4" - }, - { - "_id": 41, - "name": "Finish all master clue uniques", - "assetImage": "Clue_scroll_master.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "2677bf9d-49f1-4f80-877d-365b0e4d6777" - }, - { - "_id": 42, - "name": "Finish all hard clue rare uniques", - "assetImage": "Clue_scroll_hard.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "7c6a142b-0184-4b17-bdfb-164964d89f87" - }, - { - "_id": 43, - "name": "Finish all elite clue rare uniques", - "assetImage": "Clue_scroll_elite.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "03d793b2-52ce-4bcb-9ea6-19768e35cc04" - }, - { - "_id": 44, - "name": "Finish all master rare clue uniques", - "assetImage": "Clue_scroll_master.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Treasure_Trail", - "uuid": "98834465-31ce-454d-ae09-abc691bdc23d" - }, - { - "_id": 45, - "name": "Complete the Gold decorative set", - "assetImage": "130px-Decorative_armour_gold_platebody_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "uuid": "e858b013-5b2a-4e7c-bd1a-af1d2a47121d" - }, - { - "_id": 46, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "a8b85705-e852-4696-820b-bfedc659e8d4" - }, - { - "_id": 47, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "e0fea9ee-36e1-4cbd-b416-63fd44615e04" - }, - { - "_id": 48, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "da81ef84-e0bb-46b3-a94f-5d7b76d58d14" - }, - { - "_id": 49, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "da085dcb-9523-4dfa-ac70-a9402973e066" - }, - { - "_id": 50, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "da2edeb3-a299-4bbc-8f71-963bdb652a7a" - }, - { - "_id": 51, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "41339d2e-9ecd-4b22-9119-068faf08d27c" - }, - { - "_id": 52, - "name": "Get 1 unique from Revenants", - "assetImage": "Ancient_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "uuid": "225de99d-2955-4a13-a139-62a649f58f50" - }, - { - "_id": 53, - "name": "Get an Amulet of eternal glory", - "assetImage": "150px-Amulet_of_eternal_glory_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Amulet_of_eternal_glory", - "uuid": "a266d0d3-91a5-4daf-b242-b8eb146cd376" - }, - { - "_id": 54, - "name": "Get 1 unique Dragonstone armour piece", - "assetImage": "Dragonstone_full_helm.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Enhanced_crystal_chest", - "uuid": "9ef42380-4f4c-4b84-a48f-70402652bd1c" - }, - { - "_id": 55, - "name": "Get 1 unique Dragonstone armour piece", - "assetImage": "Dragonstone_full_helm.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Enhanced_crystal_chest", - "uuid": "f354457a-fe41-49cd-8e19-22a50b7ae212" - }, - { - "_id": 56, - "name": "Get 1 unique Dragonstone armour piece", - "assetImage": "Dragonstone_full_helm.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Enhanced_crystal_chest", - "uuid": "2d7f0c0e-dde4-411e-95ff-0d0b9634307f" - }, - { - "_id": 57, - "name": "Get 1 unique Dragonstone armour piece", - "assetImage": "Dragonstone_full_helm.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Enhanced_crystal_chest", - "uuid": "2be0dc59-a73b-4855-a718-cae056a8389a" - }, - { - "_id": 58, - "name": "Get 1 unique Dragonstone armour piece", - "assetImage": "Dragonstone_full_helm.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Enhanced_crystal_chest", - "uuid": "5d1ca699-5416-4bf2-9b65-5c5ebc7e9273" - }, - { - "_id": 59, - "name": "Get a full Dark totem drop from Skotizo", - "assetImage": "Dark_totem.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Skotizo", - "uuid": "2e69f6e7-258e-41cd-b6a4-f7101603c5f3" - }, - { - "_id": 60, - "name": "Get 1 unique piece of the Dagon'hai robes", - "assetImage": "130px-Dagonhai_robe_top_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagon%27hai_robes", - "uuid": "afe62d76-888d-47c3-b834-48535ac0c9fc" - }, - { - "_id": 61, - "name": "Get 1 unique from the Zalcano", - "assetImage": "Zalcano_shard.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Zalcano", - "uuid": "a519b4b9-c095-4912-82be-07d4b4c4c0a8" - }, - { - "_id": 62, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "cb823de3-ac38-44a7-8b0a-4bec4e3ae98c" - }, - { - "_id": 63, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "fd298f66-4dea-49fb-b3bc-02ee08066b0c" - }, - { - "_id": 64, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "54c15df2-28db-4b34-8732-901039afceb0" - }, - { - "_id": 65, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "f61cd316-3047-4346-a83b-0fa780772cac" - }, - { - "_id": 66, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "6be523b9-3f4d-4c04-8b7c-92a6240259a3" - }, - { - "_id": 67, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "619724e1-2fad-4c81-aeeb-ffed7017449a" - }, - { - "_id": 68, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "4315cbc3-30f9-495f-8c84-a128d0c94b86" - }, - { - "_id": 69, - "name": "Get 1 unique from The Nightmare", - "assetImage": "Inquisitors_hauberk.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Nightmare", - "uuid": "11af162c-c7dc-40a0-93f9-10ff9841fcee" - }, - { - "_id": 70, - "name": "Get 1 unique mutagen", - "assetImage": "Tanzanite_mutagen.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "uuid": "7a26aa08-6d9e-4967-b00e-bbc122546214" - }, - { - "_id": 71, - "name": "Get 1 unique mutagen", - "assetImage": "Tanzanite_mutagen.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "uuid": "aea1e618-0f4d-4a36-a387-07afeb4515b9" - }, - { - "_id": 72, - "name": "Get an Imbued heart or Eternal gem", - "assetImage": "Imbued_heart.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Superior_slayer_monster", - "uuid": "3ddc5be9-b99a-4af1-a4b8-3a2ca34a6028" - }, - { - "_id": 73, - "name": "Get an Imbued heart or Eternal gem", - "assetImage": "Imbued_heart.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Superior_slayer_monster", - "uuid": "7b316424-d522-4203-ab71-6f1848bdd094" - }, - { - "_id": 74, - "name": "Get a Dragon full helm", - "assetImage": "Dragon_full_helm.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_full_helm", - "uuid": "e4136625-51f6-45d8-ae69-4517cf793f8f" - }, - { - "_id": 75, - "name": "Get a Dragon metal lump", - "assetImage": "100px-Dragon_metal_lump_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_metal_lump", - "uuid": "c66167a1-6d24-4226-9200-6a5daaff027e" - }, - { - "_id": 76, - "name": "Get a Dragon metal slice", - "assetImage": "150px-Dragon_metal_slice_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_metal_slice", - "uuid": "6f62f006-a9f8-494f-90a5-dc636c476568" - }, - { - "_id": 77, - "name": "Get 1 unique piece of the Evil chicken outfit", - "assetImage": "Evil_chicken_head.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Evil_chicken_outfit", - "uuid": "81c436b9-7378-492f-b9e5-35e3fe7682da" - }, - { - "_id": 78, - "name": "Get 1 unique piece of the Evil chicken outfit", - "assetImage": "Evil_chicken_head.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Evil_chicken_outfit", - "uuid": "fa646c31-eb7e-4621-ae57-5ac13a1d8a5e" - }, - { - "_id": 79, - "name": "Get 1 unique piece of the Evil chicken outfit", - "assetImage": "Evil_chicken_head.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Evil_chicken_outfit", - "uuid": "e6280cdd-5066-4137-a008-49585a24b7a1" - }, - { - "_id": 80, - "name": "Get 1 unique piece of the Evil chicken outfit", - "assetImage": "Evil_chicken_head.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Evil_chicken_outfit", - "uuid": "931dca2a-bfc8-45e1-a2f4-8ae7aa5249d4" - }, - { - "_id": 81, - "name": "Get 1 unique from the Gauntlet", - "assetImage": "Blade_of_saeldor_inactive.png", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Gauntlet", - "uuid": "41684528-06e1-4c22-b19d-c69c1cb2ef9b" - }, - { - "_id": 82, - "name": "Get a Draconic visage", - "assetImage": "Draconic_visage.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Draconic_visage", - "uuid": "7385318c-8a9b-4d89-bf18-83ccbfbd1958" - }, - { - "_id": 83, - "name": "Get a Dragonbone necklace", - "assetImage": "Dragonbone_necklace.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragonbone_necklace", - "uuid": "7d26a6b0-fd7c-41ab-b46a-363a4ce4b90e" - }, - { - "_id": 84, - "name": "Get the Deadman's chest", - "assetImage": "150px-Deadmans_chest_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "76289358-6c5d-45b0-ba98-1fb6d23569f1" - }, - { - "_id": 85, - "name": "Get the Deadman's legs", - "assetImage": "90px-Deadmans_legs_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "9900a9d3-71ae-4cf2-bf1d-351cadbe86b8" - }, - { - "_id": 86, - "name": "Get the Deadman's cape", - "assetImage": "130px-Deadmans_cape_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "d4c4d63f-2b4c-4ac4-af41-9e3af65df4b3" - }, - { - "_id": 87, - "name": "Get a Swift blade", - "assetImage": "140px-Swift_blade_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "3577ead4-f6d3-4fb5-bdc0-7f5db13f206b" - }, - { - "_id": 88, - "name": "Get an Armadyl halo", - "assetImage": "150px-Armadyl_halo_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "95fe3b4e-0df2-4939-92eb-025c4e8a4810" - }, - { - "_id": 89, - "name": "Get a Bandos halo", - "assetImage": "150px-Bandos_halo_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "08936f7d-469f-4b74-9c00-ee017239591a" - }, - { - "_id": 90, - "name": "Get a Seren halo", - "assetImage": "150px-Seren_halo_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "9c4b4e6a-0454-4b0c-8cda-e38642f0e3b8" - }, - { - "_id": 91, - "name": "Get an Ancient halo", - "assetImage": "150px-Ancient_halo_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "77655103-5a8c-4d8c-9463-a70063074844" - }, - { - "_id": 92, - "name": "Get a Brassica halo", - "assetImage": "130px-Brassica_halo_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "0ba4da1f-c3dd-493d-b285-c7267aa40c5e" - }, - { - "_id": 93, - "name": "Get a Guthixian icon", - "assetImage": "150px-Guthixian_icon_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "uuid": "08767e3b-3dfb-4798-a40c-98c2a8d5cd60" - }, - { - "_id": 94, - "name": "Get a Slepey tablet", - "assetImage": "100px-Slepey_tablet_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Slepey_tablet", - "uuid": "caa0be7f-c260-470f-a708-c50ed0de0f62" - }, - { - "_id": 95, - "name": "Get the Metamorphic dust", - "assetImage": "150px-Metamorphic_dust_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Metamorphic_dust", - "uuid": "cb378535-a3c2-4e31-b859-5bd718c3ddfa" - }, - { - "_id": 96, - "name": "Get the Sanguine dust", - "assetImage": "150px-Sanguine_dust_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Sanguine_dust", - "uuid": "4c34806a-2220-43f7-aef7-0786ba85ea2b" - }, - { - "_id": 97, - "name": "Get the Parasitic egg", - "assetImage": "100px-Parasitic_egg_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Parasitic_egg", - "uuid": "9ea69606-88d5-4fc1-9514-04f753ba0baa" - }, - { - "_id": 98, - "name": "Get a Twisted ancestral colour kit", - "assetImage": "170px-Twisted_ancestral_colour_kit_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Chambers_of_Xeric/Challenge_Mode", - "uuid": "ab440920-6960-47f6-af1c-6fa08e15fa65" - }, - { - "_id": 99, - "name": "Get a Holy ornament kit", - "assetImage": "150px-Holy_ornament_kit_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Theatre_of_Blood/Hard_Mode", - "uuid": "a166affc-80a1-4442-83f9-f4bb6b2698e2" - }, - { - "_id": 100, - "name": "Get a Sanguine ornament kit", - "assetImage": "120px-Sanguine_ornament_kit_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Theatre_of_Blood/Hard_Mode", - "uuid": "8ae80043-8c66-41ab-a99d-70cecedd22ba" - }, - { - "_id": 101, - "name": "Get a Menaphite ornament kit", - "assetImage": "Menaphite_ornament_kit_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Menaphite_ornament_kit", - "uuid": "6a5d42df-e3f1-41d7-9e3b-ab15b7bb5d86" - }, - { - "_id": 102, - "name": "Get a Cursed phalanx", - "assetImage": "Cursed_phalanx_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Cursed_phalanx", - "uuid": "3e6549c8-8eac-458d-a48d-413787ea9cd1" - }, - { - "_id": 103, - "name": "Get a Masori crafting kit", - "assetImage": "Masori_crafting_kit_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Masori_crafting_kit", - "uuid": "2c05b22d-2360-4329-9a41-4e35c5d4dc73" - }, - { - "_id": 104, - "name": "Get a Remnant of akkha", - "assetImage": "Remnant_of_akkha_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Remnant_of_akkha", - "uuid": "f3c24c46-f8f5-48ff-8ba6-3c4caef03512" - }, - { - "_id": 105, - "name": "Get a Remnant of ba-ba", - "assetImage": "Remnant_of_ba-ba_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Remnant_of_ba-ba", - "uuid": "107f7fe7-4f09-4aec-b4ab-da3f2309bb68" - }, - { - "_id": 106, - "name": "Get a Remnant of kephri", - "assetImage": "Remnant_of_kephri_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Remnant_of_kephri", - "uuid": "0fd84bb1-f54f-4d8a-bd55-14841aa15bbb" - }, - { - "_id": 107, - "name": "Get a Remnant of zebak", - "assetImage": "Remnant_of_zebak_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Remnant_of_zebak", - "uuid": "d382e513-4655-468d-9316-e37f8f27b424" - }, - { - "_id": 108, - "name": "Get an Ancient remnant", - "assetImage": "Ancient_remnant_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_remnant", - "uuid": "a33b64c6-adaa-4eac-b2de-6a30c6d0db7b" - }, - { - "_id": 109, - "name": "Get 1 unique from the Zalcano", - "assetImage": "Zalcano_shard.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Zalcano", - "uuid": "e5d1f13d-be9d-4e54-a9a6-96eabc783b4d" - }, - { - "_id": 110, - "name": "Get 1 unique from the Hallowed Sepulchre", - "assetImage": "120px-Hallowed_mark_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "uuid": "6b2f1aaf-404f-40f0-9d12-1e3b33b93d75" - }, - { - "_id": 111, - "name": "Get 1 unique drop from God Wars Dungeon", - "assetImage": "Armadyl_helmet.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "a9ed8741-c122-41a1-b341-3ae95be3c7de" - }, - { - "_id": 112, - "name": "Get 1 unique drop from God Wars Dungeon", - "assetImage": "Armadyl_helmet.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "4ad487f1-2218-466b-802b-0d193fa646c2" - }, - { - "_id": 113, - "name": "Get 1 unique drop from God Wars Dungeon", - "assetImage": "Armadyl_helmet.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "c3095134-9f6b-4654-99a0-274ecfc2a9f8" - }, - { - "_id": 114, - "name": "Get 1 unique drop from God Wars Dungeon", - "assetImage": "Armadyl_helmet.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "8fef72b5-ea91-4fab-950a-2541a0b38e3a" - }, - { - "_id": 115, - "name": "Get 1 unique from Guardians of the Rift", - "assetImage": "Hat_of_the_eye_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "uuid": "1d2a9ccf-a2f5-4330-9a40-ba03736321bb" - }, - { - "_id": 116, - "name": "Get 1 unique from the Wildy bosses", - "assetImage": "Skull_of_vetion_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "uuid": "9080390d-c8b1-4e66-8190-4c66da8f49e4" - }, - { - "_id": 117, - "name": "Get 1 unique from the Wildy bosses", - "assetImage": "Skull_of_vetion_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "uuid": "0c5f52d0-2cec-44e4-9945-de583c711ed2" - }, - { - "_id": 118, - "name": "Get 1 unique from the Wildy bosses", - "assetImage": "Skull_of_vetion_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "uuid": "d30520a8-eb8b-44db-920c-aac5ccdbb97d" - }, - { - "_id": 119, - "name": "Get 1 unique from the Wildy bosses", - "assetImage": "Skull_of_vetion_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "uuid": "769d7c4a-cab5-43d0-9dda-ce204336bd28" - }, - { - "_id": 120, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 12 - }, - "uuid": "63211592-45b4-459c-89c0-fe93e6e66401" - }, - { - "_id": 121, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 13 - }, - "uuid": "bf43c269-3013-4ebf-997f-263e62c6d637" - }, - { - "_id": 122, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 14 - }, - "uuid": "7b9083b5-6476-4203-93d0-f4bc0388fe9d" - }, - { - "_id": 123, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 15 - }, - "uuid": "f07636c0-8f49-4e1e-b75f-11fd7e4534ce" - }, - { - "_id": 124, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 16 - }, - "uuid": "dfcdb239-0e31-488e-bc5a-f28b69a1714e" - }, - { - "_id": 125, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 17 - }, - "uuid": "48516feb-15e0-464e-a5d9-e0e6daacfa76" - }, - { - "_id": 126, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 18 - }, - "uuid": "0ffdbb4a-10c4-4ad6-9b08-b39cf993cdb7" - }, - { - "_id": 127, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 19 - }, - "uuid": "8051cb23-6873-4cb6-8f61-b8d1b68c72dc" - }, - { - "_id": 128, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 20 - }, - "uuid": "50a5542e-cb59-4e85-84f0-9e780cd068e2" - }, - { - "_id": 129, - "name": "Get 1 unique from the DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/150px-Soulreaper_axe_detail.png", - "assetImage": "Soulreaper_axe_detail.png", - "colLogData": { - "category": "Bosses", - "logName": null, - "multi": [ - "Duke Sucellus", - "The Whisperer", - "Vardorvis", - "The Leviathan" - ], - "exclude": [ - "Lil'viathan", - "Wisp", - "Butch", - "Baron" - ], - "logCount": 21 - }, - "uuid": "4c35aba7-1b9d-42ba-894b-72a202db643c" - }, - { - "_id": 130, - "name": "Get 1 unique from Fortis Colosseum", - "assetImage": "dizanas_quiver.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "uuid": "e455c218-2088-4a6d-aa6c-2c1edd7da46f" - }, - { - "_id": 131, - "name": "Get 1 unique from Fortis Colosseum", - "assetImage": "dizanas_quiver.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "uuid": "a5c94af3-7dc4-4d7f-aee5-a4e665d6d663" - }, - { - "_id": 132, - "name": "Get 1 unique from Fortis Colosseum", - "assetImage": "dizanas_quiver.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "uuid": "46128271-0757-47fc-a48d-0918d4b25d51" - }, - { - "_id": 133, - "name": "Get 1 unique from Fortis Colosseum", - "assetImage": "dizanas_quiver.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "uuid": "148a286d-4b5c-4345-9334-bbba4b31ccc6" - } -] \ No newline at end of file diff --git a/tasks/hard.json b/tasks/hard.json deleted file mode 100644 index 5b81d28..0000000 --- a/tasks/hard.json +++ /dev/null @@ -1,19099 +0,0 @@ -[ - { - "_id": 1, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 6 - }, - "uuid": "5624f45b-3a00-4d5d-ba78-ee46ec09b3d5" - }, - { - "_id": 2, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 7 - }, - "uuid": "bfaeb6a4-e838-4978-b613-88047f74f9c9" - }, - { - "_id": 3, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 8 - }, - "uuid": "244ca574-edcb-4980-ac43-8ed4f715102b" - }, - { - "_id": 4, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 9 - }, - "uuid": "3da95363-2bc0-4884-9f71-defff2f645cc" - }, - { - "_id": 5, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 10 - }, - "uuid": "9a791ecb-253a-4d09-95b6-f9e11d8c1e3f" - }, - { - "_id": 6, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 11 - }, - "uuid": "b8f70e53-b0bb-41bd-9ce7-4355242f0234" - }, - { - "_id": 7, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 12 - }, - "uuid": "fec60d07-a569-4ef9-b0a2-2abd023ef096" - }, - { - "_id": 8, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 13 - }, - "uuid": "fdc2ab80-b1d7-40ad-9696-eab1dc191406" - }, - { - "_id": 9, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 14 - }, - "uuid": "2ef8f0a3-c770-4de4-b3bf-3b0bd07e12a0" - }, - { - "_id": 10, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 15 - }, - "uuid": "bd2f8f8f-057f-4bfc-b66e-4deda1466e42" - }, - { - "_id": 11, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 16 - }, - "uuid": "bf30a4bb-6190-46e8-9be0-c889e20d34f1" - }, - { - "_id": 12, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 17 - }, - "uuid": "d1980b18-ef71-4782-ab95-92c445670c84" - }, - { - "_id": 13, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 18 - }, - "uuid": "6b1fd2ea-8732-43f2-9c26-a180f5516222" - }, - { - "_id": 14, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 19 - }, - "uuid": "90dc0df5-2649-453d-904c-7531110e8aba" - }, - { - "_id": 15, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 20 - }, - "uuid": "06c69323-0360-420b-8050-89b1143fa915" - }, - { - "_id": 16, - "name": "Get a unique from Unsired", - "tip": "Can be received as a drop from the Abyssal Sire Boss. The Unsired drop itself does NOT count for the task. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_Sire", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e8/Unsired.png?a6ba9", - "assetImage": "Unsired.png", - "colLogData": { - "category": "Bosses", - "logName": "abyssal_sire", - "include": [ - { - "id": 7979, - "name": "Abyssal head" - }, - { - "id": 13265, - "name": "Abyssal dagger" - }, - { - "id": 13274, - "name": "Bludgeon spine" - }, - { - "id": 13275, - "name": "Bludgeon claw" - }, - { - "id": 13276, - "name": "Bludgeon axon" - } - ], - "logCount": 1 - }, - "uuid": "435b1b06-8b61-4986-a56f-21ea34d25995" - }, - { - "_id": 17, - "name": "Get a unique from Unsired", - "tip": "Can be received as a drop from the Abyssal Sire Boss. The Unsired drop itself does NOT count for the task. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_Sire", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e8/Unsired.png?a6ba9", - "assetImage": "Unsired.png", - "colLogData": { - "category": "Bosses", - "logName": "abyssal_sire", - "include": [ - { - "id": 7979, - "name": "Abyssal head" - }, - { - "id": 13265, - "name": "Abyssal dagger" - }, - { - "id": 13274, - "name": "Bludgeon spine" - }, - { - "id": 13275, - "name": "Bludgeon claw" - }, - { - "id": 13276, - "name": "Bludgeon axon" - } - ], - "logCount": 2 - }, - "uuid": "34fc426a-4a9c-474c-8a7f-978758adfe98" - }, - { - "_id": 18, - "name": "Get a unique from Unsired", - "tip": "Can be received as a drop from the Abyssal Sire Boss. The Unsired drop itself does NOT count for the task. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_Sire", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e8/Unsired.png?a6ba9", - "assetImage": "Unsired.png", - "colLogData": { - "category": "Bosses", - "logName": "abyssal_sire", - "include": [ - { - "id": 7979, - "name": "Abyssal head" - }, - { - "id": 13265, - "name": "Abyssal dagger" - }, - { - "id": 13274, - "name": "Bludgeon spine" - }, - { - "id": 13275, - "name": "Bludgeon claw" - }, - { - "id": 13276, - "name": "Bludgeon axon" - } - ], - "logCount": 3 - }, - "uuid": "7312b10e-4ef9-461a-84e7-24a96bea8b17" - }, - { - "_id": 19, - "name": "Get an Abyssal whip", - "tip": "Can be received as a drop from Abyssal Demons. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_whip", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5c/Abyssal_whip.png?88741", - "assetImage": "Abyssal_whip.png", - "colLogData": { - "category": "Bosses", - "logName": "abyssal_sire", - "include": [ - { - "id": 4151, - "name": "Abyssal whip" - } - ], - "logCount": 1 - }, - "uuid": "bc277321-7679-4a1c-98a0-97ecd7a8f4fd" - }, - { - "_id": 20, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 1 - }, - "uuid": "81ea7772-4c99-4e5a-ae33-55b174b510aa" - }, - { - "_id": 21, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 2 - }, - "uuid": "4ab91d3b-bff8-45a9-9d40-a991818f4410" - }, - { - "_id": 22, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 3 - }, - "uuid": "f3da850a-a69d-485e-b18d-949413b83344" - }, - { - "_id": 23, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 4 - }, - "uuid": "ec0627d8-27d5-402f-a2e6-7ddf3af5f270" - }, - { - "_id": 24, - "name": "Get 1 unique item from Mount Karuulm", - "tip": "Received as drop from serveral monsters in the Mount Karuulm Dungeon.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karuulm_Slayer_Dungeon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Dragon_knife_detail.png/130px-Dragon_knife_detail.png?c909d", - "assetImage": "130px-Dragon_knife_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 22804, - "name": "Dragon knife" - }, - { - "id": 22957, - "name": "Drake's claw" - }, - { - "id": 22960, - "name": "Drake's tooth" - }, - { - "id": 20849, - "name": "Dragon thrownaxe" - }, - { - "id": 21028, - "name": "Dragon harpoon" - }, - { - "id": 21009, - "name": "Dragon sword" - }, - { - "id": 22966, - "name": "Hydra's claw" - }, - { - "id": 22969, - "name": "Hydra's heart" - }, - { - "id": 22971, - "name": "Hydra's fang" - }, - { - "id": 22973, - "name": "Hydra's eye" - }, - { - "id": 22983, - "name": "Hydra leather" - }, - { - "id": 22988, - "name": "Hydra tail" - }, - { - "id": 23077, - "name": "Alchemical hydra heads" - } - ], - "logCount": 5 - }, - "uuid": "a6aab811-f865-445c-a9b9-d18573bc335c" - }, - { - "_id": 25, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "multi_log": [ - "chaos_elemental", - "vetion_and_calvarion", - "callisto_and_artio", - "venenatis_and_spindel" - ], - "logName": null, - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - }, - { - "id": 27667, - "name": "Claws of callisto" - }, - { - "id": 27670, - "name": "Fangs of venenatis" - }, - { - "id": 27673, - "name": "Skull of vet'ion" - } - ], - "logCount": 1 - }, - "uuid": "b197547f-3ed2-4d10-9fe3-1e15644e9cb9" - }, - { - "_id": 26, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "multi_log": [ - "chaos_elemental", - "vetion_and_calvarion", - "callisto_and_artio", - "venenatis_and_spindel" - ], - "logName": null, - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - }, - { - "id": 27667, - "name": "Claws of callisto" - }, - { - "id": 27670, - "name": "Fangs of venenatis" - }, - { - "id": 27673, - "name": "Skull of vet'ion" - } - ], - "logCount": 2 - }, - "uuid": "23a23a85-0b75-47a9-bd50-b12dd114f84c" - }, - { - "_id": 27, - "name": "Get 1 unique from the Wildy bosses", - "tip": "Wildy boss uniques are: Dragon 2H, Dragon pickaxe, 3 voidwaker pieces, 3 rev weapon upgrades, 3 rings", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness#Bosses", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Skull_of_vet%27ion_detail.png/130px-Skull_of_vet%27ion_detail.png", - "assetImage": "Skull_of_vetion_detail.png", - "colLogData": { - "category": "Bosses", - "multi_log": [ - "chaos_elemental", - "vetion_and_calvarion", - "callisto_and_artio", - "venenatis_and_spindel" - ], - "logName": null, - "include": [ - { - "id": 7158, - "name": "Dragon 2h sword" - }, - { - "id": 11920, - "name": "Dragon pickaxe" - }, - { - "id": 27681, - "name": "Voidwaker hilt" - }, - { - "id": 27684, - "name": "Voidwaker blade" - }, - { - "id": 27687, - "name": "Voidwaker gem" - }, - { - "id": 12601, - "name": "Ring of the gods" - }, - { - "id": 12603, - "name": "Tyrannical ring" - }, - { - "id": 12605, - "name": "Treasonous ring" - }, - { - "id": 27667, - "name": "Claws of callisto" - }, - { - "id": 27670, - "name": "Fangs of venenatis" - }, - { - "id": 27673, - "name": "Skull of vet'ion" - } - ], - "logCount": 3 - }, - "uuid": "b5975e8e-e380-4883-bc87-8850459dd23c" - }, - { - "_id": 28, - "name": "Get 1 unique from Cerberus", - "tip": "Received as a drop from the Cerberus Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Cerberus", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6b/Eternal_crystal.png?944ec", - "assetImage": "Eternal_crystal.png", - "colLogData": { - "category": "Bosses", - "logName": "cerberus", - "include": [ - { - "id": 13227, - "name": "Eternal crystal" - }, - { - "id": 13229, - "name": "Pegasian crystal" - }, - { - "id": 13231, - "name": "Primordial crystal" - }, - { - "id": 13233, - "name": "Smouldering stone" - }, - { - "id": 13249, - "name": "Key master teleport" - } - ], - "logCount": 1 - }, - "uuid": "a3f7bb7a-1cd4-48cf-81fd-d5fee249f150" - }, - { - "_id": 29, - "name": "Get 1 unique from Cerberus", - "tip": "Received as a drop from the Cerberus Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Cerberus", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6b/Eternal_crystal.png?944ec", - "assetImage": "Eternal_crystal.png", - "colLogData": { - "category": "Bosses", - "logName": "cerberus", - "include": [ - { - "id": 13227, - "name": "Eternal crystal" - }, - { - "id": 13229, - "name": "Pegasian crystal" - }, - { - "id": 13231, - "name": "Primordial crystal" - }, - { - "id": 13233, - "name": "Smouldering stone" - }, - { - "id": 13249, - "name": "Key master teleport" - } - ], - "logCount": 2 - }, - "uuid": "11f84361-ab8f-4f79-bc14-b2c815227a78" - }, - { - "_id": 30, - "name": "Get 1 unique from Cerberus", - "tip": "Received as a drop from the Cerberus Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Cerberus", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6b/Eternal_crystal.png?944ec", - "assetImage": "Eternal_crystal.png", - "colLogData": { - "category": "Bosses", - "logName": "cerberus", - "include": [ - { - "id": 13227, - "name": "Eternal crystal" - }, - { - "id": 13229, - "name": "Pegasian crystal" - }, - { - "id": 13231, - "name": "Primordial crystal" - }, - { - "id": 13233, - "name": "Smouldering stone" - }, - { - "id": 13249, - "name": "Key master teleport" - } - ], - "logCount": 3 - }, - "uuid": "45b8fa6a-1684-476a-9a43-83618547dc70" - }, - { - "_id": 31, - "name": "Get a unique shard 1", - "tip": "Received as a drop from the Chaos Fanatic.", - "wikiLink": "https://oldschool.runescape.wiki/w/Chaos_Fanatic", - "wikiImage": "https://oldschool.runescape.wiki/images/f/ff/Odium_shard_1.png?8430d", - "assetImage": "Odium_shard_1.png", - "colLogData": { - "category": "Bosses", - "logName": "chaos_fanatic", - "include": [ - { - "id": 11931, - "name": "Malediction shard 1" - }, - { - "id": 11928, - "name": "Odium shard 1" - } - ], - "logCount": 1 - }, - "uuid": "0a0bb681-bc2f-4f79-a884-c4ec2e962fd7" - }, - { - "_id": 32, - "name": "Get a unique shard 1", - "tip": "Received as a drop from the Chaos Fanatic", - "wikiLink": "https://oldschool.runescape.wiki/w/Chaos_Fanatic", - "wikiImage": "https://oldschool.runescape.wiki/images/f/ff/Odium_shard_1.png?8430d", - "assetImage": "Odium_shard_1.png", - "colLogData": { - "category": "Bosses", - "logName": "chaos_fanatic", - "include": [ - { - "id": 11931, - "name": "Malediction shard 1" - }, - { - "id": 11928, - "name": "Odium shard 1" - } - ], - "logCount": 2 - }, - "uuid": "17d6fa60-2dec-4fef-906a-f54484dfd937" - }, - { - "_id": 33, - "name": "Get a new Boss pet", - "tip": "Can be obtained rarley, from any Boss. Advised to go for the Chaos Elemental Pet as the drop rate is much lowered compared to the other bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f4/Olmlet.png?f8c27", - "assetImage": "Olmlet.png", - "colLogData": { - "category": "Other", - "logName": "all_pets", - "include": [ - { - "id": 13262, - "name": "Abyssal orphan" - }, - { - "id": 12646, - "name": "Baby mole" - }, - { - "id": 13178, - "name": "Callisto cub" - }, - { - "id": 13247, - "name": "Hellpuppy" - }, - { - "id": 30152, - "name": "Huberte" - }, - { - "id": 22746, - "name": "Ikkle hydra" - }, - { - "id": 21291, - "name": "Jal-nib-rek" - }, - { - "id": 12647, - "name": "Kalphite princess" - }, - { - "id": 22473, - "name": "Lil' zik" - }, - { - "id": 24491, - "name": "Little nightmare" - }, - { - "id": 30154, - "name": "Moxi" - }, - { - "id": 27590, - "name": "Muphin" - }, - { - "id": 26348, - "name": "Nexling" - }, - { - "id": 29836, - "name": "Nid" - }, - { - "id": 21748, - "name": "Noon" - }, - { - "id": 20851, - "name": "Olmlet" - }, - { - "id": 11995, - "name": "Pet chaos elemental" - }, - { - "id": 12643, - "name": "Pet dagannoth supreme" - }, - { - "id": 12644, - "name": "Pet dagannoth prime" - }, - { - "id": 12645, - "name": "Pet dagannoth rex" - }, - { - "id": 12816, - "name": "Pet dark core" - }, - { - "id": 12650, - "name": "Pet general graardor" - }, - { - "id": 12652, - "name": "Pet k'ril tsutsaroth" - }, - { - "id": 12655, - "name": "Pet kraken" - }, - { - "id": 12649, - "name": "Pet kree'arra" - }, - { - "id": 12648, - "name": "Pet smoke devil" - }, - { - "id": 12921, - "name": "Pet snakeling" - }, - { - "id": 12651, - "name": "Pet zilyana" - }, - { - "id": 12653, - "name": "Prince black dragon" - }, - { - "id": 13181, - "name": "Scorpia's offspring" - }, - { - "id": 28801, - "name": "Scurry" - }, - { - "id": 21273, - "name": "Skotos" - }, - { - "id": 23495, - "name": "Sraracha" - }, - { - "id": 13225, - "name": "Tzrek-jad" - }, - { - "id": 27352, - "name": "Tumeken's guardian" - }, - { - "id": 13177, - "name": "Venenatis spiderling" - }, - { - "id": 13179, - "name": "Vet'ion jr." - }, - { - "id": 21992, - "name": "Vorki" - }, - { - "id": 28960, - "name": "Smol heredit" - }, - { - "id": 30622, - "name": "Bran" - }, - { - "id": 28250, - "name": "Baron" - }, - { - "id": 28252, - "name": "Lil'viathan" - }, - { - "id": 28246, - "name": "Wisp" - }, - { - "id": 28248, - "name": "Butch" - }, - { - "id": 31130, - "name": "Dom" - } - ], - "logCount": 1 - }, - "uuid": "7b7cdd22-a115-4291-bdbc-fa6a04bd1bdf" - }, - { - "_id": 34, - "name": "Get 1 unique drop from Zamorak GWD", - "tip": "Received as a drop from the Zamorak God Wards Dungeon Boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/K%27ril_Tsutsaroth", - "wikiImage": "http://oldschool.runescape.wiki/images/f/fc/Staff_of_the_dead.png?bd403", - "assetImage": "Staff_of_the_dead.png", - "colLogData": { - "category": "Bosses", - "logName": "kril_tsutsaroth", - "include": [ - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - } - ], - "logCount": 1 - }, - "uuid": "62d2ad72-d063-46b3-9348-75efcea0bb11" - }, - { - "_id": 35, - "name": "Get 1 unique drop from Zamorak GWD", - "tip": "Received as a drop from the Zamorak God Wards Dungeon Boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/K%27ril_Tsutsaroth", - "wikiImage": "http://oldschool.runescape.wiki/images/f/fc/Staff_of_the_dead.png?bd403", - "assetImage": "Staff_of_the_dead.png", - "colLogData": { - "category": "Bosses", - "logName": "kril_tsutsaroth", - "include": [ - { - "id": 11787, - "name": "Steam battlestaff" - }, - { - "id": 11791, - "name": "Staff of the dead" - }, - { - "id": 11824, - "name": "Zamorakian spear" - }, - { - "id": 11816, - "name": "Zamorak hilt" - } - ], - "logCount": 2 - }, - "uuid": "09ebb79c-c629-4900-a0a1-bc06c88e2571" - }, - { - "_id": 36, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 1 - }, - "uuid": "00b9d780-5b80-472e-af5b-c4241233c5ca" - }, - { - "_id": 37, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 2 - }, - "uuid": "98abdbdd-fd19-4699-8e2f-baa5b9e3f2d3" - }, - { - "_id": 38, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 3 - }, - "uuid": "cc15f774-f36f-4e78-985c-10436437b017" - }, - { - "_id": 39, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 4 - }, - "uuid": "65fd7e4e-54ff-492b-b56b-9aec8a914e65" - }, - { - "_id": 40, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 5 - }, - "uuid": "3304fa6f-c3bf-47b9-b7b4-dfd4dfdf377d" - }, - { - "_id": 41, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 6 - }, - "uuid": "0c7f694f-f6de-4ab5-8e3a-965431b494b8" - }, - { - "_id": 42, - "name": "Get 1 unique drop from Dagannoth Kings", - "tip": "Received as a drop from the Dagannoth Kings Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dagannoth_Kings", - "wikiImage": "https://oldschool.runescape.wiki/images/0/07/Dragon_axe.png?92c79", - "assetImage": "Dragon_axe.png", - "colLogData": { - "category": "Bosses", - "logName": "dagannoth_kings", - "include": [ - { - "id": 6731, - "name": "Seers ring" - }, - { - "id": 6733, - "name": "Archers ring" - }, - { - "id": 6735, - "name": "Warrior ring" - }, - { - "id": 6737, - "name": "Berserker ring" - }, - { - "id": 6739, - "name": "Dragon axe" - }, - { - "id": 6724, - "name": "Seercull" - }, - { - "id": 6562, - "name": "Mud battlestaff" - } - ], - "logCount": 7 - }, - "uuid": "1c5e50c1-d98d-4ced-ac77-b7458518aee0" - }, - { - "_id": 43, - "name": "Get 1 unique drop from Grotesque Guardians", - "tip": "Received as a drop from the Grotesque Guardians Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grotesque_Guardians", - "wikiImage": "https://oldschool.runescape.wiki/images/c/ce/Black_tourmaline_core.png?e7f8e", - "assetImage": "Black_tourmaline_core.png", - "colLogData": { - "category": "Bosses", - "logName": "grotesque_guardians", - "include": [ - { - "id": 21730, - "name": "Black tourmaline core" - }, - { - "id": 21736, - "name": "Granite gloves" - }, - { - "id": 21739, - "name": "Granite ring" - }, - { - "id": 21742, - "name": "Granite hammer" - } - ], - "logCount": 1 - }, - "uuid": "0bc26a55-e504-45d1-8742-06980cf2e726" - }, - { - "_id": 44, - "name": "Get 1 unique drop from Grotesque Guardians", - "tip": "Received as a drop from the Grotesque Guardians Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grotesque_Guardians", - "wikiImage": "https://oldschool.runescape.wiki/images/c/ce/Black_tourmaline_core.png?e7f8e", - "assetImage": "Black_tourmaline_core.png", - "colLogData": { - "category": "Bosses", - "logName": "grotesque_guardians", - "include": [ - { - "id": 21730, - "name": "Black tourmaline core" - }, - { - "id": 21736, - "name": "Granite gloves" - }, - { - "id": 21739, - "name": "Granite ring" - }, - { - "id": 21742, - "name": "Granite hammer" - } - ], - "logCount": 2 - }, - "uuid": "ad960de3-1940-4fcb-9c10-a8402a6cdcc3" - }, - { - "_id": 45, - "name": "Get 1 unique drop from Grotesque Guardians", - "tip": "Received as a drop from the Grotesque Guardians Bosses. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grotesque_Guardians", - "wikiImage": "https://oldschool.runescape.wiki/images/c/ce/Black_tourmaline_core.png?e7f8e", - "assetImage": "Black_tourmaline_core.png", - "colLogData": { - "category": "Bosses", - "logName": "grotesque_guardians", - "include": [ - { - "id": 21730, - "name": "Black tourmaline core" - }, - { - "id": 21736, - "name": "Granite gloves" - }, - { - "id": 21739, - "name": "Granite ring" - }, - { - "id": 21742, - "name": "Granite hammer" - } - ], - "logCount": 3 - }, - "uuid": "fa69ec9e-699b-44d3-879d-8f8968a94e76" - }, - { - "_id": 46, - "name": "Get 1 unique from the Kalphite Queen", - "tip": "Received as a drop from the Kalphite Queen Boss. Dragon 2H sword does not count for the task, as it is apart of Wildy Unique Tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kalphite_Queen", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c5/Kq_head.png?15ea1", - "assetImage": "Kq_head.png", - "colLogData": { - "category": "Bosses", - "logName": "kalphite_queen", - "include": [ - { - "id": 3140, - "name": "Dragon chainbody" - }, - { - "id": 7981, - "name": "Kq head" - } - ], - "logCount": 1 - }, - "uuid": "d25e8e7b-0360-4cbd-acf2-d127b61e17a0" - }, - { - "_id": 47, - "name": "Get 1 unique from the Kalphite Queen", - "tip": "Received as a drop from the Kalphite Queen Boss. Dragon 2H sword does not count for the task, as it is apart of Wildy Unique Tasks. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kalphite_Queen", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c5/Kq_head.png?15ea1", - "assetImage": "Kq_head.png", - "colLogData": { - "category": "Bosses", - "logName": "kalphite_queen", - "include": [ - { - "id": 3140, - "name": "Dragon chainbody" - }, - { - "id": 7981, - "name": "Kq head" - } - ], - "logCount": 2 - }, - "uuid": "6566e528-1303-4d17-abe7-85b9fd7a2f5d" - }, - { - "_id": 48, - "name": "Get Kbd heads", - "tip": "Received as a drop from the King Black Dragon Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/King_Black_Dragon", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d6/Kbd_heads.png?36c68", - "assetImage": "Kbd_heads.png", - "colLogData": { - "category": "Bosses", - "logName": "king_black_dragon", - "include": [ - { - "id": 7980, - "name": "Kbd heads" - } - ], - "logCount": 1 - }, - "uuid": "f729b2f9-718f-42fa-bc91-a3bd09c91944" - }, - { - "_id": 49, - "name": "Get 1 unique drop from Kraken", - "tip": "Received as a drop from the Kraken Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kraken#Kraken", - "wikiImage": "https://oldschool.runescape.wiki/images/5/52/Trident_of_the_seas.png?4d8db", - "assetImage": "Trident_of_the_seas.png", - "colLogData": { - "category": "Bosses", - "logName": "kraken", - "include": [ - { - "id": 12004, - "name": "Kraken tentacle" - }, - { - "id": 11905, - "name": "Trident of the seas (full)" - } - ], - "logCount": 1 - }, - "uuid": "b4f536ec-6970-4ad2-ba81-2bf0f4b97412" - }, - { - "_id": 50, - "name": "Get 1 unique drop from Kraken", - "tip": "Received as a drop from the Kraken Boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kraken#Kraken", - "wikiImage": "https://oldschool.runescape.wiki/images/5/52/Trident_of_the_seas.png?4d8db", - "assetImage": "Trident_of_the_seas.png", - "colLogData": { - "category": "Bosses", - "logName": "kraken", - "include": [ - { - "id": 12004, - "name": "Kraken tentacle" - }, - { - "id": 11905, - "name": "Trident of the seas (full)" - } - ], - "logCount": 2 - }, - "uuid": "7f910b6d-86e7-44b2-ab0f-c70230f47d8a" - }, - { - "_id": 51, - "name": "Get an Uncharged Trident", - "tip": "Received as a drom from Cave Kraken. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Cave_kraken", - "wikiImage": "https://oldschool.runescape.wiki/images/5/52/Trident_of_the_seas.png?4d8db", - "assetImage": "Trident_of_the_seas.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 11908, - "name": "Uncharged trident" - } - ], - "logCount": 1 - }, - "uuid": "7214aa06-7e55-4e8b-a774-dbfec508644e" - }, - { - "_id": 52, - "name": "Get a unique shard 3", - "tip": "Received as a drop from the Scorpia Boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/Scorpia", - "wikiImage": "https://oldschool.runescape.wiki/images/3/37/Odium_shard_3.png?ea895", - "assetImage": "Odium_shard_3.png", - "colLogData": { - "category": "Bosses", - "logName": "scorpia", - "include": [ - { - "id": 11933, - "name": "Malediction shard 3" - }, - { - "id": 11930, - "name": "Odium shard 3" - } - ], - "logCount": 1 - }, - "uuid": "1ce7abb3-ab35-4164-a297-1e666220c3d0" - }, - { - "_id": 53, - "name": "Get a unique shard 3", - "tip": "Received as a drop from the Scorpia Boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/Scorpia", - "wikiImage": "https://oldschool.runescape.wiki/images/3/37/Odium_shard_3.png?ea895", - "assetImage": "Odium_shard_3.png", - "colLogData": { - "category": "Bosses", - "logName": "scorpia", - "include": [ - { - "id": 11933, - "name": "Malediction shard 3" - }, - { - "id": 11930, - "name": "Odium shard 3" - } - ], - "logCount": 2 - }, - "uuid": "d9a2e3ab-138d-4ec2-abc5-846171d6f9cd" - }, - { - "_id": 54, - "name": "Get Vorkath's head", - "tip": "Received as a drop from the Vorkath Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Vorkath", - "wikiImage": "https://oldschool.runescape.wiki/images/a/af/Vorkath%27s_head.png?f483c", - "assetImage": "Vorkaths_head.png", - "colLogData": { - "category": "Bosses", - "logName": "vorkath", - "include": [ - { - "id": 21907, - "name": "Vorkath's head" - } - ], - "logCount": 1 - }, - "uuid": "77dd54c7-25ef-4e05-9399-bde68791683d" - }, - { - "_id": 55, - "name": "Get 1 unique from Zulrah", - "tip": "Received as a drop from the Zulrah Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7f/Tanzanite_fang.png?56fe7", - "assetImage": "Tanzanite_fang.png", - "colLogData": { - "category": "Bosses", - "logName": "zulrah", - "include": [ - { - "id": 12922, - "name": "Tanzanite fang" - }, - { - "id": 12927, - "name": "Serpentine visage" - }, - { - "id": 12932, - "name": "Magic fang" - }, - { - "id": 12934, - "name": "Zulrah's scales" - }, - { - "id": 12938, - "name": "Zul-andra teleport" - }, - { - "id": 6571, - "name": "Uncut onyx" - } - ], - "logCount": 3 - }, - "uuid": "20224317-3259-4f50-b378-47a74559b1b7" - }, - { - "_id": 56, - "name": "Get 1 unique from Zulrah", - "tip": "Received as a drop from the Zulrah Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7f/Tanzanite_fang.png?56fe7", - "assetImage": "Tanzanite_fang.png", - "colLogData": { - "category": "Bosses", - "logName": "zulrah", - "include": [ - { - "id": 12922, - "name": "Tanzanite fang" - }, - { - "id": 12927, - "name": "Serpentine visage" - }, - { - "id": 12932, - "name": "Magic fang" - }, - { - "id": 12934, - "name": "Zulrah's scales" - }, - { - "id": 12938, - "name": "Zul-andra teleport" - }, - { - "id": 6571, - "name": "Uncut onyx" - } - ], - "logCount": 4 - }, - "uuid": "6ad9b2f0-60f2-49a2-89c0-7b35cde292ce" - }, - { - "_id": 57, - "name": "Get 1 unique from Zulrah", - "tip": "Received as a drop from the Zulrah Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7f/Tanzanite_fang.png?56fe7", - "assetImage": "Tanzanite_fang.png", - "colLogData": { - "category": "Bosses", - "logName": "zulrah", - "include": [ - { - "id": 12922, - "name": "Tanzanite fang" - }, - { - "id": 12927, - "name": "Serpentine visage" - }, - { - "id": 12932, - "name": "Magic fang" - }, - { - "id": 12934, - "name": "Zulrah's scales" - }, - { - "id": 12938, - "name": "Zul-andra teleport" - }, - { - "id": 6571, - "name": "Uncut onyx" - } - ], - "logCount": 5 - }, - "uuid": "723a9814-5c4e-4225-a88c-543003bf581f" - }, - { - "_id": 58, - "name": "Get 1 unique from Zulrah", - "tip": "Received as a drop from the Zulrah Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7f/Tanzanite_fang.png?56fe7", - "assetImage": "Tanzanite_fang.png", - "colLogData": { - "category": "Bosses", - "logName": "zulrah", - "include": [ - { - "id": 12922, - "name": "Tanzanite fang" - }, - { - "id": 12927, - "name": "Serpentine visage" - }, - { - "id": 12932, - "name": "Magic fang" - }, - { - "id": 12934, - "name": "Zulrah's scales" - }, - { - "id": 12938, - "name": "Zul-andra teleport" - }, - { - "id": 6571, - "name": "Uncut onyx" - } - ], - "logCount": 6 - }, - "uuid": "396c7960-b7fc-42ce-a014-8930b8ea10b2" - }, - { - "_id": 59, - "name": "Get 3 new uniques from beginner clues", - "tip": "Potential reward from beginner clues. Minotaurs baby. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)", - "wikiImage": "https://oldschool.runescape.wiki/images/9/93/Clue_scroll_%28beginner%29.png?c3ba4", - "assetImage": "Clue_scroll_beginner.png", - "colLogData": { - "category": "Clues", - "logName": "beginner_treasure_trails", - "include": [ - { - "id": 23285, - "name": "Mole slippers" - }, - { - "id": 23288, - "name": "Frog slippers" - }, - { - "id": 23291, - "name": "Bear feet" - }, - { - "id": 23294, - "name": "Demon feet" - }, - { - "id": 23297, - "name": "Jester cape" - }, - { - "id": 23300, - "name": "Shoulder parrot" - }, - { - "id": 23303, - "name": "Monk's robe top (t)" - }, - { - "id": 23306, - "name": "Monk's robe (t)" - }, - { - "id": 23309, - "name": "Amulet of defence (t)" - }, - { - "id": 23312, - "name": "Sandwich lady hat" - }, - { - "id": 23315, - "name": "Sandwich lady top" - }, - { - "id": 23318, - "name": "Sandwich lady bottom" - }, - { - "id": 23321, - "name": "Rune scimitar ornament kit (guthix)" - }, - { - "id": 23324, - "name": "Rune scimitar ornament kit (saradomin)" - }, - { - "id": 23327, - "name": "Rune scimitar ornament kit (zamorak)" - } - ], - "logCount": 15 - }, - "uuid": "703439df-f8e2-4b4f-a601-fa12e84e12e7" - }, - { - "_id": 60, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 65 - }, - "uuid": "3cdd5b96-d5c1-418d-9e50-fca6191b25e4" - }, - { - "_id": 61, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 70 - }, - "uuid": "86dbeff7-9da1-462d-9bbd-b79cca075c13" - }, - { - "_id": 62, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 75 - }, - "uuid": "0f7db676-5b63-481e-a601-cc51d63f4a00" - }, - { - "_id": 63, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 80 - }, - "uuid": "90d3d4ef-22ac-4edf-b914-83dcb26c3132" - }, - { - "_id": 64, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 85 - }, - "uuid": "2e5a305b-9536-4924-9b08-8269575be04d" - }, - { - "_id": 65, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them. Arceuss spell: Dark Lure is nice if you have it!", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 45 - }, - "uuid": "c405d220-1cf1-4dbb-9393-3e6203146985" - }, - { - "_id": 66, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them. Arceuss spell: Dark Lure is nice if you have it!", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 50 - }, - "uuid": "6339e683-7ef8-407e-a208-d9201549a44d" - }, - { - "_id": 67, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them. Arceuss spell: Dark Lure is nice if you have it!", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 55 - }, - "uuid": "cc0e32eb-188d-4e41-acc3-8ecdc6a3ed51" - }, - { - "_id": 68, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them. Arceuss spell: Dark Lure is nice if you have it!", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 60 - }, - "uuid": "f0515e76-9768-4d2e-b0a1-e16b26195e5d" - }, - { - "_id": 69, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Ecletic impings are are fantasic source for them. Arceuss spell: Dark Lure is nice if you have it!", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 65 - }, - "uuid": "3229d7fc-c253-41f5-b4a0-edf53bbac48a" - }, - { - "_id": 70, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 35 - }, - "uuid": "629be3c9-b90d-44d3-95bd-23ee7d46e148" - }, - { - "_id": 71, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 40 - }, - "uuid": "8d141358-fea2-4928-9ffb-b0b60747e5ea" - }, - { - "_id": 72, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 45 - }, - "uuid": "84ad48af-ed12-49d1-8b92-f54c0295d6dc" - }, - { - "_id": 73, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 50 - }, - "uuid": "cb6cb0d4-0152-4eb0-b2ec-948a531bc18f" - }, - { - "_id": 74, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 55 - }, - "uuid": "a75b2e99-d178-4c5b-b663-8f0c047921c7" - }, - { - "_id": 75, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 60 - }, - "uuid": "d2cf0fc9-8b29-4858-b9d2-6328c8f27a4d" - }, - { - "_id": 76, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Barrage/Burst Jellies if you have anicents. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 65 - }, - "uuid": "a7b39c35-fd34-453c-b335-e17effa2771a" - }, - { - "_id": 77, - "name": "Get 2 new uniques from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "elite_treasure_trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 2 - }, - "uuid": "5c7108d6-3eda-4a54-8007-136d17484cfc" - }, - { - "_id": 78, - "name": "Get 2 new uniques from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "elite_treasure_trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 4 - }, - "uuid": "b36983da-b09e-4b7f-8800-c75165cd3994" - }, - { - "_id": 79, - "name": "Get 2 new uniques from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "elite_treasure_trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 6 - }, - "uuid": "96337b61-d22a-45ea-afff-3b1219671da2" - }, - { - "_id": 80, - "name": "Get 2 new uniques from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "elite_treasure_trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 8 - }, - "uuid": "177eb3af-da04-4090-87ce-1de1d7a097c6" - }, - { - "_id": 81, - "name": "Get 2 new uniques from elite clues", - "tip": "Potential reward from elite clues. Elite clue rewards are not real. Jagex please fix. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a5/Clue_scroll_%28elite%29.png?e29cd", - "assetImage": "Clue_scroll_elite.png", - "colLogData": { - "category": "Clues", - "logName": "elite_treasure_trails", - "include": [ - { - "id": 23185, - "name": "Ring of 3rd age" - }, - { - "id": 12335, - "name": "Briefcase" - }, - { - "id": 12337, - "name": "Sagacious spectacles" - }, - { - "id": 12351, - "name": "Musketeer hat" - }, - { - "id": 12353, - "name": "Monocle" - }, - { - "id": 12355, - "name": "Big pirate hat" - }, - { - "id": 12357, - "name": "Katana" - }, - { - "id": 12363, - "name": "Bronze dragon mask" - }, - { - "id": 12365, - "name": "Iron dragon mask" - }, - { - "id": 12367, - "name": "Steel dragon mask" - }, - { - "id": 12369, - "name": "Mithril dragon mask" - }, - { - "id": 12373, - "name": "Dragon cane" - }, - { - "id": 12381, - "name": "Black d'hide body (g)" - }, - { - "id": 12383, - "name": "Black d'hide chaps (g)" - }, - { - "id": 12385, - "name": "Black d'hide body (t)" - }, - { - "id": 12387, - "name": "Black d'hide chaps (t)" - }, - { - "id": 12393, - "name": "Royal gown top" - }, - { - "id": 12395, - "name": "Royal gown bottom" - }, - { - "id": 12397, - "name": "Royal crown" - }, - { - "id": 12430, - "name": "Afro" - }, - { - "id": 12432, - "name": "Top hat" - }, - { - "id": 12439, - "name": "Royal sceptre" - }, - { - "id": 12441, - "name": "Musketeer tabard" - }, - { - "id": 12443, - "name": "Musketeer pants" - }, - { - "id": 12526, - "name": "Fury ornament kit" - }, - { - "id": 12528, - "name": "Dark infinity colour kit" - }, - { - "id": 12530, - "name": "Light infinity colour kit" - }, - { - "id": 12532, - "name": "Dragon sq shield ornament kit" - }, - { - "id": 12534, - "name": "Dragon chainbody ornament kit" - }, - { - "id": 12536, - "name": "Dragon legs+skirt ornament kit" - }, - { - "id": 12538, - "name": "Dragon full helm ornament kit" - }, - { - "id": 12540, - "name": "Deerstalker" - }, - { - "id": 12596, - "name": "Rangers' tunic" - }, - { - "id": 19943, - "name": "Arceuus scarf" - }, - { - "id": 19946, - "name": "Hosidius scarf" - }, - { - "id": 19949, - "name": "Lovakengj scarf" - }, - { - "id": 19952, - "name": "Piscarilius scarf" - }, - { - "id": 19955, - "name": "Shayzien scarf" - }, - { - "id": 19958, - "name": "Dark tuxedo jacket" - }, - { - "id": 19961, - "name": "Dark tuxedo cuffs" - }, - { - "id": 19964, - "name": "Dark trousers" - }, - { - "id": 19967, - "name": "Dark tuxedo shoes" - }, - { - "id": 19970, - "name": "Dark bow tie" - }, - { - "id": 19973, - "name": "Light tuxedo jacket" - }, - { - "id": 19976, - "name": "Light tuxedo cuffs" - }, - { - "id": 19979, - "name": "Light trousers" - }, - { - "id": 19982, - "name": "Light tuxedo shoes" - }, - { - "id": 19985, - "name": "Light bow tie" - }, - { - "id": 19988, - "name": "Blacksmith's helm" - }, - { - "id": 19991, - "name": "Bucket helm" - }, - { - "id": 19994, - "name": "Ranger gloves" - }, - { - "id": 19997, - "name": "Holy wraps" - }, - { - "id": 20002, - "name": "Dragon scimitar ornament kit" - }, - { - "id": 23246, - "name": "Fremennik kilt" - }, - { - "id": 23249, - "name": "Rangers' tights" - }, - { - "id": 23252, - "name": "Giant boot" - }, - { - "id": 23255, - "name": "Uri's hat" - }, - { - "id": 23270, - "name": "Adamant dragon mask" - }, - { - "id": 23273, - "name": "Rune dragon mask" - } - ], - "logCount": 10 - }, - "uuid": "4e24d326-41fe-4915-acad-12527bb309c3" - }, - { - "_id": 82, - "name": "Get 1 new halo", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/6/67/Saradomin_halo.png?82a64", - "assetImage": "Saradomin_halo.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 12637, - "name": "Saradomin halo" - }, - { - "id": 12638, - "name": "Zamorak halo" - }, - { - "id": 12639, - "name": "Guthix halo" - } - ], - "logCount": 3 - }, - "uuid": "f496e5d7-722f-4ef5-bb5e-d1b88a7b1555" - }, - { - "_id": 83, - "name": "Get 1 new unique from Gnome Restaurant", - "tip": "Potential reward from the Gnome Restaurant minigame. Last one yay!", - "wikiLink": "https://oldschool.runescape.wiki/w/Gnome_Restaurant", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3a/Gnome_scarf.png?2d77d", - "assetImage": "Gnome_scarf.png", - "colLogData": { - "category": "Minigames", - "logName": "gnome_restaurant", - "include": [ - { - "id": 9469, - "name": "Grand seed pod" - }, - { - "id": 9470, - "name": "Gnome scarf" - }, - { - "id": 9472, - "name": "Gnome goggles" - }, - { - "id": 9475, - "name": "Mint cake" - } - ], - "logCount": 4 - }, - "uuid": "4136c505-f687-4687-9e3b-de149b29f7c4" - }, - { - "_id": 84, - "name": "Get an Infinity top", - "tip": "Can be purchased as a reward from the Mage Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/3/34/Infinity_top.png?ad06d", - "assetImage": "Infinity_top.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6916, - "name": "Infinity top" - } - ], - "logCount": 1 - }, - "uuid": "8ed2b59b-a1a2-43e8-b7ce-383761e80f9e" - }, - { - "_id": 85, - "name": "Get Infinity bottoms", - "tip": "Can be purchased as a reward from the Mage Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/b/b7/Infinity_bottoms.png?6a89d", - "assetImage": "Infinity_bottoms.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6924, - "name": "Infinity bottoms" - } - ], - "logCount": 1 - }, - "uuid": "bad8e134-9327-4840-aeab-466891734411" - }, - { - "_id": 86, - "name": "Get 2 White decorative pieces", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d3/Decorative_armour_%28white_platebody%29_detail.png?325e6", - "assetImage": "Decorative_armour_white_platebody_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 4503, - "name": "Decorative sword (white)" - }, - { - "id": 4504, - "name": "Decorative armour (white platebody)" - }, - { - "id": 4505, - "name": "Decorative armour (white platelegs)" - }, - { - "id": 4506, - "name": "Decorative helm (white)" - }, - { - "id": 4507, - "name": "Decorative shield (white)" - }, - { - "id": 11894, - "name": "Decorative armour (white plateskirt)" - }, - { - "id": 25167, - "name": "Decorative boots (white)" - }, - { - "id": 25169, - "name": "Decorative full helm (white)" - } - ], - "logCount": 2 - }, - "uuid": "bed895eb-6590-4f27-b31f-f0b263e91e02" - }, - { - "_id": 87, - "name": "Get 2 White decorative pieces", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d3/Decorative_armour_%28white_platebody%29_detail.png?325e6", - "assetImage": "Decorative_armour_white_platebody_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 4503, - "name": "Decorative sword (white)" - }, - { - "id": 4504, - "name": "Decorative armour (white platebody)" - }, - { - "id": 4505, - "name": "Decorative armour (white platelegs)" - }, - { - "id": 4506, - "name": "Decorative helm (white)" - }, - { - "id": 4507, - "name": "Decorative shield (white)" - }, - { - "id": 11894, - "name": "Decorative armour (white plateskirt)" - }, - { - "id": 25167, - "name": "Decorative boots (white)" - }, - { - "id": 25169, - "name": "Decorative full helm (white)" - } - ], - "logCount": 4 - }, - "uuid": "414ab46c-4925-4c96-b400-36cac80d3f8c" - }, - { - "_id": 88, - "name": "Get 2 White decorative pieces", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d3/Decorative_armour_%28white_platebody%29_detail.png?325e6", - "assetImage": "Decorative_armour_white_platebody_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 4503, - "name": "Decorative sword (white)" - }, - { - "id": 4504, - "name": "Decorative armour (white platebody)" - }, - { - "id": 4505, - "name": "Decorative armour (white platelegs)" - }, - { - "id": 4506, - "name": "Decorative helm (white)" - }, - { - "id": 4507, - "name": "Decorative shield (white)" - }, - { - "id": 11894, - "name": "Decorative armour (white plateskirt)" - }, - { - "id": 25167, - "name": "Decorative boots (white)" - }, - { - "id": 25169, - "name": "Decorative full helm (white)" - } - ], - "logCount": 6 - }, - "uuid": "171e6e8d-0c1c-4343-9abc-7b02f25e82d1" - }, - { - "_id": 89, - "name": "Get 2 White decorative pieces", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d3/Decorative_armour_%28white_platebody%29_detail.png?325e6", - "assetImage": "Decorative_armour_white_platebody_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 4503, - "name": "Decorative sword (white)" - }, - { - "id": 4504, - "name": "Decorative armour (white platebody)" - }, - { - "id": 4505, - "name": "Decorative armour (white platelegs)" - }, - { - "id": 4506, - "name": "Decorative helm (white)" - }, - { - "id": 4507, - "name": "Decorative shield (white)" - }, - { - "id": 11894, - "name": "Decorative armour (white plateskirt)" - }, - { - "id": 25167, - "name": "Decorative boots (white)" - }, - { - "id": 25169, - "name": "Decorative full helm (white)" - } - ], - "logCount": 8 - }, - "uuid": "2fee935b-6a1e-4896-9e50-e7f49a8ea6c5" - }, - { - "_id": 90, - "name": "Get an Elite void top", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. Poggers elite void!", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5b/Elite_void_top.png?4b71c", - "assetImage": "Elite_void_top.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 13072, - "name": "Elite void top" - } - ], - "logCount": 1 - }, - "uuid": "59787c47-a249-48e3-8474-fc4d2ea9d0b6" - }, - { - "_id": 91, - "name": "Get an Elite void robe", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. Poggers elite void!", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/5/52/Elite_void_robe.png?96414", - "assetImage": "Elite_void_robe.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 13073, - "name": "Elite void robe" - } - ], - "logCount": 1 - }, - "uuid": "b5dec784-1812-4292-89ed-11921dcdd840" - }, - { - "_id": 92, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. This one time at Trouble Brewing...", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c2/Green_naval_shirt.png?25ba7", - "assetImage": "Green_naval_shirt.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 9 - }, - "uuid": "3b384fae-29ae-40c3-82f8-77cc3197b0ba" - }, - { - "_id": 93, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. This one time at Trouble Brewing...", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c2/Green_naval_shirt.png?25ba7", - "assetImage": "Green_naval_shirt.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 12 - }, - "uuid": "21633571-0c9a-4811-95e6-3ab190a71007" - }, - { - "_id": 94, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. This one time at Trouble Brewing...", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c2/Green_naval_shirt.png?25ba7", - "assetImage": "Green_naval_shirt.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 15 - }, - "uuid": "dff39c15-ac70-4507-af61-790a75909916" - }, - { - "_id": 95, - "name": "Get the Bronze fist flag", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. This one time at Trouble Brewing...", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/0/01/Bronze_fist_flag.png?8e198", - "assetImage": "Bronze_fist_flag.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8968, - "name": "Bronze fist flag" - } - ], - "logCount": 1 - }, - "uuid": "6c7ae054-1588-45bf-a53a-4b174a4e5d67" - }, - { - "_id": 96, - "name": "Get the Lucky shot flag", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. This one time at Trouble Brewing...", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "http://oldschool.runescape.wiki/images/b/bc/Lucky_shot_flag.png?f5de7", - "assetImage": "Lucky_shot_flag.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble_brewing", - "include": [ - { - "id": 8969, - "name": "Lucky shot flag" - } - ], - "logCount": 1 - }, - "uuid": "aad2c093-17f3-482f-a880-a10926d773d6" - }, - { - "_id": 97, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "champions_challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 4 - }, - "uuid": "63f46581-49f3-4e8d-b763-8c65057098a1" - }, - { - "_id": 98, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "champions_challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 5 - }, - "uuid": "22ed7773-afd1-4c0e-99a5-df04deab543e" - }, - { - "_id": 99, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "champions_challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 6 - }, - "uuid": "16f0a251-cb3c-48a3-b636-a9eaf28e99e2" - }, - { - "_id": 100, - "name": "Get 1 unique Elder chaos robe piece", - "tip": "Can be received as a drop from Elder Chaos Druids. Last one yay!", - "wikiLink": "https://oldschool.runescape.wiki/w/Elder_Chaos_druid", - "wikiImage": "https://oldschool.runescape.wiki/images/1/11/Elder_chaos_top.png?9163d", - "assetImage": "Elder_chaos_top.png", - "colLogData": { - "category": "Other", - "logName": "elder_chaos_druids", - "include": [ - { - "id": 20517, - "name": "Elder chaos top" - }, - { - "id": 20520, - "name": "Elder chaos robe" - }, - { - "id": 20595, - "name": "Elder chaos hood" - } - ], - "logCount": 3 - }, - "uuid": "cf091d1a-c25e-472b-9faf-95f906b342fb" - }, - { - "_id": 101, - "name": "Get the Ogre expert headpiece", - "tip": "Guarenteed from Chompy bird hunting. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_bird_hunting", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6a/Chompy_bird_hat_%28ogre_expert%29_detail.png?490fa", - "assetImage": "Chompy_bird_hat_ogre_expert_detail.png", - "colLogData": { - "category": "Other", - "logName": "chompy_bird_hunting", - "include": [ - { - "id": 2990, - "name": "Chompy bird hat (ogre expert)" - } - ], - "logCount": 1 - }, - "uuid": "4a9df3ae-7a23-4c65-a5c1-bb65d0c7d2a8" - }, - { - "_id": 102, - "name": "Get a unique from Demonic gorillas", - "tip": "Can be received as a drop from Demonic Gorillas(Murder Monkeys)", - "wikiLink": "https://oldschool.runescape.wiki/w/Demonic_gorilla", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e7/Zenyte_shard.png", - "assetImage": "Zenyte_shard.png", - "colLogData": { - "category": "Other", - "logName": "gloughs_experiments", - "include": [ - { - "id": 19529, - "name": "Zenyte shard" - }, - { - "id": 19586, - "name": "Light frame" - }, - { - "id": 19589, - "name": "Heavy frame" - }, - { - "id": 19592, - "name": "Ballista limbs" - }, - { - "id": 19601, - "name": "Ballista spring" - }, - { - "id": 19610, - "name": "Monkey tail" - } - ], - "logCount": 1 - }, - "uuid": "a8405552-9c92-4087-9cd3-44b320ce2753" - }, - { - "_id": 103, - "name": "Get a unique from Demonic gorillas", - "tip": "Can be received as a drop from Demonic Gorillas(Murder Monkeys)", - "wikiLink": "https://oldschool.runescape.wiki/w/Demonic_gorilla", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e7/Zenyte_shard.png", - "assetImage": "Zenyte_shard.png", - "colLogData": { - "category": "Other", - "logName": "gloughs_experiments", - "include": [ - { - "id": 19529, - "name": "Zenyte shard" - }, - { - "id": 19586, - "name": "Light frame" - }, - { - "id": 19589, - "name": "Heavy frame" - }, - { - "id": 19592, - "name": "Ballista limbs" - }, - { - "id": 19601, - "name": "Ballista spring" - }, - { - "id": 19610, - "name": "Monkey tail" - } - ], - "logCount": 2 - }, - "uuid": "840aab4b-539d-4875-9425-26ed8dc2ed73" - }, - { - "_id": 104, - "name": "Get a unique from Demonic gorillas", - "tip": "Can be received as a drop from Demonic Gorillas(Murder Monkeys)", - "wikiLink": "https://oldschool.runescape.wiki/w/Demonic_gorilla", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e7/Zenyte_shard.png", - "assetImage": "Zenyte_shard.png", - "colLogData": { - "category": "Other", - "logName": "gloughs_experiments", - "include": [ - { - "id": 19529, - "name": "Zenyte shard" - }, - { - "id": 19586, - "name": "Light frame" - }, - { - "id": 19589, - "name": "Heavy frame" - }, - { - "id": 19592, - "name": "Ballista limbs" - }, - { - "id": 19601, - "name": "Ballista spring" - }, - { - "id": 19610, - "name": "Monkey tail" - } - ], - "logCount": 3 - }, - "uuid": "2131f675-b101-46fc-9077-5b47c521c3f1" - }, - { - "_id": 105, - "name": "Get a unique from Demonic gorillas", - "tip": "Can be received as a drop from Demonic Gorillas(Murder Monkeys)", - "wikiLink": "https://oldschool.runescape.wiki/w/Demonic_gorilla", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e7/Zenyte_shard.png", - "assetImage": "Zenyte_shard.png", - "colLogData": { - "category": "Other", - "logName": "gloughs_experiments", - "include": [ - { - "id": 19529, - "name": "Zenyte shard" - }, - { - "id": 19586, - "name": "Light frame" - }, - { - "id": 19589, - "name": "Heavy frame" - }, - { - "id": 19592, - "name": "Ballista limbs" - }, - { - "id": 19601, - "name": "Ballista spring" - }, - { - "id": 19610, - "name": "Monkey tail" - } - ], - "logCount": 4 - }, - "uuid": "b71d6a65-b11f-4180-95ea-c6c438283228" - }, - { - "_id": 106, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 18 - }, - "uuid": "560b4526-eb2c-4cfe-bde2-69ac04ce036e" - }, - { - "_id": 107, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 20 - }, - "uuid": "210cb576-2cd7-4584-b8c1-19c370d03dff" - }, - { - "_id": 108, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 22 - }, - "uuid": "42ba515a-6fad-480b-96af-645e63483558" - }, - { - "_id": 109, - "name": "Get a Kurask head", - "tip": "Can be received as a drop from Kurask. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kurask_head", - "wikiImage": "https://oldschool.runescape.wiki/images/a/ae/Kurask_head.png?35d61", - "assetImage": "Kurask_head.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 7978, - "name": "Kurask head" - } - ], - "logCount": 1 - }, - "uuid": "05c2039e-e156-4699-94ea-1b32e270bac7" - }, - { - "_id": 110, - "name": "Get Dragon boots", - "tip": "Can be received as a drop from Spiritual Mages. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d7/Dragon_boots.png?e6499", - "assetImage": "Dragon_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 11840, - "name": "Dragon boots" - } - ], - "logCount": 1 - }, - "uuid": "a364ddd9-13b1-40d6-8424-22826b7da30a" - }, - { - "_id": 111, - "name": "Get a Dark bow", - "tip": "Can be received as a drop from Dark Beasts. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dark_bow", - "wikiImage": "https://oldschool.runescape.wiki/images/6/65/Dark_bow.png?05237", - "assetImage": "Dark_bow.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 11235, - "name": "Dark bow" - } - ], - "logCount": 1 - }, - "uuid": "b1c2db0b-401f-4b2c-8849-94b22d8eac33" - }, - { - "_id": 112, - "name": "Get 1 unique from Thermonuclear smoke devil", - "tip": "Can be received as a drop from the Thermonuclear Smoke Devil Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Thermonuclear_smoke_devil", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f7/Occult_necklace.png?30b38", - "assetImage": "Occult_necklace.png", - "colLogData": { - "category": "Bosses", - "logName": "thermonuclear_smoke_devil", - "include": [ - { - "id": 11998, - "name": "Smoke battlestaff" - }, - { - "id": 12002, - "name": "Occult necklace" - } - ], - "logCount": 1 - }, - "uuid": "bd133c8e-00c1-4319-871c-45fa383a605b" - }, - { - "_id": 113, - "name": "Get 1 unique Obsidian armour drop", - "tip": "Can be recevied as a drop from Tzhaar Kets in the inner section of Mor Ul Rek. Burst/Barraging them is the best method for obtaining. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Obsidian_armour", - "wikiImage": "https://oldschool.runescape.wiki/images/a/ac/Obsidian_platebody.png?db48b", - "assetImage": "Obsidian_platebody.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 21298, - "name": "Obsidian helmet" - }, - { - "id": 21301, - "name": "Obsidian platebody" - }, - { - "id": 21304, - "name": "Obsidian platelegs" - } - ], - "logCount": 1 - }, - "uuid": "2b450aa9-57b9-4c91-ab53-5decd02214a9" - }, - { - "_id": 114, - "name": "Get 1 unique Obsidian armour drop", - "tip": "Can be recevied as a drop from Tzhaar Kets in the inner section of Mor Ul Rek. Burst/Barraging them is the best method for obtaining. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Obsidian_armour", - "wikiImage": "https://oldschool.runescape.wiki/images/a/ac/Obsidian_platebody.png?db48b", - "assetImage": "Obsidian_platebody.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 21298, - "name": "Obsidian helmet" - }, - { - "id": 21301, - "name": "Obsidian platebody" - }, - { - "id": 21304, - "name": "Obsidian platelegs" - } - ], - "logCount": 2 - }, - "uuid": "5142b0ae-92ef-41ab-90a9-c66016e992fe" - }, - { - "_id": 115, - "name": "Get a Dragon warhammer", - "tip": "Can be received as a drop rarely, from Lizardmen Shaman.", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_warhammer", - "wikiImage": "http://oldschool.runescape.wiki/images/e/ea/Dragon_warhammer.png?27308", - "assetImage": "Dragon_warhammer.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 13576, - "name": "Dragon warhammer" - } - ], - "logCount": 1 - }, - "uuid": "4eec2d1c-7b24-4c7b-86c6-d67c189b8128" - }, - { - "_id": 116, - "name": "Get a Pharaoh's sceptre", - "tip": "Can be received as a drop from the Pyramid Plunder Theiving Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pharaoh%27s_sceptre", - "wikiImage": "https://oldschool.runescape.wiki/images/1/16/Pharaoh%27s_sceptre_%283%29.png?3b774", - "assetImage": "Pharaohs_sceptre_3.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 26945, - "name": "Pharaoh's sceptre (uncharged)" - } - ], - "logCount": 1 - }, - "uuid": "95471664-ca4f-476d-9c08-ab71d2077942" - }, - { - "_id": 117, - "name": "Get Chewed bones", - "tip": "Can be received as a drop from Mithril Dragons.", - "wikiLink": "https://oldschool.runescape.wiki/w/Chewed_bones", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3a/Chewed_bones.png?f5ba0", - "assetImage": "Chewed_bones.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 11338, - "name": "Chewed bones" - } - ], - "logCount": 1 - }, - "uuid": "fa0bca26-00b5-4fd5-b92c-d5add0813257" - }, - { - "_id": 118, - "name": "Get a Dragon spear", - "tip": "Can be received as a drop from the RDT. Killing Goraks with a Ring of Wealth a decent method.", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_spear", - "wikiImage": "https://oldschool.runescape.wiki/images/b/b0/Dragon_spear.png?6b699", - "assetImage": "Dragon_spear.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 1249, - "name": "Dragon spear" - } - ], - "logCount": 1 - }, - "uuid": "064452e1-5bbc-4835-bb58-0d5fa94d9e97" - }, - { - "_id": 119, - "name": "Get Expert mining gloves", - "tip": "Can be purchased as a reward in the Mining Guild. Two pairs of gloves and some minierals, ok Jamflex. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Expert_mining_gloves", - "wikiImage": "https://oldschool.runescape.wiki/images/e/e0/Expert_mining_gloves.png?16cb3", - "assetImage": "Expert_mining_gloves.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 21392, - "name": "Expert mining gloves" - } - ], - "logCount": 1 - }, - "uuid": "7bb58592-e85a-47b8-8a40-c0e0a9de3ab0" - }, - { - "_id": 120, - "name": "Complete the Ardougne Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ardougne_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "0adb8c5f-1f25-469f-a5ca-caeb72926555" - }, - { - "_id": 121, - "name": "Complete the Desert Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "6d862500-e957-438a-91d7-73afd64cbc94" - }, - { - "_id": 122, - "name": "Complete the Falador Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Falador_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "ac81b972-e058-4f1c-9a6d-6b584152018e" - }, - { - "_id": 123, - "name": "Complete the Fremennik Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Fremennik_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "ecf10542-a7dc-46a5-a104-1c2565775a0a" - }, - { - "_id": 124, - "name": "Complete the Kandarin Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kandarin_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "8eadf6a7-db23-4837-af73-353b46e7f154" - }, - { - "_id": 125, - "name": "Complete the Karamja Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Karamja_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "efb50bb9-4fca-4c74-b17a-2411f462c798" - }, - { - "_id": 126, - "name": "Complete the Kourend&Kebos Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kourend_%26_Kebos_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "cf47e5f2-f8b7-4e8f-94c9-578c405ad7ba" - }, - { - "_id": 127, - "name": "Complete the Lumbridge&Draynor Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Lumbridge_%26_Draynor_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "cf59d267-cfeb-4e20-91ce-083876b1393e" - }, - { - "_id": 128, - "name": "Complete the Morytania Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Morytania_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "ab6d1763-824a-42b5-b4f5-41b0e30f618a" - }, - { - "_id": 129, - "name": "Complete the Varrock Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Varrock_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "376f87f1-88c5-4180-abca-505cdaa542e4" - }, - { - "_id": 130, - "name": "Complete the Western Provinces Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Western_Provinces_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "6cad11a7-d40c-4a5e-962d-0387c9eb256b" - }, - { - "_id": 131, - "name": "Complete the Wilderness Hard Diary", - "tip": "Complete all the diary tasks.", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "4a1632cf-a847-43d9-884a-a43e135fdb76" - }, - { - "_id": 132, - "name": "Get Bryophyta's essence", - "tip": "Can be received as a drop from the Bryophyta Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Bryophyta%27s_essence", - "wikiImage": "http://oldschool.runescape.wiki/images/2/2e/Bryophyta%27s_essence.png?1b050", - "assetImage": "Bryophytas_essence.png", - "colLogData": { - "category": "Bosses", - "logName": "bryophyta", - "include": [ - { - "id": 22372, - "name": "Bryophyta's essence" - } - ], - "logCount": 1 - }, - "uuid": "e105c01f-2269-4dcc-8043-04b62a7f5d8e" - }, - { - "_id": 133, - "name": "Get a Sarachnis Cudgel", - "tip": "Can be received as a drop from the Sarachnis Boss. You can't make me go back to that hellish boss.", - "wikiLink": "https://oldschool.runescape.wiki/w/Sarachnis_cudgel", - "wikiImage": "https://oldschool.runescape.wiki/images/2/20/Sarachnis_cudgel.png?48053", - "assetImage": "Sarachnis_cudgel.png", - "colLogData": { - "category": "Bosses", - "logName": "sarachnis", - "include": [ - { - "id": 23528, - "name": "Sarachnis cudgel" - } - ], - "logCount": 1 - }, - "uuid": "c4d502d5-4857-452c-9df3-803aa8bbe6f4" - }, - { - "_id": 134, - "name": "Get 1 unique from the Gauntlet", - "tip": "Can be received as a drop from the Gauntlet. Been there done that. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Gauntlet", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f9/Blade_of_saeldor_%28inactive%29.png?d4723", - "assetImage": "Blade_of_saeldor_inactive.png", - "colLogData": { - "category": "Bosses", - "logName": "the_gauntlet", - "include": [ - { - "id": 23956, - "name": "Crystal armour seed" - }, - { - "id": 23959, - "name": "Enhanced crystal teleport seed" - }, - { - "id": 4207, - "name": "Crystal weapon seed" - } - ], - "logCount": 1 - }, - "uuid": "431fe883-14c3-4ac8-a8ce-c7db6b55b38c" - }, - { - "_id": 135, - "name": "Get 1 unique from the Gauntlet", - "tip": "Can be received as a drop from the Gauntlet. Anyone want some armour seeds?. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Gauntlet", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f9/Blade_of_saeldor_%28inactive%29.png?d4723", - "assetImage": "Blade_of_saeldor_inactive.png", - "colLogData": { - "category": "Bosses", - "logName": "the_gauntlet", - "include": [ - { - "id": 23956, - "name": "Crystal armour seed" - }, - { - "id": 23959, - "name": "Enhanced crystal teleport seed" - }, - { - "id": 4207, - "name": "Crystal weapon seed" - } - ], - "logCount": 2 - }, - "uuid": "3824589f-203b-414e-88e9-ff62e0780189" - }, - { - "_id": 136, - "name": "Get the Elven signet", - "tip": "Can be received as a drop whilst catching Crystal impings. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Elven_signet", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/d/d1/Elven_signet_detail.png/100px-Elven_signet_detail.png?b25c6", - "assetImage": "100px-Elven_signet_detail.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 23943, - "name": "Elven signet" - } - ], - "logCount": 1 - }, - "uuid": "9587a9a8-2820-4c8c-abe7-68e70ad98770" - }, - { - "_id": 137, - "name": "Get an Enhanced crystal teleport seed", - "tip": "Can be received as a drop whilst pick pocketing Elves in Prifddinas. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Enhanced_crystal_teleport_seed", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/5/54/Enhanced_crystal_teleport_seed_detail.png/80px-Enhanced_crystal_teleport_seed_detail.png?e34ce", - "assetImage": "80px-Enhanced_crystal_teleport_seed_detail.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 23959, - "name": "Enhanced crystal teleport seed" - } - ], - "logCount": 1 - }, - "uuid": "36137e21-5010-4760-9df0-cdf25ef34d9c" - }, - { - "_id": 138, - "name": "Get the Basilisk jaw", - "tip": "Can be received as a drop from Basalisk Knights. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Basilisk_jaw", - "wikiImage": "http://oldschool.runescape.wiki/images/thumb/a/a9/Basilisk_jaw_detail.png/130px-Basilisk_jaw_detail.png", - "assetImage": "130px-Basilisk_jaw_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 24268, - "name": "Basilisk jaw" - } - ], - "logCount": 1 - }, - "uuid": "90ca898a-a21c-4e12-9c1c-f3bda8396810" - }, - { - "_id": 139, - "name": "Get a shield left half", - "tip": "Can be received as a drop from the RDT. Killing Goraks with a Ring of Wealth is a decent method.", - "wikiLink": "https://oldschool.runescape.wiki/w/Shield_left_half", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f5/Shield_left_half_detail.png/120px-Shield_left_half_detail.png?b8402", - "assetImage": "120px-Shield_left_half_detail.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 2366, - "name": "Shield left half" - } - ], - "logCount": 1 - }, - "uuid": "fc6e069a-dc5c-43cb-8eba-724aabd799de" - }, - { - "_id": 140, - "name": "Get a Pirate's hook", - "tip": "Can be purchased as a reward from the Brimhaven Agility Arena.", - "wikiLink": "https://oldschool.runescape.wiki/w/Pirate%27s_hook", - "wikiImage": "https://oldschool.runescape.wiki/images/f/ff/Pirate%27s_hook.png?302fc", - "assetImage": "Pirates_hook.png", - "colLogData": { - "category": "Minigames", - "logName": "brimhaven_agility_arena", - "include": [ - { - "id": 2997, - "name": "Pirate's hook" - } - ], - "logCount": 1 - }, - "uuid": "77485df3-848e-4736-b85a-527ee4494c86" - }, - { - "_id": 141, - "name": "Get 2 uniques from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "hallowed_sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 2 - }, - "uuid": "5f44677a-8bcf-4e74-935f-731bdd4f5665" - }, - { - "_id": 142, - "name": "Get 2 uniques from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "hallowed_sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 4 - }, - "uuid": "f8e6c849-7599-48b4-809b-bb795632c74d" - }, - { - "_id": 143, - "name": "Get 2 uniques from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "hallowed_sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 6 - }, - "uuid": "5d8acede-1379-4bb6-a2af-da157c1bea37" - }, - { - "_id": 144, - "name": "Get 2 uniques from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "hallowed_sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 8 - }, - "uuid": "422732ad-4c87-4940-94b5-28086228b938" - }, - { - "_id": 145, - "name": "Get 2 uniques from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "hallowed_sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 10 - }, - "uuid": "1b7b8233-cc01-4fe3-9e2d-a723534caa03" - }, - { - "_id": 146, - "name": "Get 2 uniques from the Hallowed Sepulchre", - "tip": "Can be recevied as a drop / purchased from the Hallowed Sepulchre.", - "wikiLink": "https://oldschool.runescape.wiki/w/Hallowed_Sepulchre", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/b5/Hallowed_mark_detail.png/120px-Hallowed_mark_detail.png?1763e", - "assetImage": "120px-Hallowed_mark_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "hallowed_sepulchre", - "include": [ - { - "id": 24711, - "name": "Hallowed mark" - }, - { - "id": 24719, - "name": "Hallowed token" - }, - { - "id": 24721, - "name": "Hallowed grapple" - }, - { - "id": 24723, - "name": "Hallowed focus" - }, - { - "id": 24725, - "name": "Hallowed symbol" - }, - { - "id": 24727, - "name": "Hallowed hammer" - }, - { - "id": 24729, - "name": "Dark dye" - }, - { - "id": 24731, - "name": "Hallowed ring" - }, - { - "id": 24733, - "name": "Dark acorn" - }, - { - "id": 24740, - "name": "Strange old lockpick (full)" - }, - { - "id": 24763, - "name": "Mysterious page" - }, - { - "id": 24765, - "name": "Mysterious page" - }, - { - "id": 24767, - "name": "Mysterious page" - }, - { - "id": 24769, - "name": "Mysterious page" - }, - { - "id": 24771, - "name": "Mysterious page" - } - ], - "logCount": 12 - }, - "uuid": "6504c280-922b-4015-a41e-87428acfd4d2" - }, - { - "_id": 147, - "name": "Unlock 2 monkey backpack transformations", - "tip": "Unlocked after many laps on the Ape Atoll Agility course. Only after completion of Monkey Madness II.", - "wikiLink": "https://oldschool.runescape.wiki/w/Monkey_(Monkey_Madness_II)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Monkey_%28Monkey_Madness_II%29_detail.png/1280px-Monkey_%28Monkey_Madness_II%29_detail.png?88b6b", - "assetImage": "1280px-Monkey_Monkey_Madness_II_detail.png", - "colLogData": { - "category": "Other", - "logName": "monkey_backpacks", - "include": [ - { - "id": 24862, - "name": "Karamjan monkey (item)" - }, - { - "id": 24863, - "name": "Zombie monkey (item)" - }, - { - "id": 24864, - "name": "Maniacal monkey (item)" - }, - { - "id": 24865, - "name": "Skeleton monkey (item)" - }, - { - "id": 24866, - "name": "Kruk jr" - }, - { - "id": 24867, - "name": "Princely monkey" - } - ], - "logCount": 2 - }, - "uuid": "303e12d3-1072-4b2f-bf31-11fe997fcadf" - }, - { - "_id": 148, - "name": "Unlock 2 monkey backpack transformations", - "tip": "Unlocked after many laps on the Ape Atoll Agility course. Only after completion of Monkey Madness II.", - "wikiLink": "https://oldschool.runescape.wiki/w/Monkey_(Monkey_Madness_II)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Monkey_%28Monkey_Madness_II%29_detail.png/1280px-Monkey_%28Monkey_Madness_II%29_detail.png?88b6b", - "assetImage": "1280px-Monkey_Monkey_Madness_II_detail.png", - "colLogData": { - "category": "Other", - "logName": "monkey_backpacks", - "include": [ - { - "id": 24862, - "name": "Karamjan monkey (item)" - }, - { - "id": 24863, - "name": "Zombie monkey (item)" - }, - { - "id": 24864, - "name": "Maniacal monkey (item)" - }, - { - "id": 24865, - "name": "Skeleton monkey (item)" - }, - { - "id": 24866, - "name": "Kruk jr" - }, - { - "id": 24867, - "name": "Princely monkey" - } - ], - "logCount": 4 - }, - "uuid": "432bd845-b1d9-47cf-b1e4-c236ee824a0e" - }, - { - "_id": 149, - "name": "Unlock 2 monkey backpack transformations", - "tip": "Unlocked after many laps on the Ape Atoll Agility course. Only after completion of Monkey Madness II.", - "wikiLink": "https://oldschool.runescape.wiki/w/Monkey_(Monkey_Madness_II)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/9/97/Monkey_%28Monkey_Madness_II%29_detail.png/1280px-Monkey_%28Monkey_Madness_II%29_detail.png?88b6b", - "assetImage": "1280px-Monkey_Monkey_Madness_II_detail.png", - "colLogData": { - "category": "Other", - "logName": "monkey_backpacks", - "include": [ - { - "id": 24862, - "name": "Karamjan monkey (item)" - }, - { - "id": 24863, - "name": "Zombie monkey (item)" - }, - { - "id": 24864, - "name": "Maniacal monkey (item)" - }, - { - "id": 24865, - "name": "Skeleton monkey (item)" - }, - { - "id": 24866, - "name": "Kruk jr" - }, - { - "id": 24867, - "name": "Princely monkey" - } - ], - "logCount": 6 - }, - "uuid": "7f477574-08e7-4914-856c-71e37d5e97f5" - }, - { - "_id": 150, - "name": "Get Amy's saw", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/8/89/Amy%27s_saw_detail.png/1024px-Amy%27s_saw_detail.png?ea54c", - "assetImage": "1024px-Amys_saw_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 24880, - "name": "Amy's saw" - } - ], - "logCount": 1 - }, - "uuid": "99c41fa2-ba74-47b7-a960-1c24d3ace628" - }, - { - "_id": 151, - "name": "Get 1 piece of Carpenter equipment", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f5/Carpenter%27s_shirt_detail.png/1280px-Carpenter%27s_shirt_detail.png?2c3c1", - "assetImage": "1280px-Carpenters_shirt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 24872, - "name": "Carpenter's helmet" - }, - { - "id": 24874, - "name": "Carpenter's shirt" - }, - { - "id": 24876, - "name": "Carpenter's trousers" - }, - { - "id": 24878, - "name": "Carpenter's boots" - } - ], - "logCount": 3 - }, - "uuid": "8a1cb3f7-4e54-46b8-a0ea-a6ac671d3101" - }, - { - "_id": 152, - "name": "Get 1 piece of Carpenter equipment", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f5/Carpenter%27s_shirt_detail.png/1280px-Carpenter%27s_shirt_detail.png?2c3c1", - "assetImage": "1280px-Carpenters_shirt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 24872, - "name": "Carpenter's helmet" - }, - { - "id": 24874, - "name": "Carpenter's shirt" - }, - { - "id": 24876, - "name": "Carpenter's trousers" - }, - { - "id": 24878, - "name": "Carpenter's boots" - } - ], - "logCount": 4 - }, - "uuid": "91995980-a7be-462a-b769-0c7d877c5aef" - }, - { - "_id": 153, - "name": "Get a Blood shard", - "tip": "Can be received as a drop whilst killing Vyrewatch Sentinels / Pick pocketing Vyre. Killing is pretty chill. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Blood_shard", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/b/bf/Blood_shard_detail.png/100px-Blood_shard_detail.png?2fbc7", - "assetImage": "100px-Blood_shard_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 24777, - "name": "Blood shard" - } - ], - "logCount": 1 - }, - "uuid": "e5ecf427-c9e0-4fc1-ac0c-7abdac9aaa50" - }, - { - "_id": 154, - "name": "Get a Soul cape", - "tip": "Can be purchased as a reward from the Soul Wars Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Soul_cape", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/1/17/Soul_cape_%28red%29_detail.png/100px-Soul_cape_%28red%29_detail.png?ef564", - "assetImage": "100px-Soul_cape_red_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "soul_wars", - "include": [ - { - "id": 25346, - "name": "Soul cape" - } - ], - "logCount": 1 - }, - "uuid": "c218c18f-a9d2-462d-9e64-d5ffab12f418" - }, - { - "_id": 155, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 6 - }, - "uuid": "415a866e-89db-4f17-95f4-7887c29c3ace" - }, - { - "_id": 156, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 7 - }, - "uuid": "adcae074-ffe8-4969-8604-829a59ca5795" - }, - { - "_id": 157, - "name": "Get a new dark bow paint from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/73/Yellow_dark_bow_paint_detail.png/120px-Yellow_dark_bow_paint_detail.png?c6c2d", - "assetImage": "120px-Yellow_dark_bow_paint_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12757, - "name": "Blue dark bow paint" - }, - { - "id": 12759, - "name": "Green dark bow paint" - }, - { - "id": 12761, - "name": "Yellow dark bow paint" - }, - { - "id": 12763, - "name": "White dark bow paint" - } - ], - "logCount": 1 - }, - "uuid": "1cf06859-ff55-476e-9387-80ca82f480ca" - }, - { - "_id": 158, - "name": "Get a new dark bow paint from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/73/Yellow_dark_bow_paint_detail.png/120px-Yellow_dark_bow_paint_detail.png?c6c2d", - "assetImage": "120px-Yellow_dark_bow_paint_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12757, - "name": "Blue dark bow paint" - }, - { - "id": 12759, - "name": "Green dark bow paint" - }, - { - "id": 12761, - "name": "Yellow dark bow paint" - }, - { - "id": 12763, - "name": "White dark bow paint" - } - ], - "logCount": 2 - }, - "uuid": "5407a890-c3dd-4453-96a2-59f97fc98479" - }, - { - "_id": 159, - "name": "Get a new dark bow paint from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/73/Yellow_dark_bow_paint_detail.png/120px-Yellow_dark_bow_paint_detail.png?c6c2d", - "assetImage": "120px-Yellow_dark_bow_paint_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12757, - "name": "Blue dark bow paint" - }, - { - "id": 12759, - "name": "Green dark bow paint" - }, - { - "id": 12761, - "name": "Yellow dark bow paint" - }, - { - "id": 12763, - "name": "White dark bow paint" - } - ], - "logCount": 3 - }, - "uuid": "11f65391-8e33-49dc-bd81-47744eb34ed9" - }, - { - "_id": 160, - "name": "Get a new dark bow paint from LMS", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/73/Yellow_dark_bow_paint_detail.png/120px-Yellow_dark_bow_paint_detail.png?c6c2d", - "assetImage": "120px-Yellow_dark_bow_paint_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12757, - "name": "Blue dark bow paint" - }, - { - "id": 12759, - "name": "Green dark bow paint" - }, - { - "id": 12761, - "name": "Yellow dark bow paint" - }, - { - "id": 12763, - "name": "White dark bow paint" - } - ], - "logCount": 4 - }, - "uuid": "2a5428a2-a6a5-44fd-ad89-d8bb4d1cf516" - }, - { - "_id": 161, - "name": "Get a Volcanic mine teleport", - "tip": "Can be purchased as a reward from the Volcanic Mine Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Volcanic_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/e/ed/Volcanic_mine_teleport_detail.png/150px-Volcanic_mine_teleport_detail.png?1ea3e", - "assetImage": "150px-Volcanic_mine_teleport_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "volcanic_mine", - "include": [ - { - "id": 21541, - "name": "Volcanic mine teleport" - } - ], - "logCount": 1 - }, - "uuid": "a06faa16-1d31-44bc-9e38-df68f1e59c6b" - }, - { - "_id": 162, - "name": "Get a Heat-proof vessel", - "tip": "Can be purchased as a reward from the Volcanic Mine Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Volcanic_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/5/5b/Heat-proof_vessel_detail.png/140px-Heat-proof_vessel_detail.png?50ba1", - "assetImage": "140px-Heat-proof_vessel_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "volcanic_mine", - "include": [ - { - "id": 25615, - "name": "Large water container" - } - ], - "logCount": 1 - }, - "uuid": "bc2a8bdc-c562-480d-bca7-ea8727114dbe" - }, - { - "_id": 163, - "name": "Get the Ash covered tome", - "tip": "Can be purchased as a reward from the Volcanic Mine Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Volcanic_Mine", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/71/Ash_covered_tome_detail.png/130px-Ash_covered_tome_detail.png?0dd49", - "assetImage": "130px-Ash_covered_tome_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "volcanic_mine", - "include": [ - { - "id": 21697, - "name": "Ash covered tome" - } - ], - "logCount": 1 - }, - "uuid": "85ab6e99-1f53-415a-94fd-7295bac9b61d" - }, - { - "_id": 164, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 10 - }, - "uuid": "3cf7a2dc-4f53-42e0-a838-c9a312ff60e6" - }, - { - "_id": 165, - "name": "Get a Vial of blood (from Story mode ToB)", - "tip": "Can be received as a reward from the Theatre of Blood Story/Entry Mode.", - "wikiLink": "https://oldschool.runescape.wiki/w/Theatre_of_Blood/Entry_Mode", - "wikiImage": "http://oldschool.runescape.wiki/images/3/3d/Vial_of_blood.png?0987d", - "assetImage": "Vial_of_blood.png", - "colLogData": { - "category": "Raids", - "logName": "theatre_of_blood", - "include": [ - { - "id": 22446, - "name": "Vial of blood" - } - ], - "logCount": 1 - }, - "uuid": "5a4fd126-9c0c-4031-a612-8b8615c57708" - }, - { - "_id": 166, - "name": "Get a unique Egg Sac from the Grubby Chest", - "tip": "Can be received as a drop whilst opening the Grubby Chest in the Forthos Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grubby_Chest", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/2/28/Grubby_key_detail.png/130px-Grubby_key_detail.png?21191", - "assetImage": "130px-Grubby_key_detail.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 25844, - "name": "Orange egg sac" - }, - { - "id": 25846, - "name": "Blue egg sac" - } - ], - "logCount": 1 - }, - "uuid": "22f78944-084d-4f04-a107-efc2c7005f02" - }, - { - "_id": 167, - "name": "Get a unique Egg Sac from the Grubby Chest", - "tip": "Can be received as a drop whilst opening the Grubby Chest in the Forthos Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grubby_Chest", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/2/28/Grubby_key_detail.png/130px-Grubby_key_detail.png?21191", - "assetImage": "130px-Grubby_key_detail.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 25844, - "name": "Orange egg sac" - }, - { - "id": 25846, - "name": "Blue egg sac" - } - ], - "logCount": 2 - }, - "uuid": "aaf61de0-1bfd-4292-8696-c04f354a3ad0" - }, - { - "_id": 168, - "name": "Get 1 unique Nihil shard / Ceremonial robe piece", - "tip": "Can be received as a drop whilst killing Ancient Creatures in the God Wars Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_Prison", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_ceremonial_top_detail.png/150px-Ancient_ceremonial_top_detail.png?87a43", - "assetImage": "Ancient_ceremonial_top.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 26221, - "name": "Ancient ceremonial top" - }, - { - "id": 26223, - "name": "Ancient ceremonial legs" - }, - { - "id": 26225, - "name": "Ancient ceremonial mask" - }, - { - "id": 26227, - "name": "Ancient ceremonial gloves" - }, - { - "id": 26229, - "name": "Ancient ceremonial boots" - }, - { - "id": 26231, - "name": "Nihil shard" - } - ], - "logCount": 1 - }, - "uuid": "22cbded8-bdc1-4ec4-8f97-3e2b55ea2590" - }, - { - "_id": 169, - "name": "Get 1 unique Nihil shard / Ceremonial robe piece", - "tip": "Can be received as a drop whilst killing Ancient Creatures in the God Wars Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_Prison", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_ceremonial_top_detail.png/150px-Ancient_ceremonial_top_detail.png?87a43", - "assetImage": "Ancient_ceremonial_top.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 26221, - "name": "Ancient ceremonial top" - }, - { - "id": 26223, - "name": "Ancient ceremonial legs" - }, - { - "id": 26225, - "name": "Ancient ceremonial mask" - }, - { - "id": 26227, - "name": "Ancient ceremonial gloves" - }, - { - "id": 26229, - "name": "Ancient ceremonial boots" - }, - { - "id": 26231, - "name": "Nihil shard" - } - ], - "logCount": 2 - }, - "uuid": "c940807b-aa81-4bfc-8cc1-b31df1588ec2" - }, - { - "_id": 170, - "name": "Get 1 unique Nihil shard / Ceremonial robe piece", - "tip": "Can be received as a drop whilst killing Ancient Creatures in the God Wars Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_Prison", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_ceremonial_top_detail.png/150px-Ancient_ceremonial_top_detail.png?87a43", - "assetImage": "Ancient_ceremonial_top.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 26221, - "name": "Ancient ceremonial top" - }, - { - "id": 26223, - "name": "Ancient ceremonial legs" - }, - { - "id": 26225, - "name": "Ancient ceremonial mask" - }, - { - "id": 26227, - "name": "Ancient ceremonial gloves" - }, - { - "id": 26229, - "name": "Ancient ceremonial boots" - }, - { - "id": 26231, - "name": "Nihil shard" - } - ], - "logCount": 3 - }, - "uuid": "69370c5b-b5ac-4ceb-8b7c-3cdc8c8b24a8" - }, - { - "_id": 171, - "name": "Get 1 unique Nihil shard / Ceremonial robe piece", - "tip": "Can be received as a drop whilst killing Ancient Creatures in the God Wars Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_Prison", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_ceremonial_top_detail.png/150px-Ancient_ceremonial_top_detail.png?87a43", - "assetImage": "Ancient_ceremonial_top.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 26221, - "name": "Ancient ceremonial top" - }, - { - "id": 26223, - "name": "Ancient ceremonial legs" - }, - { - "id": 26225, - "name": "Ancient ceremonial mask" - }, - { - "id": 26227, - "name": "Ancient ceremonial gloves" - }, - { - "id": 26229, - "name": "Ancient ceremonial boots" - }, - { - "id": 26231, - "name": "Nihil shard" - } - ], - "logCount": 4 - }, - "uuid": "b7274190-a159-4be0-b5bb-aa10d04de978" - }, - { - "_id": 172, - "name": "Get 1 unique Nihil shard / Ceremonial robe piece", - "tip": "Can be received as a drop whilst killing Ancient Creatures in the God Wars Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_Prison", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_ceremonial_top_detail.png/150px-Ancient_ceremonial_top_detail.png?87a43", - "assetImage": "Ancient_ceremonial_top.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 26221, - "name": "Ancient ceremonial top" - }, - { - "id": 26223, - "name": "Ancient ceremonial legs" - }, - { - "id": 26225, - "name": "Ancient ceremonial mask" - }, - { - "id": 26227, - "name": "Ancient ceremonial gloves" - }, - { - "id": 26229, - "name": "Ancient ceremonial boots" - }, - { - "id": 26231, - "name": "Nihil shard" - } - ], - "logCount": 5 - }, - "uuid": "aebcf71c-c7a5-448f-be23-aae56a3514a6" - }, - { - "_id": 173, - "name": "Get 1 unique Nihil shard / Ceremonial robe piece", - "tip": "Can be received as a drop whilst killing Ancient Creatures in the God Wars Dungeon. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_Prison", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_ceremonial_top_detail.png/150px-Ancient_ceremonial_top_detail.png?87a43", - "assetImage": "Ancient_ceremonial_top.png", - "colLogData": { - "category": "Bosses", - "logName": "nex", - "include": [ - { - "id": 26221, - "name": "Ancient ceremonial top" - }, - { - "id": 26223, - "name": "Ancient ceremonial legs" - }, - { - "id": 26225, - "name": "Ancient ceremonial mask" - }, - { - "id": 26227, - "name": "Ancient ceremonial gloves" - }, - { - "id": 26229, - "name": "Ancient ceremonial boots" - }, - { - "id": 26231, - "name": "Nihil shard" - } - ], - "logCount": 1 - }, - "uuid": "0853df5c-a949-456b-ba27-585c83f4ff7b" - }, - { - "_id": 174, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 9 - }, - "uuid": "d1ad46ae-91a6-4c1e-ab62-874c5c876a46" - }, - { - "_id": 175, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 10 - }, - "uuid": "914fb7b1-0b9c-4e15-96ad-601b5fffa399" - }, - { - "_id": 176, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 11 - }, - "uuid": "ce2dde4a-10f5-4e28-84ff-03674459fb62" - }, - { - "_id": 177, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 12 - }, - "uuid": "f1dfd180-f10e-4c39-bbcf-4fd1a9147bf9" - }, - { - "_id": 178, - "name": "Get a Colossal blade", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Colossal_blade_detail.png/130px-Colossal_blade_detail.png?f0ac1", - "assetImage": "Colossal_blade_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27021, - "name": "Colossal blade" - } - ], - "logCount": 1 - }, - "uuid": "98789fec-0280-4b8e-8293-3e7059c15591" - }, - { - "_id": 179, - "name": "Get 1 unique from Tombs of Amascut", - "tip": "Can be received as a reqard from the Tombs of Amascut Raid", - "wikiLink": "https://oldschool.runescape.wiki/w/Tombs_of_Amascut", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Thread_of_elidinis_detail.png/120px-Thread_of_elidinis_detail.png?41e87", - "assetImage": "Thread_of_elidinis.png", - "colLogData": { - "category": "Raids", - "logName": "tombs_of_amascut", - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - } - ], - "logCount": 1 - }, - "uuid": "d5f35911-b2df-4508-99fa-9aebfecb7e6b" - }, - { - "_id": 180, - "name": "Get 1 unique from Tombs of Amascut", - "tip": "Can be received as a reqard from the Tombs of Amascut Raid", - "wikiLink": "https://oldschool.runescape.wiki/w/Tombs_of_Amascut", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Thread_of_elidinis_detail.png/120px-Thread_of_elidinis_detail.png?41e87", - "assetImage": "Thread_of_elidinis.png", - "colLogData": { - "category": "Raids", - "logName": "tombs_of_amascut", - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - } - ], - "logCount": 2 - }, - "uuid": "72da9fab-1793-46ae-99b2-6da8b08690db" - }, - { - "_id": 181, - "name": "Get 1 unique from Tombs of Amascut", - "tip": "Can be received as a reqard from the Tombs of Amascut Raid", - "wikiLink": "https://oldschool.runescape.wiki/w/Tombs_of_Amascut", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Thread_of_elidinis_detail.png/120px-Thread_of_elidinis_detail.png?41e87", - "assetImage": "Thread_of_elidinis.png", - "colLogData": { - "category": "Raids", - "logName": "tombs_of_amascut", - "include": [ - { - "id": 27277, - "name": "Tumeken's shadow (uncharged)" - }, - { - "id": 25985, - "name": "Elidinis' ward" - }, - { - "id": 27226, - "name": "Masori mask" - }, - { - "id": 27229, - "name": "Masori body" - }, - { - "id": 27232, - "name": "Masori chaps" - }, - { - "id": 25975, - "name": "Lightbearer" - }, - { - "id": 26219, - "name": "Osmumten's fang" - }, - { - "id": 27279, - "name": "Thread of elidinis" - }, - { - "id": 27283, - "name": "Breach of the scarab" - }, - { - "id": 27285, - "name": "Eye of the corruptor" - }, - { - "id": 27289, - "name": "Jewel of the sun" - }, - { - "id": 30893, - "name": "Jewel of Amascut" - }, - { - "id": 27293, - "name": "Cache of runes" - } - ], - "logCount": 3 - }, - "uuid": "64e35755-e178-494a-890d-a31e236bcbe2" - }, - { - "_id": 182, - "name": "Get 1 unique from the Phantom Muspah", - "tip": "Can be received a drop from Phantom Muspah Boss", - "wikiLink": "https://oldschool.runescape.wiki/w/Phantom_Muspah", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_essence_500_detail.png/130px-Ancient_essence_500_detail.png", - "assetImage": "Ancient_essence_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "phantom_muspah", - "include": [ - { - "id": 27614, - "name": "Venator shard" - }, - { - "id": 27616, - "name": "Ancient essence" - }, - { - "id": 27622, - "name": "Frozen cache" - }, - { - "id": 27627, - "name": "Ancient icon" - } - ], - "logCount": 1 - }, - "uuid": "e0ff91a7-4f46-4393-8597-fb9cecbe1753" - }, - { - "_id": 183, - "name": "Get 1 unique from the Phantom Muspah", - "tip": "Can be received a drop from Phantom Muspah Boss", - "wikiLink": "https://oldschool.runescape.wiki/w/Phantom_Muspah", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Ancient_essence_500_detail.png/130px-Ancient_essence_500_detail.png", - "assetImage": "Ancient_essence_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "phantom_muspah", - "include": [ - { - "id": 27614, - "name": "Venator shard" - }, - { - "id": 27616, - "name": "Ancient essence" - }, - { - "id": 27622, - "name": "Frozen cache" - }, - { - "id": 27627, - "name": "Ancient icon" - } - ], - "logCount": 2 - }, - "uuid": "bad0e4d9-4a7f-4224-8a6c-001a7e357573" - }, - { - "_id": 184, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 11 - }, - "uuid": "97e11a1b-96ab-4320-972f-44c0cb64310e" - }, - { - "_id": 185, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 12 - }, - "uuid": "429618d6-ae22-4820-a399-949a609c7d00" - }, - { - "_id": 186, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 13 - }, - "uuid": "336d1bbe-44a3-459d-b1e4-c45fc7443d6e" - }, - { - "_id": 187, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 5 - }, - "uuid": "a1c9589f-b3fc-4d8a-bff1-e56fa3dd06a7" - }, - { - "_id": 188, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 6 - }, - "uuid": "79ca59fb-82dc-4fc2-b2ff-bd29554582c8" - }, - { - "_id": 189, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 7 - }, - "uuid": "5cac1341-3a12-4c0f-8f8c-7b5f8dd02578" - }, - { - "_id": 190, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 8 - }, - "uuid": "08d5bc91-8a6e-40a5-a8eb-e47719a5325e" - }, - { - "_id": 191, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 9 - }, - "uuid": "b6933cf1-e976-418d-b3b5-dafad4552ed5" - }, - { - "_id": 192, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 10 - }, - "uuid": "ed9a63d5-62a2-46df-a437-57c47661d1e4" - }, - { - "_id": 193, - "name": "Get 1 unique from the Hunter Guild", - "tip": "Received as a drop when completing Hunters Rumours", - "wikiLink": "https://oldschool.runescape.wiki/w/Hunter_Guild#Other", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Guild_hunter_top_detail.png/200px-Guild_hunter_top_detail.png", - "assetImage": "guild_hunter_top.png", - "colLogData": { - "category": "Other", - "logName": "hunter_guild", - "include": [ - { - "id": 29309, - "name": "Huntsman's kit" - }, - { - "id": 29263, - "name": "Guild hunter headwear" - }, - { - "id": 29265, - "name": "Guild hunter top" - }, - { - "id": 29267, - "name": "Guild hunter legs" - }, - { - "id": 29269, - "name": "Guild hunter boots" - } - ], - "logCount": 4 - }, - "uuid": "a68e2ee5-4468-4fc2-98a1-c3de797ff7c2" - }, - { - "_id": 194, - "name": "Get 1 unique from the Hunter Guild", - "tip": "Received as a drop when completing Hunters Rumours", - "wikiLink": "https://oldschool.runescape.wiki/w/Hunter_Guild#Other", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Guild_hunter_top_detail.png/200px-Guild_hunter_top_detail.png", - "assetImage": "guild_hunter_top.png", - "colLogData": { - "category": "Other", - "logName": "hunter_guild", - "include": [ - { - "id": 29309, - "name": "Huntsman's kit" - }, - { - "id": 29263, - "name": "Guild hunter headwear" - }, - { - "id": 29265, - "name": "Guild hunter top" - }, - { - "id": 29267, - "name": "Guild hunter legs" - }, - { - "id": 29269, - "name": "Guild hunter boots" - } - ], - "logCount": 5 - }, - "uuid": "80a0f818-172e-4f4b-8b07-ac56cc8847d0" - }, - { - "_id": 195, - "name": "Obtain Sunfire splinters", - "tip": "Reward from Fortis Colosseum or from hunting Sunfire Antelope", - "wikiLink": "https://oldschool.runescape.wiki/w/Sunfire_splinters", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Sunfire_splinters_4_detail.png/260px-Sunfire_splinters_4_detail.png?a1a45", - "assetImage": "sunfire_splinters.png", - "colLogData": { - "category": "Bosses", - "logName": "fortis_colosseum", - "include": [ - { - "id": 28924, - "name": "Sunfire splinters" - } - ], - "logCount": 1 - }, - "uuid": "c3054a3e-d80c-40e6-9039-bee7e64055ed" - }, - { - "_id": 196, - "name": "Get 1 unique from Tormented Demons", - "tip": "Can be obtained when killing Tormented Demons", - "wikiLink": "https://oldschool.runescape.wiki/w/Tormented_demon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Tormented_synapse_detail.png/200px-Tormented_synapse_detail.png", - "assetImage": "tormented_synapse.png", - "colLogData": { - "category": "Other", - "logName": "tormented_demons", - "include": [ - { - "id": 29574, - "name": "Burning claw" - }, - { - "id": 29580, - "name": "Tormented synapse" - }, - { - "id": 29684, - "name": "Guthixian temple teleport" - } - ], - "logCount": 1 - }, - "uuid": "bd3ca60d-55ca-4155-9af7-ab86e6fc8887" - }, - { - "_id": 197, - "name": "Get 1 unique from Tormented Demons", - "tip": "Can be obtained when killing Tormented Demons", - "wikiLink": "https://oldschool.runescape.wiki/w/Tormented_demon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Tormented_synapse_detail.png/200px-Tormented_synapse_detail.png", - "assetImage": "tormented_synapse.png", - "colLogData": { - "category": "Other", - "logName": "tormented_demons", - "include": [ - { - "id": 29574, - "name": "Burning claw" - }, - { - "id": 29580, - "name": "Tormented synapse" - }, - { - "id": 29684, - "name": "Guthixian temple teleport" - } - ], - "logCount": 2 - }, - "uuid": "d1380a3b-5963-4ddf-94a0-b040b93c7765" - }, - { - "_id": 999, - "name": "Get 1 unique from Tormented Demons", - "tip": "Can be obtained when killing Tormented Demons", - "wikiLink": "https://oldschool.runescape.wiki/w/Tormented_demon", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Tormented_synapse_detail.png/200px-Tormented_synapse_detail.png", - "assetImage": "tormented_synapse.png", - "colLogData": { - "category": "Other", - "logName": "Tormented Demons", - "include": [ - { - "id": 29574, - "name": "Burning claw" - }, - { - "id": 29580, - "name": "Tormented synapse" - }, - { - "id": 29684, - "name": "Guthixian temple teleport" - } - ], - "logCount": 3 - }, - "uuid": "1b5ff8e4-3cef-4d3a-8476-2091a0aac5b6" - }, - { - "_id": 198, - "name": "Get the Aranea Boots", - "tip": "Can be obtained when killing Araxytes, with 2.5x drop chance when on task!", - "wikiLink": "https://oldschool.runescape.wiki/w/Aranea_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Aranea_boots_detail.png/200px-Aranea_boots_detail.png", - "assetImage": "aranea_boots_detail.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [], - "include": [ - { - "id": 29806, - "name": "Aranea boots" - } - ], - "logCount": 1 - }, - "uuid": "9d7b0542-d31c-476a-afad-58541e4674bd" - }, - { - "_id": 199, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 1 - }, - "uuid": "f18930cd-ae0d-4a50-8ed2-85eba8818d4c" - }, - { - "_id": 200, - "name": "Get 1 unique from Araxytes/Araxxor", - "tip": "Can be obtained when killing Araxytes/Araxxor", - "wikiLink": "https://oldschool.runescape.wiki/w/Araxxor", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Araxyte_fang_detail.png/200px-Araxyte_fang_detail.png", - "assetImage": "araxxor_fang.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 2 - }, - "uuid": "47401a36-f294-4a8a-8efe-29864a93c7f1" - }, - { - "_id": 201, - "name": "Get a Wyrm/Brimhaven graceful recolor", - "tip": "Obtained through Brimhaven agility course or Wyrm agility course. Taskers have to replace their current gracecful for the 2nd task, so which set you like more should be grinded last.", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "https://oldschool.runescape.wiki/images/Graceful_crafting_kit_detail.png?37b7e", - "assetImage": "Graceful_crafting_kit_detail.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Colossal Wyrm Agility" - }, - { - "category": "Minigames", - "logName": "Brimhaven Agility Arena" - } - ], - "include": [ - { - "id": 21061, - "name": "Graceful hood (Agility Arena)" - }, - { - "id": 21064, - "name": "Graceful cape (Agility Arena)" - }, - { - "id": 21067, - "name": "Graceful top (Agility Arena)" - }, - { - "id": 21070, - "name": "Graceful legs (Agility Arena)" - }, - { - "id": 21073, - "name": "Graceful gloves (Agility Arena)" - }, - { - "id": 21076, - "name": "Graceful boots (Agility Arena)" - }, - { - "id": 30045, - "name": "Graceful hood (Varlamore)" - }, - { - "id": 30048, - "name": "Graceful cape (Varlamore)" - }, - { - "id": 30051, - "name": "Graceful top (Varlamore)" - }, - { - "id": 30054, - "name": "Graceful legs (Varlamore)" - }, - { - "id": 30057, - "name": "Graceful gloves (Varlamore)" - }, - { - "id": 30060, - "name": "Graceful boots (Varlamore)" - } - ], - "logCount": 6 - }, - "uuid": "29bcf213-8476-4f13-a8b0-642115b866a9" - }, - { - "_id": 202, - "name": "Get the Prescription goggles", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/Prescription_goggles_%28unfocused%29_detail.png?fa107", - "assetImage": "Prescription_goggles_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Mastering Mixology", - "include": [ - { - "id": 29974, - "name": "Prescription goggles" - } - ], - "logCount": 1 - }, - "uuid": "3280fa0a-607c-4850-a2a1-6562e6a5873a" - }, - { - "_id": 203, - "name": "Get the Alchemist's amulet", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/Alchemist%27s_amulet_%28uncharged%29_detail.png?5c175", - "assetImage": "Alchemist's_amulet_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "Mastering Mixology", - "include": [ - { - "id": 29992, - "name": "Alchemist's amulet" - } - ], - "logCount": 1 - }, - "uuid": "2bc56de3-02e8-464a-9d22-0ab2132fa6fd" - }, - { - "_id": 204, - "name": "Get 1 unique from the Hueycoatl", - "tip": "Obtained by killing The Hueycoatl", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Hueycoatl", - "wikiImage": "https://oldschool.runescape.wiki/images/Dragon_hunter_wand_detail.png?a3e16", - "assetImage": "Dragon_hunter_wand_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "The Hueycoatl", - "include": [ - { - "id": 30066, - "name": "Tome of earth (empty)" - }, - { - "id": 30068, - "name": "Soiled page" - }, - { - "id": 30070, - "name": "Dragon hunter wand" - }, - { - "id": 30085, - "name": "Hueycoatl hide" - } - ], - "logCount": 1 - }, - "uuid": "61a10400-1e3e-405e-9b12-1c8feb4981dc" - }, - { - "_id": 205, - "name": "Get 1 unique from the Hueycoatl", - "tip": "Obtained by killing The Hueycoatl", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Hueycoatl", - "wikiImage": "https://oldschool.runescape.wiki/images/Dragon_hunter_wand_detail.png?a3e16", - "assetImage": "Dragon_hunter_wand_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "The Hueycoatl", - "include": [ - { - "id": 30066, - "name": "Tome of earth (empty)" - }, - { - "id": 30068, - "name": "Soiled page" - }, - { - "id": 30070, - "name": "Dragon hunter wand" - }, - { - "id": 30085, - "name": "Hueycoatl hide" - } - ], - "logCount": 2 - }, - "uuid": "a5c685b6-c385-4797-ae6f-fc11a7c2098a" - }, - { - "_id": 206, - "name": "Get 1 unique from Royal Titans", - "tip": "Obtained by killing the Royal Titans boss. First kill you must choose Take Pages option as you can force this unique.", - "wikiLink": "https://oldschool.runescape.wiki/w/Royal_Titans", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Twinflame_staff_detail.png/200px-Twinflame_staff_detail.png", - "assetImage": "Twinflame_staff_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Royal Titans", - "include": [ - { - "id": 30626, - "name": "Deadeye prayer scroll" - }, - { - "id": 30627, - "name": "Mystic vigour prayer scroll" - }, - { - "id": 30628, - "name": "Ice element staff crown" - }, - { - "id": 30631, - "name": "Fire element staff crown" - }, - { - "id": 30637, - "name": "Giantsoul amulet" - }, - { - "id": 30640, - "name": "Desiccated page" - } - ], - "logCount": 5 - }, - "uuid": "dc3ed87a-1cc1-4c22-9b97-10bb2155c346" - }, - { - "_id": 207, - "name": "Get 1 unique from Royal Titans", - "tip": "Obtained by killing the Royal Titans boss. First kill you must choose Take Pages option as you can force this unique.", - "wikiLink": "https://oldschool.runescape.wiki/w/Royal_Titans", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Twinflame_staff_detail.png/200px-Twinflame_staff_detail.png", - "assetImage": "Twinflame_staff_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "Royal Titans", - "include": [ - { - "id": 30626, - "name": "Deadeye prayer scroll" - }, - { - "id": 30627, - "name": "Mystic vigour prayer scroll" - }, - { - "id": 30628, - "name": "Ice element staff crown" - }, - { - "id": 30631, - "name": "Fire element staff crown" - }, - { - "id": 30637, - "name": "Giantsoul amulet" - }, - { - "id": 30640, - "name": "Desiccated page" - } - ], - "logCount": 6 - }, - "uuid": "82a8379b-8a72-4206-8465-ee67d64c640c" - }, - { - "_id": 208, - "name": "Get 1 unique from Doom of Mokhaiotl", - "tip": "Giant, insect-like, demonic boss found in the Tonali Cavern after completion of The Final Dawn quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Doom_of_Mokhaiotl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Eye_of_ayak_detail.png/320px-Eye_of_ayak_detail.png", - "assetImage": "Eye_of_ayak_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31088, - "name": "Avernic treads" - }, - { - "id": 31115, - "name": "Eye of ayak" - }, - { - "id": 31109, - "name": "Mokhaiotl cloth" - }, - { - "id": 31099, - "name": "Mokhaiotl waystone" - }, - { - "id": 31111, - "name": "Demon tear" - } - ], - "logCount": 1 - }, - "uuid": "62c25092-cdd4-421e-a528-d97e46712ad3" - }, - { - "_id": 209, - "name": "Get 1 unique from Doom of Mokhaiotl", - "tip": "Giant, insect-like, demonic boss found in the Tonali Cavern after completion of The Final Dawn quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Doom_of_Mokhaiotl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Eye_of_ayak_detail.png/320px-Eye_of_ayak_detail.png", - "assetImage": "Eye_of_ayak_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31088, - "name": "Avernic treads" - }, - { - "id": 31115, - "name": "Eye of ayak" - }, - { - "id": 31109, - "name": "Mokhaiotl cloth" - }, - { - "id": 31099, - "name": "Mokhaiotl waystone" - }, - { - "id": 31111, - "name": "Demon tear" - } - ], - "logCount": 2 - }, - "uuid": "22762b53-7e09-4f0a-b20d-3fdb6fe8cc02" - } -] \ No newline at end of file diff --git a/tasks/master.json b/tasks/master.json deleted file mode 100644 index a1a0f6a..0000000 --- a/tasks/master.json +++ /dev/null @@ -1,1612 +0,0 @@ -[ - { - "_id": 1, - "name": "Get a Infernal Cape", - "tip": "Acquired by completing The Inferno", - "wikiLink": "https://oldschool.runescape.wiki/w/Infernal_cape", - "wikiImage": "https://oldschool.runescape.wiki/images/Infernal_cape_detail.png?03de7", - "assetImage": "Infernal_cape_detail.png", - "colLogData": { - "category": "Bosses", - "include": [ - { - "id": 21295, - "name": "Infernal cape" - } - ], - "logCount": 1 - }, - "uuid": "6b09384d-c06b-44ac-8a07-b7038cd30710" - }, - { - "_id": 2, - "name": "Get 3 uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28easy%29_detail.png?48840", - "assetImage": "Reward_casket_easy_detail.png", - "colLogData": { - "include": [ - { - "id": 21295, - "name": "Infernal cape" - } - ], - "logCount": 1 - }, - "uuid": "b3352a94-c018-4bbe-9bfa-285fedc54bf7" - }, - { - "_id": 3, - "name": "Get 3 uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28easy%29_detail.png?48840", - "assetImage": "Reward_casket_easy_detail.png", - "uuid": "dceacba3-4db8-4cfc-98dd-ef4279b376ad" - }, - { - "_id": 4, - "name": "Get 3 uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28easy%29_detail.png?48840", - "assetImage": "Reward_casket_easy_detail.png", - "uuid": "9ba96279-6563-45ee-976f-6dc50752d13c" - }, - { - "_id": 5, - "name": "Get 3 uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28easy%29_detail.png?48840", - "assetImage": "Reward_casket_easy_detail.png", - "uuid": "123672d9-4c59-452d-abed-6a1a3d22e464" - }, - { - "_id": 6, - "name": "Get 3 uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28easy%29_detail.png?48840", - "assetImage": "Reward_casket_easy_detail.png", - "uuid": "4220da74-1cc7-4c2f-b778-48e55ccb6e84" - }, - { - "_id": 7, - "name": "Get 3 uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28medium%29_detail.png?2271d", - "assetImage": "Reward_casket_medium_detail.png", - "uuid": "4a69eb7b-e59b-40c9-aa2b-cd8000e84b4d" - }, - { - "_id": 8, - "name": "Get 3 uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28medium%29_detail.png?2271d", - "assetImage": "Reward_casket_medium_detail.png", - "uuid": "efd8b7b7-12e4-4513-83c6-9916d7618ea2" - }, - { - "_id": 9, - "name": "Get 3 uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28medium%29_detail.png?2271d", - "assetImage": "Reward_casket_medium_detail.png", - "uuid": "3f134d81-0249-4c7b-8b88-c5d2f41d744d" - }, - { - "_id": 10, - "name": "Get 3 uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28medium%29_detail.png?2271d", - "assetImage": "Reward_casket_medium_detail.png", - "uuid": "f82713b3-cf6b-495d-9df2-8f8268a3cb0d" - }, - { - "_id": 11, - "name": "Get 3 uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28medium%29_detail.png?2271d", - "assetImage": "Reward_casket_medium_detail.png", - "uuid": "334bc53a-880e-4e1d-926b-0ec8d30b850c" - }, - { - "_id": 12, - "name": "Get 3 uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/Reward_casket_%28medium%29_detail.png?2271d", - "assetImage": "Reward_casket_medium_detail.png", - "uuid": "5da6a087-d8b6-4d6d-be1b-f909fb1fdd26" - }, - { - "_id": 13, - "name": "Get 3 uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Reward_casket_%28hard%29_detail.png/267px-Reward_casket_%28hard%29_detail.png?1a29e", - "assetImage": "Reward_casket_hard_detail.png", - "uuid": "dd2dc035-777c-4da7-af48-62e8c7a65b51" - }, - { - "_id": 14, - "name": "Get 3 uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Reward_casket_%28hard%29_detail.png/267px-Reward_casket_%28hard%29_detail.png?1a29e", - "assetImage": "Reward_casket_hard_detail.png", - "uuid": "110256c1-5ef5-4412-b617-fe077c47f3fd" - }, - { - "_id": 15, - "name": "Get 3 uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Reward_casket_%28hard%29_detail.png/267px-Reward_casket_%28hard%29_detail.png?1a29e", - "assetImage": "Reward_casket_hard_detail.png", - "uuid": "b0bb4117-6a35-4268-9b2d-f9d21283e39a" - }, - { - "_id": 16, - "name": "Get 3 uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Reward_casket_%28hard%29_detail.png/267px-Reward_casket_%28hard%29_detail.png?1a29e", - "assetImage": "Reward_casket_hard_detail.png", - "uuid": "61bf9382-adeb-4110-9d50-36f244155224" - }, - { - "_id": 17, - "name": "Get 3 uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Reward_casket_%28hard%29_detail.png/267px-Reward_casket_%28hard%29_detail.png?1a29e", - "assetImage": "Reward_casket_hard_detail.png", - "uuid": "65081c74-4a4b-4100-8c4e-c4a8a87c8d09" - }, - { - "_id": 18, - "name": "Get 3 uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Reward_casket_%28hard%29_detail.png/267px-Reward_casket_%28hard%29_detail.png?1a29e", - "assetImage": "Reward_casket_hard_detail.png", - "uuid": "7d2d101e-af23-4985-b06f-0f35aa5f9afd" - }, - { - "_id": 19, - "name": "Get 1 minigame slot", - "tip": "Pick a minigame, any minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Minigames", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Minigames.png/246px-Minigames.png?d639f", - "assetImage": "minigames.png", - "colLogData": { - "include": [ - { - "id": 21295, - "name": "Infernal cape" - } - ], - "logCount": 10 - }, - "uuid": "822e9cd4-4f93-458e-a71c-5aac2866d540" - }, - { - "_id": 20, - "name": "Get 1 minigame slot", - "tip": "Pick a minigame, any minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Minigames", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Minigames.png/246px-Minigames.png?d639f", - "assetImage": "minigames.png", - "uuid": "bc12c66f-668b-45e1-b34b-057799e23c1d" - }, - { - "_id": 21, - "name": "Get 1 minigame slot", - "tip": "Pick a minigame, any minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Minigames", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Minigames.png/246px-Minigames.png?d639f", - "assetImage": "minigames.png", - "uuid": "35231ee7-721f-4f55-bbd4-a25e33609181" - }, - { - "_id": 22, - "name": "Get 1 minigame slot", - "tip": "Pick a minigame, any minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Minigames", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Minigames.png/246px-Minigames.png?d639f", - "assetImage": "minigames.png", - "uuid": "db4581b2-2f48-43da-9b16-2e52c4fa64a7" - }, - { - "_id": 23, - "name": "Get 1 minigame slot", - "tip": "Pick a minigame, any minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Minigames", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Minigames.png/246px-Minigames.png?d639f", - "assetImage": "minigames.png", - "uuid": "5424b2bf-a18a-4b24-877a-63e184eac6e9" - }, - { - "_id": 24, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "655a77fa-21f6-43e8-9cde-5eb2b660f829" - }, - { - "_id": 25, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "347d5712-ebc3-4b74-8aba-ba909c39013e" - }, - { - "_id": 26, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "2eb6623e-a326-4b63-9cae-8fa0823c5d49" - }, - { - "_id": 27, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "50b61b0e-70d0-40a9-bf42-c1b8ac917717" - }, - { - "_id": 28, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "917b912c-2716-4b12-a020-a758ee467e72" - }, - { - "_id": 29, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "5cbcc790-10d1-4c17-8b39-cad7b48dadf8" - }, - { - "_id": 30, - "name": "Get 2 LMS slots", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Victor%27s_cape_%28500%29_detail.png/208px-Victor%27s_cape_%28500%29_detail.png?667e2", - "assetImage": "victors_cape_detail.png", - "uuid": "4a387bb0-dfc3-4374-aa35-9bacfc2fc92d" - }, - { - "_id": 31, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "57672680-b11b-44a8-80f6-cb93510612f6" - }, - { - "_id": 32, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "4f784efb-9602-42a3-9e39-8e38902c56a8" - }, - { - "_id": 33, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "a06109c2-b146-4d9e-957a-445b30380f25" - }, - { - "_id": 34, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "c79d7736-b65e-46d6-a4f4-c003e68a54c3" - }, - { - "_id": 35, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "3e69c1e2-e004-451e-bd0a-3bf7b9a15ea1" - }, - { - "_id": 36, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "bb7abf29-aa33-43db-823d-ba6db8643535" - }, - { - "_id": 37, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "b9763997-7f6a-4cbe-969d-20c13eefa372" - }, - { - "_id": 38, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "b9c2fde0-ba98-40a3-bb7f-16feaaa2f3dc" - }, - { - "_id": 39, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "888e95b6-c2fa-4ec4-852e-49a9de064b6b" - }, - { - "_id": 40, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "ceba2322-95a3-4dab-90aa-2f0693353801" - }, - { - "_id": 41, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "d427ee69-20da-4194-818c-8ac37ecde539" - }, - { - "_id": 42, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "8e741bc0-3de0-43a2-901a-365e1ace0cd8" - }, - { - "_id": 43, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "cf1dd5b0-a09b-45ff-a680-bd97487b0689" - }, - { - "_id": 44, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "0989d23c-c009-4c7f-a6d1-c2bc75bf4ddb" - }, - { - "_id": 45, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "6ffe16e8-432e-4959-86eb-7ad7499e7079" - }, - { - "_id": 46, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "80b26e47-d70f-455c-af7a-09b64641aa48" - }, - { - "_id": 47, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "eda36f5c-97d7-4ec3-9ea5-426a9d9d23c0" - }, - { - "_id": 48, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "29b65a69-472d-4359-84a0-a7124b7abaad" - }, - { - "_id": 49, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "cefbf638-6984-43e4-8699-935ef4cc8d4f" - }, - { - "_id": 50, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "644ef42e-6fec-4162-b82b-58a74bdeae90" - }, - { - "_id": 51, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "5b949f7a-7cb7-4eb9-9305-73c508d0c034" - }, - { - "_id": 52, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "61b1a647-2558-4c52-9c9f-05dc621bfc72" - }, - { - "_id": 53, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "fbae29fc-6344-40ff-a69d-3a97e4f3dd1d" - }, - { - "_id": 54, - "name": "Get 1 unique from raids", - "tip": "Can be received as a drop from Raids. Chambers of Xerics or Theatre of Blood or Tombs of Amascut.", - "wikiLink": "https://oldschool.runescape.wiki/w/Raids", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4f/Twisted_bow.png?029ba", - "assetImage": "Twisted_bow.png", - "uuid": "5ad6902c-51b7-46fb-8198-d2946370782c" - }, - { - "_id": 55, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "ff73d183-18e1-4b09-9f9e-97923a780a6e" - }, - { - "_id": 56, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "4dacbc90-c678-481c-970f-2a94e2d8fe27" - }, - { - "_id": 57, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "1ab1c3a0-81a9-4dcc-bc7a-79b0a597b52a" - }, - { - "_id": 58, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "407737f7-52e2-46be-9f65-c2251e9cde00" - }, - { - "_id": 59, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "08116a92-9a78-4da8-8065-c2e4663ba72c" - }, - { - "_id": 60, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "06aa4c21-b621-40dc-b129-53981c930406" - }, - { - "_id": 61, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "c83024fa-3d6f-4c52-b5ff-960f3c55ba53" - }, - { - "_id": 62, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "5f562860-ba29-4309-91f0-aad62a6579e9" - }, - { - "_id": 63, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "90c34898-f4ee-4c45-a251-b82bf920ab44" - }, - { - "_id": 64, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "e0c93265-ec01-4adc-8136-ac852b42d83f" - }, - { - "_id": 65, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "85ac04ba-c303-4517-a1bf-8f60a5130c43" - }, - { - "_id": 66, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "e24540ec-e88a-4c11-a66a-8da6c4cd3cb9" - }, - { - "_id": 67, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "913412f7-cd83-45d8-bd4a-f8d7ce38e83c" - }, - { - "_id": 68, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "770de146-aeae-485b-849a-4e2a572cfcc1" - }, - { - "_id": 69, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "ca5875fa-b009-4403-8471-022b4373d23a" - }, - { - "_id": 70, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "1ae47de5-f512-435f-b03c-8f6e332d7caf" - }, - { - "_id": 71, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "e2da87b4-57ff-482b-b76a-1e79b3b181fe" - }, - { - "_id": 72, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "aab9857a-c604-48ad-bd4d-368258c342cb" - }, - { - "_id": 73, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "c927f9b9-1ce1-4ddb-8bec-77f7f672a79e" - }, - { - "_id": 74, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "57b7e2b1-e7bf-455d-80dd-ac8194a88b84" - }, - { - "_id": 75, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "7d471d10-571f-49ee-b8ce-75dcfa6d4b32" - }, - { - "_id": 76, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "9ed94172-e43f-47d6-86e4-95320f51caed" - }, - { - "_id": 77, - "name": "Get 1 unique boss pet or jar", - "tip": "Step 1: Pick a boss Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Boss", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Abyssal_orphan_%28follower%29.png/232px-Abyssal_orphan_%28follower%29.png?f674f", - "assetImage": "Abyssal_orphan.png", - "uuid": "ffe50de3-524d-4a7d-a502-1dd0dc77d9c6" - }, - { - "_id": 78, - "name": "Get 1 unique skilling pet", - "tip": "Step1: Pick a Skill Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet#Skilling_pets", - "wikiImage": "https://oldschool.runescape.wiki/images/Rocky_%28follower%29.png?5bf2f", - "assetImage": "Rocky.png", - "uuid": "6dd61903-e6c1-4858-beb7-a5bf170f1d4c" - }, - { - "_id": 79, - "name": "Get 1 unique skilling pet", - "tip": "Step1: Pick a Skill Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet#Skilling_pets", - "wikiImage": "https://oldschool.runescape.wiki/images/Rocky_%28follower%29.png?5bf2f", - "assetImage": "Rocky.png", - "uuid": "856d125d-f008-4a7e-a247-0a0bd1df9f6e" - }, - { - "_id": 80, - "name": "Get 1 unique skilling pet", - "tip": "Step1: Pick a Skill Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet#Skilling_pets", - "wikiImage": "https://oldschool.runescape.wiki/images/Rocky_%28follower%29.png?5bf2f", - "assetImage": "Rocky.png", - "uuid": "abdde0f6-9bbc-4e64-9a7d-c608e360fb0e" - }, - { - "_id": 81, - "name": "Get 1 unique skilling pet", - "tip": "Step1: Pick a Skill Step2: ??? Step3: Profit", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet#Skilling_pets", - "wikiImage": "https://oldschool.runescape.wiki/images/Rocky_%28follower%29.png?5bf2f", - "assetImage": "Rocky.png", - "uuid": "86c3fd33-3503-4da3-b9e4-bec35f2fe77f" - }, - { - "_id": 82, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "05e816a3-215d-4b4c-b002-e09d82d88b34" - }, - { - "_id": 83, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "517cf752-d0c3-4c21-b5b6-b96531dd5f7b" - }, - { - "_id": 84, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "a22875b6-c3b2-4787-948b-1110b772f57b" - }, - { - "_id": 85, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "01f11d65-8e3d-4a26-a2fe-641d7035d9b3" - }, - { - "_id": 86, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "0c58c533-55b2-4200-91c4-90eda90a47d7" - }, - { - "_id": 87, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "9e7e6c80-c96a-413f-8b0c-c78065a750c4" - }, - { - "_id": 88, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "1bf77f45-a768-4bf0-8b93-c83b4d7d870a" - }, - { - "_id": 89, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "0b5f317d-21f5-4344-8827-d5cb3cb24414" - }, - { - "_id": 90, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "e8b13408-f2b1-46b5-a41c-b20a9458396a" - }, - { - "_id": 91, - "name": "Get 1 wildy unique", - "tip": "Share I tb'ed", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Craw%27s_bow_%28u%29_detail.png/242px-Craw%27s_bow_%28u%29_detail.png?bf1fd", - "assetImage": "craws_bow_detail.png", - "uuid": "143d3f92-9257-4622-ace6-39654d350a26" - }, - { - "_id": 92, - "name": "Get 1 slayer log slot", - "tip": "Good Luck on Imbued Heart!", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Slayer", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Imbued_heart_detail.png/320px-Imbued_heart_detail.png?be01a", - "assetImage": "Imbued_heart_detail.png", - "uuid": "d77377d6-2edb-4ca4-b201-e2094db9b3a1" - }, - { - "_id": 93, - "name": "Get 1 slayer log slot", - "tip": "Good Luck on Imbued Heart!", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Slayer", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Imbued_heart_detail.png/320px-Imbued_heart_detail.png?be01a", - "assetImage": "Imbued_heart_detail.png", - "uuid": "4f45620b-6307-442b-b573-ab3f52748c83" - }, - { - "_id": 94, - "name": "Get 1 slayer log slot", - "tip": "Good Luck on Imbued Heart!", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Slayer", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Imbued_heart_detail.png/320px-Imbued_heart_detail.png?be01a", - "assetImage": "Imbued_heart_detail.png", - "uuid": "ce335909-da99-4075-ab4f-2b3be4f2e37a" - }, - { - "_id": 95, - "name": "Get 1 slayer log slot", - "tip": "Good Luck on Imbued Heart!", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Slayer", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Imbued_heart_detail.png/320px-Imbued_heart_detail.png?be01a", - "assetImage": "Imbued_heart_detail.png", - "uuid": "1dfb4f79-ed56-4ba3-88d3-bbe56b92e822" - }, - { - "_id": 96, - "name": "Get 1 slayer log slot", - "tip": "Good Luck on Imbued Heart!", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Slayer", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Imbued_heart_detail.png/320px-Imbued_heart_detail.png?be01a", - "assetImage": "Imbued_heart_detail.png", - "uuid": "57fa8a7f-1065-4375-8ae7-1ecbae1187ad" - }, - { - "_id": 97, - "name": "Get 1 slayer log slot", - "tip": "Good Luck on Imbued Heart!", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Slayer", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Imbued_heart_detail.png/320px-Imbued_heart_detail.png?be01a", - "assetImage": "Imbued_heart_detail.png", - "uuid": "f2ea24c2-547f-4d95-a05b-ead9b7c9a0e0" - }, - { - "_id": 98, - "name": "Get 1 miscellaneous log slot", - "tip": "May the bird gods bless you with evil chicken pieces", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Miscellaneous", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragon_full_helm_detail.png/277px-Dragon_full_helm_detail.png?6edab", - "assetImage": "dragon_full_helm_detail.png", - "uuid": "dca0e9f0-c7eb-4d32-a4d4-e1568e51da06" - }, - { - "_id": 99, - "name": "Get 1 miscellaneous log slot", - "tip": "May the bird gods bless you with evil chicken pieces", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Miscellaneous", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragon_full_helm_detail.png/277px-Dragon_full_helm_detail.png?6edab", - "assetImage": "dragon_full_helm_detail.png", - "uuid": "b8f55499-8c32-4b15-9a70-c80cefb297c1" - }, - { - "_id": 100, - "name": "Get 1 miscellaneous log slot", - "tip": "May the bird gods bless you with evil chicken pieces", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Miscellaneous", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragon_full_helm_detail.png/277px-Dragon_full_helm_detail.png?6edab", - "assetImage": "dragon_full_helm_detail.png", - "uuid": "a1b4d9cc-8e86-45fe-af4b-61d844a5b078" - }, - { - "_id": 101, - "name": "Get 1 miscellaneous log slot", - "tip": "May the bird gods bless you with evil chicken pieces", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Miscellaneous", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragon_full_helm_detail.png/277px-Dragon_full_helm_detail.png?6edab", - "assetImage": "dragon_full_helm_detail.png", - "uuid": "89d777ac-5d60-4720-ba28-e23594ee06c1" - }, - { - "_id": 102, - "name": "Get 1 miscellaneous log slot", - "tip": "May the bird gods bless you with evil chicken pieces", - "wikiLink": "https://oldschool.runescape.wiki/w/Collection_log#Miscellaneous", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragon_full_helm_detail.png/277px-Dragon_full_helm_detail.png?6edab", - "assetImage": "dragon_full_helm_detail.png", - "uuid": "1a25f42e-1202-40f3-b001-d2de28f6b530" - }, - { - "_id": 103, - "name": "Get 1 sigil from corp", - "tip": "It's a giant chicken!", - "wikiLink": "https://oldschool.runescape.wiki/w/Corporeal_Beast", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Elysian_sigil_detail.png/211px-Elysian_sigil_detail.png?2fe74", - "assetImage": "elysian_sigil_detail.png", - "uuid": "bd9208a5-8c14-4fc9-b13f-b5323d036391" - }, - { - "_id": 104, - "name": "Get 1 mutagen from zulrah", - "tip": "Why'd it have to be snakes.", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Magma_mutagen_detail.png/126px-Magma_mutagen_detail.png?0551e", - "assetImage": "Magma_mutagen_detail.png", - "uuid": "b429e686-604c-4f51-bc98-bbf31fea80c8" - }, - { - "_id": 105, - "name": "Get 1 zalcano unqiue", - "tip": "Boss or Minigame?", - "wikiLink": "https://oldschool.runescape.wiki/w/Zalcano", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Zalcano_shard_detail.png/221px-Zalcano_shard_detail.png?f52af", - "assetImage": "Zalcano_shard_detail.png", - "uuid": "bd487967-d274-4fb1-96c3-37eca55e96bb" - }, - { - "_id": 106, - "name": "Get 1 vorkath unique", - "tip": "Money Dragon", - "wikiLink": "https://oldschool.runescape.wiki/w/Vorkath", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dragonbone_necklace_detail.png/147px-Dragonbone_necklace_detail.png?132ed", - "assetImage": "Dragonbone_necklace_detail.png", - "uuid": "08a9dd78-a0d5-4497-9277-4b66097dba4b" - }, - { - "_id": 107, - "name": "Get 1 nightmare unique", - "tip": "Ironman retirement home", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Nightmare", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Inquisitor%27s_mace_detail.png/234px-Inquisitor%27s_mace_detail.png?37397", - "assetImage": "Inquisitors_mace_detail.png", - "uuid": "b759ce53-4312-4a54-8b5d-48a7ec52bd34" - }, - { - "_id": 108, - "name": "Get 1 nightmare unique", - "tip": "Ironman retirement home", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Nightmare", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Inquisitor%27s_mace_detail.png/234px-Inquisitor%27s_mace_detail.png?37397", - "assetImage": "Inquisitors_mace_detail.png", - "uuid": "37a77af7-505f-440b-bb3f-5fe03bd1c1a9" - }, - { - "_id": 109, - "name": "Get 1 nightmare unique", - "tip": "Ironman retirement home", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Nightmare", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Inquisitor%27s_mace_detail.png/234px-Inquisitor%27s_mace_detail.png?37397", - "assetImage": "Inquisitors_mace_detail.png", - "uuid": "d7f94c27-684f-4f4b-8069-fa8263999a44" - }, - { - "_id": 110, - "name": "Get 1 nightmare unique", - "tip": "Ironman retirement home", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Nightmare", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Inquisitor%27s_mace_detail.png/234px-Inquisitor%27s_mace_detail.png?37397", - "assetImage": "Inquisitors_mace_detail.png", - "uuid": "8fa63977-c114-4733-ac89-5b4299e086a2" - }, - { - "_id": 111, - "name": "Get 1 nightmare unique", - "tip": "Ironman retirement home", - "wikiLink": "https://oldschool.runescape.wiki/w/The_Nightmare", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Inquisitor%27s_mace_detail.png/234px-Inquisitor%27s_mace_detail.png?37397", - "assetImage": "Inquisitors_mace_detail.png", - "uuid": "384deb72-3c32-4646-ac51-30c661ebcab2" - }, - { - "_id": 112, - "name": "Get 1 nex unique", - "tip": "The ice prison", - "wikiLink": "https://oldschool.runescape.wiki/w/Nex", - "wikiImage": "https://oldschool.runescape.wiki/images/Nihil_horn_detail.png?f672b", - "assetImage": "Nihil_horn_detail.png", - "uuid": "ae31a0d7-1dfa-496a-bcd1-aa0703172b65" - }, - { - "_id": 113, - "name": "Get 1 nex unique", - "tip": "The ice prison", - "wikiLink": "https://oldschool.runescape.wiki/w/Nex", - "wikiImage": "https://oldschool.runescape.wiki/images/Nihil_horn_detail.png?f672b", - "assetImage": "Nihil_horn_detail.png", - "uuid": "602d34e7-08e1-4fc5-8894-13fbca7c8cfd" - }, - { - "_id": 114, - "name": "Get 1 nex unique", - "tip": "The ice prison", - "wikiLink": "https://oldschool.runescape.wiki/w/Nex", - "wikiImage": "https://oldschool.runescape.wiki/images/Nihil_horn_detail.png?f672b", - "assetImage": "Nihil_horn_detail.png", - "uuid": "4208f430-8b5d-4e4e-8c70-46d95a9ade14" - }, - { - "_id": 115, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "2da5eabc-1155-465f-975e-e4e755fc425c" - }, - { - "_id": 116, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "cc69b0b8-a3ba-4136-ab8a-d7ceb4ef5080" - }, - { - "_id": 117, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "ec88fde0-521e-4ef2-9140-80b062f4fe69" - }, - { - "_id": 118, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "283b4bba-e4be-49e2-acf6-404fc6104203" - }, - { - "_id": 119, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "620b4d19-fcac-437d-b6a1-c1c1a5b127b8" - }, - { - "_id": 120, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "3cf3c85c-cda1-4a66-ae7b-242d81fe0c71" - }, - { - "_id": 121, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "b4d03ad2-b162-4366-856e-5d976df6aa77" - }, - { - "_id": 122, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "8b10f5d9-bf80-4c03-8a2c-d060d6af30a8" - }, - { - "_id": 123, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "fe877999-73c7-411e-8a48-51a0856fbb25" - }, - { - "_id": 124, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "906c5876-9e3b-461a-a629-cd6d83ca3dad" - }, - { - "_id": 125, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "87eb1513-11e7-466e-b7a8-cc8cd5206b72" - }, - { - "_id": 126, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "63a70569-7a76-4221-9acc-1f34b1ac0e39" - }, - { - "_id": 127, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "3e79794e-0781-48d4-bcd7-a72ea9a7a829" - }, - { - "_id": 128, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "3ebdecd3-5faf-42cd-9d7c-5b98327555c0" - }, - { - "_id": 129, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "1cda842d-50ff-4d73-a2a2-13ce62e16fc1" - }, - { - "_id": 130, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "e5e9a584-3106-4167-ae34-7b8ef4e91945" - }, - { - "_id": 131, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "04adedab-4ecf-4f04-af6f-a42eaa174aec" - }, - { - "_id": 132, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "f2cacf08-8072-4cfd-ae6b-69afea0363fc" - }, - { - "_id": 133, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "f3177a18-e7a3-4a7d-b962-9f9d46a4ea92" - }, - { - "_id": 134, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "3fef336b-2ad4-47a4-9b18-ab2ec8f1f915" - }, - { - "_id": 135, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "50efc1c8-e907-4927-a3cc-21786bb0a32a" - }, - { - "_id": 136, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "cb4eaeb1-5504-4720-a05d-2ef64d7206a4" - }, - { - "_id": 137, - "name": "Get a level 99", - "tip": "Ok it's grind time!", - "wikiLink": "https://oldschool.runescape.wiki/w/Skills", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Max_cape_detail.png/124px-Max_cape_detail.png?4f67e", - "assetImage": "Max_cape_detail.png", - "uuid": "e4d2a36c-b653-4f77-ad7f-6122f0e02f01" - }, - { - "_id": 138, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "9120cf88-f149-4562-bb2a-704eb8560fb0" - }, - { - "_id": 139, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "4e7cac5a-3159-4899-bdba-ecf8e8eda485" - }, - { - "_id": 140, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "1c714090-24b2-4505-8965-97bfa304f51f" - }, - { - "_id": 141, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "afc8f59d-87d7-4a41-a543-1548e1f98bcb" - }, - { - "_id": 142, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "1dac8e7b-3bc3-4020-b74b-deac3bbbabde" - }, - { - "_id": 143, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "4bab41fb-35a5-42a3-9937-c073817fcbf7" - }, - { - "_id": 144, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "025e5d3f-44cf-4539-972b-06752e7e4178" - }, - { - "_id": 145, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "5ccb09c9-b8b8-46b0-b9b5-db8129c710fb" - }, - { - "_id": 146, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "819b3614-9c74-4e53-8f31-dbd404d6acaa" - }, - { - "_id": 147, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "a7b09ed2-ab52-4d35-b35b-daa26428e701" - }, - { - "_id": 148, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "d9349bb1-64a5-473e-b8e4-10bd0949e754" - }, - { - "_id": 149, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "8ba02532-0df7-4294-9056-1d42086e5ad1" - }, - { - "_id": 150, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "8f3e41b8-b2ff-46e9-a98a-dd721ac6814b" - }, - { - "_id": 151, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "84fe3ec1-a169-4ba7-a309-781258cb9bae" - }, - { - "_id": 152, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "5c3ecb1c-5c0b-4bce-948d-250867a1a914" - }, - { - "_id": 153, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "00e2d932-c6f2-44c6-a0ae-7cbd740bc292" - }, - { - "_id": 154, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "14c84ab1-3086-4d62-985c-d94577fb512a" - }, - { - "_id": 155, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "04266cfa-9130-4b81-a510-0a33fd4fd729" - }, - { - "_id": 156, - "name": "Complete easy/medium/hard/elite/+50 points", - "tip": "Complete in order Easy through elite, subsequent tasks are +50 CA points", - "wikiLink": "https://oldschool.runescape.wiki/w/Combat_Achievements", - "wikiImage": "https://oldschool.runescape.wiki/images/Combat_achievements_detail.png?d8b9a", - "assetImage": "Combat_achievements_detail.png", - "uuid": "b24bc8b3-5bce-4027-af5c-1a0d8be2f235" - }, - { - "_id": 157, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "3d3ce83f-0db9-4419-a425-b0071218bc93" - }, - { - "_id": 158, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "12754820-2319-461b-9182-221b4cee251f" - }, - { - "_id": 159, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "10c785e4-3e47-4566-a4e8-2670794c327b" - }, - { - "_id": 160, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "e627267f-9cbf-4b5a-9528-924f70625ae6" - }, - { - "_id": 161, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "47f6de1b-4603-4a3c-9e8f-1034922c3912" - }, - { - "_id": 162, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "77281d30-4230-4488-9341-33f9ffe03e01" - }, - { - "_id": 163, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "e3b1aaa0-2a3d-47d0-b667-44163ab9263a" - }, - { - "_id": 164, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "38164b07-e6d8-4597-8274-7cca79374e4f" - }, - { - "_id": 165, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "44acda6d-0e1e-46c9-8f31-ed43648a772b" - }, - { - "_id": 166, - "name": "Get 1 unique from DT2 bosses", - "tip": "Can be received as drop from any of the four DT2 bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Treasure_II_-_The_Fallen_Empire", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Soulreaper_axe_detail.png/232px-Soulreaper_axe_detail.png?27b3b", - "assetImage": "Soulreaper_axe_detail.png", - "uuid": "a48c1295-2c9c-42df-a128-da21fc486624" - }, - { - "_id": 167, - "name": "Get 1 unique from Fortis Colosseum", - "tip": "Reward from Fortis Colosseum", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "wikiImage": "https://oldschool.runescape.wiki/images/Blessed_dizana%27s_quiver_detail.png?b4e51", - "assetImage": "Blessed_dizanas_quiver_detail.png", - "uuid": "085562fd-c369-4b72-8923-1a0498b5db82" - }, - { - "_id": 168, - "name": "Get 1 unique from Fortis Colosseum", - "tip": "Reward from Fortis Colosseum", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "wikiImage": "https://oldschool.runescape.wiki/images/Blessed_dizana%27s_quiver_detail.png?b4e51", - "assetImage": "Blessed_dizanas_quiver_detail.png", - "uuid": "5fcd3388-58d6-4710-b460-51486cd28607" - }, - { - "_id": 169, - "name": "Get 1 unique from Fortis Colosseum", - "tip": "Reward from Fortis Colosseum", - "wikiLink": "https://oldschool.runescape.wiki/w/Fortis_Colosseum", - "wikiImage": "https://oldschool.runescape.wiki/images/Blessed_dizana%27s_quiver_detail.png?b4e51", - "assetImage": "Blessed_dizanas_quiver_detail.png", - "uuid": "326a763f-1a2c-44c3-ae10-54f231409456" - }, - { - "_id": 170, - "name": "Get Quetzin", - "tip": "Reward from hunters loot sacks", - "wikiLink": "https://oldschool.runescape.wiki/w/Quetzin", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Quetzin_%28follower%29.png/320px-Quetzin_%28follower%29.png?ca338", - "assetImage": "quetzin_follower.png", - "uuid": "ca700efc-915a-41d0-b7d0-27629190e82e" - }, - { - "_id": 171, - "name": "Get 1 unqiue from The Gauntlet", - "tip": "Reward from The Gauntlet", - "wikiLink": "https://oldschool.runescape.wiki/w/Gauntlet", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Enhanced_crystal_weapon_seed_detail.png/309px-Enhanced_crystal_weapon_seed_detail.png?48996", - "assetImage": "Enhanced_crystal_weapon_seed_detail.png", - "uuid": "a0940720-7203-4c7e-885b-8eade0702edf" - }, - { - "_id": 172, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "uuid": "89505dac-1f9d-4a05-928c-2201f9343ffd" - }, - { - "_id": 173, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "uuid": "da7f5894-3d34-4f00-a281-811194232770" - }, - { - "_id": 174, - "name": "Get 1 unique from Yama", - "tip": "Obtained by killing the solo/duo boss Yama", - "wikiLink": "https://oldschool.runescape.wiki/w/Yama", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Oathplate_chest_detail.png/277px-Oathplate_chest_detail.png?0b1a0", - "assetImage": "Oathplate_chest_detail.png", - "uuid": "45632dcd-dc82-4e63-b2ed-bfd0bc1c99be" - }, - { - "_id": 175, - "name": "Get 1 unique from Doom of Mokhaiotl", - "tip": "Giant, insect-like, demonic boss found in the Tonali Cavern after completion of The Final Dawn quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Doom_of_Mokhaiotl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Eye_of_ayak_detail.png/320px-Eye_of_ayak_detail.png", - "assetImage": "Eye_of_ayak_detail.png", - "uuid": "5434205b-b02b-4a54-a1ad-84ad865be450" - } -] \ No newline at end of file diff --git a/tasks/medium.json b/tasks/medium.json deleted file mode 100644 index 2f76541..0000000 --- a/tasks/medium.json +++ /dev/null @@ -1,13698 +0,0 @@ -[ - { - "_id": 1, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 1 - }, - "uuid": "d4f8608e-9aaf-4377-9423-5ce5b3d62c63" - }, - { - "_id": 2, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 2 - }, - "uuid": "58d0b8bf-4612-4116-b8e1-105e40dbb320" - }, - { - "_id": 3, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 3 - }, - "uuid": "9cf26cc0-b32e-4be8-a525-741b620f5c59" - }, - { - "_id": 4, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 4 - }, - "uuid": "a874e0bb-e1a4-445e-a79a-ac936c9cf009" - }, - { - "_id": 5, - "name": "Get 1 unique from Barrows", - "tip": "Can be received as a reward from the Barrows Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barrows", - "wikiImage": "https://oldschool.runescape.wiki/images/1/10/Guthan%27s_helm.png?c2a50", - "assetImage": "Guthans_helm.png", - "colLogData": { - "category": "Bosses", - "logName": "barrows_chests", - "include": [ - { - "id": 4708, - "name": "Ahrim's hood" - }, - { - "id": 4710, - "name": "Ahrim's staff" - }, - { - "id": 4712, - "name": "Ahrim's robetop" - }, - { - "id": 4714, - "name": "Ahrim's robeskirt" - }, - { - "id": 4716, - "name": "Dharok's helm" - }, - { - "id": 4718, - "name": "Dharok's greataxe" - }, - { - "id": 4720, - "name": "Dharok's platebody" - }, - { - "id": 4722, - "name": "Dharok's platelegs" - }, - { - "id": 4724, - "name": "Guthan's helm" - }, - { - "id": 4726, - "name": "Guthan's warspear" - }, - { - "id": 4728, - "name": "Guthan's platebody" - }, - { - "id": 4730, - "name": "Guthan's chainskirt" - }, - { - "id": 4732, - "name": "Karil's coif" - }, - { - "id": 4734, - "name": "Karil's crossbow" - }, - { - "id": 4736, - "name": "Karil's leathertop" - }, - { - "id": 4738, - "name": "Karil's leatherskirt" - }, - { - "id": 4745, - "name": "Torag's helm" - }, - { - "id": 4747, - "name": "Torag's hammers" - }, - { - "id": 4749, - "name": "Torag's platebody" - }, - { - "id": 4751, - "name": "Torag's platelegs" - }, - { - "id": 4753, - "name": "Verac's helm" - }, - { - "id": 4755, - "name": "Verac's flail" - }, - { - "id": 4757, - "name": "Verac's brassard" - }, - { - "id": 4759, - "name": "Verac's plateskirt" - } - ], - "logCount": 5 - }, - "uuid": "9e4697fd-95e5-4bf8-b774-178eab348baf" - }, - { - "_id": 6, - "name": "Get 1 unique from Crazy Archeologist", - "tip": "Can be received as a drop from the Crazy Archaeologist.", - "wikiLink": "https://oldschool.runescape.wiki/w/Crazy_archaeologist", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Fedora.png?dae19", - "assetImage": "Fedora.png", - "colLogData": { - "category": "Bosses", - "logName": "crazy_archaeologist", - "include": [ - { - "id": 11990, - "name": "Fedora" - }, - { - "id": 11932, - "name": "Malediction shard 2" - }, - { - "id": 11929, - "name": "Odium shard 2" - } - ], - "logCount": 1 - }, - "uuid": "f6ebc061-69a7-45c0-b89e-ef4c7ead5e82" - }, - { - "_id": 7, - "name": "Get 1 unique from Crazy Archeologist", - "tip": "Can be received as a drop from the Crazy Archaeologist.", - "wikiLink": "https://oldschool.runescape.wiki/w/Crazy_archaeologist", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Fedora.png?dae19", - "assetImage": "Fedora.png", - "colLogData": { - "category": "Bosses", - "logName": "crazy_archaeologist", - "include": [ - { - "id": 11990, - "name": "Fedora" - }, - { - "id": 11932, - "name": "Malediction shard 2" - }, - { - "id": 11929, - "name": "Odium shard 2" - } - ], - "logCount": 2 - }, - "uuid": "4ed977a4-6eeb-48c8-bbe6-93a87657a851" - }, - { - "_id": 8, - "name": "Get 1 unique from Crazy Archeologist", - "tip": "Can be received as a drop from the Crazy Archaeologist.", - "wikiLink": "https://oldschool.runescape.wiki/w/Crazy_archaeologist", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Fedora.png?dae19", - "assetImage": "Fedora.png", - "colLogData": { - "category": "Bosses", - "logName": "crazy_archaeologist", - "include": [ - { - "id": 11990, - "name": "Fedora" - }, - { - "id": 11932, - "name": "Malediction shard 2" - }, - { - "id": 11929, - "name": "Odium shard 2" - } - ], - "logCount": 3 - }, - "uuid": "1504af39-da26-4ac0-a414-3ea6a32428d5" - }, - { - "_id": 9, - "name": "Get a Fire cape", - "tip": "Guarenteed reward upon completion of the Fight Caves. Good luck with Jad!", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar_Fight_Cave", - "wikiImage": "https://oldschool.runescape.wiki/images/5/54/Fire_cape.png?2a991", - "assetImage": "Fire_cape.png", - "colLogData": { - "category": "Bosses", - "logName": "the_fight_caves", - "include": [ - { - "id": 6570, - "name": "Fire cape" - } - ], - "logCount": 1 - }, - "uuid": "f69634c9-337c-4944-aea9-a16e74e62658" - }, - { - "_id": 10, - "name": "Get Granite dust", - "tip": "Guarenteed drop from the Grotesque Guardians Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Grotesque_Guardians", - "wikiImage": "https://oldschool.runescape.wiki/images/2/22/Granite_dust.png?bf968", - "assetImage": "Granite_dust.png", - "colLogData": { - "category": "Bosses", - "logName": "grotesque_guardians", - "include": [ - { - "id": 21726, - "name": "Granite dust" - } - ], - "logCount": 1 - }, - "uuid": "72996bdf-4a9b-48be-b378-a5f11636a68a" - }, - { - "_id": 11, - "name": "Get a Hill giant club", - "tip": "Can be received as a drop form Obor. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Obor", - "wikiImage": "http://oldschool.runescape.wiki/images/2/21/Hill_giant_club.png?3c16d", - "assetImage": "Hill_giant_club.png", - "colLogData": { - "category": "Bosses", - "logName": "obor", - "include": [ - { - "id": 20756, - "name": "Hill giant club" - } - ], - "logCount": 1 - }, - "uuid": "84ec6b48-384d-4d7a-aaac-07fb527b2115" - }, - { - "_id": 12, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Rip TaskOnly UIM ", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 6 - }, - "uuid": "5b11a9ff-04a0-46cd-96a3-77ecf7385fc4" - }, - { - "_id": 13, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Rip TaskOnly UIM ", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 7 - }, - "uuid": "d72f4139-8c21-4713-b5e8-93d77c7364f8" - }, - { - "_id": 14, - "name": "Get 1 Unique from Wintertodt", - "tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Rip TaskOnly UIM ", - "wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt", - "wikiImage": "https://oldschool.runescape.wiki/images/d/dd/Pyromancer_hood.png?dd6c5", - "assetImage": "Pyromancer_hood.png", - "colLogData": { - "category": "Bosses", - "logName": "wintertodt", - "include": [ - { - "id": 20704, - "name": "Pyromancer garb" - }, - { - "id": 20706, - "name": "Pyromancer robe" - }, - { - "id": 20708, - "name": "Pyromancer hood" - }, - { - "id": 20710, - "name": "Pyromancer boots" - }, - { - "id": 20712, - "name": "Warm gloves" - }, - { - "id": 20716, - "name": "Tome of fire (empty)" - }, - { - "id": 20718, - "name": "Burnt page" - }, - { - "id": 20720, - "name": "Bruma torch" - } - ], - "logCount": 8 - }, - "uuid": "adaf9f51-50cf-4417-9427-55d5509d4830" - }, - { - "_id": 15, - "name": "Get 1 Unique from Zulrah", - "tip": "Guarenteed drop from the Zulrah Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6a/Zulrah%27s_scales_5.png?93aed", - "assetImage": "Zulrahs_scales_5.png", - "colLogData": { - "category": "Bosses", - "logName": "zulrah", - "include": [ - { - "id": 12922, - "name": "Tanzanite fang" - }, - { - "id": 12927, - "name": "Serpentine visage" - }, - { - "id": 12932, - "name": "Magic fang" - }, - { - "id": 12934, - "name": "Zulrah's scales" - }, - { - "id": 12938, - "name": "Zul-andra teleport" - }, - { - "id": 6571, - "name": "Uncut onyx" - } - ], - "logCount": 1 - }, - "uuid": "5a3dbd57-feed-4eed-b4a3-2ca5ec384efd" - }, - { - "_id": 16, - "name": "Get 1 Unique from Zulrah", - "tip": "Can be received as a drop from Zulrah. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Zulrah", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6a/Zulrah%27s_scales_5.png?93aed", - "assetImage": "Zulrahs_scales_5.png", - "colLogData": { - "category": "Bosses", - "logName": "zulrah", - "include": [ - { - "id": 12922, - "name": "Tanzanite fang" - }, - { - "id": 12927, - "name": "Serpentine visage" - }, - { - "id": 12932, - "name": "Magic fang" - }, - { - "id": 12934, - "name": "Zulrah's scales" - }, - { - "id": 12938, - "name": "Zul-andra teleport" - }, - { - "id": 6571, - "name": "Uncut onyx" - } - ], - "logCount": 2 - }, - "uuid": "0d253493-fe93-46c6-8129-fa59854d9f91" - }, - { - "_id": 17, - "name": "Get 3 new uniques from beginner clues", - "tip": "Potential reward from beginner clues. Typically you would want to kill Goblins or Minotaurs for the clues themselves. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)", - "wikiImage": "https://oldschool.runescape.wiki/images/9/93/Clue_scroll_%28beginner%29.png?c3ba4", - "assetImage": "Clue_scroll_beginner.png", - "colLogData": { - "category": "Clues", - "logName": "beginner_treasure_trails", - "include": [ - { - "id": 23285, - "name": "Mole slippers" - }, - { - "id": 23288, - "name": "Frog slippers" - }, - { - "id": 23291, - "name": "Bear feet" - }, - { - "id": 23294, - "name": "Demon feet" - }, - { - "id": 23297, - "name": "Jester cape" - }, - { - "id": 23300, - "name": "Shoulder parrot" - }, - { - "id": 23303, - "name": "Monk's robe top (t)" - }, - { - "id": 23306, - "name": "Monk's robe (t)" - }, - { - "id": 23309, - "name": "Amulet of defence (t)" - }, - { - "id": 23312, - "name": "Sandwich lady hat" - }, - { - "id": 23315, - "name": "Sandwich lady top" - }, - { - "id": 23318, - "name": "Sandwich lady bottom" - }, - { - "id": 23321, - "name": "Rune scimitar ornament kit (guthix)" - }, - { - "id": 23324, - "name": "Rune scimitar ornament kit (saradomin)" - }, - { - "id": 23327, - "name": "Rune scimitar ornament kit (zamorak)" - } - ], - "logCount": 9 - }, - "uuid": "2c776bba-128f-412d-881e-84b3766d45fe" - }, - { - "_id": 18, - "name": "Get 3 new uniques from beginner clues", - "tip": "Potential reward from beginner clues. Typically you would want to kill Goblins or Minotaurs for the clues themselves. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)", - "wikiImage": "https://oldschool.runescape.wiki/images/9/93/Clue_scroll_%28beginner%29.png?c3ba4", - "assetImage": "Clue_scroll_beginner.png", - "colLogData": { - "category": "Clues", - "logName": "beginner_treasure_trails", - "include": [ - { - "id": 23285, - "name": "Mole slippers" - }, - { - "id": 23288, - "name": "Frog slippers" - }, - { - "id": 23291, - "name": "Bear feet" - }, - { - "id": 23294, - "name": "Demon feet" - }, - { - "id": 23297, - "name": "Jester cape" - }, - { - "id": 23300, - "name": "Shoulder parrot" - }, - { - "id": 23303, - "name": "Monk's robe top (t)" - }, - { - "id": 23306, - "name": "Monk's robe (t)" - }, - { - "id": 23309, - "name": "Amulet of defence (t)" - }, - { - "id": 23312, - "name": "Sandwich lady hat" - }, - { - "id": 23315, - "name": "Sandwich lady top" - }, - { - "id": 23318, - "name": "Sandwich lady bottom" - }, - { - "id": 23321, - "name": "Rune scimitar ornament kit (guthix)" - }, - { - "id": 23324, - "name": "Rune scimitar ornament kit (saradomin)" - }, - { - "id": 23327, - "name": "Rune scimitar ornament kit (zamorak)" - } - ], - "logCount": 12 - }, - "uuid": "ad14a103-dca8-4d46-8e47-f4aedba4aa0d" - }, - { - "_id": 19, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 35 - }, - "uuid": "04e3eff8-438b-4ec6-bbc9-1208ef4496af" - }, - { - "_id": 20, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 40 - }, - "uuid": "70ffb268-3a47-4939-a337-bfeecd8e5866" - }, - { - "_id": 21, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 45 - }, - "uuid": "8115881a-8fd6-463b-bc9b-268abed67117" - }, - { - "_id": 22, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 50 - }, - "uuid": "188a4058-587c-4334-be08-02a95e0d2e65" - }, - { - "_id": 23, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 55 - }, - "uuid": "aa417377-137f-4bab-888b-5d0b9e023c5c" - }, - { - "_id": 24, - "name": "Get 5 new uniques from easy clues", - "tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2e/Clue_scroll_%28easy%29.png?e29cd", - "assetImage": "Clue_scroll_easy.png", - "colLogData": { - "category": "Clues", - "logName": "easy_treasure_trails", - "include": [ - { - "id": 2583, - "name": "Black platebody (t)" - }, - { - "id": 2585, - "name": "Black platelegs (t)" - }, - { - "id": 2587, - "name": "Black full helm (t)" - }, - { - "id": 2589, - "name": "Black kiteshield (t)" - }, - { - "id": 2591, - "name": "Black platebody (g)" - }, - { - "id": 2593, - "name": "Black platelegs (g)" - }, - { - "id": 2595, - "name": "Black full helm (g)" - }, - { - "id": 2597, - "name": "Black kiteshield (g)" - }, - { - "id": 2631, - "name": "Highwayman mask" - }, - { - "id": 2633, - "name": "Blue beret" - }, - { - "id": 2635, - "name": "Black beret" - }, - { - "id": 2637, - "name": "White beret" - }, - { - "id": 3472, - "name": "Black plateskirt (t)" - }, - { - "id": 3473, - "name": "Black plateskirt (g)" - }, - { - "id": 7332, - "name": "Black shield (h1)" - }, - { - "id": 7338, - "name": "Black shield (h2)" - }, - { - "id": 7344, - "name": "Black shield (h3)" - }, - { - "id": 7350, - "name": "Black shield (h4)" - }, - { - "id": 7356, - "name": "Black shield (h5)" - }, - { - "id": 7362, - "name": "Studded body (g)" - }, - { - "id": 7364, - "name": "Studded body (t)" - }, - { - "id": 7366, - "name": "Studded chaps (g)" - }, - { - "id": 7368, - "name": "Studded chaps (t)" - }, - { - "id": 7386, - "name": "Blue skirt (g)" - }, - { - "id": 7388, - "name": "Blue skirt (t)" - }, - { - "id": 7390, - "name": "Blue wizard robe (g)" - }, - { - "id": 7392, - "name": "Blue wizard robe (t)" - }, - { - "id": 7394, - "name": "Blue wizard hat (g)" - }, - { - "id": 7396, - "name": "Blue wizard hat (t)" - }, - { - "id": 10280, - "name": "Willow comp bow" - }, - { - "id": 10306, - "name": "Black helm (h1)" - }, - { - "id": 10308, - "name": "Black helm (h2)" - }, - { - "id": 10310, - "name": "Black helm (h3)" - }, - { - "id": 10312, - "name": "Black helm (h4)" - }, - { - "id": 10314, - "name": "Black helm (h5)" - }, - { - "id": 10316, - "name": "Bob's red shirt" - }, - { - "id": 10318, - "name": "Bob's blue shirt" - }, - { - "id": 10320, - "name": "Bob's green shirt" - }, - { - "id": 10322, - "name": "Bob's black shirt" - }, - { - "id": 10324, - "name": "Bob's purple shirt" - }, - { - "id": 10366, - "name": "Amulet of magic (t)" - }, - { - "id": 10392, - "name": "A powdered wig" - }, - { - "id": 10394, - "name": "Flared trousers" - }, - { - "id": 10396, - "name": "Pantaloons" - }, - { - "id": 10398, - "name": "Sleeping cap" - }, - { - "id": 10404, - "name": "Red elegant shirt" - }, - { - "id": 10406, - "name": "Red elegant legs" - }, - { - "id": 10408, - "name": "Blue elegant shirt" - }, - { - "id": 10410, - "name": "Blue elegant legs" - }, - { - "id": 10412, - "name": "Green elegant shirt" - }, - { - "id": 10414, - "name": "Green elegant legs" - }, - { - "id": 10424, - "name": "Red elegant blouse" - }, - { - "id": 10426, - "name": "Red elegant skirt" - }, - { - "id": 10428, - "name": "Blue elegant blouse" - }, - { - "id": 10430, - "name": "Blue elegant skirt" - }, - { - "id": 10432, - "name": "Green elegant blouse" - }, - { - "id": 10434, - "name": "Green elegant skirt" - }, - { - "id": 10458, - "name": "Saradomin robe top" - }, - { - "id": 10460, - "name": "Zamorak robe top" - }, - { - "id": 10462, - "name": "Guthix robe top" - }, - { - "id": 10464, - "name": "Saradomin robe legs" - }, - { - "id": 10466, - "name": "Guthix robe legs" - }, - { - "id": 10468, - "name": "Zamorak robe legs" - }, - { - "id": 12193, - "name": "Ancient robe top" - }, - { - "id": 12195, - "name": "Ancient robe legs" - }, - { - "id": 12205, - "name": "Bronze platebody (g)" - }, - { - "id": 12207, - "name": "Bronze platelegs (g)" - }, - { - "id": 12209, - "name": "Bronze plateskirt (g)" - }, - { - "id": 12211, - "name": "Bronze full helm (g)" - }, - { - "id": 12213, - "name": "Bronze kiteshield (g)" - }, - { - "id": 12215, - "name": "Bronze platebody (t)" - }, - { - "id": 12217, - "name": "Bronze platelegs (t)" - }, - { - "id": 12219, - "name": "Bronze plateskirt (t)" - }, - { - "id": 12221, - "name": "Bronze full helm (t)" - }, - { - "id": 12223, - "name": "Bronze kiteshield (t)" - }, - { - "id": 12225, - "name": "Iron platebody (t)" - }, - { - "id": 12227, - "name": "Iron platelegs (t)" - }, - { - "id": 12229, - "name": "Iron plateskirt (t)" - }, - { - "id": 12231, - "name": "Iron full helm (t)" - }, - { - "id": 12233, - "name": "Iron kiteshield (t)" - }, - { - "id": 12235, - "name": "Iron platebody (g)" - }, - { - "id": 12237, - "name": "Iron platelegs (g)" - }, - { - "id": 12239, - "name": "Iron plateskirt (g)" - }, - { - "id": 12241, - "name": "Iron full helm (g)" - }, - { - "id": 12243, - "name": "Iron kiteshield (g)" - }, - { - "id": 12245, - "name": "Beanie" - }, - { - "id": 12247, - "name": "Red beret" - }, - { - "id": 12249, - "name": "Imp mask" - }, - { - "id": 12251, - "name": "Goblin mask" - }, - { - "id": 12253, - "name": "Armadyl robe top" - }, - { - "id": 12255, - "name": "Armadyl robe legs" - }, - { - "id": 12265, - "name": "Bandos robe top" - }, - { - "id": 12267, - "name": "Bandos robe legs" - }, - { - "id": 12297, - "name": "Black pickaxe" - }, - { - "id": 12375, - "name": "Black cane" - }, - { - "id": 12445, - "name": "Black skirt (g)" - }, - { - "id": 12447, - "name": "Black skirt (t)" - }, - { - "id": 12449, - "name": "Black wizard robe (g)" - }, - { - "id": 12451, - "name": "Black wizard robe (t)" - }, - { - "id": 12453, - "name": "Black wizard hat (g)" - }, - { - "id": 12455, - "name": "Black wizard hat (t)" - }, - { - "id": 20166, - "name": "Wooden shield (g)" - }, - { - "id": 20169, - "name": "Steel platebody (g)" - }, - { - "id": 20172, - "name": "Steel platelegs (g)" - }, - { - "id": 20175, - "name": "Steel plateskirt (g)" - }, - { - "id": 20178, - "name": "Steel full helm (g)" - }, - { - "id": 20181, - "name": "Steel kiteshield (g)" - }, - { - "id": 20184, - "name": "Steel platebody (t)" - }, - { - "id": 20187, - "name": "Steel platelegs (t)" - }, - { - "id": 20190, - "name": "Steel plateskirt (t)" - }, - { - "id": 20193, - "name": "Steel full helm (t)" - }, - { - "id": 20196, - "name": "Steel kiteshield (t)" - }, - { - "id": 20199, - "name": "Monk's robe top (g)" - }, - { - "id": 20202, - "name": "Monk's robe (g)" - }, - { - "id": 20205, - "name": "Golden chef's hat" - }, - { - "id": 20208, - "name": "Golden apron" - }, - { - "id": 20211, - "name": "Team cape zero" - }, - { - "id": 20214, - "name": "Team cape x" - }, - { - "id": 20217, - "name": "Team cape i" - }, - { - "id": 23351, - "name": "Cape of skulls" - }, - { - "id": 23354, - "name": "Amulet of power (t)" - }, - { - "id": 23357, - "name": "Rain bow" - }, - { - "id": 23360, - "name": "Ham joint" - }, - { - "id": 23363, - "name": "Staff of bob the cat" - }, - { - "id": 23366, - "name": "Black platebody (h1)" - }, - { - "id": 23369, - "name": "Black platebody (h2)" - }, - { - "id": 23372, - "name": "Black platebody (h3)" - }, - { - "id": 23375, - "name": "Black platebody (h4)" - }, - { - "id": 23378, - "name": "Black platebody (h5)" - }, - { - "id": 23381, - "name": "Leather body (g)" - }, - { - "id": 23384, - "name": "Leather chaps (g)" - } - ], - "logCount": 60 - }, - "uuid": "298997bb-0bc7-4cf8-b8de-4fac5b1c8611" - }, - { - "_id": 25, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 25 - }, - "uuid": "2ac5cbfe-8474-4aa0-a547-2d8915f60af1" - }, - { - "_id": 26, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 30 - }, - "uuid": "de2f8de0-0cab-4a9f-8dba-083cef22252c" - }, - { - "_id": 27, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 35 - }, - "uuid": "b905c78a-4e0d-4cff-b3de-6249f2339473" - }, - { - "_id": 28, - "name": "Get 5 new uniques from medium clues", - "tip": "Potential reward from medium clues. Killing guards is a decent way of getting the clues, later on Ecletic impings are are fantasic source for them.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c8/Clue_scroll_%28medium%29.png?e18ce", - "assetImage": "Clue_scroll_medium.png", - "colLogData": { - "category": "Clues", - "logName": "medium_treasure_trails", - "include": [ - { - "id": 2577, - "name": "Ranger boots" - }, - { - "id": 2579, - "name": "Wizard boots" - }, - { - "id": 2599, - "name": "Adamant platebody (t)" - }, - { - "id": 2601, - "name": "Adamant platelegs (t)" - }, - { - "id": 2603, - "name": "Adamant kiteshield (t)" - }, - { - "id": 2605, - "name": "Adamant full helm (t)" - }, - { - "id": 2607, - "name": "Adamant platebody (g)" - }, - { - "id": 2609, - "name": "Adamant platelegs (g)" - }, - { - "id": 2611, - "name": "Adamant kiteshield (g)" - }, - { - "id": 2613, - "name": "Adamant full helm (g)" - }, - { - "id": 2645, - "name": "Red headband" - }, - { - "id": 2647, - "name": "Black headband" - }, - { - "id": 2649, - "name": "Brown headband" - }, - { - "id": 3474, - "name": "Adamant plateskirt (t)" - }, - { - "id": 3475, - "name": "Adamant plateskirt (g)" - }, - { - "id": 7319, - "name": "Red boater" - }, - { - "id": 7321, - "name": "Orange boater" - }, - { - "id": 7323, - "name": "Green boater" - }, - { - "id": 7325, - "name": "Blue boater" - }, - { - "id": 7327, - "name": "Black boater" - }, - { - "id": 7334, - "name": "Adamant shield (h1)" - }, - { - "id": 7340, - "name": "Adamant shield (h2)" - }, - { - "id": 7346, - "name": "Adamant shield (h3)" - }, - { - "id": 7352, - "name": "Adamant shield (h4)" - }, - { - "id": 7358, - "name": "Adamant shield (h5)" - }, - { - "id": 7370, - "name": "Green d'hide body (g)" - }, - { - "id": 7372, - "name": "Green d'hide body (t)" - }, - { - "id": 7378, - "name": "Green d'hide chaps (g)" - }, - { - "id": 7380, - "name": "Green d'hide chaps (t)" - }, - { - "id": 10282, - "name": "Yew comp bow" - }, - { - "id": 10296, - "name": "Adamant helm (h1)" - }, - { - "id": 10298, - "name": "Adamant helm (h2)" - }, - { - "id": 10300, - "name": "Adamant helm (h3)" - }, - { - "id": 10302, - "name": "Adamant helm (h4)" - }, - { - "id": 10304, - "name": "Adamant helm (h5)" - }, - { - "id": 10364, - "name": "Strength amulet (t)" - }, - { - "id": 10400, - "name": "Black elegant shirt" - }, - { - "id": 10402, - "name": "Black elegant legs" - }, - { - "id": 10416, - "name": "Purple elegant shirt" - }, - { - "id": 10418, - "name": "Purple elegant legs" - }, - { - "id": 10420, - "name": "White elegant blouse" - }, - { - "id": 10422, - "name": "White elegant skirt" - }, - { - "id": 10436, - "name": "Purple elegant blouse" - }, - { - "id": 10438, - "name": "Purple elegant skirt" - }, - { - "id": 10446, - "name": "Saradomin cloak" - }, - { - "id": 10448, - "name": "Guthix cloak" - }, - { - "id": 10450, - "name": "Zamorak cloak" - }, - { - "id": 10452, - "name": "Saradomin mitre" - }, - { - "id": 10454, - "name": "Guthix mitre" - }, - { - "id": 10456, - "name": "Zamorak mitre" - }, - { - "id": 12197, - "name": "Ancient cloak" - }, - { - "id": 12199, - "name": "Ancient crozier" - }, - { - "id": 12201, - "name": "Ancient stole" - }, - { - "id": 12203, - "name": "Ancient mitre" - }, - { - "id": 12257, - "name": "Armadyl stole" - }, - { - "id": 12259, - "name": "Armadyl mitre" - }, - { - "id": 12261, - "name": "Armadyl cloak" - }, - { - "id": 12263, - "name": "Armadyl crozier" - }, - { - "id": 12269, - "name": "Bandos stole" - }, - { - "id": 12271, - "name": "Bandos mitre" - }, - { - "id": 12273, - "name": "Bandos cloak" - }, - { - "id": 12275, - "name": "Bandos crozier" - }, - { - "id": 12277, - "name": "Mithril platebody (g)" - }, - { - "id": 12279, - "name": "Mithril platelegs (g)" - }, - { - "id": 12281, - "name": "Mithril kiteshield (g)" - }, - { - "id": 12283, - "name": "Mithril full helm (g)" - }, - { - "id": 12285, - "name": "Mithril plateskirt (g)" - }, - { - "id": 12287, - "name": "Mithril platebody (t)" - }, - { - "id": 12289, - "name": "Mithril platelegs (t)" - }, - { - "id": 12291, - "name": "Mithril kiteshield (t)" - }, - { - "id": 12293, - "name": "Mithril full helm (t)" - }, - { - "id": 12295, - "name": "Mithril plateskirt (t)" - }, - { - "id": 12299, - "name": "White headband" - }, - { - "id": 12301, - "name": "Blue headband" - }, - { - "id": 12303, - "name": "Gold headband" - }, - { - "id": 12305, - "name": "Pink headband" - }, - { - "id": 12307, - "name": "Green headband" - }, - { - "id": 12309, - "name": "Pink boater" - }, - { - "id": 12311, - "name": "Purple boater" - }, - { - "id": 12313, - "name": "White boater" - }, - { - "id": 12315, - "name": "Pink elegant shirt" - }, - { - "id": 12317, - "name": "Pink elegant legs" - }, - { - "id": 12319, - "name": "Crier hat" - }, - { - "id": 12339, - "name": "Pink elegant blouse" - }, - { - "id": 12341, - "name": "Pink elegant skirt" - }, - { - "id": 12343, - "name": "Gold elegant blouse" - }, - { - "id": 12345, - "name": "Gold elegant skirt" - }, - { - "id": 12347, - "name": "Gold elegant shirt" - }, - { - "id": 12349, - "name": "Gold elegant legs" - }, - { - "id": 12359, - "name": "Leprechaun hat" - }, - { - "id": 12361, - "name": "Cat mask" - }, - { - "id": 12377, - "name": "Adamant cane" - }, - { - "id": 12428, - "name": "Penguin mask" - }, - { - "id": 12598, - "name": "Holy sandals" - }, - { - "id": 20240, - "name": "Crier coat" - }, - { - "id": 20243, - "name": "Crier bell" - }, - { - "id": 20246, - "name": "Black leprechaun hat" - }, - { - "id": 20251, - "name": "Arceuus banner" - }, - { - "id": 20254, - "name": "Hosidius banner" - }, - { - "id": 20257, - "name": "Lovakengj banner" - }, - { - "id": 20260, - "name": "Piscarilius banner" - }, - { - "id": 20263, - "name": "Shayzien banner" - }, - { - "id": 20266, - "name": "Black unicorn mask" - }, - { - "id": 20269, - "name": "White unicorn mask" - }, - { - "id": 20272, - "name": "Cabbage round shield" - }, - { - "id": 20275, - "name": "Gnomish firelighter" - }, - { - "id": 23389, - "name": "Spiked manacles" - }, - { - "id": 23392, - "name": "Adamant platebody (h1)" - }, - { - "id": 23395, - "name": "Adamant platebody (h2)" - }, - { - "id": 23398, - "name": "Adamant platebody (h3)" - }, - { - "id": 23401, - "name": "Adamant platebody (h4)" - }, - { - "id": 23404, - "name": "Adamant platebody (h5)" - }, - { - "id": 23407, - "name": "Wolf mask" - }, - { - "id": 23410, - "name": "Wolf cloak" - }, - { - "id": 23413, - "name": "Climbing boots (g)" - } - ], - "logCount": 40 - }, - "uuid": "6e75c57e-6c3b-4506-8759-7dd99d05bb75" - }, - { - "_id": 29, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 15 - }, - "uuid": "5660d42b-c321-40d0-94b0-1b6d6471fba0" - }, - { - "_id": 30, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 20 - }, - "uuid": "145e7222-4c94-48a1-a532-65a456bc4eb3" - }, - { - "_id": 31, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 25 - }, - "uuid": "2e2e9fbd-d925-4a36-9feb-c8b7c8edc32e" - }, - { - "_id": 32, - "name": "Get 5 new uniques from hard clues", - "tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.", - "wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7c/Clue_scroll_%28hard%29.png?e29cd", - "assetImage": "Clue_scroll_hard.png", - "colLogData": { - "category": "Clues", - "logName": "hard_treasure_trails", - "include": [ - { - "id": 2581, - "name": "Robin hood hat" - }, - { - "id": 2615, - "name": "Rune platebody (g)" - }, - { - "id": 2617, - "name": "Rune platelegs (g)" - }, - { - "id": 2619, - "name": "Rune full helm (g)" - }, - { - "id": 2621, - "name": "Rune kiteshield (g)" - }, - { - "id": 2623, - "name": "Rune platebody (t)" - }, - { - "id": 2625, - "name": "Rune platelegs (t)" - }, - { - "id": 2627, - "name": "Rune full helm (t)" - }, - { - "id": 2629, - "name": "Rune kiteshield (t)" - }, - { - "id": 2639, - "name": "Tan cavalier" - }, - { - "id": 2641, - "name": "Dark cavalier" - }, - { - "id": 2643, - "name": "Black cavalier" - }, - { - "id": 2651, - "name": "Pirate's hat" - }, - { - "id": 2653, - "name": "Zamorak platebody" - }, - { - "id": 2655, - "name": "Zamorak platelegs" - }, - { - "id": 2657, - "name": "Zamorak full helm" - }, - { - "id": 2659, - "name": "Zamorak kiteshield" - }, - { - "id": 2661, - "name": "Saradomin platebody" - }, - { - "id": 2663, - "name": "Saradomin platelegs" - }, - { - "id": 2665, - "name": "Saradomin full helm" - }, - { - "id": 2667, - "name": "Saradomin kiteshield" - }, - { - "id": 2669, - "name": "Guthix platebody" - }, - { - "id": 2671, - "name": "Guthix platelegs" - }, - { - "id": 2673, - "name": "Guthix full helm" - }, - { - "id": 2675, - "name": "Guthix kiteshield" - }, - { - "id": 3476, - "name": "Rune plateskirt (g)" - }, - { - "id": 3477, - "name": "Rune plateskirt (t)" - }, - { - "id": 3478, - "name": "Zamorak plateskirt" - }, - { - "id": 3479, - "name": "Saradomin plateskirt" - }, - { - "id": 3480, - "name": "Guthix plateskirt" - }, - { - "id": 7336, - "name": "Rune shield (h1)" - }, - { - "id": 7342, - "name": "Rune shield (h2)" - }, - { - "id": 7348, - "name": "Rune shield (h3)" - }, - { - "id": 7354, - "name": "Rune shield (h4)" - }, - { - "id": 7360, - "name": "Rune shield (h5)" - }, - { - "id": 7374, - "name": "Blue d'hide body (g)" - }, - { - "id": 7376, - "name": "Blue d'hide body (t)" - }, - { - "id": 7382, - "name": "Blue d'hide chaps (g)" - }, - { - "id": 7384, - "name": "Blue d'hide chaps (t)" - }, - { - "id": 7398, - "name": "Enchanted robe" - }, - { - "id": 7399, - "name": "Enchanted top" - }, - { - "id": 7400, - "name": "Enchanted hat" - }, - { - "id": 10284, - "name": "Magic comp bow" - }, - { - "id": 10286, - "name": "Rune helm (h1)" - }, - { - "id": 10288, - "name": "Rune helm (h2)" - }, - { - "id": 10290, - "name": "Rune helm (h3)" - }, - { - "id": 10292, - "name": "Rune helm (h4)" - }, - { - "id": 10294, - "name": "Rune helm (h5)" - }, - { - "id": 10354, - "name": "Amulet of glory (t4)" - }, - { - "id": 10368, - "name": "Zamorak bracers" - }, - { - "id": 10370, - "name": "Zamorak d'hide body" - }, - { - "id": 10372, - "name": "Zamorak chaps" - }, - { - "id": 10374, - "name": "Zamorak coif" - }, - { - "id": 10376, - "name": "Guthix bracers" - }, - { - "id": 10378, - "name": "Guthix d'hide body" - }, - { - "id": 10380, - "name": "Guthix chaps" - }, - { - "id": 10382, - "name": "Guthix coif" - }, - { - "id": 10384, - "name": "Saradomin bracers" - }, - { - "id": 10386, - "name": "Saradomin d'hide body" - }, - { - "id": 10388, - "name": "Saradomin chaps" - }, - { - "id": 10390, - "name": "Saradomin coif" - }, - { - "id": 10440, - "name": "Saradomin crozier" - }, - { - "id": 10442, - "name": "Guthix crozier" - }, - { - "id": 10444, - "name": "Zamorak crozier" - }, - { - "id": 10470, - "name": "Saradomin stole" - }, - { - "id": 10472, - "name": "Guthix stole" - }, - { - "id": 10474, - "name": "Zamorak stole" - }, - { - "id": 12321, - "name": "White cavalier" - }, - { - "id": 12323, - "name": "Red cavalier" - }, - { - "id": 12325, - "name": "Navy cavalier" - }, - { - "id": 12327, - "name": "Red d'hide body (g)" - }, - { - "id": 12329, - "name": "Red d'hide chaps (g)" - }, - { - "id": 12331, - "name": "Red d'hide body (t)" - }, - { - "id": 12333, - "name": "Red d'hide chaps (t)" - }, - { - "id": 12379, - "name": "Rune cane" - }, - { - "id": 12460, - "name": "Ancient platebody" - }, - { - "id": 12462, - "name": "Ancient platelegs" - }, - { - "id": 12464, - "name": "Ancient plateskirt" - }, - { - "id": 12466, - "name": "Ancient full helm" - }, - { - "id": 12468, - "name": "Ancient kiteshield" - }, - { - "id": 12470, - "name": "Armadyl platebody" - }, - { - "id": 12472, - "name": "Armadyl platelegs" - }, - { - "id": 12474, - "name": "Armadyl plateskirt" - }, - { - "id": 12476, - "name": "Armadyl full helm" - }, - { - "id": 12478, - "name": "Armadyl kiteshield" - }, - { - "id": 12480, - "name": "Bandos platebody" - }, - { - "id": 12482, - "name": "Bandos platelegs" - }, - { - "id": 12484, - "name": "Bandos plateskirt" - }, - { - "id": 12486, - "name": "Bandos full helm" - }, - { - "id": 12488, - "name": "Bandos kiteshield" - }, - { - "id": 12490, - "name": "Ancient bracers" - }, - { - "id": 12492, - "name": "Ancient d'hide body" - }, - { - "id": 12494, - "name": "Ancient chaps" - }, - { - "id": 12496, - "name": "Ancient coif" - }, - { - "id": 12498, - "name": "Bandos bracers" - }, - { - "id": 12500, - "name": "Bandos d'hide body" - }, - { - "id": 12502, - "name": "Bandos chaps" - }, - { - "id": 12504, - "name": "Bandos coif" - }, - { - "id": 12506, - "name": "Armadyl bracers" - }, - { - "id": 12508, - "name": "Armadyl d'hide body" - }, - { - "id": 12510, - "name": "Armadyl chaps" - }, - { - "id": 12512, - "name": "Armadyl coif" - }, - { - "id": 12514, - "name": "Explorer backpack" - }, - { - "id": 12516, - "name": "Pith helmet" - }, - { - "id": 12518, - "name": "Green dragon mask" - }, - { - "id": 12520, - "name": "Blue dragon mask" - }, - { - "id": 12522, - "name": "Red dragon mask" - }, - { - "id": 12524, - "name": "Black dragon mask" - }, - { - "id": 19915, - "name": "Cyclops head" - }, - { - "id": 19918, - "name": "Nunchaku" - }, - { - "id": 19921, - "name": "Ancient d'hide boots" - }, - { - "id": 19924, - "name": "Bandos d'hide boots" - }, - { - "id": 19927, - "name": "Guthix d'hide boots" - }, - { - "id": 19930, - "name": "Armadyl d'hide boots" - }, - { - "id": 19933, - "name": "Saradomin d'hide boots" - }, - { - "id": 19936, - "name": "Zamorak d'hide boots" - }, - { - "id": 22231, - "name": "Dragon boots ornament kit" - }, - { - "id": 23188, - "name": "Guthix d'hide shield" - }, - { - "id": 23191, - "name": "Saradomin d'hide shield" - }, - { - "id": 23194, - "name": "Zamorak d'hide shield" - }, - { - "id": 23197, - "name": "Ancient d'hide shield" - }, - { - "id": 23200, - "name": "Armadyl d'hide shield" - }, - { - "id": 23203, - "name": "Bandos d'hide shield" - }, - { - "id": 23206, - "name": "Dual sai" - }, - { - "id": 23209, - "name": "Rune platebody (h1)" - }, - { - "id": 23212, - "name": "Rune platebody (h2)" - }, - { - "id": 23215, - "name": "Rune platebody (h3)" - }, - { - "id": 23218, - "name": "Rune platebody (h4)" - }, - { - "id": 23221, - "name": "Rune platebody (h5)" - }, - { - "id": 23224, - "name": "Thieving bag" - }, - { - "id": 23227, - "name": "Rune defender ornament kit" - }, - { - "id": 23232, - "name": "Tzhaar-ket-om ornament kit" - }, - { - "id": 23237, - "name": "Berserker necklace ornament kit" - }, - { - "id": 19912, - "name": "Zombie head (Treasure Trails)" - } - ], - "logCount": 30 - }, - "uuid": "a7663831-509f-42ea-b77c-2930f5e2daa2" - }, - { - "_id": 33, - "name": "Get a Fighter hat", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/6/65/Fighter_hat.png?9320b", - "assetImage": "Fighter_hat.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10548, - "name": "Fighter hat" - } - ], - "logCount": 1 - }, - "uuid": "27db2b6c-53b8-4576-934d-1ca1f9e76cb3" - }, - { - "_id": 34, - "name": "Get a Healer hat", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3f/Healer_hat.png?a70d3", - "assetImage": "Healer_hat.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10547, - "name": "Healer hat" - } - ], - "logCount": 1 - }, - "uuid": "779ed673-25f8-43ee-82c7-21bbead6a547" - }, - { - "_id": 35, - "name": "Get a Runner hat", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/2/21/Runner_hat.png?e6850", - "assetImage": "Runner_hat.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10549, - "name": "Runner hat" - } - ], - "logCount": 1 - }, - "uuid": "24e6382c-def7-4b49-bc7b-07532a4750b6" - }, - { - "_id": 36, - "name": "Get a Ranger hat", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Ranger_hat.png?18e0c", - "assetImage": "Ranger_hat.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10550, - "name": "Ranger hat" - } - ], - "logCount": 1 - }, - "uuid": "261ef0a3-b11f-4046-9141-0d7fa712b0c6" - }, - { - "_id": 37, - "name": "Get a Fighter torso", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/d/d5/Fighter_torso.png?95294", - "assetImage": "Fighter_torso.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10551, - "name": "Fighter torso" - } - ], - "logCount": 1 - }, - "uuid": "ea52cffd-de51-4782-8699-73201489b773" - }, - { - "_id": 38, - "name": "Get a Granite helm", - "tip": "Can be received as a drop Terror Dogs. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Granite_helm", - "wikiImage": "https://oldschool.runescape.wiki/images/1/12/Granite_helm.png?9ac3e", - "assetImage": "Granite_helm.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 10589, - "name": "Granite helm" - } - ], - "logCount": 1 - }, - "uuid": "d2972b5d-68c5-4252-9d85-019f8d439d9e" - }, - { - "_id": 39, - "name": "Get 1 new halo", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time.", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/6/67/Saradomin_halo.png?82a64", - "assetImage": "Saradomin_halo.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 12637, - "name": "Saradomin halo" - }, - { - "id": 12638, - "name": "Zamorak halo" - }, - { - "id": 12639, - "name": "Guthix halo" - } - ], - "logCount": 2 - }, - "uuid": "65975b37-16a2-483a-9f4e-50e4d60489b5" - }, - { - "_id": 40, - "name": "Get the Decorative ranged set", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time.", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/b/be/Decorative_armour_%28ranged_top%29.png?c8486", - "assetImage": "Decorative_armour_ranged_top.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 11899, - "name": "Decorative armour (ranged top)" - }, - { - "id": 11900, - "name": "Decorative armour (ranged legs)" - }, - { - "id": 11901, - "name": "Decorative armour (quiver)" - } - ], - "logCount": 3 - }, - "uuid": "37c040ab-368b-4ea2-bba9-3459843e1d23" - }, - { - "_id": 41, - "name": "Get the Decorative magic set", - "tip": "Can be purchased as a reward from the Castle Wars \"Combat Minigame\". The best way to do this is by using an alt account and join the games with both accounts. Castle Wars is F2P therefore, alt account does not needed to be a member. Enjoy your AFK time.", - "wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars", - "wikiImage": "https://oldschool.runescape.wiki/images/4/4d/Decorative_armour_%28magic_top%29.png?f153f", - "assetImage": "Decorative_armour_magic_top.png", - "colLogData": { - "category": "Minigames", - "logName": "castle_wars", - "include": [ - { - "id": 11896, - "name": "Decorative armour (magic top)" - }, - { - "id": 11897, - "name": "Decorative armour (magic legs)" - }, - { - "id": 11898, - "name": "Decorative armour (magic hat)" - } - ], - "logCount": 3 - }, - "uuid": "e5d1acb8-4d5c-4959-abea-bce48a16a11a" - }, - { - "_id": 42, - "name": "Get 1 new unique from Gnome Restaurant", - "tip": "Potential reward from the Gnome Restaurant minigame. You should no the deal by now having done this task in the Easy Tier!", - "wikiLink": "https://oldschool.runescape.wiki/w/Gnome_Restaurant", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3a/Gnome_scarf.png?2d77d", - "assetImage": "Gnome_scarf.png", - "colLogData": { - "category": "Minigames", - "logName": "gnome_restaurant", - "include": [ - { - "id": 9469, - "name": "Grand seed pod" - }, - { - "id": 9470, - "name": "Gnome scarf" - }, - { - "id": 9472, - "name": "Gnome goggles" - }, - { - "id": 9475, - "name": "Mint cake" - } - ], - "logCount": 2 - }, - "uuid": "db8008cb-8f1a-4055-9fd7-eda6c1565c8f" - }, - { - "_id": 43, - "name": "Get 1 new unique from Gnome Restaurant", - "tip": "Potential reward from the Gnome Restaurant minigame. You should no the deal by now having done this task in the Easy Tier!", - "wikiLink": "https://oldschool.runescape.wiki/w/Gnome_Restaurant", - "wikiImage": "https://oldschool.runescape.wiki/images/3/3a/Gnome_scarf.png?2d77d", - "assetImage": "Gnome_scarf.png", - "colLogData": { - "category": "Minigames", - "logName": "gnome_restaurant", - "include": [ - { - "id": 9469, - "name": "Grand seed pod" - }, - { - "id": 9470, - "name": "Gnome scarf" - }, - { - "id": 9472, - "name": "Gnome goggles" - }, - { - "id": 9475, - "name": "Mint cake" - } - ], - "logCount": 3 - }, - "uuid": "063c952d-e4bc-401b-85a3-b3f12d9d88e0" - }, - { - "_id": 44, - "name": "Upgrade to a Master wand", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/5/55/Teacher_wand.png?a58fd", - "assetImage": "Teacher_wand.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6914, - "name": "Master wand" - } - ], - "logCount": 1 - }, - "uuid": "7ca0b188-0f4a-4ecb-b5ab-fd725402ffff" - }, - { - "_id": 45, - "name": "Get an Infinity hat", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Infinity_hat.png", - "assetImage": "Infinity_hat.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6918, - "name": "Infinity hat" - } - ], - "logCount": 1 - }, - "uuid": "9e3b3b7c-0a03-4540-b8b1-3d1a82dfb379" - }, - { - "_id": 46, - "name": "Get a Mage's book", - "tip": "Can be purchased as a reward from the Mage Training Arena minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena", - "wikiImage": "https://oldschool.runescape.wiki/images/4/49/Mage%27s_book.png?b78ed", - "assetImage": "Mages_book.png", - "colLogData": { - "category": "Minigames", - "logName": "magic_training_arena", - "include": [ - { - "id": 6889, - "name": "Mage's book" - } - ], - "logCount": 1 - }, - "uuid": "6f607b31-94b0-4943-b5ed-6576ba7f2fe5" - }, - { - "_id": 47, - "name": "Get a Void melee helm", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/7/73/Void_melee_helm.png?9b904", - "assetImage": "Void_melee_helm.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 11665, - "name": "Void melee helm" - } - ], - "logCount": 1 - }, - "uuid": "4750f7c2-6b3a-4593-93c3-b7e2151d5667" - }, - { - "_id": 48, - "name": "Get a Void magic helm", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/1/14/Void_mage_helm.png?5d186", - "assetImage": "Void_mage_helm.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 11663, - "name": "Void mage helm" - } - ], - "logCount": 1 - }, - "uuid": "aa212946-0b6a-41e0-8948-5402d8350cdc" - }, - { - "_id": 49, - "name": "Get a Void ranger helm", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/3/34/Void_ranger_helm.png?25289", - "assetImage": "Void_ranger_helm.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 11664, - "name": "Void ranger helm" - } - ], - "logCount": 1 - }, - "uuid": "7ca04d19-09ea-46c9-93af-c33595866b57" - }, - { - "_id": 50, - "name": "Get a Void Knight top", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f1/Void_knight_top.png?9c4d4", - "assetImage": "Void_knight_top.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 8839, - "name": "Void knight top" - } - ], - "logCount": 1 - }, - "uuid": "57b39500-aff4-44d4-a572-836e1b4ddea3" - }, - { - "_id": 51, - "name": "Get a Void Knight robe", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "http://oldschool.runescape.wiki/images/5/5f/Void_knight_robe.png?9c4d4", - "assetImage": "Void_knight_robe.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 8840, - "name": "Void knight robe" - } - ], - "logCount": 1 - }, - "uuid": "25542b19-5b78-4438-83bd-cf50958993a2" - }, - { - "_id": 52, - "name": "Get a Void Knight mace", - "tip": "Can be purchased as a reward from the Pest Control Combat Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control", - "wikiImage": "http://oldschool.runescape.wiki/images/9/9c/Void_knight_mace.png?9b904", - "assetImage": "Void_knight_mace.png", - "colLogData": { - "category": "Minigames", - "logName": "pest_control", - "include": [ - { - "id": 8841, - "name": "Void knight mace" - } - ], - "logCount": 1 - }, - "uuid": "a76a5212-3243-4424-8ffc-f4614c732d30" - }, - { - "_id": 53, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 3 - }, - "uuid": "496debc0-4205-4c99-b7f4-ea6afd190a4b" - }, - { - "_id": 54, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 4 - }, - "uuid": "c0eda747-e29d-4e8b-92d3-7e937222f192" - }, - { - "_id": 55, - "name": "Get 1 unique from Shades of Mort'ton", - "tip": "Potential reward from the Shades of Morton Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort%27ton_(minigame)", - "wikiImage": "https://oldschool.runescape.wiki/images/c/c4/Fine_cloth.png?4af70", - "assetImage": "Fine_cloth.png", - "colLogData": { - "category": "Minigames", - "logName": "shades_of_mortton", - "include": [ - { - "id": 12851, - "name": "Amulet of the damned (full)" - }, - { - "id": 25630, - "name": "Flamtaer bag" - }, - { - "id": 3470, - "name": "Fine cloth" - }, - { - "id": 25434, - "name": "Zealot's robe top" - }, - { - "id": 25436, - "name": "Zealot's robe bottom" - }, - { - "id": 25438, - "name": "Zealot's helm" - }, - { - "id": 25440, - "name": "Zealot's boots" - }, - { - "id": 25442, - "name": "Bronze locks" - }, - { - "id": 25445, - "name": "Steel locks" - }, - { - "id": 25448, - "name": "Black locks" - }, - { - "id": 25451, - "name": "Silver locks" - }, - { - "id": 25454, - "name": "Gold locks" - }, - { - "id": 25474, - "name": "Tree wizards' journal" - }, - { - "id": 25476, - "name": "Bloody notes" - } - ], - "logCount": 5 - }, - "uuid": "39706395-26d2-4918-99df-4cfbde3c6ebe" - }, - { - "_id": 56, - "name": "Get 1 piece of Farmer's equipment", - "tip": "Can be purchased as a reward from the Tithe Farm Minigame. Plant those seeds! ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm", - "wikiImage": "https://oldschool.runescape.wiki/images/b/bd/Farmer%27s_jacket.png?a4894", - "assetImage": "Farmers_jacket.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13640, - "name": "Farmer's boro trousers" - }, - { - "id": 13642, - "name": "Farmer's jacket" - }, - { - "id": 13644, - "name": "Farmer's boots" - }, - { - "id": 13646, - "name": "Farmer's strawhat" - } - ], - "logCount": 3 - }, - "uuid": "343c206c-fda8-43c2-beec-ef0e9912ae37" - }, - { - "_id": 57, - "name": "Get 1 piece of Farmer's equipment", - "tip": "Can be purchased as a reward from the Tithe Farm Minigame. Plant those seeds! ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm", - "wikiImage": "https://oldschool.runescape.wiki/images/b/bd/Farmer%27s_jacket.png?a4894", - "assetImage": "Farmers_jacket.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13640, - "name": "Farmer's boro trousers" - }, - { - "id": 13642, - "name": "Farmer's jacket" - }, - { - "id": 13644, - "name": "Farmer's boots" - }, - { - "id": 13646, - "name": "Farmer's strawhat" - } - ], - "logCount": 4 - }, - "uuid": "5c2f235b-bc8f-4f8a-9083-6eac59f94ee3" - }, - { - "_id": 58, - "name": "Get the Seed box", - "tip": "Can be purchased as a reward from the Tithe Farm Minigame. Plant those seeds! ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f0/Seed_box.png", - "assetImage": "Seed_box.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13639, - "name": "Seed box" - } - ], - "logCount": 1 - }, - "uuid": "f1fc7abb-de32-43c9-ae0c-8d7c7747d6d9" - }, - { - "_id": 59, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "http://oldschool.runescape.wiki/images/thumb/4/4a/Green_naval_shirt_detail.png/130px-Green_naval_shirt_detail.png?84c8b", - "assetImage": "130px-Green_naval_shirt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 3 - }, - "uuid": "bbfe8e47-1254-4a8f-af67-7d4de09bbd87" - }, - { - "_id": 60, - "name": "Get 1 Naval set", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "http://oldschool.runescape.wiki/images/thumb/4/4a/Green_naval_shirt_detail.png/130px-Green_naval_shirt_detail.png?84c8b", - "assetImage": "130px-Green_naval_shirt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble brewing", - "include": [ - { - "id": 8952, - "name": "Blue naval shirt" - }, - { - "id": 8953, - "name": "Green naval shirt" - }, - { - "id": 8954, - "name": "Red naval shirt" - }, - { - "id": 8955, - "name": "Brown naval shirt" - }, - { - "id": 8956, - "name": "Black naval shirt" - }, - { - "id": 8957, - "name": "Purple naval shirt" - }, - { - "id": 8958, - "name": "Grey naval shirt" - }, - { - "id": 8959, - "name": "Blue tricorn hat" - }, - { - "id": 8960, - "name": "Green tricorn hat" - }, - { - "id": 8961, - "name": "Red tricorn hat" - }, - { - "id": 8962, - "name": "Brown tricorn hat" - }, - { - "id": 8963, - "name": "Black tricorn hat" - }, - { - "id": 8964, - "name": "Purple tricorn hat" - }, - { - "id": 8965, - "name": "Grey tricorn hat" - }, - { - "id": 8991, - "name": "Blue navy slacks" - }, - { - "id": 8992, - "name": "Green navy slacks" - }, - { - "id": 8993, - "name": "Red navy slacks" - }, - { - "id": 8994, - "name": "Brown navy slacks" - }, - { - "id": 8995, - "name": "Black navy slacks" - }, - { - "id": 8996, - "name": "Purple navy slacks" - }, - { - "id": 8997, - "name": "Grey navy slacks" - } - ], - "logCount": 6 - }, - "uuid": "d23d5039-34b4-48d4-8884-51f241baf3ca" - }, - { - "_id": 61, - "name": "Get the Cutthroat flag", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/2/26/Cutthroat_flag.png?8e198", - "assetImage": "Cutthroat_flag.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble brewing", - "include": [ - { - "id": 8966, - "name": "Cutthroat flag" - } - ], - "logCount": 1 - }, - "uuid": "4f9d493f-0565-412b-b502-962c855b5b3f" - }, - { - "_id": 62, - "name": "Get the Guilded smile flag", - "tip": "Can be purchased as a reward from the Trouble Brewing Minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing", - "wikiImage": "https://oldschool.runescape.wiki/images/7/7f/Guilded_smile_flag.png?f5de7", - "assetImage": "Guilded_smile_flag.png", - "colLogData": { - "category": "Minigames", - "logName": "trouble brewing", - "include": [ - { - "id": 8967, - "name": "Gilded smile flag" - } - ], - "logCount": 1 - }, - "uuid": "f96b8bd6-dcdf-4aab-b34a-0f9cb49904de" - }, - { - "_id": 63, - "name": "Get the Pearl fly fishing rod", - "tip": "Can be purchased as a reward from the Aerial Fishing hunter method. Good luck with that RSI. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Aerial_fishing", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a1/Pearl_fly_fishing_rod.png?9bfc6", - "assetImage": "Pearl_fly_fishing_rod.png", - "colLogData": { - "category": "Other", - "logName": "aerial_fishing", - "include": [ - { - "id": 22844, - "name": "Pearl fly fishing rod" - } - ], - "logCount": 1 - }, - "uuid": "05fa9c9a-6732-46d1-9be7-675bd0b68a35" - }, - { - "_id": 64, - "name": "Get the Pearl barbarian rod", - "tip": "Can be purchased as a reward from the Aerial Fishing hunter method. Good luck with that RSI. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Aerial_fishing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f0/Pearl_barbarian_rod_detail.png/150px-Pearl_barbarian_rod_detail.png?4ae33", - "assetImage": "150px-Pearl_barbarian_rod_detail.png", - "colLogData": { - "category": "Other", - "logName": "aerial_fishing", - "include": [ - { - "id": 22842, - "name": "Pearl barbarian rod" - } - ], - "logCount": 1 - }, - "uuid": "5021cc26-01ad-4b08-913e-7adfac1f743f" - }, - { - "_id": 65, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "champions_challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 2 - }, - "uuid": "20bde945-cdb3-4f1f-bff3-7d2d467876c7" - }, - { - "_id": 66, - "name": "Get 1 unique Champion scroll", - "tip": "Can be received from a drop from several monsters.", - "wikiLink": "https://oldschool.runescape.wiki/w/Champion%27s_scroll", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6d/Goblin_champion_scroll.png?e28d6", - "assetImage": "Goblin_champion_scroll.png", - "colLogData": { - "category": "Other", - "logName": "champions_challenge", - "include": [ - { - "id": 6798, - "name": "Earth warrior champion scroll" - }, - { - "id": 6799, - "name": "Ghoul champion scroll" - }, - { - "id": 6800, - "name": "Giant champion scroll" - }, - { - "id": 6801, - "name": "Goblin champion scroll" - }, - { - "id": 6802, - "name": "Hobgoblin champion scroll" - }, - { - "id": 6803, - "name": "Imp champion scroll" - }, - { - "id": 6804, - "name": "Jogre champion scroll" - }, - { - "id": 6805, - "name": "Lesser demon champion scroll" - }, - { - "id": 6806, - "name": "Skeleton champion scroll" - }, - { - "id": 6807, - "name": "Zombie champion scroll" - } - ], - "logCount": 3 - }, - "uuid": "bcab2bd0-1e7c-40e8-8b5d-01e6f695b59b" - }, - { - "_id": 67, - "name": "Get 1 unique Elder chaos robe piece", - "tip": "Can be received as a drop from Elder Chaos Druids. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Elder_Chaos_druid", - "wikiImage": "https://oldschool.runescape.wiki/images/1/11/Elder_chaos_top.png?9163d", - "assetImage": "Elder_chaos_top.png", - "colLogData": { - "category": "Other", - "logName": "elder_chaos_druids", - "include": [ - { - "id": 20517, - "name": "Elder chaos top" - }, - { - "id": 20520, - "name": "Elder chaos robe" - }, - { - "id": 20595, - "name": "Elder chaos hood" - } - ], - "logCount": 1 - }, - "uuid": "ad31734e-3f17-4ef8-9733-1630a4e75143" - }, - { - "_id": 68, - "name": "Get 1 unique Elder chaos robe piece", - "tip": "Can be received as a drop from Elder Chaos Druids. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Elder_Chaos_druid", - "wikiImage": "https://oldschool.runescape.wiki/images/1/11/Elder_chaos_top.png?9163d", - "assetImage": "Elder_chaos_top.png", - "colLogData": { - "category": "Other", - "logName": "elder_chaos_druids", - "include": [ - { - "id": 20517, - "name": "Elder chaos top" - }, - { - "id": 20520, - "name": "Elder chaos robe" - }, - { - "id": 20595, - "name": "Elder chaos hood" - } - ], - "logCount": 2 - }, - "uuid": "c68d2b75-fe55-4a4e-9471-ecb9300104b0" - }, - { - "_id": 69, - "name": "Get the Ogre forester headpiece", - "tip": "Guarenteed from Chompy bird hunting. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_bird_hunting", - "wikiImage": "https://oldschool.runescape.wiki/images/f/ff/Chompy_bird_hat_%28ogre_forester%29_detail.png?3fa61", - "assetImage": "Chompy_bird_hat_ogre_forester_detail.png", - "colLogData": { - "category": "Other", - "logName": "chompy_bird_hunting", - "include": [ - { - "id": 2986, - "name": "Chompy bird hat (ogre forester)" - } - ], - "logCount": 1 - }, - "uuid": "a2c03154-445f-41d2-8cfc-db106262a64e" - }, - { - "_id": 70, - "name": "Get a Dragon defender", - "tip": "Can be received as a drop from Cyclops in the Warriors Guild basement. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Dragon_defender", - "wikiImage": "https://oldschool.runescape.wiki/images/f/f1/Dragon_defender.png?b874d", - "assetImage": "Dragon_defender.png", - "colLogData": { - "category": "Other", - "logName": "cyclopes", - "include": [ - { - "id": 12954, - "name": "Dragon defender" - } - ], - "logCount": 1 - }, - "uuid": "1fe296c8-aae7-4338-9035-93a2592e1d74" - }, - { - "_id": 71, - "name": "Get 2 unique notes from Fossil Island", - "tip": "Can be received by opening the chest(s) on Fossil Island with 100 Numulite. Killing hoop snakes for the Numulite is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_note", - "wikiImage": "http://oldschool.runescape.wiki/images/8/82/Scribbled_note.png", - "assetImage": "Scribbled_note.png", - "colLogData": { - "category": "Other", - "logName": "fossil_island_notes", - "include": [ - { - "id": 21664, - "name": "Scribbled note" - }, - { - "id": 21666, - "name": "Partial note" - }, - { - "id": 21668, - "name": "Ancient note" - }, - { - "id": 21670, - "name": "Ancient writings" - }, - { - "id": 21672, - "name": "Experimental note" - }, - { - "id": 21674, - "name": "Paragraph of text" - }, - { - "id": 21676, - "name": "Musty smelling note" - }, - { - "id": 21678, - "name": "Hastily scrawled note" - }, - { - "id": 21680, - "name": "Old writing" - }, - { - "id": 21682, - "name": "Short note" - } - ], - "logCount": 6 - }, - "uuid": "b96a0526-f981-48d9-832c-bd213ebd7e6e" - }, - { - "_id": 72, - "name": "Get 2 unique notes from Fossil Island", - "tip": "Can be received by opening the chest(s) on Fossil Island with 100 Numulite. Killing hoop snakes for the Numulite is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_note", - "wikiImage": "http://oldschool.runescape.wiki/images/8/82/Scribbled_note.png", - "assetImage": "Scribbled_note.png", - "colLogData": { - "category": "Other", - "logName": "fossil_island_notes", - "include": [ - { - "id": 21664, - "name": "Scribbled note" - }, - { - "id": 21666, - "name": "Partial note" - }, - { - "id": 21668, - "name": "Ancient note" - }, - { - "id": 21670, - "name": "Ancient writings" - }, - { - "id": 21672, - "name": "Experimental note" - }, - { - "id": 21674, - "name": "Paragraph of text" - }, - { - "id": 21676, - "name": "Musty smelling note" - }, - { - "id": 21678, - "name": "Hastily scrawled note" - }, - { - "id": 21680, - "name": "Old writing" - }, - { - "id": 21682, - "name": "Short note" - } - ], - "logCount": 8 - }, - "uuid": "3ba2da67-a5c9-4b90-b5d2-9e021e9915f6" - }, - { - "_id": 73, - "name": "Get 2 unique notes from Fossil Island", - "tip": "Can be received by opening the chest(s) on Fossil Island with 100 Numulite. Killing hoop snakes for the Numulite is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_note", - "wikiImage": "http://oldschool.runescape.wiki/images/8/82/Scribbled_note.png", - "assetImage": "Scribbled_note.png", - "colLogData": { - "category": "Other", - "logName": "fossil_island_notes", - "include": [ - { - "id": 21664, - "name": "Scribbled note" - }, - { - "id": 21666, - "name": "Partial note" - }, - { - "id": 21668, - "name": "Ancient note" - }, - { - "id": 21670, - "name": "Ancient writings" - }, - { - "id": 21672, - "name": "Experimental note" - }, - { - "id": 21674, - "name": "Paragraph of text" - }, - { - "id": 21676, - "name": "Musty smelling note" - }, - { - "id": 21678, - "name": "Hastily scrawled note" - }, - { - "id": 21680, - "name": "Old writing" - }, - { - "id": 21682, - "name": "Short note" - } - ], - "logCount": 10 - }, - "uuid": "09602393-49ab-4f76-aef5-144800602831" - }, - { - "_id": 74, - "name": "Get the Coal bag", - "tip": "Can be purchased as a reward from the Motherlode Mine training method. Pay-Dirt!", - "wikiLink": "https://oldschool.runescape.wiki/w/Motherlode_Mine", - "wikiImage": "http://oldschool.runescape.wiki/images/3/3c/Coal_bag.png", - "assetImage": "Coal_bag.png", - "colLogData": { - "category": "Other", - "logName": "motherlode_mine", - "include": [ - { - "id": 25627, - "name": "Coal bag" - } - ], - "logCount": 1 - }, - "uuid": "a50736af-fa52-4274-b1f1-192fd13f8dbf" - }, - { - "_id": 75, - "name": "Get the Gem bag", - "tip": "Can be purchased as a reward from the Motherlode Mine training method. Pay-Dirt!", - "wikiLink": "https://oldschool.runescape.wiki/w/Motherlode_Mine", - "wikiImage": "http://oldschool.runescape.wiki/images/thumb/0/02/Gem_bag_detail.png/150px-Gem_bag_detail.png", - "assetImage": "150px-Gem_bag_detail.png", - "colLogData": { - "category": "Other", - "logName": "motherlode_mine", - "include": [ - { - "id": 25628, - "name": "Gem bag" - } - ], - "logCount": 1 - }, - "uuid": "f27bb1a4-27b7-4b94-ac37-a2425c580717" - }, - { - "_id": 76, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 10 - }, - "uuid": "e06e3d24-2d18-4470-965a-b843ef3082ba" - }, - { - "_id": 77, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 12 - }, - "uuid": "965e6d66-7849-4e2b-b85e-ab80005c2737" - }, - { - "_id": 78, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 14 - }, - "uuid": "85c31300-0e11-4f32-af93-f624b036db69" - }, - { - "_id": 79, - "name": "Get 2 unique Ancient pages", - "tip": "Can be received when searching remains in the Whirlpool Dungeon. Check out the Ancient Page guide on the FAQ page! I'm not going to remember to link that page here I feel.", - "wikiLink": "https://oldschool.runescape.wiki/w/Ancient_page", - "wikiImage": "https://oldschool.runescape.wiki/images/9/9b/Ancient_page.png?695fa", - "assetImage": "Ancient_page.png", - "colLogData": { - "category": "Other", - "logName": "my_notes", - "include": [ - { - "id": 11341, - "name": "Ancient page" - }, - { - "id": 11342, - "name": "Ancient page" - }, - { - "id": 11343, - "name": "Ancient page" - }, - { - "id": 11344, - "name": "Ancient page" - }, - { - "id": 11345, - "name": "Ancient page" - }, - { - "id": 11346, - "name": "Ancient page" - }, - { - "id": 11347, - "name": "Ancient page" - }, - { - "id": 11348, - "name": "Ancient page" - }, - { - "id": 11349, - "name": "Ancient page" - }, - { - "id": 11350, - "name": "Ancient page" - }, - { - "id": 11351, - "name": "Ancient page" - }, - { - "id": 11352, - "name": "Ancient page" - }, - { - "id": 11353, - "name": "Ancient page" - }, - { - "id": 11354, - "name": "Ancient page" - }, - { - "id": 11355, - "name": "Ancient page" - }, - { - "id": 11356, - "name": "Ancient page" - }, - { - "id": 11357, - "name": "Ancient page" - }, - { - "id": 11358, - "name": "Ancient page" - }, - { - "id": 11359, - "name": "Ancient page" - }, - { - "id": 11360, - "name": "Ancient page" - }, - { - "id": 11361, - "name": "Ancient page" - }, - { - "id": 11362, - "name": "Ancient page" - }, - { - "id": 11363, - "name": "Ancient page" - }, - { - "id": 11364, - "name": "Ancient page" - }, - { - "id": 11365, - "name": "Ancient page" - }, - { - "id": 11366, - "name": "Ancient page" - } - ], - "logCount": 16 - }, - "uuid": "f98f811d-2640-49b4-9e78-cf29a24e4e38" - }, - { - "_id": 80, - "name": "Get tier 5 Shayzien armour", - "tip": "Guarenteed drop by fighting the members of the Shayzien Combat Ring. Must obtain armour sets 1 through 5 to complete the task. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shayzien_armour", - "wikiImage": "https://oldschool.runescape.wiki/images/5/54/Shayzien_platebody_%285%29.png?8090a", - "assetImage": "Shayzien_platebody_5.png", - "colLogData": { - "category": "Other", - "logName": "shayzien_armour", - "include": [ - { - "id": 13357, - "name": "Shayzien gloves (1)" - }, - { - "id": 13358, - "name": "Shayzien boots (1)" - }, - { - "id": 13359, - "name": "Shayzien helm (1)" - }, - { - "id": 13360, - "name": "Shayzien greaves (1)" - }, - { - "id": 13361, - "name": "Shayzien platebody (1)" - }, - { - "id": 13362, - "name": "Shayzien gloves (2)" - }, - { - "id": 13363, - "name": "Shayzien boots (2)" - }, - { - "id": 13364, - "name": "Shayzien helm (2)" - }, - { - "id": 13365, - "name": "Shayzien greaves (2)" - }, - { - "id": 13366, - "name": "Shayzien platebody (2)" - }, - { - "id": 13367, - "name": "Shayzien gloves (3)" - }, - { - "id": 13368, - "name": "Shayzien boots (3)" - }, - { - "id": 13369, - "name": "Shayzien helm (3)" - }, - { - "id": 13370, - "name": "Shayzien greaves (3)" - }, - { - "id": 13371, - "name": "Shayzien platebody (3)" - }, - { - "id": 13372, - "name": "Shayzien gloves (4)" - }, - { - "id": 13373, - "name": "Shayzien boots (4)" - }, - { - "id": 13374, - "name": "Shayzien helm (4)" - }, - { - "id": 13375, - "name": "Shayzien greaves (4)" - }, - { - "id": 13376, - "name": "Shayzien platebody (4)" - }, - { - "id": 13377, - "name": "Shayzien gloves (5)" - }, - { - "id": 13378, - "name": "Shayzien boots (5)" - }, - { - "id": 13379, - "name": "Shayzien helm (5)" - }, - { - "id": 13380, - "name": "Shayzien greaves (5)" - }, - { - "id": 13381, - "name": "Shayzien body (5)" - } - ], - "logCount": 25 - }, - "uuid": "119ba83c-0fb2-4098-ba26-f32d183ff190" - }, - { - "_id": 81, - "name": "Get a Basilisk head", - "tip": "Can be received as a drop from Basilisk. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Basilisk_head", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/d/d5/Basilisk_head_detail.png/150px-Basilisk_head_detail.png?22201", - "assetImage": "150px-Basilisk_head_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 7977, - "name": "Basilisk head" - } - ], - "logCount": 1 - }, - "uuid": "a12a62ca-f1bb-41c5-a0b8-6a0fc844969b" - }, - { - "_id": 82, - "name": "Get 1 unique from Gargoyles", - "tip": "Can be received as a drop from Gargoyles. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Gargoyle", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6f/Granite_maul.png?f847d", - "assetImage": "Granite_maul.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4153, - "name": "Granite maul" - }, - { - "id": 4101, - "name": "Mystic robe top (dark)" - } - ], - "logCount": 1 - }, - "uuid": "7f7f804b-85e4-4da4-8da2-393861b7286b" - }, - { - "_id": 83, - "name": "Get 1 unique from Gargoyles", - "tip": "Can be received as a drop from Gargoyles. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Gargoyle", - "wikiImage": "https://oldschool.runescape.wiki/images/6/6f/Granite_maul.png?f847d", - "assetImage": "Granite_maul.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4153, - "name": "Granite maul" - }, - { - "id": 4101, - "name": "Mystic robe top (dark)" - } - ], - "logCount": 2 - }, - "uuid": "8d0830b2-ba6f-46c0-83b4-af767f1239fe" - }, - { - "_id": 84, - "name": "Get 1 unique from Kurasks", - "tip": "Can be received as a drop from Kurask.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kurask", - "wikiImage": "https://oldschool.runescape.wiki/images/4/40/Leaf-bladed_battleaxe.png?537d8", - "assetImage": "Leaf-bladed_battleaxe.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4111, - "name": "Mystic robe top (light)" - }, - { - "id": 20727, - "name": "Leaf-bladed battleaxe" - } - ], - "logCount": 1 - }, - "uuid": "6c2479db-4679-4391-9f15-10e8dfd10b7b" - }, - { - "_id": 85, - "name": "Get 1 unique from Kurasks", - "tip": "Can be received as a drop from Kurask.", - "wikiLink": "https://oldschool.runescape.wiki/w/Kurask", - "wikiImage": "https://oldschool.runescape.wiki/images/4/40/Leaf-bladed_battleaxe.png?537d8", - "assetImage": "Leaf-bladed_battleaxe.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4111, - "name": "Mystic robe top (light)" - }, - { - "id": 20727, - "name": "Leaf-bladed battleaxe" - } - ], - "logCount": 2 - }, - "uuid": "3b9922ab-f5f6-46e4-af22-c3525109474f" - }, - { - "_id": 86, - "name": "Get a Granite longsword", - "tip": "Can be received as a drop from Fossil Island Wyverns. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Granite_longsword", - "wikiImage": "https://oldschool.runescape.wiki/images/1/13/Granite_longsword.png?b571b", - "assetImage": "Granite_longsword.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 21646, - "name": "Granite longsword" - } - ], - "logCount": 1 - }, - "uuid": "739f3185-a572-4c09-9a47-8c4a1e63e321" - }, - { - "_id": 87, - "name": "Get Granite legs", - "tip": "Can be received as a drop from Wyverns. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Granite_legs", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/5/57/Granite_legs_detail.png/150px-Granite_legs_detail.png?c7b94", - "assetImage": "150px-Granite_legs_detail.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 6809, - "name": "Granite legs" - } - ], - "logCount": 1 - }, - "uuid": "e261f744-c713-4a45-90c0-2f866aa9024a" - }, - { - "_id": 88, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4129, - "name": "Adamant boots" - }, - { - "id": 4131, - "name": "Rune boots" - } - ], - "logCount": 1 - }, - "uuid": "e2f3d47a-708a-4838-b07b-ed03cb09ccca" - }, - { - "_id": 89, - "name": "Get the next tier of metal boots", - "tip": "Can be received as a drop from serveral monsters. You must start by obtaining the lowest pair of you do not currently have. Bronze through Rune. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Metal_boots", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5e/Bronze_boots.png?6fdc4", - "assetImage": "Bronze_boots.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4129, - "name": "Adamant boots" - }, - { - "id": 4131, - "name": "Rune boots" - } - ], - "logCount": 2 - }, - "uuid": "76f50ee9-9463-492f-8520-ab512bf3f1cb" - }, - { - "_id": 90, - "name": "Get a Mystic robe bottom (dark)", - "tip": "Can be received as a drop from Aberrant spectres. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mystic_robe_bottom_(dark)", - "wikiImage": "https://oldschool.runescape.wiki/images/9/94/Mystic_robe_bottom_%28dark%29.png?6ea95", - "assetImage": "Mystic_robe_bottom_dark.png", - "colLogData": { - "category": "Other", - "logName": "slayer", - "include": [ - { - "id": 4103, - "name": "Mystic robe bottom (dark)" - } - ], - "logCount": 1 - }, - "uuid": "0d3e7359-0726-49d1-b910-9d6c70d17fff" - }, - { - "_id": 91, - "name": "Get 1 unique Tzhaar drop", - "tip": "Can be received as a drop from TzHaar creatures. Recommended to kill Kets until you have all their unique drops, the kill Xils. ", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Obsidian_cape.png?922cd", - "assetImage": "Obsidian_cape.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 6522, - "name": "Toktz-xil-ul" - }, - { - "id": 6523, - "name": "Toktz-xil-ak" - }, - { - "id": 6524, - "name": "Toktz-ket-xil" - }, - { - "id": 6525, - "name": "Toktz-xil-ek" - }, - { - "id": 6528, - "name": "Tzhaar-ket-om" - }, - { - "id": 6568, - "name": "Obsidian cape" - } - ], - "logCount": 3 - }, - "uuid": "4deb0c38-c550-4feb-a5f1-c36db8a7dee5" - }, - { - "_id": 92, - "name": "Get 1 unique Tzhaar drop", - "tip": "Can be received as a drop from TzHaar creatures. Recommended to kill Kets until you have all their unique drops, the kill Xils. ", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Obsidian_cape.png?922cd", - "assetImage": "Obsidian_cape.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 6522, - "name": "Toktz-xil-ul" - }, - { - "id": 6523, - "name": "Toktz-xil-ak" - }, - { - "id": 6524, - "name": "Toktz-ket-xil" - }, - { - "id": 6525, - "name": "Toktz-xil-ek" - }, - { - "id": 6528, - "name": "Tzhaar-ket-om" - }, - { - "id": 6568, - "name": "Obsidian cape" - } - ], - "logCount": 4 - }, - "uuid": "eb99cfe7-654b-4d31-9da8-5498e12f84f9" - }, - { - "_id": 93, - "name": "Get 1 unique Tzhaar drop", - "tip": "Can be received as a drop from TzHaar creatures. Recommended to kill Kets until you have all their unique drops, the kill Xils. ", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Obsidian_cape.png?922cd", - "assetImage": "Obsidian_cape.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 6522, - "name": "Toktz-xil-ul" - }, - { - "id": 6523, - "name": "Toktz-xil-ak" - }, - { - "id": 6524, - "name": "Toktz-ket-xil" - }, - { - "id": 6525, - "name": "Toktz-xil-ek" - }, - { - "id": 6528, - "name": "Tzhaar-ket-om" - }, - { - "id": 6568, - "name": "Obsidian cape" - } - ], - "logCount": 5 - }, - "uuid": "3aea76a3-97c6-4ae0-9bff-c5cbac1da875" - }, - { - "_id": 94, - "name": "Get 1 unique Tzhaar drop", - "tip": "Can be received as a drop from TzHaar creatures. Recommended to kill Kets until you have all their unique drops, the kill Xils. ", - "wikiLink": "https://oldschool.runescape.wiki/w/TzHaar", - "wikiImage": "https://oldschool.runescape.wiki/images/e/ea/Obsidian_cape.png?922cd", - "assetImage": "Obsidian_cape.png", - "colLogData": { - "category": "Other", - "logName": "tzHaar", - "include": [ - { - "id": 6522, - "name": "Toktz-xil-ul" - }, - { - "id": 6523, - "name": "Toktz-xil-ak" - }, - { - "id": 6524, - "name": "Toktz-ket-xil" - }, - { - "id": 6525, - "name": "Toktz-xil-ek" - }, - { - "id": 6528, - "name": "Tzhaar-ket-om" - }, - { - "id": 6568, - "name": "Obsidian cape" - } - ], - "logCount": 6 - }, - "uuid": "c73c910b-7713-428b-ad7d-dae5f99e5801" - }, - { - "_id": 95, - "name": "Get a Big shark", - "tip": "Obtained randomly whilst fishing for sharks. Good Luck. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Big_shark", - "wikiImage": "https://oldschool.runescape.wiki/images/a/a9/Big_shark.png?8a58f", - "assetImage": "Big_shark.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 7993, - "name": "Big shark" - } - ], - "logCount": 1 - }, - "uuid": "95e2066e-e01d-445b-98cf-c09b43d42ba7" - }, - { - "_id": 96, - "name": "Get a Curved bone", - "tip": "Can be received as a drop rarely, from any monster that drop big bones.", - "wikiLink": "https://oldschool.runescape.wiki/w/Curved_bone", - "wikiImage": "https://oldschool.runescape.wiki/images/8/8f/Curved_bone.png?69581", - "assetImage": "Curved_bone.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 10977, - "name": "Curved bone" - } - ], - "logCount": 1 - }, - "uuid": "8554414b-ae73-4c6e-99ac-0c6630c90904" - }, - { - "_id": 97, - "name": "Get a Shaman mask", - "tip": "Can be received as drop from Shaman Ogress Warriors", - "wikiLink": "https://oldschool.runescape.wiki/w/Shaman_mask", - "wikiImage": "https://oldschool.runescape.wiki/images/2/2b/Shaman_mask.png?29eac", - "assetImage": "Shaman_mask.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 21838, - "name": "Shaman mask" - } - ], - "logCount": 1 - }, - "uuid": "bc5da9fd-beaa-41b0-b7b2-51b0cd30addb" - }, - { - "_id": 98, - "name": "Get Superior mining gloves", - "tip": "Can be purchased as a reward in the Mining Guild. Obtain unidentified minerals by minining in the guild. Mining iron ore is recommended. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Superior_mining_gloves", - "wikiImage": "http://oldschool.runescape.wiki/images/f/fa/Superior_mining_gloves.png?1d69f", - "assetImage": "Superior_mining_gloves.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 21345, - "name": "Superior mining gloves" - } - ], - "logCount": 1 - }, - "uuid": "7701b754-3d83-4ada-a888-0e1f8b638268" - }, - { - "_id": 99, - "name": "Get a Bracelet of ethereum or Rev cave teleport", - "tip": "Can be received as a drop from any Revenant.", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "wikiImage": "http://oldschool.runescape.wiki/images/thumb/5/5f/Bracelet_of_ethereum_%28uncharged%29_detail.png/140px-Bracelet_of_ethereum_%28uncharged%29_detail.png?8e948", - "assetImage": "140px-Bracelet_of_ethereum_uncharged_detail.png", - "colLogData": { - "category": "Other", - "logName": "revenants", - "include": [ - { - "id": 21817, - "name": "Bracelet of ethereum (uncharged)" - }, - { - "id": 21802, - "name": "Revenant cave teleport" - } - ], - "logCount": 1 - }, - "uuid": "3cbf6265-80fa-4246-ba54-2be267fbc171" - }, - { - "_id": 100, - "name": "Get a Bracelet of ethereum or Rev cave teleport", - "tip": "Can be received as a drop from any Revenant.", - "wikiLink": "https://oldschool.runescape.wiki/w/Revenants", - "wikiImage": "http://oldschool.runescape.wiki/images/thumb/5/5f/Bracelet_of_ethereum_%28uncharged%29_detail.png/140px-Bracelet_of_ethereum_%28uncharged%29_detail.png?8e948", - "assetImage": "140px-Bracelet_of_ethereum_uncharged_detail.png", - "colLogData": { - "category": "Other", - "logName": "revenants", - "include": [ - { - "id": 21817, - "name": "Bracelet of ethereum (uncharged)" - }, - { - "id": 21802, - "name": "Revenant cave teleport" - } - ], - "logCount": 2 - }, - "uuid": "c3f3d61b-31a5-4455-ae8e-f192c03d9c56" - }, - { - "_id": 101, - "name": "Complete the Ardougne Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ardougne_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "040f49c9-93e9-431d-8a4c-d1b8b8a7edf6" - }, - { - "_id": 102, - "name": "Complete the Desert Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Desert_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "5d2d9461-00bc-431b-b943-0693bb8b0fb6" - }, - { - "_id": 103, - "name": "Complete the Falador Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Falador_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "a455bbf7-a570-494f-9753-643aeb83aca9" - }, - { - "_id": 104, - "name": "Complete the Fremennik Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Fremennik_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "958d1774-5ddb-4cb3-abdf-2772de4d024f" - }, - { - "_id": 105, - "name": "Complete the Kandarin Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kandarin_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "f638ebcb-aebf-4c53-bd07-c0e683bc1072" - }, - { - "_id": 106, - "name": "Complete the Karamja Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Karamja_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "306c11a3-241a-49b8-8083-ea05124d72e9" - }, - { - "_id": 107, - "name": "Complete the Kourend&Kebos Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Kourend_%26_Kebos_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "19708dd7-fb75-4ebc-ad65-60697a0d6401" - }, - { - "_id": 108, - "name": "Complete the Lumbridge&Draynor Medium Diary", - "tip": "Complete all the diary tasks. FINALLY AVA'S DEVICE!", - "wikiLink": "https://oldschool.runescape.wiki/w/Lumbridge_%26_Draynor_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "57b5ba2a-b2b0-4442-b767-1a8b35e3be0d" - }, - { - "_id": 109, - "name": "Complete the Morytania Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Morytania_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "31e5ccaa-dd74-42d7-8749-2efdaaf01e4e" - }, - { - "_id": 110, - "name": "Complete the Varrock Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Varrock_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "f59758a3-122e-4d8a-b2ed-5b908fc60a8c" - }, - { - "_id": 111, - "name": "Complete the Western Provinces Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Western_Provinces_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "993eb6f8-e30a-4f0a-977d-148b45e0f7f7" - }, - { - "_id": 112, - "name": "Complete the Wilderness Medium Diary", - "tip": "Complete all the diary tasks. Don't really have much else to tell you. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Wilderness_Diary", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1b/Achievement_Diaries_icon.png?b4e0c", - "assetImage": "Achievement_Diaries_icon.png", - "uuid": "59e36673-6808-4371-ba70-fd8d8003e5ef" - }, - { - "_id": 113, - "name": "Get a Mask of Ranul", - "tip": "Can be received as a drop from Undead Druids. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mask_of_ranul", - "wikiImage": "https://oldschool.runescape.wiki/images/5/5f/Mask_of_ranul.png?bc376", - "assetImage": "Mask_of_ranul.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 23522, - "name": "Mask of ranul" - } - ], - "logCount": 1 - }, - "uuid": "5052c1dc-d89e-4309-b978-8dbc79fa28b6" - }, - { - "_id": 114, - "name": "Get a Giant egg sac(full)", - "tip": "Can be received as a drop from Sarachnis. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Giant_egg_sac", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/6/68/Giant_egg_sac%28full%29_detail.png/150px-Giant_egg_sac%28full%29_detail.png?21191", - "assetImage": "150px-Giant_egg_sacfull_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "sarachnis", - "include": [ - { - "id": 23517, - "name": "Giant egg sac(full)" - } - ], - "logCount": 1 - }, - "uuid": "77c2f0db-7e25-4396-a0e0-19d3c49b2ea6" - }, - { - "_id": 115, - "name": "Get a Herb sack", - "tip": "Can be purchased from Tithe farm or Slayer shop. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Herb_sack", - "wikiImage": "https://oldschool.runescape.wiki/images/6/66/Herb_sack.png?55ceb", - "assetImage": "Herb_sack.png", - "colLogData": { - "category": "Minigames", - "logName": "tithe_farm", - "include": [ - { - "id": 13226, - "name": "Herb sack" - } - ], - "logCount": 1 - }, - "uuid": "0b05a33a-38d1-499b-9d54-57259e47ac02" - }, - { - "_id": 116, - "name": "Get a Plank sack", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame. Don't pull a Kats and do Daddys Home. :) This joke is more applicable in easy tier but still, don't. \u00a0", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/1/18/Plank_sack_detail.png/800px-Plank_sack_detail.png?7b4ca", - "assetImage": "800px-Plank_sack_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 25629, - "name": "Plank sack" - } - ], - "logCount": 1 - }, - "uuid": "aec0718a-0c65-4d74-b384-aa63263e4b14" - }, - { - "_id": 117, - "name": "Get 1 piece of Carpenter equipment", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame. Don't pull a Kats and do Daddys Home. :) This joke is more applicable in easy tier but still, don't. \u00a0", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f5/Carpenter%27s_shirt_detail.png/1280px-Carpenter%27s_shirt_detail.png?2c3c1", - "assetImage": "1280px-Carpenters_shirt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 24872, - "name": "Carpenter's helmet" - }, - { - "id": 24874, - "name": "Carpenter's shirt" - }, - { - "id": 24876, - "name": "Carpenter's trousers" - }, - { - "id": 24878, - "name": "Carpenter's boots" - } - ], - "logCount": 1 - }, - "uuid": "d5bafcab-1276-432d-b6ce-543fe02e364c" - }, - { - "_id": 118, - "name": "Get 1 piece of Carpenter equipment", - "tip": "Can be purchased as a reward from the Mahogany Homes Minigame. Don't pull a Kats and do Daddys Home. :) This joke is more applicable in easy tier but still, don't. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Mahogany_Homes", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f5/Carpenter%27s_shirt_detail.png/1280px-Carpenter%27s_shirt_detail.png?2c3c1", - "assetImage": "1280px-Carpenters_shirt_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "mahogany_homes", - "include": [ - { - "id": 24872, - "name": "Carpenter's helmet" - }, - { - "id": 24874, - "name": "Carpenter's shirt" - }, - { - "id": 24876, - "name": "Carpenter's trousers" - }, - { - "id": 24878, - "name": "Carpenter's boots" - } - ], - "logCount": 2 - }, - "uuid": "b6377ad1-783d-4735-b623-28495c8e6775" - }, - { - "_id": 119, - "name": "Get an Ectoplasmator", - "tip": "Can be purchased as a reward from the Soul Wars Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Ectoplasmator", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/0/0a/Ectoplasmator_detail.png/130px-Ectoplasmator_detail.png?6fbc0", - "assetImage": "130px-Ectoplasmator_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "soul_wars", - "include": [ - { - "id": 25340, - "name": "Ectoplasmator" - } - ], - "logCount": 1 - }, - "uuid": "1ddbb64c-d379-4001-8e30-6564e911c276" - }, - { - "_id": 120, - "name": "Get a Penance skirt", - "tip": "Can be purchased as a reward from the Barbarian Assault Combat Minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. Defender is best role, AMA. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault", - "wikiImage": "https://oldschool.runescape.wiki/images/1/1d/Penance_skirt.png?a35d6", - "assetImage": "Penance_skirt.png", - "colLogData": { - "category": "Minigames", - "logName": "barbarian_assault", - "include": [ - { - "id": 10555, - "name": "Penance skirt" - } - ], - "logCount": 1 - }, - "uuid": "f6153377-d3b8-4ae3-9cd1-55bf85a10cc4" - }, - { - "_id": 121, - "name": "Get a Ward upgrade kit", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/1/19/Ward_upgrade_kit_detail.png/150px-Ward_upgrade_kit_detail.png?7052f", - "assetImage": "150px-Ward_upgrade_kit_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12802, - "name": "Ward upgrade kit" - } - ], - "logCount": 1 - }, - "uuid": "df3f714e-eb7e-4b86-8b73-f25d6ebc3020" - }, - { - "_id": 122, - "name": "Get a Granite clamp", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/6/6b/Granite_clamp_detail.png/150px-Granite_clamp_detail.png?7627d", - "assetImage": "150px-Granite_clamp_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12849, - "name": "Granite clamp" - } - ], - "logCount": 1 - }, - "uuid": "bf07a401-9a81-4520-9dd8-1c5af2bc5986" - }, - { - "_id": 123, - "name": "Get a Volcanic whip mix", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/5/59/Volcanic_whip_mix_detail_animated.gif/120px-Volcanic_whip_mix_detail_animated.gif?f6fd3", - "assetImage": "Volcanic_whip_mix.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12771, - "name": "Volcanic whip mix" - } - ], - "logCount": 1 - }, - "uuid": "69b50b44-33f2-485e-a4e0-195e8f8fa044" - }, - { - "_id": 124, - "name": "Get a Frozen whip mix", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/e/e4/Frozen_whip_mix_detail.png/120px-Frozen_whip_mix_detail.png?20473", - "assetImage": "120px-Frozen_whip_mix_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12769, - "name": "Frozen whip mix" - } - ], - "logCount": 1 - }, - "uuid": "60cbbdb2-b233-48a0-8413-8867217ce53a" - }, - { - "_id": 125, - "name": "Get a Steam staff upgrade kit", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/3/3e/Steam_staff_upgrade_kit_detail.png/150px-Steam_staff_upgrade_kit_detail.png?7627d", - "assetImage": "150px-Steam_staff_upgrade_kit_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12798, - "name": "Steam staff upgrade kit" - } - ], - "logCount": 1 - }, - "uuid": "4ba185cd-ee9b-45ce-b2c9-10462a8ee843" - }, - { - "_id": 126, - "name": "Get a Lava staff upgrade kit", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/c/c9/Lava_staff_upgrade_kit_detail.png/150px-Lava_staff_upgrade_kit_detail.png?7627d", - "assetImage": "150px-Lava_staff_upgrade_kit_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 21202, - "name": "Lava staff upgrade kit" - } - ], - "logCount": 1 - }, - "uuid": "0e7ab87d-cde1-4224-b731-0f4b16308e59" - }, - { - "_id": 127, - "name": "Get a Dragon pickaxe upgrade kit", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/f/f8/Dragon_pickaxe_upgrade_kit_detail.png/150px-Dragon_pickaxe_upgrade_kit_detail.png?7627d", - "assetImage": "150px-Dragon_pickaxe_upgrade_kit_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 12800, - "name": "Dragon pickaxe upgrade kit" - } - ], - "logCount": 1 - }, - "uuid": "2cff2acd-a0c8-446b-a83b-9ac734b308ad" - }, - { - "_id": 128, - "name": "Get an Ornate maul handle", - "isLMS": true, - "tip": "Can be purchased as a reward from the Last Man Standing PVP Minigame. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Last_Man_Standing", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/a2/Ornate_maul_handle_detail.png/120px-Ornate_maul_handle_detail.png?f9782", - "assetImage": "120px-Ornate_maul_handle_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "last_man_standing", - "include": [ - { - "id": 24229, - "name": "Ornate maul handle" - } - ], - "logCount": 1 - }, - "uuid": "bc76ea57-5ef9-4ab0-bdcb-37c410c2183a" - }, - { - "_id": 129, - "name": "Get a Celestial ring", - "tip": "Can be purchased as a reward from the Shooting Stars Diversion and Distraction Minigame. Star Miners Clan Chat to find stars. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shooting_Stars", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/d/da/Celestial_ring_%28uncharged%29_detail.png/170px-Celestial_ring_%28uncharged%29_detail.png?4e598", - "assetImage": "170px-Celestial_ring_uncharged_detail.png", - "colLogData": { - "category": "Other", - "logName": "shooting_stars", - "include": [ - { - "id": 25539, - "name": "Celestial ring (uncharged)" - } - ], - "logCount": 1 - }, - "uuid": "1718dd85-443c-41ad-8b49-96e3e405a7e6" - }, - { - "_id": 130, - "name": "Get a Star fragment", - "tip": "Can be purchased as a reward from the Shooting Stars Diversion and Distraction Minigame. Star Miners Clan Chat to find stars. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Shooting_Stars", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/5/5f/Star_fragment_detail.png/140px-Star_fragment_detail.png?20468", - "assetImage": "140px-Star_fragment_detail.png", - "colLogData": { - "category": "Other", - "logName": "shooting_stars", - "include": [ - { - "id": 25547, - "name": "Star fragment" - } - ], - "logCount": 1 - }, - "uuid": "787255e5-07ab-4edf-b7f0-c9dcc9370c81" - }, - { - "_id": 131, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 5 - }, - "uuid": "c404956f-3a2e-4fb5-ae4e-ec98b5e3e43f" - }, - { - "_id": 132, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 6 - }, - "uuid": "f08638bc-473c-4a82-9a8d-f2b01d01ccff" - }, - { - "_id": 133, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 7 - }, - "uuid": "dbb78cbf-e377-4328-8a03-0eda7b054a54" - }, - { - "_id": 134, - "name": "Get the Merfolk trident", - "tip": "Can be purchased as a reward from the Underwater agility course on Fossil Island. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Merfolk_trident", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/7/70/Merfolk_trident_detail.png/150px-Merfolk_trident_detail.png?c8bbf", - "assetImage": "150px-Merfolk_trident_detail.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 21649, - "name": "Merfolk trident" - } - ], - "logCount": 1 - }, - "uuid": "a71b918b-8984-44f8-baca-079611e7d98b" - }, - { - "_id": 135, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 8 - }, - "uuid": "a0c90c46-d292-4be4-9bec-16a7cd7e5dea" - }, - { - "_id": 136, - "name": "Get 1 unique from Tempoross", - "tip": "Can be received as a reward from the Tempoross Skilling Boss. ", - "wikiLink": "https://oldschool.runescape.wiki/w/Tempoross", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/a/ab/Tome_of_water_%28empty%29_detail.png/160px-Tome_of_water_%28empty%29_detail.png?2502c", - "assetImage": "160px-Tome_of_water_empty_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "tempoross", - "include": [ - { - "id": 25559, - "name": "Big harpoonfish" - }, - { - "id": 25592, - "name": "Spirit angler headband" - }, - { - "id": 25594, - "name": "Spirit angler top" - }, - { - "id": 25596, - "name": "Spirit angler waders" - }, - { - "id": 25598, - "name": "Spirit angler boots" - }, - { - "id": 25576, - "name": "Tome of water (empty)" - }, - { - "id": 25578, - "name": "Soaked page" - }, - { - "id": 25580, - "name": "Tackle box" - }, - { - "id": 25582, - "name": "Fish barrel" - }, - { - "id": 25588, - "name": "Spirit flakes" - } - ], - "logCount": 9 - }, - "uuid": "c91e541a-d8e8-4f1f-920b-56084c28ac12" - }, - { - "_id": 137, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 5 - }, - "uuid": "4f16ed93-aee4-49ab-a347-2e73a8f22975" - }, - { - "_id": 138, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 6 - }, - "uuid": "0ae36fe6-5058-468a-8440-5badf514a3bf" - }, - { - "_id": 139, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 7 - }, - "uuid": "b43e3c57-fc51-4995-a5ee-59abfb768b43" - }, - { - "_id": 140, - "name": "Get 1 unique from Guardians of the Rift", - "tip": "Can be received as a reward from the Guardians of the Rift Skilling Minigame. Runecrafting... it's actually kinda fun now.", - "wikiLink": "https://oldschool.runescape.wiki/w/Guardians_of_the_Rift", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Hat_of_the_eye_detail.png/120px-Hat_of_the_eye_detail.png?e0255", - "assetImage": "Hat_of_the_eye_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "guardians_of_the_rift", - "include": [ - { - "id": 26792, - "name": "Abyssal pearls" - }, - { - "id": 26798, - "name": "Catalytic talisman" - }, - { - "id": 26807, - "name": "Abyssal green dye" - }, - { - "id": 26809, - "name": "Abyssal blue dye" - }, - { - "id": 26811, - "name": "Abyssal red dye" - }, - { - "id": 26813, - "name": "Abyssal needle" - }, - { - "id": 26815, - "name": "Ring of the elements" - }, - { - "id": 26820, - "name": "Guardian's eye" - }, - { - "id": 26822, - "name": "Abyssal lantern" - }, - { - "id": 26850, - "name": "Hat of the eye" - }, - { - "id": 26852, - "name": "Robe top of the eye" - }, - { - "id": 26854, - "name": "Robe bottoms of the eye" - }, - { - "id": 26856, - "name": "Boots of the eye" - }, - { - "id": 26908, - "name": "Intricate pouch" - }, - { - "id": 26910, - "name": "Tarnished locket" - }, - { - "id": 26912, - "name": "Lost bag" - } - ], - "logCount": 8 - }, - "uuid": "d709fae6-2888-4426-a295-d00b7c2a7fe4" - }, - { - "_id": 141, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Smiths_tunic_detail.png/150px-Smiths_tunic_detail.png?5f7ce", - "assetImage": "Smiths_tunic_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 5 - }, - "uuid": "7d11faf4-4163-4f25-ab6f-eca14bb763c8" - }, - { - "_id": 142, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Smiths_tunic_detail.png/150px-Smiths_tunic_detail.png?5f7ce", - "assetImage": "Smiths_tunic_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 6 - }, - "uuid": "c08d106b-6d93-4e21-8a38-825a27a9d7cb" - }, - { - "_id": 143, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Smiths_tunic_detail.png/150px-Smiths_tunic_detail.png?5f7ce", - "assetImage": "Smiths_tunic_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 7 - }, - "uuid": "42416ed7-f18e-40cc-a1de-bcc362fafb2c" - }, - { - "_id": 144, - "name": "Get 1 unique from Giants' Foundry", - "tip": "Can be purchased as a reward from the Giants' Foundry Skilling Minigame.", - "wikiLink": "https://oldschool.runescape.wiki/w/Giants%27_Foundry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Smiths_tunic_detail.png/150px-Smiths_tunic_detail.png?5f7ce", - "assetImage": "Smiths_tunic_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "giants_foundry", - "include": [ - { - "id": 27012, - "name": "Double ammo mould" - }, - { - "id": 27014, - "name": "Kovac's grog" - }, - { - "id": 27017, - "name": "Smithing catalyst" - }, - { - "id": 27019, - "name": "Ore pack (Giants' Foundry)" - }, - { - "id": 27023, - "name": "Smiths tunic" - }, - { - "id": 27025, - "name": "Smiths trousers" - }, - { - "id": 27027, - "name": "Smiths boots" - }, - { - "id": 27029, - "name": "Smiths gloves" - } - ], - "logCount": 8 - }, - "uuid": "28f69759-1aac-4bdb-92c7-e8c9350d6fbf" - }, - { - "_id": 145, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 7 - }, - "uuid": "6dc649ca-8c10-46d9-b58f-aec88a153851" - }, - { - "_id": 146, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 8 - }, - "uuid": "95c07eb4-a721-4fb5-9f3f-b9f86ae0c233" - }, - { - "_id": 147, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 9 - }, - "uuid": "96ed343d-46d7-4d8f-a4b3-53e3474ebc94" - }, - { - "_id": 148, - "name": "Get 1 unique from Forestry", - "tip": "Can be purchased as a reward from the Friendly Forester", - "wikiLink": "https://oldschool.runescape.wiki/w/Forestry", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Forestry_kit_detail.png/1024px-Forestry_kit_detail.png", - "assetImage": "forestry_kit.png", - "colLogData": { - "category": "Other", - "logName": "forestry", - "include": [ - { - "id": 28626, - "name": "Fox whistle" - }, - { - "id": 28663, - "name": "Golden pheasant egg" - }, - { - "id": 28169, - "name": "Forestry top" - }, - { - "id": 28171, - "name": "Forestry legs" - }, - { - "id": 28173, - "name": "Forestry hat" - }, - { - "id": 28175, - "name": "Forestry boots" - }, - { - "id": 28630, - "name": "Twitcher's gloves" - }, - { - "id": 28138, - "name": "Funky shaped log" - }, - { - "id": 28140, - "name": "Log basket" - }, - { - "id": 28146, - "name": "Log brace" - }, - { - "id": 28166, - "name": "Clothes pouch blueprint" - }, - { - "id": 28613, - "name": "Cape pouch" - }, - { - "id": 28177, - "name": "Felling axe handle" - }, - { - "id": 28655, - "name": "Petal garland" - }, - { - "id": 28674, - "name": "Sturdy beehive parts" - }, - { - "id": 28616, - "name": "Pheasant cape" - }, - { - "id": 28618, - "name": "Pheasant boots" - }, - { - "id": 28620, - "name": "Pheasant hat" - }, - { - "id": 28622, - "name": "Pheasant legs" - } - ], - "logCount": 10 - }, - "uuid": "1ce73ff0-62aa-44a5-bfb2-8754334ba2eb" - }, - { - "_id": 149, - "name": "Get a Scurrius' spine", - "tip": "Received as a drop when killing Scurrius", - "wikiLink": "https://oldschool.runescape.wiki/w/Scurrius", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Scurrius%27_spine.png/200px-Scurrius%27_spine.png", - "assetImage": "Scurrius'_spine.png", - "colLogData": { - "category": "Bosses", - "logName": "scurrius", - "include": [ - { - "id": 28798, - "name": "Scurrius' spine" - } - ], - "logCount": 1 - }, - "uuid": "6f58f3f9-b4cd-4475-bef3-643067a59dde" - }, - { - "_id": 150, - "name": "Get 1 unique from Armoured Zombies", - "tip": "First unique is Defender of Varrock for Broken zombie axe, and 2nd unique is completing Curse of Arrav for the helmet", - "wikiLink": "https://oldschool.runescape.wiki/w/Armoured_zombie_(Zemouregal%27s_Fort)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Broken_zombie_axe_detail.png/200px-Broken_zombie_axe_detail.png", - "assetImage": "Broken_zombie_axe.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 28813, - "name": "Broken zombie axe" - }, - { - "id": 30324, - "name": "Broken zombie helmet" - } - ], - "logCount": 1 - }, - "uuid": "d0b17b24-75d7-4af1-baa9-a54d6db77fdf" - }, - { - "_id": 151, - "name": "Get 1 unique from Armoured Zombies", - "tip": "First unique is Defender of Varrock for Broken zombie axe, and 2nd unique is completing Curse of Arrav for the helmet", - "wikiLink": "https://oldschool.runescape.wiki/w/Armoured_zombie_(Zemouregal%27s_Fort)", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Broken_zombie_axe_detail.png/200px-Broken_zombie_axe_detail.png", - "assetImage": "Broken_zombie_axe.png", - "colLogData": { - "category": "Other", - "logName": "miscellaneous", - "include": [ - { - "id": 28813, - "name": "Broken zombie axe" - }, - { - "id": 30324, - "name": "Broken zombie helmet" - } - ], - "logCount": 2 - }, - "uuid": "d78be838-299b-4d72-80e8-0d68c8839ba7" - }, - { - "_id": 152, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 1 - }, - "uuid": "5b0cf9a0-61df-4169-a5af-317d6f689e49" - }, - { - "_id": 153, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 2 - }, - "uuid": "3e78d51a-37af-4532-97e2-40b070a4f6cc" - }, - { - "_id": 154, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 3 - }, - "uuid": "f3f5af44-2295-4085-b095-98da680a29e0" - }, - { - "_id": 155, - "name": "Get 1 unique from Moons of Peril", - "tip": "Received as a drop from Moons of Peril bosses", - "wikiLink": "https://oldschool.runescape.wiki/w/Moons_of_Peril", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Dual_macuahuitl_detail.png/200px-Dual_macuahuitl_detail.png", - "assetImage": "dual_macuahuitl.png", - "colLogData": { - "category": "Bosses", - "logName": "moons_of_peril", - "include": [ - { - "id": 28988, - "name": "Blue moon spear" - }, - { - "id": 28991, - "name": "Atlatl dart" - }, - { - "id": 28997, - "name": "Dual macuahuitl" - }, - { - "id": 29000, - "name": "Eclipse atlatl" - }, - { - "id": 29004, - "name": "Eclipse moon chestplate" - }, - { - "id": 29007, - "name": "Eclipse moon tassets" - }, - { - "id": 29010, - "name": "Eclipse moon helm" - }, - { - "id": 29013, - "name": "Blue moon chestplate" - }, - { - "id": 29016, - "name": "Blue moon tassets" - }, - { - "id": 29019, - "name": "Blue moon helm" - }, - { - "id": 29022, - "name": "Blood moon chestplate" - }, - { - "id": 29025, - "name": "Blood moon tassets" - }, - { - "id": 29028, - "name": "Blood moon helm" - } - ], - "logCount": 4 - }, - "uuid": "2c4c6dfc-bbf9-4d72-9424-b248d9b7b4ce" - }, - { - "_id": 156, - "name": "Get 1 unique from the Hunter Guild", - "tip": "Received as a drop when completing Hunters Rumours", - "wikiLink": "https://oldschool.runescape.wiki/w/Hunter_Guild#Other", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Guild_hunter_top_detail.png/200px-Guild_hunter_top_detail.png", - "assetImage": "guild_hunter_top.png", - "colLogData": { - "category": "Other", - "logName": "hunter_guild", - "include": [ - { - "id": 29309, - "name": "Huntsman's kit" - }, - { - "id": 29263, - "name": "Guild hunter headwear" - }, - { - "id": 29265, - "name": "Guild hunter top" - }, - { - "id": 29267, - "name": "Guild hunter legs" - }, - { - "id": 29269, - "name": "Guild hunter boots" - } - ], - "logCount": 2 - }, - "uuid": "800ad058-37f5-4862-a5ef-1a6424e979ed" - }, - { - "_id": 157, - "name": "Get 1 unique from the Hunter Guild", - "tip": "Received as a drop when completing Hunters Rumours", - "wikiLink": "https://oldschool.runescape.wiki/w/Hunter_Guild#Other", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Guild_hunter_top_detail.png/200px-Guild_hunter_top_detail.png", - "assetImage": "guild_hunter_top.png", - "colLogData": { - "category": "Other", - "logName": "hunter_guild", - "include": [ - { - "id": 29309, - "name": "Huntsman's kit" - }, - { - "id": 29263, - "name": "Guild hunter headwear" - }, - { - "id": 29265, - "name": "Guild hunter top" - }, - { - "id": 29267, - "name": "Guild hunter legs" - }, - { - "id": 29269, - "name": "Guild hunter boots" - } - ], - "logCount": 3 - }, - "uuid": "d64fae3a-efbd-4809-ac27-240536b8ebf3" - }, - { - "_id": 158, - "name": "Get a Calcified acorn", - "tip": "Obtained by spending termites through Wyrm Agility Course", - "wikiLink": "https://oldschool.runescape.wiki/w/Colossal_Wyrm_Agility_Course", - "wikiImage": "https://oldschool.runescape.wiki/images/Calcified_acorn_detail.png?a3e16", - "assetImage": "Calcified_acorn_detail.png", - "colLogData": { - "category": "Other", - "logName": "colossal_wyrm_agility", - "include": [ - { - "id": 30042, - "name": "Calcified acorn" - } - ], - "logCount": 1 - }, - "uuid": "45872d53-37e0-419f-893f-9f4b0eebe670" - }, - { - "_id": 159, - "name": "Get 1 Alchemist outfit piece", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Alchemist_labcoat_(apron_off)_detail.png/200px-Alchemist_labcoat_(apron_off)_detail.png", - "assetImage": "Alchemist_labcoat.png", - "colLogData": { - "category": "Minigames", - "logName": "mastering_mixology", - "include": [ - { - "id": 29978, - "name": "Alchemist labcoat" - }, - { - "id": 29982, - "name": "Alchemist pants" - }, - { - "id": 29986, - "name": "Alchemist gloves" - } - ], - "logCount": 1 - }, - "uuid": "fcc52f83-75ce-42fd-b62f-6d56c3879f5c" - }, - { - "_id": 160, - "name": "Get 1 Alchemist outfit piece", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Alchemist_labcoat_(apron_off)_detail.png/200px-Alchemist_labcoat_(apron_off)_detail.png", - "assetImage": "Alchemist_labcoat.png", - "colLogData": { - "category": "Minigames", - "logName": "mastering_mixology", - "include": [ - { - "id": 29978, - "name": "Alchemist labcoat" - }, - { - "id": 29982, - "name": "Alchemist pants" - }, - { - "id": 29986, - "name": "Alchemist gloves" - } - ], - "logCount": 2 - }, - "uuid": "7d3dd049-c48d-45ed-ba0a-cf1329976628" - }, - { - "_id": 161, - "name": "Get 1 Alchemist outfit piece", - "tip": "Obtained through Mastering Mixology Herblore Minigame", - "wikiLink": "https://oldschool.runescape.wiki/w/Mastering_Mixology", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Alchemist_labcoat_(apron_off)_detail.png/200px-Alchemist_labcoat_(apron_off)_detail.png", - "assetImage": "Alchemist_labcoat.png", - "colLogData": { - "category": "Minigames", - "logName": "mastering_mixology", - "include": [ - { - "id": 29978, - "name": "Alchemist labcoat" - }, - { - "id": 29982, - "name": "Alchemist pants" - }, - { - "id": 29986, - "name": "Alchemist gloves" - } - ], - "logCount": 3 - }, - "uuid": "9523af1d-5bba-4fe8-8199-9c60329f2278" - }, - { - "_id": 162, - "name": "Get 1 unique from Amoxliatl", - "tip": "Obtained when killing Amoxliatl. Taskers may also kill Frost naguas as they drop the same uniques excluding the pet", - "wikiLink": "https://oldschool.runescape.wiki/w/Amoxliatl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Glacial_temotli_detail.png/200px-Glacial_temotli_detail.png", - "assetImage": "Glacial_temotli_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "amoxliatl", - "include": [ - { - "id": 29889, - "name": "Glacial temotli" - }, - { - "id": 29892, - "name": "Pendant of ates (inert)" - }, - { - "id": 29895, - "name": "Frozen tear" - } - ], - "logCount": 1 - }, - "uuid": "a200ae0a-f32b-4228-a938-c7d447d6380d" - }, - { - "_id": 163, - "name": "Get 1 unique from Amoxliatl", - "tip": "Obtained when killing Amoxliatl. Taskers may also kill Frost naguas as they drop the same uniques excluding the pet", - "wikiLink": "https://oldschool.runescape.wiki/w/Amoxliatl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Glacial_temotli_detail.png/200px-Glacial_temotli_detail.png", - "assetImage": "Glacial_temotli_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "amoxliatl", - "include": [ - { - "id": 29889, - "name": "Glacial temotli" - }, - { - "id": 29892, - "name": "Pendant of ates (inert)" - }, - { - "id": 29895, - "name": "Frozen tear" - } - ], - "logCount": 2 - }, - "uuid": "2bb7cf32-6577-487f-a4a7-5322fd534b09" - }, - { - "_id": 164, - "name": "Get 1 unique from Amoxliatl", - "tip": "Obtained when killing Amoxliatl. Taskers may also kill Frost naguas as they drop the same uniques excluding the pet", - "wikiLink": "https://oldschool.runescape.wiki/w/Amoxliatl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Glacial_temotli_detail.png/200px-Glacial_temotli_detail.png", - "assetImage": "Glacial_temotli_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "amoxliatl", - "include": [ - { - "id": 29889, - "name": "Glacial temotli" - }, - { - "id": 29892, - "name": "Pendant of ates (inert)" - }, - { - "id": 29895, - "name": "Frozen tear" - } - ], - "logCount": 3 - }, - "uuid": "b9a0d5bb-2909-44c7-a53f-78da2e98061c" - }, - { - "_id": 165, - "name": "Get 1 unique from Royal Titans", - "tip": "Obtained by killing the Royal Titans boss. First kill you must choose Take Pages option as you can force this unique.", - "wikiLink": "https://oldschool.runescape.wiki/w/Royal_Titans", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Twinflame_staff_detail.png/200px-Twinflame_staff_detail.png", - "assetImage": "Twinflame_staff_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "royal_titans", - "include": [ - { - "id": 30626, - "name": "Deadeye prayer scroll" - }, - { - "id": 30627, - "name": "Mystic vigour prayer scroll" - }, - { - "id": 30628, - "name": "Ice element staff crown" - }, - { - "id": 30631, - "name": "Fire element staff crown" - }, - { - "id": 30637, - "name": "Giantsoul amulet" - }, - { - "id": 30640, - "name": "Desiccated page" - } - ], - "logCount": 1 - }, - "uuid": "2523e88d-901b-40a1-80bb-294d8ca9f519" - }, - { - "_id": 166, - "name": "Get 1 unique from Royal Titans", - "tip": "Obtained by killing the Royal Titans boss. First kill you must choose Take Pages option as you can force this unique.", - "wikiLink": "https://oldschool.runescape.wiki/w/Royal_Titans", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Twinflame_staff_detail.png/200px-Twinflame_staff_detail.png", - "assetImage": "Twinflame_staff_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "royal_titans", - "include": [ - { - "id": 30626, - "name": "Deadeye prayer scroll" - }, - { - "id": 30627, - "name": "Mystic vigour prayer scroll" - }, - { - "id": 30628, - "name": "Ice element staff crown" - }, - { - "id": 30631, - "name": "Fire element staff crown" - }, - { - "id": 30637, - "name": "Giantsoul amulet" - }, - { - "id": 30640, - "name": "Desiccated page" - } - ], - "logCount": 2 - }, - "uuid": "2a19d6d9-8f64-417f-969a-a441d3d6faa4" - }, - { - "_id": 167, - "name": "Get 1 unique from Royal Titans", - "tip": "Obtained by killing the Royal Titans boss. First kill you must choose Take Pages option as you can force this unique.", - "wikiLink": "https://oldschool.runescape.wiki/w/Royal_Titans", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Twinflame_staff_detail.png/200px-Twinflame_staff_detail.png", - "assetImage": "Twinflame_staff_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "royal_titans", - "include": [ - { - "id": 30626, - "name": "Deadeye prayer scroll" - }, - { - "id": 30627, - "name": "Mystic vigour prayer scroll" - }, - { - "id": 30628, - "name": "Ice element staff crown" - }, - { - "id": 30631, - "name": "Fire element staff crown" - }, - { - "id": 30637, - "name": "Giantsoul amulet" - }, - { - "id": 30640, - "name": "Desiccated page" - } - ], - "logCount": 3 - }, - "uuid": "eda5f8c7-3e6a-4ef8-8982-ab2ea8291574" - }, - { - "_id": 168, - "name": "Get 1 unique from Royal Titans", - "tip": "Obtained by killing the Royal Titans boss. First kill you must choose Take Pages option as you can force this unique.", - "wikiLink": "https://oldschool.runescape.wiki/w/Royal_Titans", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Twinflame_staff_detail.png/200px-Twinflame_staff_detail.png", - "assetImage": "Twinflame_staff_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "royal_titans", - "include": [ - { - "id": 30626, - "name": "Deadeye prayer scroll" - }, - { - "id": 30627, - "name": "Mystic vigour prayer scroll" - }, - { - "id": 30628, - "name": "Ice element staff crown" - }, - { - "id": 30631, - "name": "Fire element staff crown" - }, - { - "id": 30637, - "name": "Giantsoul amulet" - }, - { - "id": 30640, - "name": "Desiccated page" - } - ], - "logCount": 4 - }, - "uuid": "f4800d10-9e58-413e-b4fe-7291dc162d1a" - }, - { - "_id": 169, - "name": "Get a Steel ring", - "tip": "Can be received as a drop from the Deranged Archaeologist.", - "wikiLink": "https://oldschool.runescape.wiki/w/Steel_ring", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Steel_ring_detail.png/200px-Steel_ring_detail.png", - "assetImage": "Steel_ring_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "deranged_archaeologist", - "include": [ - { - "id": 30895, - "name": "Steel ring" - } - ], - "logCount": 1 - }, - "uuid": "a381086f-a4be-46ec-89d1-088f1a67afcf" - }, - { - "_id": 170, - "name": "Get a Huasca seed", - "tip": "Can be received as a drop from the Amoxliatl.", - "wikiLink": "https://oldschool.runescape.wiki/w/Huasca_seed", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Huasca_seed_detail.png/200px-Huasca_seed_detail.png", - "assetImage": "Huasca_seed_detail.png", - "colLogData": { - "category": "Bosses", - "logName": "The Hueycoatl", - "include": [ - { - "id": 30088, - "name": "Huasca seed" - } - ], - "logCount": 1 - }, - "uuid": "8faa724f-442a-48f2-9576-33d6ef1cd4a0" - }, - { - "_id": 171, - "name": "Get a Wyrm/Brimhaven graceful recolor", - "tip": "You must recolor your existing graceful, whichever graceful you want to keep do that color last.", - "wikiLink": "https://oldschool.runescape.wiki/w/Graceful_outfit", - "wikiImage": "https://oldschool.runescape.wiki/images/Graceful_crafting_kit_detail.png?37b7e", - "assetImage": "Graceful_crafting_kit_detail.png", - "colLogData": { - "category": "Minigames", - "logName": "brimhaven_agility_arena", - "include": [ - { - "id": 21061, - "name": "Graceful hood (Agility Arena)" - }, - { - "id": 21064, - "name": "Graceful cape (Agility Arena)" - }, - { - "id": 21067, - "name": "Graceful top (Agility Arena)" - }, - { - "id": 21070, - "name": "Graceful legs (Agility Arena)" - }, - { - "id": 21073, - "name": "Graceful gloves (Agility Arena)" - }, - { - "id": 21076, - "name": "Graceful boots (Agility Arena)" - }, - { - "id": 30045, - "name": "Graceful hood (Varlamore)" - }, - { - "id": 30048, - "name": "Graceful cape (Varlamore)" - }, - { - "id": 30051, - "name": "Graceful top (Varlamore)" - }, - { - "id": 30054, - "name": "Graceful legs (Varlamore)" - }, - { - "id": 30057, - "name": "Graceful gloves (Varlamore)" - }, - { - "id": 30060, - "name": "Graceful boots (Varlamore)" - } - ], - "logCount": 6 - }, - "uuid": "4e1c007c-8d85-4ddf-b2f8-fc8f80b7f22f" - }, - { - "_id": 172, - "name": "Get 1 unique from Vale Totems", - "tip": "This fletching minigame takes place in Auburn Valley. You can chop your own logs", - "wikiLink": "https://oldschool.runescape.wiki/w/Vale_Totems", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Vale_offerings_detail.png/320px-Vale_offerings_detail.png", - "assetImage": "Vale_offerings_detail.png", - "colLogData": { - "category": "N/A", - "logName": "N/A", - "include": [ - { - "id": 31032, - "name": "Ent Branch" - }, - { - "id": 31043, - "name": "Fletching knife" - }, - { - "id": 31052, - "name": "Bow string spool" - }, - { - "id": 31034, - "name": "Greenman mask" - } - ], - "logCount": 3 - }, - "uuid": "f3a0cc76-6f55-426e-8440-5a47e6920a84" - }, - { - "_id": 173, - "name": "Get 1 unique from Vale Totems", - "tip": "This fletching minigame takes place in Auburn Valley. You can chop your own logs", - "wikiLink": "https://oldschool.runescape.wiki/w/Vale_Totems", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Vale_offerings_detail.png/320px-Vale_offerings_detail.png", - "assetImage": "Vale_offerings_detail.png", - "colLogData": { - "category": "N/A", - "logName": "N/A", - "include": [ - { - "id": 31032, - "name": "Ent Branch" - }, - { - "id": 31043, - "name": "Fletching knife" - }, - { - "id": 31052, - "name": "Bow string spool" - }, - { - "id": 31034, - "name": "Greenman mask" - } - ], - "logCount": 4 - }, - "uuid": "c47d1afa-63ba-4235-be79-425d345375b7" - }, - { - "_id": 174, - "name": "Get 1 unique from Custodian stalkers", - "tip": "Three different variants can be found inside the Stalker Den in Varlamare, after completion of the Shadows of Custodia quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Custodian_stalker", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Antler_guard_detail.png/320px-Antler_guard_detail.png", - "assetImage": "Antler_guard_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31081, - "name": "Antler guard" - }, - { - "id": 31086, - "name": "Broken antler" - }, - { - "id": 31084, - "name": "Alchemist's signet" - } - ], - "logCount": 1 - }, - "uuid": "b8d6aac5-2580-4ca1-8129-a1f71d4c4ebf" - }, - { - "_id": 175, - "name": "Get 1 unique from Custodian stalkers", - "tip": "Three different variants can be found inside the Stalker Den in Varlamare, after completion of the Shadows of Custodia quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Custodian_stalker", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Antler_guard_detail.png/320px-Antler_guard_detail.png", - "assetImage": "Antler_guard_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31081, - "name": "Antler guard" - }, - { - "id": 31086, - "name": "Broken antler" - }, - { - "id": 31084, - "name": "Alchemist's signet" - } - ], - "logCount": 2 - }, - "uuid": "9ebbb378-a2c2-438e-9481-784d7ed7a8cf" - }, - { - "_id": 176, - "name": "Get 1 unique from Custodian stalkers", - "tip": "Three different variants can be found inside the Stalker Den in Varlamare, after completion of the Shadows of Custodia quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Custodian_stalker", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Antler_guard_detail.png/320px-Antler_guard_detail.png", - "assetImage": "Antler_guard_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 31081, - "name": "Antler guard" - }, - { - "id": 31086, - "name": "Broken antler" - }, - { - "id": 31084, - "name": "Alchemist's signet" - } - ], - "logCount": 3 - }, - "uuid": "5e135307-dc58-4873-b89d-b6c68484aa07" - }, - { - "_id": 177, - "name": "Get the Earthbound tecpatl", - "tip": "Dropped from Earthen naguas in the Tonali Cavern, after progression in The Final Dawn quest.", - "wikiLink": "https://oldschool.runescape.wiki/w/Earthbound_tecpatl", - "wikiImage": "https://oldschool.runescape.wiki/images/thumb/Earthbound_tecpatl_detail.png/225px-Earthbound_tecpatl_detail.png", - "assetImage": "Earthbound_tecpatl_detail.png", - "colLogData" : { - "category": "N/A", - "logName": "N/A", - "include" : [ - { - "id": 30957, - "name": "Earthbound tecpatl" - } - ], - "logCount": 1 - }, - "uuid": "ab8b387e-c395-4fc0-8b8a-33991887eb63" - } -] \ No newline at end of file diff --git a/tasks/otherPets.json b/tasks/otherPets.json deleted file mode 100644 index 02855a9..0000000 --- a/tasks/otherPets.json +++ /dev/null @@ -1,72 +0,0 @@ -[ - { - "_id": 1, - "name": "Bloodhound", - "assetImage": "Bloodhound.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Bloodhound", - "uuid": "74bd4b05-2383-4f90-8050-ce2f78600037" - }, - { - "_id": 2, - "name": "Chompy chick", - "assetImage": "Chompy_chick.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Chompy_chick", - "uuid": "46d6bd1a-69f7-4acf-87f7-fba80a976cf0" - }, - { - "_id": 3, - "name": "Herbi", - "assetImage": "Herbi.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Herbi", - "uuid": "5385f96d-62ff-47db-9665-8f3bf823bf68" - }, - { - "_id": 4, - "name": "Pet penance queen", - "assetImage": "Pet_penance_queen.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Pet_penance_queen", - "uuid": "a44db8e6-f1f8-44d6-a8f7-1cd0890b8e24" - }, - { - "_id": 5, - "name": "Phoenix", - "assetImage": "Phoenix.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Phoenix", - "uuid": "8747e4e5-6ff7-4e02-8921-5dc88079cd1b" - }, - { - "_id": 6, - "name": "Youngllef", - "assetImage": "Youngllef.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Youngllef", - "uuid": "7f00f99e-37ea-4b36-bcfe-f8db110191ae" - }, - { - "_id": 7, - "name": "Smolcano", - "assetImage": "Smolcano.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Smolcano", - "uuid": "a90d8b37-ca59-477f-a3a4-a1e4ac9e33a7" - }, - { - "_id": 8, - "name": "Tiny Tempor", - "assetImage": "Tiny_Tempor_chathead.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Tiny_tempor", - "uuid": "32dd92eb-f64b-46ac-84bc-dca9c75942e2" - }, - { - "_id": 9, - "name": "Lil' creator", - "assetImage": "Lil_Creator_chathead.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Lil%27_creator", - "uuid": "cea25d15-7d27-403a-b6cf-43cb8278616d" - }, - { - "_id": 10, - "name": "Abyssal protector", - "assetImage": "Abyssal_protector_chathead.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Abyssal_protector", - "uuid": "c2521cab-8fb8-42f7-93ca-71e53ef992f0" - } -] \ No newline at end of file diff --git a/tasks/passive.json b/tasks/passive.json deleted file mode 100644 index 82d28a3..0000000 --- a/tasks/passive.json +++ /dev/null @@ -1,372 +0,0 @@ -[ - { - "_id": 1, - "name": "Get the Golden tench", - "assetImage": "Golden_tench.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Golden_tench", - "uuid": "d4daebe8-75b6-4e47-90da-170666f716a5" - }, - { - "_id": 2, - "name": "Get the Bottomless compost bucket", - "assetImage": "Bottomless_compost_bucket.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Bottomless_compost_bucket", - "uuid": "0cbccceb-6021-4e75-bece-ed9337dd15ca" - }, - { - "_id": 3, - "name": "Get the Stale Baguette", - "assetImage": "Stale_baguette.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Stale_baguette", - "uuid": "a61b7987-5b75-4316-b8f9-92b08042123b" - }, - { - "_id": 4, - "name": "Get a Hespori seed", - "assetImage": "Hespori_seed_5.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Hespori", - "uuid": "26f3b25f-9241-4f7a-bb20-f1a6ef7d52d6" - }, - { - "_id": 5, - "name": "Get an Iasor seed", - "assetImage": "Iasor_seed_5.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Hespori", - "uuid": "2b04b9de-3453-479f-b4d4-259c7b62a9b8" - }, - { - "_id": 6, - "name": "Get a Kronos seed", - "assetImage": "Iasor_seed_5.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Hespori", - "uuid": "0699bc0c-eb2e-4bc5-b025-1342e177b25f" - }, - { - "_id": 7, - "name": "Get an Attas seed", - "assetImage": "Iasor_seed_5.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Hespori", - "uuid": "ae28548d-8cc3-4732-9361-3a3178731dda" - }, - { - "_id": 8, - "name": "Get all random event outfits", - "assetImage": "Mime_mask.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Random_events", - "uuid": "d9bbb0ff-3552-437b-827f-fd611a56c0b7" - }, - { - "_id": 9, - "name": "Get a Broken dragon hasta", - "assetImage": "130px-Broken_dragon_hasta_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Brimstone_chest", - "uuid": "4a2b22e5-09ec-41da-946f-55add14f33af" - }, - { - "_id": 10, - "name": "Get a Mystic hat (dusk)", - "assetImage": "130px-Mystic_hat_dusk_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Brimstone_chest", - "uuid": "e5a1072e-fcf2-4027-8c9e-4fa2f7bbad0b" - }, - { - "_id": 11, - "name": "Get a Mystic robe top (dusk)", - "assetImage": "180px-Mystic_robe_top_dusk_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Brimstone_chest", - "uuid": "53cb421f-bd1a-436b-902d-c28ff860161e" - }, - { - "_id": 12, - "name": "Get a Mystic robe bottom (dusk)", - "assetImage": "180px-Mystic_robe_bottom_dusk_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Brimstone_chest", - "uuid": "63ee8276-44d1-42d2-bf07-212ac073b262" - }, - { - "_id": 13, - "name": "Get Mystic gloves (dusk)", - "assetImage": "130px-Mystic_gloves_dusk_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Brimstone_chest", - "uuid": "be70f64b-4685-4613-b9a2-5e2ed3543e8e" - }, - { - "_id": 14, - "name": "Get Mystic boots (dusk)", - "assetImage": "120px-Mystic_boots_dusk_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Brimstone_chest", - "uuid": "e8e7f5cd-a97f-4df8-b4a2-ff35cfc7a5c4" - }, - { - "_id": 15, - "name": "Get a Godsword shard 1", - "assetImage": "120px-Godsword_shard_1_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "570f2e82-f361-4555-8ea6-575725400013" - }, - { - "_id": 16, - "name": "Get a Godsword shard 2", - "assetImage": "120px-Godsword_shard_2_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "b3d932c4-ca95-472a-9a96-e4c2165e9e34" - }, - { - "_id": 17, - "name": "Get a Godsword shard 3", - "assetImage": "320px-Godsword_shard_3_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/God_Wars_Dungeon", - "uuid": "c40c079b-ebc2-42f9-9718-0211b814d906" - }, - { - "_id": 18, - "name": "Get a Dark relic", - "assetImage": "Dark_relic.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dark_relic", - "uuid": "0377b2d8-9f37-41fb-b1ff-39e3b035f8dd" - }, - { - "_id": 19, - "name": "Get a Torn prayer scroll", - "assetImage": "160px-Torn_prayer_scroll_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Torn_prayer_scroll", - "uuid": "32c51d2d-9c12-4c22-a520-12f0e068cd31" - }, - { - "_id": 20, - "name": "Get the Xeric's guard", - "assetImage": "Xerics_guard.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Captain_Rimor", - "uuid": "66ee8f7a-9ecd-4550-80bf-6858be56b685" - }, - { - "_id": 21, - "name": "Get the Xeric's warrior", - "assetImage": "Xerics_warrior.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Captain_Rimor", - "uuid": "bf1746ac-616d-4d36-a0d9-ff80efc8815a" - }, - { - "_id": 22, - "name": "Get the Xeric's sentinel", - "assetImage": "Xerics_sentinel.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Captain_Rimor", - "uuid": "28828d55-937a-48ce-9e6f-3eebd9787ca2" - }, - { - "_id": 23, - "name": "Get the Xeric's general", - "assetImage": "Xerics_general.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Captain_Rimor", - "uuid": "c62186de-8faf-48e2-b002-e194a3ba1f81" - }, - { - "_id": 24, - "name": "Get the Xeric's champion", - "assetImage": "Xerics_champion.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Captain_Rimor", - "uuid": "48bd67af-af5b-4c35-9977-8520bd55d6df" - }, - { - "_id": 25, - "name": "Get the Sinhaza shroud tier 1", - "assetImage": "Sinhaza_shroud_tier_1.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Mysterious_Stranger", - "uuid": "1ae0a2ab-491a-4784-bb3a-a162f3c8c475" - }, - { - "_id": 26, - "name": "Get the Sinhaza shroud tier 2", - "assetImage": "Sinhaza_shroud_tier_2.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Mysterious_Stranger", - "uuid": "af8f252b-0921-42d4-b9db-549e19ae12cd" - }, - { - "_id": 27, - "name": "Get the Sinhaza shroud tier 3", - "assetImage": "Sinhaza_shroud_tier_3.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Mysterious_Stranger", - "uuid": "3f8ee52b-6d6b-4a05-aa21-054b1cd8d10a" - }, - { - "_id": 28, - "name": "Get the Sinhaza shroud tier 4", - "assetImage": "Sinhaza_shroud_tier_4.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Mysterious_Stranger", - "uuid": "6e5b0b9c-a234-4a0c-acce-4eb6c60d26ee" - }, - { - "_id": 29, - "name": "Get the Sinhaza shroud tier 5", - "assetImage": "Sinhaza_shroud_tier_5.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Mysterious_Stranger", - "uuid": "474b989a-ff3d-4677-9544-4d3211605c2b" - }, - { - "_id": 30, - "name": "Get a cut Onyx from Tekton", - "assetImage": "Onyx.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Tekton", - "uuid": "e40775f7-de74-46b5-9bd2-1cae32bdbe17" - }, - { - "_id": 31, - "name": "Get the Gauntlet cape", - "assetImage": "130px-Gauntlet_cape_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Gauntlet_cape", - "uuid": "34b647e7-15dc-4c80-85d9-20b01090fa96" - }, - { - "_id": 32, - "name": "Get the Victor's cape (1)", - "assetImage": "150px-Victors_cape_1_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Victor%27s_cape", - "uuid": "14516f41-887a-4d5a-ab2e-8be6a5b7e9b8" - }, - { - "_id": 33, - "name": "Get the Victor's cape (10)", - "assetImage": "150px-Victors_cape_10_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Victor%27s_cape", - "uuid": "56aa7ad2-5050-4ab3-bc99-75c31341aec0" - }, - { - "_id": 34, - "name": "Get the Victor's cape (50)", - "assetImage": "150px-Victors_cape_50_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Victor%27s_cape", - "uuid": "3c6d4dca-48b0-43b9-b195-a57754970db0" - }, - { - "_id": 35, - "name": "Get the Victor's cape (100)", - "assetImage": "150px-Victors_cape_100_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Victor%27s_cape", - "uuid": "5c91e05a-699d-4acc-b672-ee94fda8cb8b" - }, - { - "_id": 36, - "name": "Get the Victor's cape (500)", - "assetImage": "150px-Victors_cape_500_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Victor%27s_cape", - "uuid": "ddb1e4e9-5b72-4d6b-b738-83cfd33ab2e0" - }, - { - "_id": 37, - "name": "Get the Victor's cape (1000)", - "assetImage": "150px-Victors_cape_1000_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Victor%27s_cape", - "uuid": "cc072fa0-a9d5-488d-9876-91a61f86fc2b" - }, - { - "_id": 38, - "name": "Get the Icthlarin's shroud (tier 1)", - "assetImage": "Icthlarins_shroud_tier_1_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Icthlarin%27s_shroud", - "uuid": "fe497eab-34f5-445d-af25-fd552c6c6986" - }, - { - "_id": 39, - "name": "Get the Icthlarin's shroud (tier 2)", - "assetImage": "Icthlarins_shroud_tier_2_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Icthlarin%27s_shroud", - "uuid": "81045ae6-8810-45b2-af43-aea520c3a863" - }, - { - "_id": 40, - "name": "Get the Icthlarin's shroud (tier 3)", - "assetImage": "Icthlarins_shroud_tier_3_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Icthlarin%27s_shroud", - "uuid": "6dddaf9a-eedc-4dc9-a15f-d81681e08646" - }, - { - "_id": 41, - "name": "Get the Icthlarin's shroud (tier 4)", - "assetImage": "Icthlarins_shroud_tier_4_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Icthlarin%27s_shroud", - "uuid": "20b92e02-da94-41ce-b4b0-eddfa488e8a4" - }, - { - "_id": 42, - "name": "Get the Icthlarin's shroud (tier 5)", - "assetImage": "Icthlarins_shroud_tier_5_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Icthlarin%27s_shroud", - "uuid": "ad5347ac-d2d9-4112-9a15-854fa88440e1" - }, - { - "_id": 43, - "name": "Get the Charged ice", - "assetImage": "Charged_ice_detail.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Charged_ice", - "uuid": "a6b6b0d0-cd18-4012-bb78-3cfc7be0e465" - }, - { - "_id": 44, - "name": "Get a Dark claw", - "assetImage": "Dark_claw.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Dark_claw", - "uuid": "dd3aa6a9-286d-42b9-9618-0af5db7d2113" - }, - { - "_id": 45, - "name": "Get coagulated venom", - "tip": "Obtained by killing Araxxor within time constraint", - "wikiLink": "https://oldschool.runescape.wiki/w/Coagulated_venom", - "wikiImage": "https://oldschool.runescape.wiki/images/Coagulated_venom_detail.png?fa0de", - "assetImage": "Coagulated_venom.png", - "colLogData": { - "category": null, - "logName": null, - "multi_category": [ - { - "category": "Other", - "logName": "Slayer" - }, - { - "category": "Bosses", - "logName": "Araxxor" - } - ], - "include": [ - { - "id": 29782, - "name": "Spider cave teleport" - }, - { - "id": 29784, - "name": "Araxyte venom sack" - }, - { - "id": 29790, - "name": "Noxious point" - }, - { - "id": 29792, - "name": "Noxious blade" - }, - { - "id": 29794, - "name": "Noxious pommel" - }, - { - "id": 29799, - "name": "Araxyte fang" - }, - { - "id": 29788, - "name": "Araxyte head" - }, - { - "id": 29806, - "name": "Aranea boots" - }, - { - "id": 29781, - "name": "Coagulated venom" - } - ], - "logCount": 9 - }, - "uuid": "8b33c81b-3b4e-4f0d-94c2-c57a63a43cdb" - } -] \ No newline at end of file diff --git a/tasks/skillPets.json b/tasks/skillPets.json deleted file mode 100644 index f7de8a7..0000000 --- a/tasks/skillPets.json +++ /dev/null @@ -1,65 +0,0 @@ -[ - { - "_id": 1, - "name": "Baby chinchompa", - "assetImage": "Baby_chinchompa_black.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Baby_chinchompa", - "uuid": "4bfcfce0-d632-43a5-9716-3394afb894ac" - }, - { - "_id": 2, - "name": "Beaver", - "assetImage": "Beaver.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Beaver", - "uuid": "018297cb-360a-490c-aae5-f7cf5e2ef3a5" - }, - { - "_id": 3, - "name": "Giant squirrel", - "assetImage": "Giant_squirrel.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Giant_squirrel", - "uuid": "7892a92a-3ab3-413e-821e-cef29098b440" - }, - { - "_id": 4, - "name": "Heron", - "assetImage": "Heron.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Heron", - "uuid": "8fcacbbe-9c8b-439e-ab80-4eb81c105d2d" - }, - { - "_id": 5, - "name": "Rift guardian", - "assetImage": "Rift_guardian_fire.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Rift_guardian", - "uuid": "eb9c8a6e-10b7-4d2d-9bf5-c10364c1ed44" - }, - { - "_id": 6, - "name": "Rock golem", - "assetImage": "Rock_golem.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Rock_golem", - "uuid": "025c6f48-8570-41be-9899-fc37cc522001" - }, - { - "_id": 7, - "name": "Rocky", - "assetImage": "Rocky.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Rocky", - "uuid": "649df6a7-3b6c-46a8-9e4a-8dd59b921aed" - }, - { - "_id": 8, - "name": "Tangleroot", - "assetImage": "Tangleroot.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Tangleroot", - "uuid": "c19d7b26-fdb4-4f42-8603-143eb26edadf" - }, - { - "_id": 9, - "name": "Quetzin", - "assetImage": "quetzin.png", - "wikiLink": "https://oldschool.runescape.wiki/w/Quetzin", - "uuid": "de76ab77-751b-465d-a8cc-9e6c50260233" - } -] \ No newline at end of file diff --git a/tasks/task-schema.json b/tasks/task-schema.json deleted file mode 100644 index 5004871..0000000 --- a/tasks/task-schema.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Task", - "description": "Schema for representing a task object", - "type": "object", - "properties": { - "_id": { - "type": "integer", - "description": "Unique identifier for the task - Only unique within each task tier" - }, - "name": { - "type": "string", - "description": "Name of the task" - }, - "isLms": { - "type": "boolean", - "description": "Indicates whether the task is related to Last Man Standing (LMS)" - }, - "tip": { - "type": "string", - "description": "Hint text for the task" - }, - "wikiLink": { - "type": "string", - "format": "uri", - "description": "URL linking to the wiki page providing more information about the task" - }, - "wikiImage": { - "type": "string", - "format": "uri", - "description": "URL linking to an image representing the task from the wiki" - }, - "assetImage": { - "type": "string", - "description": "Name of the asset image for the task" - }, - "colLogData": { - "type": "object", - "description": "Data used to check the task has been completed via the users Collection Log", - "properties": { - "category": { - "type": "string", - "description": "Category to which the task belongs in the Collection Log" - }, - "logName": { - "type": "string", - "description": "Name of the task entry in the Collection Log" - }, - "multi" : { - "type" : "array", - "description": "Array of Category to which the task belongs in the Collection Log" - }, - "multi_category" : { - "type" : "array", - "description": "Array of objects containing Category and logName to which the task belongs in the Collection Log" - }, - "include": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Items to include when checking the Collection Log for this task" - }, - "exclude": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Items to exclude when checking the Collection Log for this task" - }, - "logCount": { - "type": "integer", - "description": "Number of items to check for in the Collection Log" - } - }, - "required": ["category", "logName", "logCount"] - } - }, - "required": ["_id", "name", "wikiLink", "assetImage"] -} \ No newline at end of file diff --git a/templates/dashboard_official.html b/templates/dashboard_official.html index 82112e4..68d3e20 100644 --- a/templates/dashboard_official.html +++ b/templates/dashboard_official.html @@ -7,7 +7,7 @@