From dcdcb9bee278b58425ba2b9a6f84cdd0b11564d3 Mon Sep 17 00:00:00 2001 From: themrrobert <10122432+themrrobert@users.noreply.github.com> Date: Thu, 23 May 2024 08:17:49 -0700 Subject: [PATCH] Remove clue step items & show deleted + added items (#364) --- scripts/prepareItems.ts | 40 +- src/data/items/item_data.json | 15284 +++++++++----------------------- src/structures/Items.ts | 20 + 3 files changed, 4002 insertions(+), 11342 deletions(-) diff --git a/scripts/prepareItems.ts b/scripts/prepareItems.ts index b63598446..501f2a430 100644 --- a/scripts/prepareItems.ts +++ b/scripts/prepareItems.ts @@ -4,7 +4,7 @@ import { readFileSync, writeFileSync } from 'fs'; import fetch from 'node-fetch'; import { EquipmentSlot, Item } from '../dist/meta/types'; -import Items, { USELESS_ITEMS } from '../dist/structures/Items'; +import Items, { CLUE_SCROLLS, CLUE_SCROLL_NAMES, USELESS_ITEMS } from '../dist/structures/Items'; import { itemID } from '../dist/util'; import { itemChanges } from './manualItemChanges'; @@ -30,15 +30,22 @@ interface RawItemCollection { }; } +// This regex matches the nearly 600 individual clue-step items: +const clueStepRegex = /^Clue scroll \((beginner|easy|medium|hard|elite|master)\) - .*$/; + function itemShouldntBeAdded(item: any) { + if (CLUE_SCROLLS.includes(item.id)) return false; + return ( + CLUE_SCROLL_NAMES.includes(item.name) && !CLUE_SCROLLS.includes(item.id) || USELESS_ITEMS.includes(item.id) || item.duplicate === true || item.noted || item.linked_id_item || item.placeholder || item.name === 'Null' || - item.wiki_name?.includes(' (Worn)') + item.wiki_name?.includes(' (Worn)') || + (item.wiki_name && clueStepRegex.exec(item.wiki_name)) ); } @@ -311,7 +318,10 @@ export default async function prepareItems(): Promise { const price = allPrices[item.id]; if (price) { - item.price = Math.max(0, ((price.high as number) + (price.low as number)) / 2); + // Fix weird bug with prices: (high can be 1 and low 2.14b for example... blame Jamflex) + if (price.high < price.low) price.high = price.low; + // Calculate average of High + Low + item.price = Math.ceil(Math.max(0, ((price.high as number) + (price.low as number)) / 2)); } else { item.price = 0; } @@ -322,9 +332,18 @@ export default async function prepareItems(): Promise { item.price = 0; } - // If major price increase, just dont fucking change it. - if (previousItem && item.tradeable && previousItem.price < item.price / 20 && previousItem.price !== 0) { - majorPriceChanges.push([previousItem, item]); + let dontChange = false; + if (previousItem && item.tradeable) { + // If major price increase, just dont fucking change it. + if (previousItem.price < item.price / 20 && previousItem.price !== 0) dontChange = true; + // Prevent weird bug with expensive items: (An item with 2b val on GE had high = 1 & low = 100k) + if (item.price < previousItem.price / 10) dontChange = true; + // If price differs by 10000x just don't change it. + if (price && price.high / 10000 > price.low) dontChange = true; + } + + if (dontChange) { + majorPriceChanges.push([previousItem, {...item}]); item.price = previousItem.price; } @@ -426,7 +445,14 @@ export default async function prepareItems(): Promise { messages.push(`New Items: ${moidLink(newItems)}.`); messages.push(`Deleted Items: ${moidLink(deletedItems)}.`); - const sql = `SELECT + + const totalQtySql = `SELECT id, SUM(kv.value::int) AS total_quantity + FROM users, jsonb_each_text(bank::jsonb) AS kv(itemID, value) + WHERE itemID::int = ANY(ARRAY[${deletedItems.map(i => i.id).join(',')}]::int[]) + GROUP BY id`; + messages.push(`------------------- Get Total Qty of Deleted Items----------------\n${totalQtySql}\n`); + + const sql = `SELECT ${deletedItems .map( item => `COUNT(*) FILTER (WHERE bank->>'${item.id}' IS NOT NULL) AS people_with_item_${item.id}, diff --git a/src/data/items/item_data.json b/src/data/items/item_data.json index f4e79f1dc..735d869cc 100644 --- a/src/data/items/item_data.json +++ b/src/data/items/item_data.json @@ -98,7 +98,7 @@ "examine": "The cannon is built on this.", "wiki_name": "Cannon base", "wiki_url": "https://oldschool.runescape.wiki/w/Cannon_base", - "price": 197810.5 + "price": 197810 }, "8": { "id": 8, @@ -134,7 +134,7 @@ "examine": "The barrels of the multicannon.", "wiki_name": "Cannon barrels", "wiki_url": "https://oldschool.runescape.wiki/w/Cannon_barrels", - "price": 224752 + "price": 180237 }, "12": { "id": 12, @@ -364,7 +364,7 @@ "examine": "Drives away all known 6 legged creatures.", "wiki_name": "Insect repellent", "wiki_url": "https://oldschool.runescape.wiki/w/Insect_repellent", - "price": 450 + "price": 588 }, "30": { "id": 30, @@ -382,7 +382,7 @@ "examine": "It's a bucket of wax.", "wiki_name": "Bucket of wax", "wiki_url": "https://oldschool.runescape.wiki/w/Bucket_of_wax", - "price": 823.5 + "price": 723 }, "32": { "id": 32, @@ -499,7 +499,7 @@ "examine": "A candle.", "wiki_name": "Candle (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Candle#Unlit", - "price": 357.5 + "price": 718 }, "38": { "id": 38, @@ -530,7 +530,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Bronze arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_arrowtips", - "price": 3.5 + "price": 2 }, "40": { "id": 40, @@ -547,7 +547,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Iron arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_arrowtips", - "price": 17 + "price": 9 }, "41": { "id": 41, @@ -581,7 +581,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Mithril arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_arrowtips", - "price": 58.5 + "price": 41 }, "43": { "id": 43, @@ -598,7 +598,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Adamant arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_arrowtips", - "price": 113.5 + "price": 113 }, "44": { "id": 44, @@ -615,7 +615,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Rune arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_arrowtips", - "price": 254.5 + "price": 285 }, "45": { "id": 45, @@ -632,7 +632,7 @@ "examine": "Opal bolt tips.", "wiki_name": "Opal bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Opal_bolt_tips", - "price": 140 + "price": 154 }, "46": { "id": 46, @@ -684,7 +684,7 @@ "examine": "I need to find a string for this.", "wiki_name": "Longbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Longbow_(u)", - "price": 6.5 + "price": 6 }, "50": { "id": 50, @@ -702,7 +702,7 @@ "examine": "I need to find a string for this.", "wiki_name": "Shortbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Shortbow_(u)", - "price": 27 + "price": 31 }, "52": { "id": 52, @@ -719,7 +719,7 @@ "examine": "A wooden arrow shaft.", "wiki_name": "Arrow shaft", "wiki_url": "https://oldschool.runescape.wiki/w/Arrow_shaft", - "price": 1 + "price": 2 }, "53": { "id": 53, @@ -736,7 +736,7 @@ "examine": "A wooden arrow shaft with flights attached.", "wiki_name": "Headless arrow", "wiki_url": "https://oldschool.runescape.wiki/w/Headless_arrow", - "price": 9 + "price": 11 }, "54": { "id": 54, @@ -754,7 +754,7 @@ "examine": "An unstrung oak shortbow; I need a bowstring for this.", "wiki_name": "Oak shortbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_shortbow_(u)", - "price": 30.5 + "price": 39 }, "56": { "id": 56, @@ -790,7 +790,7 @@ "examine": "An unstrung willow longbow; I need a bowstring for this.", "wiki_name": "Willow longbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_longbow_(u)", - "price": 63 + "price": 72 }, "60": { "id": 60, @@ -808,7 +808,7 @@ "examine": "An unstrung willow shortbow; I need a bowstring for this.", "wiki_name": "Willow shortbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_shortbow_(u)", - "price": 18.5 + "price": 26 }, "62": { "id": 62, @@ -826,7 +826,7 @@ "examine": "An unstrung maple longbow; I need a bowstring for this.", "wiki_name": "Maple longbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_longbow_(u)", - "price": 112 + "price": 100 }, "64": { "id": 64, @@ -844,7 +844,7 @@ "examine": "An unstrung maple shortbow; I need a bowstring for this.", "wiki_name": "Maple shortbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_shortbow_(u)", - "price": 70 + "price": 82 }, "66": { "id": 66, @@ -862,7 +862,7 @@ "examine": "An unstrung yew longbow; I need a bowstring for this.", "wiki_name": "Yew longbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_longbow_(u)", - "price": 339.5 + "price": 339 }, "68": { "id": 68, @@ -880,7 +880,7 @@ "examine": "An unstrung yew shortbow; I need a bowstring for this.", "wiki_name": "Yew shortbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_shortbow_(u)", - "price": 219.5 + "price": 277 }, "70": { "id": 70, @@ -1240,7 +1240,7 @@ "examine": "I need another ingredient to finish this Marrentill potion.", "wiki_name": "Marrentill potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Marrentill_potion_(unf)", - "price": 193 + "price": 163 }, "95": { "id": 95, @@ -1258,7 +1258,7 @@ "examine": "I need another ingredient to finish this Tarromin potion.", "wiki_name": "Tarromin potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Tarromin_potion_(unf)", - "price": 248 + "price": 332 }, "97": { "id": 97, @@ -1276,7 +1276,7 @@ "examine": "I need another ingredient to finish this Harralander potion.", "wiki_name": "Harralander potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Harralander_potion_(unf)", - "price": 527.5 + "price": 527 }, "99": { "id": 99, @@ -1294,7 +1294,7 @@ "examine": "I need another ingredient to finish this Ranarr potion.", "wiki_name": "Ranarr potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Ranarr_potion_(unf)", - "price": 6111 + "price": 7540 }, "101": { "id": 101, @@ -1312,7 +1312,7 @@ "examine": "I need another ingredient to finish this Irit potion.", "wiki_name": "Irit potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Irit_potion_(unf)", - "price": 1167.5 + "price": 1594 }, "103": { "id": 103, @@ -1330,7 +1330,7 @@ "examine": "I need another ingredient to finish this Avantoe potion.", "wiki_name": "Avantoe potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Avantoe_potion_(unf)", - "price": 4180.5 + "price": 4643 }, "105": { "id": 105, @@ -1348,7 +1348,7 @@ "examine": "I need another ingredient to finish this Kwuarm potion.", "wiki_name": "Kwuarm potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Kwuarm_potion_(unf)", - "price": 3309.5 + "price": 4232 }, "107": { "id": 107, @@ -1366,7 +1366,7 @@ "examine": "I need another ingredient to finish this Cadantine potion.", "wiki_name": "Cadantine potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Cadantine_potion_(unf)", - "price": 4062.5 + "price": 5973 }, "109": { "id": 109, @@ -1402,7 +1402,7 @@ "examine": "I need another ingredient to finish this Torstol potion.", "wiki_name": "Torstol potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Torstol_potion_(unf)", - "price": 3392 + "price": 5058 }, "113": { "id": 113, @@ -1419,7 +1419,7 @@ "examine": "4 doses of Strength potion.", "wiki_name": "Strength potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Strength_potion#4_dose", - "price": 164.5 + "price": 164 }, "115": { "id": 115, @@ -1436,7 +1436,7 @@ "examine": "3 doses of Strength potion.", "wiki_name": "Strength potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Strength_potion#3_dose", - "price": 124.5 + "price": 124 }, "117": { "id": 117, @@ -1453,7 +1453,7 @@ "examine": "2 doses of Strength potion.", "wiki_name": "Strength potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Strength_potion#2_dose", - "price": 85.5 + "price": 59 }, "119": { "id": 119, @@ -1488,7 +1488,7 @@ "examine": "3 doses of Attack potion.", "wiki_name": "Attack potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Attack_potion#3_dose", - "price": 6.5 + "price": 4 }, "123": { "id": 123, @@ -1506,7 +1506,7 @@ "examine": "2 doses of Attack potion.", "wiki_name": "Attack potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Attack_potion#2_dose", - "price": 5 + "price": 17 }, "125": { "id": 125, @@ -1524,7 +1524,7 @@ "examine": "1 dose of Attack potion.", "wiki_name": "Attack potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Attack_potion#1_dose", - "price": 14.5 + "price": 6 }, "127": { "id": 127, @@ -1542,7 +1542,7 @@ "examine": "3 doses of restore potion.", "wiki_name": "Restore potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Restore_potion#3_dose", - "price": 54.5 + "price": 54 }, "129": { "id": 129, @@ -1560,7 +1560,7 @@ "examine": "2 doses of restore potion.", "wiki_name": "Restore potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Restore_potion#2_dose", - "price": 58 + "price": 23 }, "131": { "id": 131, @@ -1578,7 +1578,7 @@ "examine": "1 dose of restore potion.", "wiki_name": "Restore potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Restore_potion#1_dose", - "price": 12 + "price": 22 }, "133": { "id": 133, @@ -1596,7 +1596,7 @@ "examine": "3 doses of Defence potion.", "wiki_name": "Defence potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Defence_potion#3_dose", - "price": 261 + "price": 447 }, "135": { "id": 135, @@ -1614,7 +1614,7 @@ "examine": "2 doses of Defence potion.", "wiki_name": "Defence potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Defence_potion#2_dose", - "price": 61 + "price": 144 }, "137": { "id": 137, @@ -1632,7 +1632,7 @@ "examine": "1 dose of Defence potion.", "wiki_name": "Defence potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Defence_potion#1_dose", - "price": 163 + "price": 57 }, "139": { "id": 139, @@ -1650,7 +1650,7 @@ "examine": "3 doses of Prayer restore potion.", "wiki_name": "Prayer potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Prayer_potion#3_dose", - "price": 7225.5 + "price": 7986 }, "141": { "id": 141, @@ -1668,7 +1668,7 @@ "examine": "2 doses of Prayer restore potion.", "wiki_name": "Prayer potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Prayer_potion#2_dose", - "price": 4596.5 + "price": 5645 }, "143": { "id": 143, @@ -1686,7 +1686,7 @@ "examine": "1 dose of Prayer restore potion.", "wiki_name": "Prayer potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Prayer_potion#1_dose", - "price": 2301.5 + "price": 2692 }, "145": { "id": 145, @@ -1704,7 +1704,7 @@ "examine": "3 doses of super Attack potion.", "wiki_name": "Super attack (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_attack#3_dose", - "price": 817.5 + "price": 1552 }, "147": { "id": 147, @@ -1722,7 +1722,7 @@ "examine": "2 doses of super Attack potion.", "wiki_name": "Super attack (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_attack#2_dose", - "price": 503.5 + "price": 1009 }, "149": { "id": 149, @@ -1740,7 +1740,7 @@ "examine": "1 dose of super Attack potion.", "wiki_name": "Super attack (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_attack#1_dose", - "price": 288 + "price": 513 }, "151": { "id": 151, @@ -1758,7 +1758,7 @@ "examine": "3 doses of Fishing potion.", "wiki_name": "Fishing potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_potion#3_dose", - "price": 19.5 + "price": 46 }, "153": { "id": 153, @@ -1794,7 +1794,7 @@ "examine": "1 dose of Fishing potion.", "wiki_name": "Fishing potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_potion#1_dose", - "price": 14.5 + "price": 14 }, "157": { "id": 157, @@ -1812,7 +1812,7 @@ "examine": "3 doses of super Strength potion.", "wiki_name": "Super strength (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_strength#3_dose", - "price": 3554 + "price": 4890 }, "159": { "id": 159, @@ -1830,7 +1830,7 @@ "examine": "2 doses of super Strength potion.", "wiki_name": "Super strength (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_strength#2_dose", - "price": 2126 + "price": 2801 }, "161": { "id": 161, @@ -1848,7 +1848,7 @@ "examine": "1 dose of super Strength potion.", "wiki_name": "Super strength (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_strength#1_dose", - "price": 1215.5 + "price": 1688 }, "163": { "id": 163, @@ -1866,7 +1866,7 @@ "examine": "3 doses of super Defence potion.", "wiki_name": "Super defence (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_defence#3_dose", - "price": 3565.5 + "price": 5951 }, "165": { "id": 165, @@ -1884,7 +1884,7 @@ "examine": "2 doses of super Defence potion.", "wiki_name": "Super defence (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_defence#2_dose", - "price": 2668 + "price": 3797 }, "167": { "id": 167, @@ -1902,7 +1902,7 @@ "examine": "1 dose of super Defence potion.", "wiki_name": "Super defence (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_defence#1_dose", - "price": 1377 + "price": 1978 }, "169": { "id": 169, @@ -1956,7 +1956,7 @@ "examine": "1 dose of ranging potion.", "wiki_name": "Ranging potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ranging_potion#1_dose", - "price": 705.5 + "price": 891 }, "175": { "id": 175, @@ -1973,7 +1973,7 @@ "examine": "3 doses of antipoison potion.", "wiki_name": "Antipoison (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antipoison#3_dose", - "price": 149.5 + "price": 122 }, "177": { "id": 177, @@ -1990,7 +1990,7 @@ "examine": "2 doses of antipoison potion.", "wiki_name": "Antipoison (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antipoison#2_dose", - "price": 94.5 + "price": 70 }, "179": { "id": 179, @@ -2007,7 +2007,7 @@ "examine": "1 dose of antipoison potion.", "wiki_name": "Antipoison (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antipoison#1_dose", - "price": 25.5 + "price": 119 }, "181": { "id": 181, @@ -2025,7 +2025,7 @@ "examine": "3 doses of super antipoison potion.", "wiki_name": "Superantipoison (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Superantipoison#3_dose", - "price": 772.5 + "price": 986 }, "183": { "id": 183, @@ -2079,7 +2079,7 @@ "examine": "For use on daggers and projectiles.", "wiki_name": "Weapon poison", "wiki_url": "https://oldschool.runescape.wiki/w/Weapon_poison", - "price": 250 + "price": 369 }, "189": { "id": 189, @@ -2133,7 +2133,7 @@ "examine": "1 dose of Zamorak brew.", "wiki_name": "Zamorak brew (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_brew#1_dose", - "price": 845 + "price": 1018 }, "195": { "id": 195, @@ -2166,7 +2166,7 @@ "examine": "A cup of a strange brew...", "wiki_name": "Poison chalice", "wiki_url": "https://oldschool.runescape.wiki/w/Poison_chalice", - "price": 1229.5 + "price": 1881 }, "199": { "id": 199, @@ -2184,7 +2184,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy guam leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_guam_leaf", - "price": 200 + "price": 224 }, "201": { "id": 201, @@ -2202,7 +2202,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy marrentill", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_marrentill", - "price": 77.5 + "price": 77 }, "203": { "id": 203, @@ -2220,7 +2220,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy tarromin", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_tarromin", - "price": 107 + "price": 148 }, "205": { "id": 205, @@ -2256,7 +2256,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy ranarr weed", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_ranarr_weed", - "price": 5934.5 + "price": 7259 }, "209": { "id": 209, @@ -2274,7 +2274,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy irit leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_irit_leaf", - "price": 1027.5 + "price": 1394 }, "211": { "id": 211, @@ -2292,7 +2292,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy avantoe", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_avantoe", - "price": 3936.5 + "price": 4445 }, "213": { "id": 213, @@ -2310,7 +2310,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy kwuarm", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_kwuarm", - "price": 3109 + "price": 3908 }, "215": { "id": 215, @@ -2328,7 +2328,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy cadantine", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_cadantine", - "price": 3873.5 + "price": 5556 }, "217": { "id": 217, @@ -2364,7 +2364,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy torstol", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_torstol", - "price": 3303.5 + "price": 4813 }, "221": { "id": 221, @@ -2381,7 +2381,7 @@ "examine": "It seems to be looking at me.", "wiki_name": "Eye of newt", "wiki_url": "https://oldschool.runescape.wiki/w/Eye_of_newt", - "price": 3.5 + "price": 3 }, "223": { "id": 223, @@ -2415,7 +2415,7 @@ "examine": "The root of a limpwurt plant.", "wiki_name": "Limpwurt root", "wiki_url": "https://oldschool.runescape.wiki/w/Limpwurt_root", - "price": 548 + "price": 762 }, "227": { "id": 227, @@ -2432,7 +2432,7 @@ "examine": "A glass vial containing water.", "wiki_name": "Vial of water", "wiki_url": "https://oldschool.runescape.wiki/w/Vial_of_water", - "price": 4 + "price": 3 }, "229": { "id": 229, @@ -2449,7 +2449,7 @@ "examine": "An empty glass vial.", "wiki_name": "Vial", "wiki_url": "https://oldschool.runescape.wiki/w/Vial", - "price": 1.5 + "price": 3 }, "231": { "id": 231, @@ -2467,7 +2467,7 @@ "examine": "Strange spiky grass.", "wiki_name": "Snape grass", "wiki_url": "https://oldschool.runescape.wiki/w/Snape_grass", - "price": 685 + "price": 479 }, "233": { "id": 233, @@ -2485,7 +2485,7 @@ "examine": "I can grind things for potions in this.", "wiki_name": "Pestle and mortar", "wiki_url": "https://oldschool.runescape.wiki/w/Pestle_and_mortar", - "price": 168.5 + "price": 128 }, "235": { "id": 235, @@ -2503,7 +2503,7 @@ "examine": "Finely ground horn of Unicorn.", "wiki_name": "Unicorn horn dust", "wiki_url": "https://oldschool.runescape.wiki/w/Unicorn_horn_dust", - "price": 175 + "price": 266 }, "237": { "id": 237, @@ -2521,7 +2521,7 @@ "examine": "This horn has restorative properties.", "wiki_name": "Unicorn horn", "wiki_url": "https://oldschool.runescape.wiki/w/Unicorn_horn", - "price": 132.5 + "price": 167 }, "239": { "id": 239, @@ -2539,7 +2539,7 @@ "examine": "Sour berries, used in potions.", "wiki_name": "White berries", "wiki_url": "https://oldschool.runescape.wiki/w/White_berries", - "price": 317 + "price": 406 }, "241": { "id": 241, @@ -2557,7 +2557,7 @@ "examine": "Finely ground scale of Dragon.", "wiki_name": "Dragon scale dust", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_scale_dust", - "price": 62 + "price": 36 }, "243": { "id": 243, @@ -2592,7 +2592,7 @@ "examine": "An evil wine for an evil god.", "wiki_name": "Wine of zamorak", "wiki_url": "https://oldschool.runescape.wiki/w/Wine_of_zamorak", - "price": 1043 + "price": 891 }, "247": { "id": 247, @@ -2610,7 +2610,7 @@ "examine": "They don't look very ripe.", "wiki_name": "Jangerberries", "wiki_url": "https://oldschool.runescape.wiki/w/Jangerberries", - "price": 270.5 + "price": 385 }, "249": { "id": 249, @@ -2646,7 +2646,7 @@ "examine": "A herb used in poison cures.", "wiki_name": "Marrentill", "wiki_url": "https://oldschool.runescape.wiki/w/Marrentill", - "price": 74.5 + "price": 127 }, "253": { "id": 253, @@ -2664,7 +2664,7 @@ "examine": "A useful herb.", "wiki_name": "Tarromin", "wiki_url": "https://oldschool.runescape.wiki/w/Tarromin", - "price": 105 + "price": 209 }, "255": { "id": 255, @@ -2700,7 +2700,7 @@ "examine": "A useful herb.", "wiki_name": "Ranarr weed", "wiki_url": "https://oldschool.runescape.wiki/w/Ranarr_weed", - "price": 6497.5 + "price": 7330 }, "259": { "id": 259, @@ -2718,7 +2718,7 @@ "examine": "A useful herb.", "wiki_name": "Irit leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Irit_leaf", - "price": 1068 + "price": 1443 }, "261": { "id": 261, @@ -2736,7 +2736,7 @@ "examine": "A useful herb.", "wiki_name": "Avantoe", "wiki_url": "https://oldschool.runescape.wiki/w/Avantoe", - "price": 4025.5 + "price": 4523 }, "263": { "id": 263, @@ -2754,7 +2754,7 @@ "examine": "A powerful herb.", "wiki_name": "Kwuarm", "wiki_url": "https://oldschool.runescape.wiki/w/Kwuarm", - "price": 3390.5 + "price": 3974 }, "265": { "id": 265, @@ -2772,7 +2772,7 @@ "examine": "A powerful herb.", "wiki_name": "Cadantine", "wiki_url": "https://oldschool.runescape.wiki/w/Cadantine", - "price": 3909 + "price": 5689 }, "267": { "id": 267, @@ -2790,7 +2790,7 @@ "examine": "A powerful herb.", "wiki_name": "Dwarf weed", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarf_weed", - "price": 2313.5 + "price": 2313 }, "269": { "id": 269, @@ -2808,7 +2808,7 @@ "examine": "A powerful herb.", "wiki_name": "Torstol", "wiki_url": "https://oldschool.runescape.wiki/w/Torstol", - "price": 3686 + "price": 4902 }, "271": { "id": 271, @@ -2855,7 +2855,7 @@ "examine": "This stuff looks nasty.", "wiki_name": "Poison (item)", "wiki_url": "https://oldschool.runescape.wiki/w/Poison_(item)", - "price": 511.5 + "price": 756 }, "274": { "id": 274, @@ -3157,7 +3157,7 @@ "examine": "Some brown armour designed to fit goblins.", "wiki_name": "Goblin mail", "wiki_url": "https://oldschool.runescape.wiki/w/Goblin_mail", - "price": 573.5 + "price": 821 }, "290": { "id": 290, @@ -3318,7 +3318,7 @@ "examine": "Magical seeds in a mithril case.", "wiki_name": "Mithril seeds", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_seeds", - "price": 653 + "price": 436 }, "300": { "id": 300, @@ -3348,7 +3348,7 @@ "examine": "Useful for catching lobsters.", "wiki_name": "Lobster pot", "wiki_url": "https://oldschool.runescape.wiki/w/Lobster_pot", - "price": 139.5 + "price": 139 }, "303": { "id": 303, @@ -3365,7 +3365,7 @@ "examine": "Useful for catching small fish.", "wiki_name": "Small fishing net (Regular)", "wiki_url": "https://oldschool.runescape.wiki/w/Small_fishing_net#Regular", - "price": 278.5 + "price": 86 }, "305": { "id": 305, @@ -3383,7 +3383,7 @@ "examine": "Useful for catching lots of fish.", "wiki_name": "Big fishing net", "wiki_url": "https://oldschool.runescape.wiki/w/Big_fishing_net", - "price": 575 + "price": 876 }, "307": { "id": 307, @@ -3400,7 +3400,7 @@ "examine": "Useful for catching sardine or herring.", "wiki_name": "Fishing rod", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_rod", - "price": 77 + "price": 150 }, "309": { "id": 309, @@ -3417,7 +3417,7 @@ "examine": "Useful for catching salmon or trout.", "wiki_name": "Fly fishing rod", "wiki_url": "https://oldschool.runescape.wiki/w/Fly_fishing_rod", - "price": 75.5 + "price": 147 }, "311": { "id": 311, @@ -3434,7 +3434,7 @@ "examine": "Useful for catching really big fish.", "wiki_name": "Harpoon", "wiki_url": "https://oldschool.runescape.wiki/w/Harpoon", - "price": 32 + "price": 53 }, "313": { "id": 313, @@ -3450,7 +3450,7 @@ "examine": "For use with a fishing rod.", "wiki_name": "Fishing bait", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_bait", - "price": 4.5 + "price": 4 }, "314": { "id": 314, @@ -3466,7 +3466,7 @@ "examine": "Used for fly fishing.", "wiki_name": "Feather", "wiki_url": "https://oldschool.runescape.wiki/w/Feather", - "price": 2.5 + "price": 3 }, "315": { "id": 315, @@ -3483,7 +3483,7 @@ "examine": "Some nicely cooked shrimp.", "wiki_name": "Shrimps", "wiki_url": "https://oldschool.runescape.wiki/w/Shrimps", - "price": 30 + "price": 24 }, "317": { "id": 317, @@ -3500,7 +3500,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw shrimps", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_shrimps", - "price": 106.5 + "price": 170 }, "319": { "id": 319, @@ -3517,7 +3517,7 @@ "examine": "Some nicely cooked anchovies.", "wiki_name": "Anchovies", "wiki_url": "https://oldschool.runescape.wiki/w/Anchovies", - "price": 50 + "price": 60 }, "321": { "id": 321, @@ -3534,7 +3534,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw anchovies", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_anchovies", - "price": 25 + "price": 53 }, "323": { "id": 323, @@ -3566,7 +3566,7 @@ "examine": "Some nicely cooked sardines.", "wiki_name": "Sardine", "wiki_url": "https://oldschool.runescape.wiki/w/Sardine", - "price": 30.5 + "price": 30 }, "327": { "id": 327, @@ -3583,7 +3583,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw sardine", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_sardine", - "price": 77.5 + "price": 68 }, "329": { "id": 329, @@ -3600,7 +3600,7 @@ "examine": "Some nicely cooked salmon.", "wiki_name": "Salmon", "wiki_url": "https://oldschool.runescape.wiki/w/Salmon", - "price": 85.5 + "price": 107 }, "331": { "id": 331, @@ -3617,7 +3617,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw salmon", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_salmon", - "price": 73.5 + "price": 84 }, "333": { "id": 333, @@ -3634,7 +3634,7 @@ "examine": "Some nicely cooked trout.", "wiki_name": "Trout", "wiki_url": "https://oldschool.runescape.wiki/w/Trout", - "price": 27.5 + "price": 40 }, "335": { "id": 335, @@ -3651,7 +3651,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw trout", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_trout", - "price": 56.5 + "price": 84 }, "337": { "id": 337, @@ -3697,7 +3697,7 @@ "examine": "Some nicely cooked cod.", "wiki_name": "Cod", "wiki_url": "https://oldschool.runescape.wiki/w/Cod", - "price": 13.5 + "price": 21 }, "341": { "id": 341, @@ -3715,7 +3715,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw cod", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_cod", - "price": 83.5 + "price": 67 }, "343": { "id": 343, @@ -3764,7 +3764,7 @@ "examine": "Some nicely cooked herring.", "wiki_name": "Herring", "wiki_url": "https://oldschool.runescape.wiki/w/Herring", - "price": 37.5 + "price": 45 }, "349": { "id": 349, @@ -3781,7 +3781,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw pike", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_pike", - "price": 119.5 + "price": 98 }, "351": { "id": 351, @@ -3798,7 +3798,7 @@ "examine": "Some nicely cooked pike.", "wiki_name": "Pike", "wiki_url": "https://oldschool.runescape.wiki/w/Pike", - "price": 26.5 + "price": 20 }, "353": { "id": 353, @@ -3816,7 +3816,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw mackerel", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_mackerel", - "price": 36 + "price": 300 }, "355": { "id": 355, @@ -3834,7 +3834,7 @@ "examine": "Some nicely cooked mackerel.", "wiki_name": "Mackerel", "wiki_url": "https://oldschool.runescape.wiki/w/Mackerel", - "price": 9.5 + "price": 18 }, "357": { "id": 357, @@ -3866,7 +3866,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw tuna", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_tuna", - "price": 60 + "price": 70 }, "361": { "id": 361, @@ -3883,7 +3883,7 @@ "examine": "Wow, this is a big fish.", "wiki_name": "Tuna", "wiki_url": "https://oldschool.runescape.wiki/w/Tuna", - "price": 88.5 + "price": 107 }, "363": { "id": 363, @@ -3901,7 +3901,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw bass", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_bass", - "price": 16.5 + "price": 13 }, "365": { "id": 365, @@ -3919,7 +3919,7 @@ "examine": "Wow, this is a big fish.", "wiki_name": "Bass", "wiki_url": "https://oldschool.runescape.wiki/w/Bass", - "price": 107 + "price": 165 }, "367": { "id": 367, @@ -3983,7 +3983,7 @@ "examine": "I'd better be careful eating this!", "wiki_name": "Swordfish", "wiki_url": "https://oldschool.runescape.wiki/w/Swordfish", - "price": 199.5 + "price": 199 }, "375": { "id": 375, @@ -4015,7 +4015,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw lobster", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_lobster", - "price": 95.5 + "price": 95 }, "379": { "id": 379, @@ -4032,7 +4032,7 @@ "examine": "This looks tricky to eat.", "wiki_name": "Lobster", "wiki_url": "https://oldschool.runescape.wiki/w/Lobster", - "price": 169.5 + "price": 169 }, "381": { "id": 381, @@ -4065,7 +4065,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw shark", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_shark", - "price": 998.5 + "price": 746 }, "385": { "id": 385, @@ -4083,7 +4083,7 @@ "examine": "I'd better be careful eating this.", "wiki_name": "Shark", "wiki_url": "https://oldschool.runescape.wiki/w/Shark", - "price": 1166.5 + "price": 991 }, "387": { "id": 387, @@ -4117,7 +4117,7 @@ "examine": "A rare catch.", "wiki_name": "Raw manta ray", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_manta_ray", - "price": 1172.5 + "price": 1843 }, "391": { "id": 391, @@ -4135,7 +4135,7 @@ "examine": "A rare catch.", "wiki_name": "Manta ray", "wiki_url": "https://oldschool.runescape.wiki/w/Manta_ray", - "price": 1318 + "price": 2510 }, "393": { "id": 393, @@ -4169,7 +4169,7 @@ "examine": "A rare catch.", "wiki_name": "Raw sea turtle", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_sea_turtle", - "price": 872 + "price": 1015 }, "397": { "id": 397, @@ -4221,7 +4221,7 @@ "examine": "Slightly damp seaweed.", "wiki_name": "Seaweed", "wiki_url": "https://oldschool.runescape.wiki/w/Seaweed", - "price": 27.5 + "price": 31 }, "403": { "id": 403, @@ -4239,7 +4239,7 @@ "examine": "Slightly damp seaweed.", "wiki_name": "Edible seaweed", "wiki_url": "https://oldschool.runescape.wiki/w/Edible_seaweed", - "price": 106 + "price": 58 }, "405": { "id": 405, @@ -4257,7 +4257,7 @@ "examine": "I hope there's treasure in it.", "wiki_name": "Casket", "wiki_url": "https://oldschool.runescape.wiki/w/Casket", - "price": 1175.5 + "price": 1175 }, "407": { "id": 407, @@ -4275,7 +4275,7 @@ "examine": "Maybe there are pearls inside?", "wiki_name": "Oyster", "wiki_url": "https://oldschool.runescape.wiki/w/Oyster", - "price": 91.5 + "price": 41 }, "409": { "id": 409, @@ -4309,7 +4309,7 @@ "examine": "I could work wonders with a chisel on this pearl.", "wiki_name": "Oyster pearl", "wiki_url": "https://oldschool.runescape.wiki/w/Oyster_pearl", - "price": 119 + "price": 75 }, "413": { "id": 413, @@ -4327,7 +4327,7 @@ "examine": "I could work wonders with a chisel on these pearls.", "wiki_name": "Oyster pearls", "wiki_url": "https://oldschool.runescape.wiki/w/Oyster_pearls", - "price": 645 + "price": 932 }, "415": { "id": 415, @@ -4536,7 +4536,7 @@ "slot": "body", "requirements": null }, - "price": 500 + "price": 233 }, "428": { "id": 428, @@ -4573,7 +4573,7 @@ "slot": "legs", "requirements": null }, - "price": 112.5 + "price": 94 }, "430": { "id": 430, @@ -4663,7 +4663,7 @@ "examine": "Some hard dry clay.", "wiki_name": "Clay", "wiki_url": "https://oldschool.runescape.wiki/w/Clay", - "price": 107 + "price": 75 }, "436": { "id": 436, @@ -4680,7 +4680,7 @@ "examine": "This needs refining.", "wiki_name": "Copper ore", "wiki_url": "https://oldschool.runescape.wiki/w/Copper_ore", - "price": 63 + "price": 43 }, "438": { "id": 438, @@ -4697,7 +4697,7 @@ "examine": "This needs refining.", "wiki_name": "Tin ore", "wiki_url": "https://oldschool.runescape.wiki/w/Tin_ore", - "price": 70.5 + "price": 35 }, "440": { "id": 440, @@ -4714,7 +4714,7 @@ "examine": "This needs refining.", "wiki_name": "Iron ore", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_ore", - "price": 212.5 + "price": 154 }, "442": { "id": 442, @@ -4731,7 +4731,7 @@ "examine": "This needs refining.", "wiki_name": "Silver ore", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_ore", - "price": 75.5 + "price": 43 }, "444": { "id": 444, @@ -4748,7 +4748,7 @@ "examine": "This needs refining.", "wiki_name": "Gold ore", "wiki_url": "https://oldschool.runescape.wiki/w/Gold_ore", - "price": 188 + "price": 157 }, "446": { "id": 446, @@ -4779,7 +4779,7 @@ "examine": "This needs refining.", "wiki_name": "Mithril ore", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_ore", - "price": 168.5 + "price": 106 }, "449": { "id": 449, @@ -4796,7 +4796,7 @@ "examine": "This needs refining.", "wiki_name": "Adamantite ore", "wiki_url": "https://oldschool.runescape.wiki/w/Adamantite_ore", - "price": 1091.5 + "price": 1091 }, "451": { "id": 451, @@ -4813,7 +4813,7 @@ "examine": "This needs refining.", "wiki_name": "Runite ore", "wiki_url": "https://oldschool.runescape.wiki/w/Runite_ore", - "price": 11065.5 + "price": 11065 }, "453": { "id": 453, @@ -4830,7 +4830,7 @@ "examine": "Hmm a non-renewable energy source!", "wiki_name": "Coal", "wiki_url": "https://oldschool.runescape.wiki/w/Coal", - "price": 155.5 + "price": 155 }, "455": { "id": 455, @@ -4974,7 +4974,7 @@ "examine": "I wonder what this tastes like?", "wiki_name": "Strange fruit", "wiki_url": "https://oldschool.runescape.wiki/w/Strange_fruit", - "price": 667.5 + "price": 667 }, "466": { "id": 466, @@ -5465,7 +5465,7 @@ "examine": "Bones are for burying!", "wiki_name": "Bones", "wiki_url": "https://oldschool.runescape.wiki/w/Bones", - "price": 85 + "price": 136 }, "528": { "id": 528, @@ -5482,7 +5482,7 @@ "examine": "Bones are for burying!", "wiki_name": "Burnt bones", "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_bones", - "price": 200 + "price": 408 }, "530": { "id": 530, @@ -5500,7 +5500,7 @@ "examine": "Ew it's a pile of bones.", "wiki_name": "Bat bones", "wiki_url": "https://oldschool.runescape.wiki/w/Bat_bones", - "price": 622.5 + "price": 622 }, "532": { "id": 532, @@ -5535,7 +5535,7 @@ "examine": "Ew it's a pile of bones.", "wiki_name": "Babydragon bones", "wiki_url": "https://oldschool.runescape.wiki/w/Babydragon_bones", - "price": 1171 + "price": 957 }, "536": { "id": 536, @@ -5553,7 +5553,7 @@ "examine": "These would feed a dog for months!", "wiki_name": "Dragon bones", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bones", - "price": 3690.5 + "price": 2860 }, "538": { "id": 538, @@ -5666,7 +5666,7 @@ "slot": "legs", "requirements": null }, - "price": 285.5 + "price": 801 }, "544": { "id": 544, @@ -5703,7 +5703,7 @@ "slot": "body", "requirements": null }, - "price": 615 + "price": 840 }, "546": { "id": 546, @@ -5740,7 +5740,7 @@ "slot": "body", "requirements": null }, - "price": 3250 + "price": 745 }, "548": { "id": 548, @@ -5777,7 +5777,7 @@ "slot": "legs", "requirements": null }, - "price": 670.5 + "price": 2962 }, "550": { "id": 550, @@ -5852,7 +5852,7 @@ "examine": "One of the 4 basic elemental Runes.", "wiki_name": "Fire rune", "wiki_url": "https://oldschool.runescape.wiki/w/Fire_rune", - "price": 4.5 + "price": 5 }, "555": { "id": 555, @@ -5868,7 +5868,7 @@ "examine": "One of the 4 basic elemental Runes.", "wiki_name": "Water rune", "wiki_url": "https://oldschool.runescape.wiki/w/Water_rune", - "price": 4.5 + "price": 5 }, "556": { "id": 556, @@ -5884,7 +5884,7 @@ "examine": "One of the 4 basic elemental Runes.", "wiki_name": "Air rune", "wiki_url": "https://oldschool.runescape.wiki/w/Air_rune", - "price": 4.5 + "price": 4 }, "557": { "id": 557, @@ -5900,7 +5900,7 @@ "examine": "One of the 4 basic elemental Runes.", "wiki_name": "Earth rune", "wiki_url": "https://oldschool.runescape.wiki/w/Earth_rune", - "price": 4.5 + "price": 5 }, "558": { "id": 558, @@ -5916,7 +5916,7 @@ "examine": "Used for basic level missile spells.", "wiki_name": "Mind rune", "wiki_url": "https://oldschool.runescape.wiki/w/Mind_rune", - "price": 2 + "price": 3 }, "559": { "id": 559, @@ -5932,7 +5932,7 @@ "examine": "Used for curse spells.", "wiki_name": "Body rune", "wiki_url": "https://oldschool.runescape.wiki/w/Body_rune", - "price": 5.5 + "price": 5 }, "560": { "id": 560, @@ -5948,7 +5948,7 @@ "examine": "Used for medium level missile spells.", "wiki_name": "Death rune", "wiki_url": "https://oldschool.runescape.wiki/w/Death_rune", - "price": 183.5 + "price": 115 }, "561": { "id": 561, @@ -5964,7 +5964,7 @@ "examine": "Used for alchemy spells.", "wiki_name": "Nature rune", "wiki_url": "https://oldschool.runescape.wiki/w/Nature_rune", - "price": 107.5 + "price": 92 }, "562": { "id": 562, @@ -5980,7 +5980,7 @@ "examine": "Used for low level missile spells.", "wiki_name": "Chaos rune", "wiki_url": "https://oldschool.runescape.wiki/w/Chaos_rune", - "price": 104 + "price": 61 }, "563": { "id": 563, @@ -6012,7 +6012,7 @@ "examine": "Used for enchant spells.", "wiki_name": "Cosmic rune", "wiki_url": "https://oldschool.runescape.wiki/w/Cosmic_rune", - "price": 88.5 + "price": 72 }, "565": { "id": 565, @@ -6029,7 +6029,7 @@ "examine": "Used for high level missile spells.", "wiki_name": "Blood rune", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_rune", - "price": 265 + "price": 203 }, "566": { "id": 566, @@ -6046,7 +6046,7 @@ "examine": "Used for high level curse spells.", "wiki_name": "Soul rune", "wiki_url": "https://oldschool.runescape.wiki/w/Soul_rune", - "price": 273.5 + "price": 199 }, "567": { "id": 567, @@ -6064,7 +6064,7 @@ "examine": "I'd prefer it if it was powered.", "wiki_name": "Unpowered orb", "wiki_url": "https://oldschool.runescape.wiki/w/Unpowered_orb", - "price": 69.5 + "price": 127 }, "569": { "id": 569, @@ -6082,7 +6082,7 @@ "examine": "A magic glowing orb.", "wiki_name": "Fire orb", "wiki_url": "https://oldschool.runescape.wiki/w/Fire_orb", - "price": 1129 + "price": 936 }, "571": { "id": 571, @@ -6100,7 +6100,7 @@ "examine": "A magic glowing orb.", "wiki_name": "Water orb", "wiki_url": "https://oldschool.runescape.wiki/w/Water_orb", - "price": 955 + "price": 815 }, "573": { "id": 573, @@ -6118,7 +6118,7 @@ "examine": "A magic glowing orb.", "wiki_name": "Air orb", "wiki_url": "https://oldschool.runescape.wiki/w/Air_orb", - "price": 1275.5 + "price": 995 }, "575": { "id": 575, @@ -6136,7 +6136,7 @@ "examine": "A magic glowing orb.", "wiki_name": "Earth orb", "wiki_url": "https://oldschool.runescape.wiki/w/Earth_orb", - "price": 985 + "price": 875 }, "577": { "id": 577, @@ -6173,7 +6173,7 @@ "slot": "body", "requirements": null }, - "price": 1750 + "price": 1458 }, "579": { "id": 579, @@ -6247,7 +6247,7 @@ "slot": "body", "requirements": null }, - "price": 941.5 + "price": 941 }, "583": { "id": 583, @@ -6358,7 +6358,7 @@ "examine": "Useful for lighting a fire.", "wiki_name": "Tinderbox", "wiki_url": "https://oldschool.runescape.wiki/w/Tinderbox", - "price": 41 + "price": 32 }, "592": { "id": 592, @@ -6375,7 +6375,7 @@ "examine": "A heap of ashes.", "wiki_name": "Ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Ashes", - "price": 90.5 + "price": 106 }, "594": { "id": 594, @@ -6420,7 +6420,7 @@ "examine": "An unlit home-made torch.", "wiki_name": "Torch (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Torch#Unlit", - "price": 12 + "price": 3 }, "598": { "id": 598, @@ -6857,7 +6857,7 @@ "slot": "feet", "requirements": null }, - "price": 200 + "price": 945 }, "628": { "id": 628, @@ -6895,7 +6895,7 @@ "slot": "feet", "requirements": null }, - "price": 550.5 + "price": 606 }, "630": { "id": 630, @@ -6933,7 +6933,7 @@ "slot": "feet", "requirements": null }, - "price": 160 + "price": 943 }, "632": { "id": 632, @@ -7009,7 +7009,7 @@ "slot": "feet", "requirements": null }, - "price": 87.5 + "price": 171 }, "636": { "id": 636, @@ -7047,7 +7047,7 @@ "slot": "body", "requirements": null }, - "price": 725 + "price": 452 }, "638": { "id": 638, @@ -7123,7 +7123,7 @@ "slot": "body", "requirements": null }, - "price": 908 + "price": 298 }, "642": { "id": 642, @@ -7161,7 +7161,7 @@ "slot": "body", "requirements": null }, - "price": 465.5 + "price": 806 }, "644": { "id": 644, @@ -7237,7 +7237,7 @@ "slot": "legs", "requirements": null }, - "price": 118.5 + "price": 163 }, "648": { "id": 648, @@ -7275,7 +7275,7 @@ "slot": "legs", "requirements": null }, - "price": 427 + "price": 32 }, "650": { "id": 650, @@ -7313,7 +7313,7 @@ "slot": "legs", "requirements": null }, - "price": 2750 + "price": 100 }, "652": { "id": 652, @@ -7351,7 +7351,7 @@ "slot": "legs", "requirements": null }, - "price": 429.5 + "price": 361 }, "654": { "id": 654, @@ -7389,7 +7389,7 @@ "slot": "legs", "requirements": null }, - "price": 570 + "price": 754 }, "656": { "id": 656, @@ -7427,7 +7427,7 @@ "slot": "head", "requirements": null }, - "price": 1264 + "price": 425 }, "658": { "id": 658, @@ -7465,7 +7465,7 @@ "slot": "head", "requirements": null }, - "price": 320 + "price": 1169 }, "660": { "id": 660, @@ -7503,7 +7503,7 @@ "slot": "head", "requirements": null }, - "price": 1034 + "price": 512 }, "662": { "id": 662, @@ -7541,7 +7541,7 @@ "slot": "head", "requirements": null }, - "price": 710.5 + "price": 1143 }, "664": { "id": 664, @@ -7579,7 +7579,7 @@ "slot": "head", "requirements": null }, - "price": 4887.5 + "price": 826 }, "666": { "id": 666, @@ -8978,7 +8978,7 @@ "examine": "A ball used in Gnomeball.", "wiki_name": "Gnomeball", "wiki_url": "https://oldschool.runescape.wiki/w/Gnomeball", - "price": 14049 + "price": 15623 }, "753": { "id": 753, @@ -8995,7 +8995,7 @@ "examine": "Poisonous berries.", "wiki_name": "Cadava berries", "wiki_url": "https://oldschool.runescape.wiki/w/Cadava_berries", - "price": 299.5 + "price": 169 }, "755": { "id": 755, @@ -9866,7 +9866,7 @@ } ] }, - "price": 31.5 + "price": 11 }, "802": { "id": 802, @@ -10000,7 +10000,7 @@ } ] }, - "price": 154 + "price": 61 }, "804": { "id": 804, @@ -10067,7 +10067,7 @@ } ] }, - "price": 140 + "price": 326 }, "805": { "id": 805, @@ -10134,7 +10134,7 @@ } ] }, - "price": 163.5 + "price": 132 }, "806": { "id": 806, @@ -10201,7 +10201,7 @@ } ] }, - "price": 20.5 + "price": 15 }, "807": { "id": 807, @@ -10268,7 +10268,7 @@ } ] }, - "price": 31.5 + "price": 77 }, "808": { "id": 808, @@ -10402,7 +10402,7 @@ } ] }, - "price": 6 + "price": 8 }, "810": { "id": 810, @@ -10469,7 +10469,7 @@ } ] }, - "price": 22.5 + "price": 27 }, "811": { "id": 811, @@ -10536,7 +10536,7 @@ } ] }, - "price": 213.5 + "price": 106 }, "812": { "id": 812, @@ -10603,7 +10603,7 @@ } ] }, - "price": 4969 + "price": 2400 }, "813": { "id": 813, @@ -10670,7 +10670,7 @@ } ] }, - "price": 51 + "price": 300 }, "814": { "id": 814, @@ -10737,7 +10737,7 @@ } ] }, - "price": 19 + "price": 226 }, "815": { "id": 815, @@ -10804,7 +10804,7 @@ } ] }, - "price": 124 + "price": 140 }, "816": { "id": 816, @@ -10871,7 +10871,7 @@ } ] }, - "price": 22 + "price": 26 }, "817": { "id": 817, @@ -10938,7 +10938,7 @@ } ] }, - "price": 230 + "price": 128 }, "818": { "id": 818, @@ -10969,7 +10969,7 @@ "examine": "A deadly looking dart tip made of bronze - needs feathers for flight.", "wiki_name": "Bronze dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_dart_tip", - "price": 46.5 + "price": 37 }, "820": { "id": 820, @@ -10986,7 +10986,7 @@ "examine": "A deadly looking dart tip made of iron - needs feathers for flight.", "wiki_name": "Iron dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_dart_tip", - "price": 55.5 + "price": 64 }, "821": { "id": 821, @@ -11003,7 +11003,7 @@ "examine": "A deadly-looking dart tip made of steel - needs feathers for flight.", "wiki_name": "Steel dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_dart_tip", - "price": 41 + "price": 25 }, "822": { "id": 822, @@ -11020,7 +11020,7 @@ "examine": "A deadly looking dart tip made of mithril - needs feathers for flight.", "wiki_name": "Mithril dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_dart_tip", - "price": 79 + "price": 71 }, "823": { "id": 823, @@ -11037,7 +11037,7 @@ "examine": "A deadly-looking dart tip made of adamant - needs feathers for flight.", "wiki_name": "Adamant dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_dart_tip", - "price": 189.5 + "price": 189 }, "824": { "id": 824, @@ -11054,7 +11054,7 @@ "examine": "A deadly-looking dart tip made of runite - needs feathers for flight.", "wiki_name": "Rune dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_dart_tip", - "price": 594.5 + "price": 391 }, "825": { "id": 825, @@ -11093,7 +11093,7 @@ "ranged": 1 } }, - "price": 9.5 + "price": 66 }, "826": { "id": 826, @@ -11132,7 +11132,7 @@ "ranged": 1 } }, - "price": 3 + "price": 2 }, "827": { "id": 827, @@ -11171,7 +11171,7 @@ "ranged": 5 } }, - "price": 7 + "price": 2 }, "828": { "id": 828, @@ -11210,7 +11210,7 @@ "ranged": 20 } }, - "price": 16.5 + "price": 16 }, "829": { "id": 829, @@ -11249,7 +11249,7 @@ "ranged": 30 } }, - "price": 58 + "price": 66 }, "830": { "id": 830, @@ -11288,7 +11288,7 @@ "ranged": 40 } }, - "price": 176 + "price": 135 }, "831": { "id": 831, @@ -11327,7 +11327,7 @@ "ranged": 1 } }, - "price": 25010 + "price": 300 }, "832": { "id": 832, @@ -11444,7 +11444,7 @@ "ranged": 20 } }, - "price": 973.5 + "price": 698 }, "835": { "id": 835, @@ -11483,7 +11483,7 @@ "ranged": 30 } }, - "price": 198.5 + "price": 198 }, "836": { "id": 836, @@ -11589,7 +11589,7 @@ } ] }, - "price": 247.5 + "price": 775 }, "839": { "id": 839, @@ -11656,7 +11656,7 @@ } ] }, - "price": 14.5 + "price": 21 }, "841": { "id": 841, @@ -11723,7 +11723,7 @@ } ] }, - "price": 40.5 + "price": 60 }, "843": { "id": 843, @@ -11790,7 +11790,7 @@ } ] }, - "price": 30.5 + "price": 53 }, "845": { "id": 845, @@ -11857,7 +11857,7 @@ } ] }, - "price": 22 + "price": 80 }, "847": { "id": 847, @@ -11991,7 +11991,7 @@ } ] }, - "price": 78.5 + "price": 78 }, "851": { "id": 851, @@ -12058,7 +12058,7 @@ } ] }, - "price": 245.5 + "price": 276 }, "853": { "id": 853, @@ -12125,7 +12125,7 @@ } ] }, - "price": 180.5 + "price": 153 }, "855": { "id": 855, @@ -12261,7 +12261,7 @@ } ] }, - "price": 364.5 + "price": 364 }, "859": { "id": 859, @@ -12531,7 +12531,7 @@ } ] }, - "price": 48.5 + "price": 54 }, "865": { "id": 865, @@ -12598,7 +12598,7 @@ } ] }, - "price": 49 + "price": 44 }, "866": { "id": 866, @@ -12732,7 +12732,7 @@ } ] }, - "price": 286.5 + "price": 286 }, "868": { "id": 868, @@ -12799,7 +12799,7 @@ } ] }, - "price": 142.5 + "price": 142 }, "869": { "id": 869, @@ -12933,7 +12933,7 @@ } ] }, - "price": 2250 + "price": 2 }, "871": { "id": 871, @@ -13000,7 +13000,7 @@ } ] }, - "price": 242.5 + "price": 242 }, "872": { "id": 872, @@ -13067,7 +13067,7 @@ } ] }, - "price": 21571 + "price": 144 }, "873": { "id": 873, @@ -13134,7 +13134,7 @@ } ] }, - "price": 344.5 + "price": 99 }, "874": { "id": 874, @@ -13268,7 +13268,7 @@ } ] }, - "price": 422.5 + "price": 422 }, "876": { "id": 876, @@ -13335,7 +13335,7 @@ } ] }, - "price": 241.5 + "price": 283 }, "877": { "id": 877, @@ -13373,7 +13373,7 @@ "ranged": 1 } }, - "price": 2.5 + "price": 4 }, "878": { "id": 878, @@ -13412,7 +13412,7 @@ "ranged": 1 } }, - "price": 74.5 + "price": 74 }, "879": { "id": 879, @@ -13490,7 +13490,7 @@ "ranged": 1 } }, - "price": 1.5 + "price": 1 }, "881": { "id": 881, @@ -13529,7 +13529,7 @@ "ranged": 1 } }, - "price": 63 + "price": 79 }, "882": { "id": 882, @@ -13567,7 +13567,7 @@ "ranged": 1 } }, - "price": 3 + "price": 4 }, "883": { "id": 883, @@ -13606,7 +13606,7 @@ "ranged": 1 } }, - "price": 63.5 + "price": 142 }, "884": { "id": 884, @@ -13644,7 +13644,7 @@ "ranged": 1 } }, - "price": 5 + "price": 8 }, "885": { "id": 885, @@ -13683,7 +13683,7 @@ "ranged": 1 } }, - "price": 34.5 + "price": 75 }, "886": { "id": 886, @@ -13721,7 +13721,7 @@ "ranged": 5 } }, - "price": 19.5 + "price": 27 }, "887": { "id": 887, @@ -13798,7 +13798,7 @@ "ranged": 20 } }, - "price": 3.5 + "price": 4 }, "889": { "id": 889, @@ -13837,7 +13837,7 @@ "ranged": 20 } }, - "price": 124.5 + "price": 164 }, "890": { "id": 890, @@ -13914,7 +13914,7 @@ "ranged": 30 } }, - "price": 127.5 + "price": 144 }, "892": { "id": 892, @@ -13953,7 +13953,7 @@ "ranged": 40 } }, - "price": 81.5 + "price": 81 }, "893": { "id": 893, @@ -13992,7 +13992,7 @@ "ranged": 40 } }, - "price": 199 + "price": 232 }, "942": { "id": 942, @@ -14074,7 +14074,7 @@ "examine": "A dangerous looking knife.", "wiki_name": "Knife", "wiki_url": "https://oldschool.runescape.wiki/w/Knife", - "price": 48.5 + "price": 48 }, "948": { "id": 948, @@ -14091,7 +14091,7 @@ "examine": "This would make warm clothing.", "wiki_name": "Bear fur", "wiki_url": "https://oldschool.runescape.wiki/w/Bear_fur", - "price": 275 + "price": 307 }, "950": { "id": 950, @@ -14108,7 +14108,7 @@ "examine": "It's a sheet of silk.", "wiki_name": "Silk", "wiki_url": "https://oldschool.runescape.wiki/w/Silk", - "price": 112 + "price": 56 }, "952": { "id": 952, @@ -14125,7 +14125,7 @@ "examine": "A slightly muddy spade.", "wiki_name": "Spade", "wiki_url": "https://oldschool.runescape.wiki/w/Spade", - "price": 171.5 + "price": 171 }, "954": { "id": 954, @@ -14142,7 +14142,7 @@ "examine": "A coil of rope.", "wiki_name": "Rope", "wiki_url": "https://oldschool.runescape.wiki/w/Rope", - "price": 81.5 + "price": 69 }, "956": { "id": 956, @@ -14175,7 +14175,7 @@ "examine": "This would make warm clothing.", "wiki_name": "Grey wolf fur", "wiki_url": "https://oldschool.runescape.wiki/w/Grey_wolf_fur", - "price": 260.5 + "price": 191 }, "960": { "id": 960, @@ -14192,7 +14192,7 @@ "examine": "A plank of wood!", "wiki_name": "Plank", "wiki_url": "https://oldschool.runescape.wiki/w/Plank", - "price": 374 + "price": 326 }, "962": { "id": 962, @@ -14209,7 +14209,7 @@ "examine": "I need to pull this.", "wiki_name": "Christmas cracker", "wiki_url": "https://oldschool.runescape.wiki/w/Christmas_cracker", - "price": 2476607 + "price": 724397 }, "964": { "id": 964, @@ -14284,7 +14284,7 @@ "examine": "Used for making notes.", "wiki_name": "Papyrus", "wiki_url": "https://oldschool.runescape.wiki/w/Papyrus", - "price": 289 + "price": 471 }, "972": { "id": 972, @@ -14315,7 +14315,7 @@ "examine": "A lump of charcoal.", "wiki_name": "Charcoal", "wiki_url": "https://oldschool.runescape.wiki/w/Charcoal", - "price": 584.5 + "price": 227 }, "975": { "id": 975, @@ -14388,7 +14388,7 @@ } ] }, - "price": 352 + "price": 447 }, "977": { "id": 977, @@ -14419,7 +14419,7 @@ "examine": "Used to get out of Thordur's blackhole.", "wiki_name": "Disk of returning", "wiki_url": "https://oldschool.runescape.wiki/w/Disk_of_returning", - "price": 14587.5 + "price": 18315 }, "983": { "id": 983, @@ -14436,7 +14436,7 @@ "examine": "Opens a door that leads into a dungeon.", "wiki_name": "Brass key", "wiki_url": "https://oldschool.runescape.wiki/w/Brass_key", - "price": 402.5 + "price": 475 }, "985": { "id": 985, @@ -14472,7 +14472,7 @@ "examine": "The loop end of the mysterious Crystal Key. Can you find the other half?", "wiki_name": "Loop half of key", "wiki_url": "https://oldschool.runescape.wiki/w/Loop_half_of_key", - "price": 9942.5 + "price": 9942 }, "989": { "id": 989, @@ -14490,7 +14490,7 @@ "examine": "A mysterious key for a mysterious chest.", "wiki_name": "Crystal key", "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_key", - "price": 19857.5 + "price": 19857 }, "991": { "id": 991, @@ -14507,7 +14507,7 @@ "examine": "It looks like the key to a chest.", "wiki_name": "Muddy key", "wiki_url": "https://oldschool.runescape.wiki/w/Muddy_key", - "price": 6453 + "price": 8715 }, "993": { "id": 993, @@ -14525,7 +14525,7 @@ "examine": "You get a sense of dread from this key.", "wiki_name": "Sinister key", "wiki_url": "https://oldschool.runescape.wiki/w/Sinister_key", - "price": 29112 + "price": 32389 }, "995": { "id": 995, @@ -14574,7 +14574,7 @@ "slot": "body", "requirements": null }, - "price": 181 + "price": 68 }, "1007": { "id": 1007, @@ -14611,7 +14611,7 @@ "slot": "cape", "requirements": null }, - "price": 100.5 + "price": 65 }, "1009": { "id": 1009, @@ -14648,7 +14648,7 @@ "slot": "neck", "requirements": null }, - "price": 256 + "price": 222 }, "1011": { "id": 1011, @@ -14685,7 +14685,7 @@ "slot": "legs", "requirements": null }, - "price": 81.5 + "price": 81 }, "1013": { "id": 1013, @@ -14722,7 +14722,7 @@ "slot": "legs", "requirements": null }, - "price": 70 + "price": 63 }, "1015": { "id": 1015, @@ -14759,7 +14759,7 @@ "slot": "legs", "requirements": null }, - "price": 10 + "price": 75 }, "1017": { "id": 1017, @@ -14796,7 +14796,7 @@ "slot": "head", "requirements": null }, - "price": 572.5 + "price": 760 }, "1019": { "id": 1019, @@ -14833,7 +14833,7 @@ "slot": "cape", "requirements": null }, - "price": 404 + "price": 621 }, "1021": { "id": 1021, @@ -14945,7 +14945,7 @@ "slot": "head", "requirements": null }, - "price": 212.5 + "price": 188 }, "1027": { "id": 1027, @@ -15019,7 +15019,7 @@ "slot": "cape", "requirements": null }, - "price": 959 + "price": 1648 }, "1031": { "id": 1031, @@ -15056,7 +15056,7 @@ "slot": "cape", "requirements": null }, - "price": 810.5 + "price": 1293 }, "1033": { "id": 1033, @@ -15093,7 +15093,7 @@ "slot": "legs", "requirements": null }, - "price": 4823.5 + "price": 14500 }, "1035": { "id": 1035, @@ -15130,7 +15130,7 @@ "slot": "body", "requirements": null }, - "price": 965 + "price": 1934 }, "1037": { "id": 1037, @@ -15200,7 +15200,7 @@ "slot": "head", "requirements": null }, - "price": 6555 + "price": 7719 }, "1040": { "id": 1040, @@ -15237,7 +15237,7 @@ "slot": "head", "requirements": null }, - "price": 5632.5 + "price": 6766 }, "1042": { "id": 1042, @@ -15274,7 +15274,7 @@ "slot": "head", "requirements": null }, - "price": 19151 + "price": 29750 }, "1044": { "id": 1044, @@ -15311,7 +15311,7 @@ "slot": "head", "requirements": null }, - "price": 12187.5 + "price": 10125 }, "1046": { "id": 1046, @@ -15348,7 +15348,7 @@ "slot": "head", "requirements": null }, - "price": 6801 + "price": 10148 }, "1048": { "id": 1048, @@ -15385,7 +15385,7 @@ "slot": "head", "requirements": null }, - "price": 8898.5 + "price": 7258 }, "1050": { "id": 1050, @@ -15422,7 +15422,7 @@ "slot": "head", "requirements": null }, - "price": 12322.5 + "price": 14512 }, "1052": { "id": 1052, @@ -15493,7 +15493,7 @@ "slot": "head", "requirements": null }, - "price": 9608 + "price": 17774 }, "1055": { "id": 1055, @@ -15530,7 +15530,7 @@ "slot": "head", "requirements": null }, - "price": 8457.5 + "price": 10359 }, "1057": { "id": 1057, @@ -15567,7 +15567,7 @@ "slot": "head", "requirements": null }, - "price": 11179 + "price": 16987 }, "1059": { "id": 1059, @@ -15606,7 +15606,7 @@ "defence": 1 } }, - "price": 34.5 + "price": 34 }, "1061": { "id": 1061, @@ -15645,7 +15645,7 @@ "defence": 1 } }, - "price": 74 + "price": 50 }, "1063": { "id": 1063, @@ -15684,7 +15684,7 @@ "defence": 1 } }, - "price": 11 + "price": 130 }, "1065": { "id": 1065, @@ -15723,7 +15723,7 @@ "ranged": 40 } }, - "price": 1395.5 + "price": 1539 }, "1067": { "id": 1067, @@ -15801,7 +15801,7 @@ "defence": 5 } }, - "price": 201.5 + "price": 635 }, "1071": { "id": 1071, @@ -15840,7 +15840,7 @@ "defence": 20 } }, - "price": 1725 + "price": 859 }, "1073": { "id": 1073, @@ -15879,7 +15879,7 @@ "defence": 30 } }, - "price": 3645.5 + "price": 3269 }, "1075": { "id": 1075, @@ -15918,7 +15918,7 @@ "defence": 1 } }, - "price": 571 + "price": 101 }, "1077": { "id": 1077, @@ -15957,7 +15957,7 @@ "defence": 10 } }, - "price": 850 + "price": 1239 }, "1079": { "id": 1079, @@ -15996,7 +15996,7 @@ "defence": 40 } }, - "price": 37907.5 + "price": 37907 }, "1081": { "id": 1081, @@ -16035,7 +16035,7 @@ "defence": 1 } }, - "price": 80.5 + "price": 44 }, "1083": { "id": 1083, @@ -16074,7 +16074,7 @@ "defence": 5 } }, - "price": 395 + "price": 475 }, "1085": { "id": 1085, @@ -16113,7 +16113,7 @@ "defence": 20 } }, - "price": 1380 + "price": 1198 }, "1087": { "id": 1087, @@ -16152,7 +16152,7 @@ "defence": 1 } }, - "price": 29 + "price": 5 }, "1089": { "id": 1089, @@ -16230,7 +16230,7 @@ "defence": 30 } }, - "price": 4471.5 + "price": 3600 }, "1093": { "id": 1093, @@ -16309,7 +16309,7 @@ "defence": 1 } }, - "price": 17 + "price": 2 }, "1097": { "id": 1097, @@ -16349,7 +16349,7 @@ "defence": 1 } }, - "price": 240.5 + "price": 240 }, "1099": { "id": 1099, @@ -16388,7 +16388,7 @@ "ranged": 40 } }, - "price": 2124.5 + "price": 2124 }, "1101": { "id": 1101, @@ -16427,7 +16427,7 @@ "defence": 1 } }, - "price": 569.5 + "price": 100 }, "1103": { "id": 1103, @@ -16466,7 +16466,7 @@ "defence": 1 } }, - "price": 75 + "price": 65 }, "1105": { "id": 1105, @@ -16505,7 +16505,7 @@ "defence": 5 } }, - "price": 210 + "price": 296 }, "1107": { "id": 1107, @@ -16544,7 +16544,7 @@ "defence": 10 } }, - "price": 1227.5 + "price": 19999 }, "1109": { "id": 1109, @@ -16622,7 +16622,7 @@ "defence": 30 } }, - "price": 2935.5 + "price": 2375 }, "1113": { "id": 1113, @@ -16739,7 +16739,7 @@ "defence": 1 } }, - "price": 116 + "price": 91 }, "1119": { "id": 1119, @@ -16778,7 +16778,7 @@ "defence": 5 } }, - "price": 763.5 + "price": 844 }, "1121": { "id": 1121, @@ -16817,7 +16817,7 @@ "defence": 20 } }, - "price": 2516.5 + "price": 2516 }, "1123": { "id": 1123, @@ -16895,7 +16895,7 @@ "defence": 10 } }, - "price": 2501.5 + "price": 2204 }, "1127": { "id": 1127, @@ -16974,7 +16974,7 @@ "defence": 1 } }, - "price": 18 + "price": 40 }, "1131": { "id": 1131, @@ -17014,7 +17014,7 @@ "defence": 10 } }, - "price": 12.5 + "price": 30 }, "1133": { "id": 1133, @@ -17054,7 +17054,7 @@ "defence": 20 } }, - "price": 282.5 + "price": 1315 }, "1135": { "id": 1135, @@ -17133,7 +17133,7 @@ "defence": 1 } }, - "price": 88.5 + "price": 21 }, "1139": { "id": 1139, @@ -17172,7 +17172,7 @@ "defence": 1 } }, - "price": 121 + "price": 290 }, "1141": { "id": 1141, @@ -17211,7 +17211,7 @@ "defence": 5 } }, - "price": 64 + "price": 49 }, "1143": { "id": 1143, @@ -17250,7 +17250,7 @@ "defence": 20 } }, - "price": 218.5 + "price": 218 }, "1145": { "id": 1145, @@ -17328,7 +17328,7 @@ "defence": 40 } }, - "price": 11118.5 + "price": 11118 }, "1149": { "id": 1149, @@ -17368,7 +17368,7 @@ "defence": 60 } }, - "price": 59999.5 + "price": 59999 }, "1151": { "id": 1151, @@ -17407,7 +17407,7 @@ "defence": 10 } }, - "price": 348.5 + "price": 252 }, "1153": { "id": 1153, @@ -17446,7 +17446,7 @@ "defence": 1 } }, - "price": 96 + "price": 61 }, "1155": { "id": 1155, @@ -17485,7 +17485,7 @@ "defence": 1 } }, - "price": 53.5 + "price": 53 }, "1157": { "id": 1157, @@ -17524,7 +17524,7 @@ "defence": 5 } }, - "price": 172.5 + "price": 172 }, "1159": { "id": 1159, @@ -17563,7 +17563,7 @@ "defence": 20 } }, - "price": 651 + "price": 755 }, "1161": { "id": 1161, @@ -17602,7 +17602,7 @@ "defence": 30 } }, - "price": 1838.5 + "price": 1838 }, "1163": { "id": 1163, @@ -17680,7 +17680,7 @@ "defence": 10 } }, - "price": 418 + "price": 526 }, "1167": { "id": 1167, @@ -17720,7 +17720,7 @@ "defence": 1 } }, - "price": 57.5 + "price": 36 }, "1169": { "id": 1169, @@ -17760,7 +17760,7 @@ "defence": 1 } }, - "price": 125.5 + "price": 41 }, "1171": { "id": 1171, @@ -17797,7 +17797,7 @@ "slot": "shield", "requirements": null }, - "price": 247 + "price": 128 }, "1173": { "id": 1173, @@ -17836,7 +17836,7 @@ "defence": 1 } }, - "price": 69.5 + "price": 238 }, "1175": { "id": 1175, @@ -17875,7 +17875,7 @@ "defence": 1 } }, - "price": 408.5 + "price": 250 }, "1177": { "id": 1177, @@ -17914,7 +17914,7 @@ "defence": 5 } }, - "price": 321 + "price": 174 }, "1179": { "id": 1179, @@ -18031,7 +18031,7 @@ "defence": 30 } }, - "price": 1810.5 + "price": 1810 }, "1185": { "id": 1185, @@ -18110,7 +18110,7 @@ "defence": 60 } }, - "price": 303655.5 + "price": 303655 }, "1189": { "id": 1189, @@ -18149,7 +18149,7 @@ "defence": 1 } }, - "price": 61.5 + "price": 20 }, "1191": { "id": 1191, @@ -18188,7 +18188,7 @@ "defence": 1 } }, - "price": 62 + "price": 11 }, "1193": { "id": 1193, @@ -18227,7 +18227,7 @@ "defence": 5 } }, - "price": 204 + "price": 262 }, "1195": { "id": 1195, @@ -18266,7 +18266,7 @@ "defence": 10 } }, - "price": 1708.5 + "price": 1708 }, "1197": { "id": 1197, @@ -18305,7 +18305,7 @@ "defence": 20 } }, - "price": 1078.5 + "price": 1078 }, "1199": { "id": 1199, @@ -18344,7 +18344,7 @@ "defence": 30 } }, - "price": 2900.5 + "price": 2900 }, "1201": { "id": 1201, @@ -18457,7 +18457,7 @@ } ] }, - "price": 101.5 + "price": 101 }, "1205": { "id": 1205, @@ -18531,7 +18531,7 @@ } ] }, - "price": 108 + "price": 63 }, "1207": { "id": 1207, @@ -18605,7 +18605,7 @@ } ] }, - "price": 125.5 + "price": 151 }, "1209": { "id": 1209, @@ -18679,7 +18679,7 @@ } ] }, - "price": 97.5 + "price": 136 }, "1211": { "id": 1211, @@ -18753,7 +18753,7 @@ } ] }, - "price": 176.5 + "price": 254 }, "1213": { "id": 1213, @@ -18827,7 +18827,7 @@ } ] }, - "price": 4434.5 + "price": 4434 }, "1215": { "id": 1215, @@ -18976,7 +18976,7 @@ } ] }, - "price": 104 + "price": 440 }, "1219": { "id": 1219, @@ -19051,7 +19051,7 @@ } ] }, - "price": 30 + "price": 110 }, "1221": { "id": 1221, @@ -19351,7 +19351,7 @@ } ] }, - "price": 1025 + "price": 26 }, "1229": { "id": 1229, @@ -19426,7 +19426,7 @@ } ] }, - "price": 5068 + "price": 6263 }, "1231": { "id": 1231, @@ -19501,7 +19501,7 @@ } ] }, - "price": 17016.5 + "price": 17016 }, "1233": { "id": 1233, @@ -19576,7 +19576,7 @@ } ] }, - "price": 25.5 + "price": 1 }, "1235": { "id": 1235, @@ -19741,7 +19741,7 @@ } ] }, - "price": 285 + "price": 834 }, "1241": { "id": 1241, @@ -19816,7 +19816,7 @@ } ] }, - "price": 66.5 + "price": 66 }, "1243": { "id": 1243, @@ -19891,7 +19891,7 @@ } ] }, - "price": 2504.5 + "price": 625 }, "1245": { "id": 1245, @@ -19966,7 +19966,7 @@ } ] }, - "price": 1086.5 + "price": 944 }, "1247": { "id": 1247, @@ -20266,7 +20266,7 @@ } ] }, - "price": 1326.5 + "price": 1732 }, "1255": { "id": 1255, @@ -20341,7 +20341,7 @@ } ] }, - "price": 18.5 + "price": 36 }, "1257": { "id": 1257, @@ -20416,7 +20416,7 @@ } ] }, - "price": 242.5 + "price": 1 }, "1259": { "id": 1259, @@ -20491,7 +20491,7 @@ } ] }, - "price": 724.5 + "price": 724 }, "1261": { "id": 1261, @@ -20566,7 +20566,7 @@ } ] }, - "price": 14179.5 + "price": 12057 }, "1263": { "id": 1263, @@ -20641,7 +20641,7 @@ } ] }, - "price": 47966 + "price": 37816 }, "1265": { "id": 1265, @@ -20716,7 +20716,7 @@ } ] }, - "price": 50 + "price": 96 }, "1267": { "id": 1267, @@ -20791,7 +20791,7 @@ } ] }, - "price": 97.5 + "price": 255 }, "1269": { "id": 1269, @@ -20866,7 +20866,7 @@ } ] }, - "price": 511 + "price": 262 }, "1271": { "id": 1271, @@ -20941,7 +20941,7 @@ } ] }, - "price": 1612.5 + "price": 1612 }, "1273": { "id": 1273, @@ -21016,7 +21016,7 @@ } ] }, - "price": 417 + "price": 544 }, "1275": { "id": 1275, @@ -21091,7 +21091,7 @@ } ] }, - "price": 18897.5 + "price": 18897 }, "1277": { "id": 1277, @@ -21165,7 +21165,7 @@ } ] }, - "price": 28.5 + "price": 51 }, "1279": { "id": 1279, @@ -21239,7 +21239,7 @@ } ] }, - "price": 101 + "price": 38 }, "1281": { "id": 1281, @@ -21313,7 +21313,7 @@ } ] }, - "price": 186 + "price": 250 }, "1283": { "id": 1283, @@ -21387,7 +21387,7 @@ } ] }, - "price": 162.5 + "price": 218 }, "1285": { "id": 1285, @@ -21461,7 +21461,7 @@ } ] }, - "price": 239 + "price": 276 }, "1287": { "id": 1287, @@ -21535,7 +21535,7 @@ } ] }, - "price": 1028.5 + "price": 1191 }, "1289": { "id": 1289, @@ -21609,7 +21609,7 @@ } ] }, - "price": 11914.5 + "price": 11914 }, "1291": { "id": 1291, @@ -21683,7 +21683,7 @@ } ] }, - "price": 86.5 + "price": 86 }, "1293": { "id": 1293, @@ -21757,7 +21757,7 @@ } ] }, - "price": 1 + "price": 17 }, "1295": { "id": 1295, @@ -21831,7 +21831,7 @@ } ] }, - "price": 170 + "price": 101 }, "1297": { "id": 1297, @@ -21979,7 +21979,7 @@ } ] }, - "price": 428.5 + "price": 698 }, "1301": { "id": 1301, @@ -22053,7 +22053,7 @@ } ] }, - "price": 1935 + "price": 1725 }, "1303": { "id": 1303, @@ -22202,7 +22202,7 @@ } ] }, - "price": 59209.5 + "price": 59209 }, "1307": { "id": 1307, @@ -22276,7 +22276,7 @@ } ] }, - "price": 148.5 + "price": 220 }, "1309": { "id": 1309, @@ -22350,7 +22350,7 @@ } ] }, - "price": 85 + "price": 44 }, "1311": { "id": 1311, @@ -22424,7 +22424,7 @@ } ] }, - "price": 350.5 + "price": 225 }, "1313": { "id": 1313, @@ -22572,7 +22572,7 @@ } ] }, - "price": 1311 + "price": 1024 }, "1317": { "id": 1317, @@ -22646,7 +22646,7 @@ } ] }, - "price": 3569.5 + "price": 3569 }, "1319": { "id": 1319, @@ -22794,7 +22794,7 @@ } ] }, - "price": 70.5 + "price": 57 }, "1323": { "id": 1323, @@ -22868,7 +22868,7 @@ } ] }, - "price": 477.5 + "price": 46 }, "1325": { "id": 1325, @@ -22942,7 +22942,7 @@ } ] }, - "price": 176 + "price": 140 }, "1327": { "id": 1327, @@ -23016,7 +23016,7 @@ } ] }, - "price": 2845 + "price": 1512 }, "1329": { "id": 1329, @@ -23164,7 +23164,7 @@ } ] }, - "price": 1357 + "price": 1551 }, "1333": { "id": 1333, @@ -23305,7 +23305,7 @@ } ] }, - "price": 64.5 + "price": 64 }, "1337": { "id": 1337, @@ -23372,7 +23372,7 @@ } ] }, - "price": 57.5 + "price": 72 }, "1339": { "id": 1339, @@ -23439,7 +23439,7 @@ } ] }, - "price": 250 + "price": 81 }, "1341": { "id": 1341, @@ -23506,7 +23506,7 @@ } ] }, - "price": 190 + "price": 381 }, "1343": { "id": 1343, @@ -23573,7 +23573,7 @@ } ] }, - "price": 1250 + "price": 817 }, "1345": { "id": 1345, @@ -23707,7 +23707,7 @@ } ] }, - "price": 24414.5 + "price": 24414 }, "1349": { "id": 1349, @@ -23781,7 +23781,7 @@ } ] }, - "price": 275 + "price": 600 }, "1351": { "id": 1351, @@ -23855,7 +23855,7 @@ } ] }, - "price": 31 + "price": 99 }, "1353": { "id": 1353, @@ -23929,7 +23929,7 @@ } ] }, - "price": 85.5 + "price": 149 }, "1355": { "id": 1355, @@ -24003,7 +24003,7 @@ } ] }, - "price": 98 + "price": 397 }, "1357": { "id": 1357, @@ -24077,7 +24077,7 @@ } ] }, - "price": 555 + "price": 420 }, "1359": { "id": 1359, @@ -24151,7 +24151,7 @@ } ] }, - "price": 7179.5 + "price": 7179 }, "1361": { "id": 1361, @@ -24225,7 +24225,7 @@ } ] }, - "price": 426.5 + "price": 627 }, "1363": { "id": 1363, @@ -24299,7 +24299,7 @@ } ] }, - "price": 83.5 + "price": 44 }, "1365": { "id": 1365, @@ -24373,7 +24373,7 @@ } ] }, - "price": 160 + "price": 133 }, "1367": { "id": 1367, @@ -24447,7 +24447,7 @@ } ] }, - "price": 431 + "price": 757 }, "1369": { "id": 1369, @@ -24521,7 +24521,7 @@ } ] }, - "price": 1058.5 + "price": 835 }, "1371": { "id": 1371, @@ -24595,7 +24595,7 @@ } ] }, - "price": 2421 + "price": 1908 }, "1373": { "id": 1373, @@ -24669,7 +24669,7 @@ } ] }, - "price": 24444.5 + "price": 24444 }, "1375": { "id": 1375, @@ -24743,7 +24743,7 @@ } ] }, - "price": 36.5 + "price": 54 }, "1377": { "id": 1377, @@ -24818,7 +24818,7 @@ } ] }, - "price": 119738.5 + "price": 119738 }, "1379": { "id": 1379, @@ -24897,7 +24897,7 @@ } ] }, - "price": 33.5 + "price": 55 }, "1381": { "id": 1381, @@ -25140,7 +25140,7 @@ } ] }, - "price": 1039.5 + "price": 1158 }, "1387": { "id": 1387, @@ -25221,7 +25221,7 @@ } ] }, - "price": 1552.5 + "price": 1818 }, "1389": { "id": 1389, @@ -25300,7 +25300,7 @@ } ] }, - "price": 2595 + "price": 1472 }, "1391": { "id": 1391, @@ -25380,7 +25380,7 @@ } ] }, - "price": 7841.5 + "price": 7841 }, "1393": { "id": 1393, @@ -25462,7 +25462,7 @@ } ] }, - "price": 8884.5 + "price": 8884 }, "1395": { "id": 1395, @@ -25544,7 +25544,7 @@ } ] }, - "price": 9114.5 + "price": 9114 }, "1397": { "id": 1397, @@ -25791,7 +25791,7 @@ } ] }, - "price": 25085.5 + "price": 25085 }, "1403": { "id": 1403, @@ -26331,7 +26331,7 @@ } ] }, - "price": 11.5 + "price": 11 }, "1422": { "id": 1422, @@ -26479,7 +26479,7 @@ } ] }, - "price": 22 + "price": 40 }, "1426": { "id": 1426, @@ -26553,7 +26553,7 @@ } ] }, - "price": 663.5 + "price": 805 }, "1428": { "id": 1428, @@ -26627,7 +26627,7 @@ } ] }, - "price": 173.5 + "price": 117 }, "1430": { "id": 1430, @@ -26701,7 +26701,7 @@ } ] }, - "price": 614.5 + "price": 614 }, "1432": { "id": 1432, @@ -26775,7 +26775,7 @@ } ] }, - "price": 8155.5 + "price": 8155 }, "1434": { "id": 1434, @@ -26850,7 +26850,7 @@ } ] }, - "price": 29620.5 + "price": 29620 }, "1436": { "id": 1436, @@ -26884,7 +26884,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Air talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Air_talisman", - "price": 68 + "price": 54 }, "1440": { "id": 1440, @@ -26901,7 +26901,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Earth talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Earth_talisman", - "price": 247.5 + "price": 247 }, "1442": { "id": 1442, @@ -26918,7 +26918,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Fire talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Fire_talisman", - "price": 1685.5 + "price": 1685 }, "1444": { "id": 1444, @@ -26935,7 +26935,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Water talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Water_talisman", - "price": 140.5 + "price": 140 }, "1446": { "id": 1446, @@ -26952,7 +26952,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Body talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Body_talisman", - "price": 1251.5 + "price": 1251 }, "1448": { "id": 1448, @@ -26969,7 +26969,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Mind talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Mind_talisman", - "price": 1509.5 + "price": 1670 }, "1450": { "id": 1450, @@ -26986,7 +26986,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Blood talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_talisman", - "price": 155000 + "price": 92000 }, "1452": { "id": 1452, @@ -27004,7 +27004,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Chaos talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Chaos_talisman", - "price": 91.5 + "price": 61 }, "1454": { "id": 1454, @@ -27022,7 +27022,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Cosmic talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Cosmic_talisman", - "price": 43 + "price": 156 }, "1456": { "id": 1456, @@ -27040,7 +27040,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Death talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Death_talisman", - "price": 1371 + "price": 453 }, "1458": { "id": 1458, @@ -27072,7 +27072,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Nature talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Nature_talisman", - "price": 130.5 + "price": 1062 }, "1464": { "id": 1464, @@ -27174,7 +27174,7 @@ "examine": "A small round red bead.", "wiki_name": "Red bead", "wiki_url": "https://oldschool.runescape.wiki/w/Red_bead", - "price": 1884.5 + "price": 1884 }, "1472": { "id": 1472, @@ -27191,7 +27191,7 @@ "examine": "A small round yellow bead.", "wiki_name": "Yellow bead", "wiki_url": "https://oldschool.runescape.wiki/w/Yellow_bead", - "price": 1848.5 + "price": 1848 }, "1474": { "id": 1474, @@ -27208,7 +27208,7 @@ "examine": "A small round black bead.", "wiki_name": "Black bead", "wiki_url": "https://oldschool.runescape.wiki/w/Black_bead", - "price": 2107 + "price": 1500 }, "1476": { "id": 1476, @@ -27225,7 +27225,7 @@ "examine": "A small round white bead.", "wiki_name": "White bead", "wiki_url": "https://oldschool.runescape.wiki/w/White_bead", - "price": 5441 + "price": 3761 }, "1478": { "id": 1478, @@ -27262,7 +27262,7 @@ "slot": "neck", "requirements": null }, - "price": 1398.5 + "price": 1162 }, "1480": { "id": 1480, @@ -27745,7 +27745,7 @@ "examine": "A number of wooden logs.", "wiki_name": "Logs", "wiki_url": "https://oldschool.runescape.wiki/w/Logs", - "price": 130 + "price": 116 }, "1513": { "id": 1513, @@ -27763,7 +27763,7 @@ "examine": "Logs cut from a magic tree.", "wiki_name": "Magic logs", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_logs", - "price": 1059.5 + "price": 942 }, "1515": { "id": 1515, @@ -27780,7 +27780,7 @@ "examine": "Logs cut from a yew tree.", "wiki_name": "Yew logs", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_logs", - "price": 238.5 + "price": 213 }, "1517": { "id": 1517, @@ -27797,7 +27797,7 @@ "examine": "Logs cut from a maple tree.", "wiki_name": "Maple logs", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_logs", - "price": 12.5 + "price": 14 }, "1519": { "id": 1519, @@ -27814,7 +27814,7 @@ "examine": "Logs cut from a willow tree.", "wiki_name": "Willow logs", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_logs", - "price": 62.5 + "price": 151 }, "1521": { "id": 1521, @@ -27831,7 +27831,7 @@ "examine": "Logs cut from an oak tree.", "wiki_name": "Oak logs", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_logs", - "price": 50 + "price": 76 }, "1523": { "id": 1523, @@ -27849,7 +27849,7 @@ "examine": "For picking tough locks.", "wiki_name": "Lockpick", "wiki_url": "https://oldschool.runescape.wiki/w/Lockpick", - "price": 353 + "price": 248 }, "1525": { "id": 1525, @@ -28057,7 +28057,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Steel nails", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_nails", - "price": 23.5 + "price": 21 }, "1540": { "id": 1540, @@ -28215,7 +28215,7 @@ "examine": "A clove of garlic.", "wiki_name": "Garlic", "wiki_url": "https://oldschool.runescape.wiki/w/Garlic", - "price": 41.5 + "price": 76 }, "1552": { "id": 1552, @@ -28233,7 +28233,7 @@ "examine": "Sardine flavoured with doogle leaves.", "wiki_name": "Seasoned sardine", "wiki_url": "https://oldschool.runescape.wiki/w/Seasoned_sardine", - "price": 899.5 + "price": 776 }, "1554": { "id": 1554, @@ -28756,7 +28756,7 @@ "examine": "Used to make rings.", "wiki_name": "Ring mould", "wiki_url": "https://oldschool.runescape.wiki/w/Ring_mould", - "price": 198 + "price": 308 }, "1594": { "id": 1594, @@ -28787,7 +28787,7 @@ "examine": "Used to make amulets.", "wiki_name": "Amulet mould", "wiki_url": "https://oldschool.runescape.wiki/w/Amulet_mould", - "price": 95.5 + "price": 427 }, "1597": { "id": 1597, @@ -28821,7 +28821,7 @@ "examine": "Used to make holy symbols of Saradomin.", "wiki_name": "Holy mould", "wiki_url": "https://oldschool.runescape.wiki/w/Holy_mould", - "price": 2.5 + "price": 5 }, "1601": { "id": 1601, @@ -28855,7 +28855,7 @@ "examine": "This looks valuable.", "wiki_name": "Ruby", "wiki_url": "https://oldschool.runescape.wiki/w/Ruby", - "price": 825.5 + "price": 825 }, "1605": { "id": 1605, @@ -28872,7 +28872,7 @@ "examine": "This looks valuable.", "wiki_name": "Emerald", "wiki_url": "https://oldschool.runescape.wiki/w/Emerald", - "price": 447 + "price": 401 }, "1607": { "id": 1607, @@ -28889,7 +28889,7 @@ "examine": "This looks valuable.", "wiki_name": "Sapphire", "wiki_url": "https://oldschool.runescape.wiki/w/Sapphire", - "price": 214.5 + "price": 214 }, "1609": { "id": 1609, @@ -28907,7 +28907,7 @@ "examine": "A semi precious stone.", "wiki_name": "Opal", "wiki_url": "https://oldschool.runescape.wiki/w/Opal", - "price": 1664 + "price": 1270 }, "1611": { "id": 1611, @@ -28925,7 +28925,7 @@ "examine": "A semi precious stone.", "wiki_name": "Jade", "wiki_url": "https://oldschool.runescape.wiki/w/Jade", - "price": 217.5 + "price": 318 }, "1613": { "id": 1613, @@ -28943,7 +28943,7 @@ "examine": "A semi precious stone.", "wiki_name": "Red topaz", "wiki_url": "https://oldschool.runescape.wiki/w/Red_topaz", - "price": 2229.5 + "price": 1590 }, "1615": { "id": 1615, @@ -28978,7 +28978,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut diamond", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_diamond", - "price": 1957.5 + "price": 1957 }, "1619": { "id": 1619, @@ -29012,7 +29012,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut emerald", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_emerald", - "price": 472.5 + "price": 400 }, "1623": { "id": 1623, @@ -29029,7 +29029,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut sapphire", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_sapphire", - "price": 235.5 + "price": 203 }, "1625": { "id": 1625, @@ -29047,7 +29047,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut opal", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_opal", - "price": 1358 + "price": 1026 }, "1627": { "id": 1627, @@ -29065,7 +29065,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut jade", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_jade", - "price": 165.5 + "price": 165 }, "1629": { "id": 1629, @@ -29083,7 +29083,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut red topaz", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_red_topaz", - "price": 1865 + "price": 1363 }, "1631": { "id": 1631, @@ -29101,7 +29101,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut dragonstone", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_dragonstone", - "price": 14293.5 + "price": 12799 }, "1633": { "id": 1633, @@ -29154,7 +29154,7 @@ "slot": "ring", "requirements": null }, - "price": 136.5 + "price": 158 }, "1637": { "id": 1637, @@ -29191,7 +29191,7 @@ "slot": "ring", "requirements": null }, - "price": 421.5 + "price": 421 }, "1639": { "id": 1639, @@ -29265,7 +29265,7 @@ "slot": "ring", "requirements": null }, - "price": 918.5 + "price": 1022 }, "1643": { "id": 1643, @@ -29377,7 +29377,7 @@ "slot": "neck", "requirements": null }, - "price": 148.5 + "price": 188 }, "1656": { "id": 1656, @@ -29414,7 +29414,7 @@ "slot": "neck", "requirements": null }, - "price": 446.5 + "price": 446 }, "1658": { "id": 1658, @@ -29525,7 +29525,7 @@ "slot": "neck", "requirements": null }, - "price": 2012.5 + "price": 2012 }, "1664": { "id": 1664, @@ -29614,7 +29614,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Emerald amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Emerald_amulet_(u)", - "price": 709.5 + "price": 586 }, "1679": { "id": 1679, @@ -29631,7 +29631,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Ruby amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Ruby_amulet_(u)", - "price": 1030.5 + "price": 1030 }, "1681": { "id": 1681, @@ -29712,7 +29712,7 @@ "slot": "neck", "requirements": null }, - "price": 166 + "price": 739 }, "1694": { "id": 1694, @@ -29786,7 +29786,7 @@ "slot": "neck", "requirements": null }, - "price": 742.5 + "price": 1150 }, "1698": { "id": 1698, @@ -29823,7 +29823,7 @@ "slot": "neck", "requirements": null }, - "price": 1458 + "price": 1218 }, "1700": { "id": 1700, @@ -29860,7 +29860,7 @@ "slot": "neck", "requirements": null }, - "price": 1964.5 + "price": 1964 }, "1702": { "id": 1702, @@ -30082,7 +30082,7 @@ "slot": "neck", "requirements": null }, - "price": 12495.5 + "price": 12495 }, "1714": { "id": 1714, @@ -30099,7 +30099,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Unstrung symbol", "wiki_url": "https://oldschool.runescape.wiki/w/Unstrung_symbol", - "price": 89 + "price": 238 }, "1716": { "id": 1716, @@ -30136,7 +30136,7 @@ "slot": "neck", "requirements": null }, - "price": 104 + "price": 50 }, "1718": { "id": 1718, @@ -30173,7 +30173,7 @@ "slot": "neck", "requirements": null }, - "price": 585.5 + "price": 585 }, "1720": { "id": 1720, @@ -30229,7 +30229,7 @@ "slot": "neck", "requirements": null }, - "price": 10 + "price": 6 }, "1724": { "id": 1724, @@ -30267,7 +30267,7 @@ "slot": "neck", "requirements": null }, - "price": 234 + "price": 304 }, "1725": { "id": 1725, @@ -30304,7 +30304,7 @@ "slot": "neck", "requirements": null }, - "price": 1092.5 + "price": 1345 }, "1727": { "id": 1727, @@ -30341,7 +30341,7 @@ "slot": "neck", "requirements": null }, - "price": 701 + "price": 523 }, "1729": { "id": 1729, @@ -30378,7 +30378,7 @@ "slot": "neck", "requirements": null }, - "price": 962.5 + "price": 962 }, "1731": { "id": 1731, @@ -30431,7 +30431,7 @@ "examine": "Used with a thread to make clothes.", "wiki_name": "Needle", "wiki_url": "https://oldschool.runescape.wiki/w/Needle", - "price": 48.5 + "price": 48 }, "1734": { "id": 1734, @@ -30447,7 +30447,7 @@ "examine": "Used with a needle to make clothes.", "wiki_name": "Thread", "wiki_url": "https://oldschool.runescape.wiki/w/Thread", - "price": 12.5 + "price": 17 }, "1735": { "id": 1735, @@ -30481,7 +30481,7 @@ "examine": "Nice and fluffy.", "wiki_name": "Wool", "wiki_url": "https://oldschool.runescape.wiki/w/Wool", - "price": 97.5 + "price": 97 }, "1739": { "id": 1739, @@ -30498,7 +30498,7 @@ "examine": "I should take this to the tannery.", "wiki_name": "Cowhide", "wiki_url": "https://oldschool.runescape.wiki/w/Cowhide", - "price": 148.5 + "price": 217 }, "1741": { "id": 1741, @@ -30515,7 +30515,7 @@ "examine": "It's a piece of leather.", "wiki_name": "Leather", "wiki_url": "https://oldschool.runescape.wiki/w/Leather", - "price": 193.5 + "price": 193 }, "1743": { "id": 1743, @@ -30532,7 +30532,7 @@ "examine": "It's a piece of hard leather.", "wiki_name": "Hard leather", "wiki_url": "https://oldschool.runescape.wiki/w/Hard_leather", - "price": 221 + "price": 351 }, "1745": { "id": 1745, @@ -30550,7 +30550,7 @@ "examine": "It's a piece of prepared green dragonhide.", "wiki_name": "Green dragon leather", "wiki_url": "https://oldschool.runescape.wiki/w/Green_dragon_leather", - "price": 1577.5 + "price": 1357 }, "1747": { "id": 1747, @@ -30568,7 +30568,7 @@ "examine": "The scaly rough hide from a Black Dragon.", "wiki_name": "Black dragonhide", "wiki_url": "https://oldschool.runescape.wiki/w/Black_dragonhide", - "price": 2898.5 + "price": 2575 }, "1749": { "id": 1749, @@ -30586,7 +30586,7 @@ "examine": "The scaly rough hide from a Red Dragon.", "wiki_name": "Red dragonhide", "wiki_url": "https://oldschool.runescape.wiki/w/Red_dragonhide", - "price": 2284.5 + "price": 1922 }, "1751": { "id": 1751, @@ -30604,7 +30604,7 @@ "examine": "The scaly rough hide from a Blue Dragon.", "wiki_name": "Blue dragonhide", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_dragonhide", - "price": 1733 + "price": 1444 }, "1753": { "id": 1753, @@ -30639,7 +30639,7 @@ "examine": "Good for detailed crafting.", "wiki_name": "Chisel", "wiki_url": "https://oldschool.runescape.wiki/w/Chisel", - "price": 55.5 + "price": 55 }, "1757": { "id": 1757, @@ -30676,7 +30676,7 @@ "slot": "body", "requirements": null }, - "price": 133 + "price": 59 }, "1759": { "id": 1759, @@ -30693,7 +30693,7 @@ "examine": "Spun from wool.", "wiki_name": "Ball of wool", "wiki_url": "https://oldschool.runescape.wiki/w/Ball_of_wool", - "price": 74 + "price": 61 }, "1761": { "id": 1761, @@ -30727,7 +30727,7 @@ "examine": "A little bottle of red dye.", "wiki_name": "Red dye", "wiki_url": "https://oldschool.runescape.wiki/w/Red_dye", - "price": 452 + "price": 1325 }, "1765": { "id": 1765, @@ -30744,7 +30744,7 @@ "examine": "A little bottle of yellow dye.", "wiki_name": "Yellow dye", "wiki_url": "https://oldschool.runescape.wiki/w/Yellow_dye", - "price": 410 + "price": 270 }, "1767": { "id": 1767, @@ -30761,7 +30761,7 @@ "examine": "A little bottle of blue dye.", "wiki_name": "Blue dye", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_dye", - "price": 381.5 + "price": 331 }, "1769": { "id": 1769, @@ -30778,7 +30778,7 @@ "examine": "A little bottle of orange dye.", "wiki_name": "Orange dye", "wiki_url": "https://oldschool.runescape.wiki/w/Orange_dye", - "price": 956.5 + "price": 1061 }, "1771": { "id": 1771, @@ -30795,7 +30795,7 @@ "examine": "A little bottle of green dye.", "wiki_name": "Green dye", "wiki_url": "https://oldschool.runescape.wiki/w/Green_dye", - "price": 1621.5 + "price": 614 }, "1773": { "id": 1773, @@ -30812,7 +30812,7 @@ "examine": "A little bottle of purple dye.", "wiki_name": "Purple dye", "wiki_url": "https://oldschool.runescape.wiki/w/Purple_dye", - "price": 499.5 + "price": 622 }, "1775": { "id": 1775, @@ -30830,7 +30830,7 @@ "examine": "Hot glass ready to be blown into useful objects.", "wiki_name": "Molten glass", "wiki_url": "https://oldschool.runescape.wiki/w/Molten_glass", - "price": 77 + "price": 69 }, "1777": { "id": 1777, @@ -30848,7 +30848,7 @@ "examine": "I need a bow stave to attach this to.", "wiki_name": "Bow string", "wiki_url": "https://oldschool.runescape.wiki/w/Bow_string", - "price": 93 + "price": 67 }, "1779": { "id": 1779, @@ -30884,7 +30884,7 @@ "examine": "One of the ingredients for making glass.", "wiki_name": "Soda ash", "wiki_url": "https://oldschool.runescape.wiki/w/Soda_ash", - "price": 40 + "price": 21 }, "1783": { "id": 1783, @@ -30902,7 +30902,7 @@ "examine": "One of the ingredients for making glass.", "wiki_name": "Bucket of sand", "wiki_url": "https://oldschool.runescape.wiki/w/Bucket_of_sand", - "price": 26.5 + "price": 33 }, "1785": { "id": 1785, @@ -30920,7 +30920,7 @@ "examine": "Used to form molten glass into useful items.", "wiki_name": "Glassblowing pipe", "wiki_url": "https://oldschool.runescape.wiki/w/Glassblowing_pipe", - "price": 235 + "price": 389 }, "1787": { "id": 1787, @@ -30937,7 +30937,7 @@ "examine": "I need to put this in a pottery oven.", "wiki_name": "Unfired pot", "wiki_url": "https://oldschool.runescape.wiki/w/Unfired_pot", - "price": 79.5 + "price": 157 }, "1789": { "id": 1789, @@ -30954,7 +30954,7 @@ "examine": "I need to put this in a pottery oven.", "wiki_name": "Unfired pie dish", "wiki_url": "https://oldschool.runescape.wiki/w/Unfired_pie_dish", - "price": 75 + "price": 100 }, "1791": { "id": 1791, @@ -30971,7 +30971,7 @@ "examine": "I need to put this in a pottery oven.", "wiki_name": "Unfired bowl", "wiki_url": "https://oldschool.runescape.wiki/w/Unfired_bowl", - "price": 224 + "price": 258 }, "1793": { "id": 1793, @@ -31005,7 +31005,7 @@ "examine": "Useful for Crafting items.", "wiki_name": "Bronze wire", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_wire", - "price": 259.5 + "price": 314 }, "1796": { "id": 1796, @@ -31439,7 +31439,7 @@ "examine": "A full waterskin with four portions of water.", "wiki_name": "Waterskin (4)", "wiki_url": "https://oldschool.runescape.wiki/w/Waterskin#(4)", - "price": 106 + "price": 136 }, "1825": { "id": 1825, @@ -31505,7 +31505,7 @@ "examine": "A completely empty waterskin - you'll need to fill it up.", "wiki_name": "Waterskin (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Waterskin#(0)", - "price": 38.5 + "price": 46 }, "1833": { "id": 1833, @@ -31543,7 +31543,7 @@ "slot": "body", "requirements": null }, - "price": 173.5 + "price": 130 }, "1835": { "id": 1835, @@ -31581,7 +31581,7 @@ "slot": "legs", "requirements": null }, - "price": 180.5 + "price": 85 }, "1837": { "id": 1837, @@ -31619,7 +31619,7 @@ "slot": "feet", "requirements": null }, - "price": 36 + "price": 65 }, "1839": { "id": 1839, @@ -31900,7 +31900,7 @@ "examine": "Allows you to pass through the Shantay pass into the Kharid Desert.", "wiki_name": "Shantay pass (item)", "wiki_url": "https://oldschool.runescape.wiki/w/Shantay_pass_(item)", - "price": 37.5 + "price": 14 }, "1855": { "id": 1855, @@ -31974,7 +31974,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw ugthanki meat", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_ugthanki_meat", - "price": 2435 + "price": 1186 }, "1861": { "id": 1861, @@ -31992,7 +31992,7 @@ "examine": "Freshly cooked ugthanki meat.", "wiki_name": "Ugthanki meat", "wiki_url": "https://oldschool.runescape.wiki/w/Ugthanki_meat", - "price": 19327 + "price": 38016 }, "1863": { "id": 1863, @@ -32060,7 +32060,7 @@ "examine": "A mixture of tomatoes in a bowl.", "wiki_name": "Chopped tomato", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_tomato", - "price": 80 + "price": 54 }, "1871": { "id": 1871, @@ -32096,7 +32096,7 @@ "examine": "Strips of ugthanki meat in a bowl.", "wiki_name": "Chopped ugthanki", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_ugthanki", - "price": 2252 + "price": 5500 }, "1875": { "id": 1875, @@ -32114,7 +32114,7 @@ "examine": "A mixture of chopped onions and tomatoes in a bowl.", "wiki_name": "Onion & tomato", "wiki_url": "https://oldschool.runescape.wiki/w/Onion_&_tomato", - "price": 15 + "price": 22 }, "1877": { "id": 1877, @@ -32132,7 +32132,7 @@ "examine": "A mixture of chopped onions and ugthanki meat in a bowl.", "wiki_name": "Ugthanki & onion", "wiki_url": "https://oldschool.runescape.wiki/w/Ugthanki_&_onion", - "price": 14.5 + "price": 14 }, "1879": { "id": 1879, @@ -32168,7 +32168,7 @@ "examine": "A mixture of chopped tomatoes, onions and ugthanki meat in a bowl.", "wiki_name": "Kebab mix", "wiki_url": "https://oldschool.runescape.wiki/w/Kebab_mix", - "price": 1500 + "price": 15749 }, "1883": { "id": 1883, @@ -32202,7 +32202,7 @@ "examine": "A fresh kebab made from ugthanki meat.", "wiki_name": "Ugthanki kebab", "wiki_url": "https://oldschool.runescape.wiki/w/Ugthanki_kebab", - "price": 850 + "price": 980 }, "1887": { "id": 1887, @@ -32219,7 +32219,7 @@ "examine": "Useful for baking cakes.", "wiki_name": "Cake tin", "wiki_url": "https://oldschool.runescape.wiki/w/Cake_tin", - "price": 101 + "price": 76 }, "1889": { "id": 1889, @@ -32251,7 +32251,7 @@ "examine": "A plain sponge cake.", "wiki_name": "Cake (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Cake#Full", - "price": 140.5 + "price": 217 }, "1893": { "id": 1893, @@ -32298,7 +32298,7 @@ "examine": "This looks very tasty.", "wiki_name": "Chocolate cake (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Chocolate_cake#Full", - "price": 169.5 + "price": 234 }, "1899": { "id": 1899, @@ -32360,7 +32360,7 @@ "examine": "Probably the finest ale in Asgarnia.", "wiki_name": "Asgarnian ale", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_ale", - "price": 212.5 + "price": 145 }, "1907": { "id": 1907, @@ -32377,7 +32377,7 @@ "examine": "It's got strange bubbles in it.", "wiki_name": "Wizard's mind bomb", "wiki_url": "https://oldschool.runescape.wiki/w/Wizard's_mind_bomb", - "price": 197.5 + "price": 197 }, "1909": { "id": 1909, @@ -32395,7 +32395,7 @@ "examine": "A glass of frothy ale.", "wiki_name": "Greenman's ale", "wiki_url": "https://oldschool.runescape.wiki/w/Greenman's_ale", - "price": 498 + "price": 584 }, "1911": { "id": 1911, @@ -32413,7 +32413,7 @@ "examine": "A glass of bitter.", "wiki_name": "Dragon bitter", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bitter", - "price": 874.5 + "price": 542 }, "1913": { "id": 1913, @@ -32482,7 +32482,7 @@ "examine": "I need to fill this with beer.", "wiki_name": "Beer glass", "wiki_url": "https://oldschool.runescape.wiki/w/Beer_glass", - "price": 44 + "price": 36 }, "1921": { "id": 1921, @@ -32499,7 +32499,7 @@ "examine": "It's a bowl of water.", "wiki_name": "Bowl of water", "wiki_url": "https://oldschool.runescape.wiki/w/Bowl_of_water", - "price": 55 + "price": 77 }, "1923": { "id": 1923, @@ -32516,7 +32516,7 @@ "examine": "Useful for mixing things.", "wiki_name": "Bowl", "wiki_url": "https://oldschool.runescape.wiki/w/Bowl", - "price": 17 + "price": 13 }, "1925": { "id": 1925, @@ -32533,7 +32533,7 @@ "examine": "It's a wooden bucket.", "wiki_name": "Bucket", "wiki_url": "https://oldschool.runescape.wiki/w/Bucket", - "price": 6.5 + "price": 6 }, "1927": { "id": 1927, @@ -32550,7 +32550,7 @@ "examine": "It's a bucket of milk.", "wiki_name": "Bucket of milk", "wiki_url": "https://oldschool.runescape.wiki/w/Bucket_of_milk", - "price": 40.5 + "price": 40 }, "1929": { "id": 1929, @@ -32567,7 +32567,7 @@ "examine": "It's a bucket of water.", "wiki_name": "Bucket of water", "wiki_url": "https://oldschool.runescape.wiki/w/Bucket_of_water", - "price": 32 + "price": 51 }, "1931": { "id": 1931, @@ -32584,7 +32584,7 @@ "examine": "This pot is empty.", "wiki_name": "Pot", "wiki_url": "https://oldschool.runescape.wiki/w/Pot", - "price": 13.5 + "price": 10 }, "1933": { "id": 1933, @@ -32601,7 +32601,7 @@ "examine": "There is flour in this pot.", "wiki_name": "Pot of flour", "wiki_url": "https://oldschool.runescape.wiki/w/Pot_of_flour", - "price": 127 + "price": 160 }, "1935": { "id": 1935, @@ -32635,7 +32635,7 @@ "examine": "It's full of water.", "wiki_name": "Jug of water", "wiki_url": "https://oldschool.runescape.wiki/w/Jug_of_water", - "price": 56.5 + "price": 46 }, "1939": { "id": 1939, @@ -32652,7 +32652,7 @@ "examine": "A foul smelling thick tar-like substance.", "wiki_name": "Swamp tar", "wiki_url": "https://oldschool.runescape.wiki/w/Swamp_tar", - "price": 3 + "price": 4 }, "1940": { "id": 1940, @@ -32684,7 +32684,7 @@ "examine": "A tar-like substance mixed with flour and warmed.", "wiki_name": "Swamp paste", "wiki_url": "https://oldschool.runescape.wiki/w/Swamp_paste", - "price": 9.5 + "price": 12 }, "1942": { "id": 1942, @@ -32701,7 +32701,7 @@ "examine": "This could be used to make a good stew.", "wiki_name": "Potato", "wiki_url": "https://oldschool.runescape.wiki/w/Potato", - "price": 44 + "price": 79 }, "1944": { "id": 1944, @@ -32748,7 +32748,7 @@ "examine": "Some wheat heads.", "wiki_name": "Grain", "wiki_url": "https://oldschool.runescape.wiki/w/Grain", - "price": 59.5 + "price": 34 }, "1949": { "id": 1949, @@ -32785,7 +32785,7 @@ "slot": "head", "requirements": null }, - "price": 243 + "price": 277 }, "1951": { "id": 1951, @@ -32802,7 +32802,7 @@ "examine": "Very bright red berries.", "wiki_name": "Redberries", "wiki_url": "https://oldschool.runescape.wiki/w/Redberries", - "price": 61 + "price": 78 }, "1953": { "id": 1953, @@ -32853,7 +32853,7 @@ "examine": "A strong smelling onion.", "wiki_name": "Onion", "wiki_url": "https://oldschool.runescape.wiki/w/Onion", - "price": 95 + "price": 67 }, "1959": { "id": 1959, @@ -32870,7 +32870,7 @@ "examine": "Happy Halloween.", "wiki_name": "Pumpkin", "wiki_url": "https://oldschool.runescape.wiki/w/Pumpkin", - "price": 13815.5 + "price": 13815 }, "1961": { "id": 1961, @@ -32887,7 +32887,7 @@ "examine": "Happy Easter.", "wiki_name": "Easter egg", "wiki_url": "https://oldschool.runescape.wiki/w/Easter_egg", - "price": 9928.5 + "price": 9928 }, "1963": { "id": 1963, @@ -32904,7 +32904,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Banana", "wiki_url": "https://oldschool.runescape.wiki/w/Banana", - "price": 96.5 + "price": 96 }, "1965": { "id": 1965, @@ -32921,7 +32921,7 @@ "examine": "Yuck I don't like cabbage.", "wiki_name": "Cabbage", "wiki_url": "https://oldschool.runescape.wiki/w/Cabbage", - "price": 63 + "price": 36 }, "1967": { "id": 1967, @@ -32953,7 +32953,7 @@ "examine": "A home made spinach thing.", "wiki_name": "Spinach roll", "wiki_url": "https://oldschool.runescape.wiki/w/Spinach_roll", - "price": 106.5 + "price": 95 }, "1971": { "id": 1971, @@ -32970,7 +32970,7 @@ "examine": "A meaty kebab.", "wiki_name": "Kebab", "wiki_url": "https://oldschool.runescape.wiki/w/Kebab", - "price": 40.5 + "price": 51 }, "1973": { "id": 1973, @@ -33004,7 +33004,7 @@ "examine": "It's ground up chocolate.", "wiki_name": "Chocolate dust", "wiki_url": "https://oldschool.runescape.wiki/w/Chocolate_dust", - "price": 92.5 + "price": 92 }, "1977": { "id": 1977, @@ -33102,7 +33102,7 @@ "examine": "It's got holes in it.", "wiki_name": "Cheese", "wiki_url": "https://oldschool.runescape.wiki/w/Cheese", - "price": 73.5 + "price": 124 }, "1987": { "id": 1987, @@ -33119,7 +33119,7 @@ "examine": "Good grapes for wine making.", "wiki_name": "Grapes", "wiki_url": "https://oldschool.runescape.wiki/w/Grapes", - "price": 9 + "price": 7 }, "1989": { "id": 1989, @@ -33267,7 +33267,7 @@ "examine": "It's a meat and potato stew.", "wiki_name": "Stew", "wiki_url": "https://oldschool.runescape.wiki/w/Stew", - "price": 74 + "price": 62 }, "2005": { "id": 2005, @@ -33300,7 +33300,7 @@ "examine": "This could liven up an otherwise bland stew.", "wiki_name": "Spice", "wiki_url": "https://oldschool.runescape.wiki/w/Spice", - "price": 46.5 + "price": 26 }, "2009": { "id": 2009, @@ -33334,7 +33334,7 @@ "examine": "It's a spicy hot curry.", "wiki_name": "Curry", "wiki_url": "https://oldschool.runescape.wiki/w/Curry", - "price": 732.5 + "price": 551 }, "2013": { "id": 2013, @@ -33404,7 +33404,7 @@ "examine": "A strong spirit that tastes of Juniper.", "wiki_name": "Gin", "wiki_url": "https://oldschool.runescape.wiki/w/Gin", - "price": 350 + "price": 698 }, "2021": { "id": 2021, @@ -33440,7 +33440,7 @@ "examine": "A book on tree gnome cocktails.", "wiki_name": "Cocktail guide", "wiki_url": "https://oldschool.runescape.wiki/w/Cocktail_guide", - "price": 33.5 + "price": 33 }, "2025": { "id": 2025, @@ -33458,7 +33458,7 @@ "examine": "Used for mixing cocktails.", "wiki_name": "Cocktail shaker", "wiki_url": "https://oldschool.runescape.wiki/w/Cocktail_shaker", - "price": 497.5 + "price": 19 }, "2026": { "id": 2026, @@ -33476,7 +33476,7 @@ "examine": "For sipping cocktails.", "wiki_name": "Cocktail glass", "wiki_url": "https://oldschool.runescape.wiki/w/Cocktail_glass", - "price": 142 + "price": 311 }, "2028": { "id": 2028, @@ -33494,7 +33494,7 @@ "examine": "A premade Blurberry Special", "wiki_name": "Premade blurb' sp.", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_blurb'_sp.", - "price": 324 + "price": 471 }, "2030": { "id": 2030, @@ -33512,7 +33512,7 @@ "examine": "A premade Chocolate Saturday.", "wiki_name": "Premade choc s'dy", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_choc_s'dy", - "price": 255 + "price": 24 }, "2032": { "id": 2032, @@ -33530,7 +33530,7 @@ "examine": "A premade Drunk Dragon.", "wiki_name": "Premade dr' dragon", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_dr'_dragon", - "price": 1494 + "price": 161 }, "2034": { "id": 2034, @@ -33548,7 +33548,7 @@ "examine": "A premade Fruit Blast.", "wiki_name": "Premade fr' blast", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_fr'_blast", - "price": 23 + "price": 8 }, "2036": { "id": 2036, @@ -33602,7 +33602,7 @@ "examine": "A Premade Wizard Blizzard.", "wiki_name": "Premade wiz blz'd", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_wiz_blz'd", - "price": 13.5 + "price": 16 }, "2042": { "id": 2042, @@ -33665,7 +33665,7 @@ "examine": "A fresh healthy fruit mix.", "wiki_name": "Pineapple punch", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple_punch", - "price": 46012 + "price": 10025 }, "2050": { "id": 2050, @@ -33713,7 +33713,7 @@ "examine": "This looks like a strange mix.", "wiki_name": "Wizard blizzard", "wiki_url": "https://oldschool.runescape.wiki/w/Wizard_blizzard", - "price": 3194 + "price": 2100 }, "2056": { "id": 2056, @@ -33791,7 +33791,7 @@ "examine": "Looks good... smells strong.", "wiki_name": "Blurberry special", "wiki_url": "https://oldschool.runescape.wiki/w/Blurberry_special", - "price": 4652.5 + "price": 5644 }, "2066": { "id": 2066, @@ -33869,7 +33869,7 @@ "examine": "A warm creamy alcoholic beverage.", "wiki_name": "Choc saturday", "wiki_url": "https://oldschool.runescape.wiki/w/Choc_saturday", - "price": 51.5 + "price": 51 }, "2076": { "id": 2076, @@ -33917,7 +33917,7 @@ "examine": "A Short Green Guy... looks good.", "wiki_name": "Short green guy", "wiki_url": "https://oldschool.runescape.wiki/w/Short_green_guy", - "price": 25166.5 + "price": 5500 }, "2082": { "id": 2082, @@ -33950,7 +33950,7 @@ "examine": "A cool refreshing fruit mix.", "wiki_name": "Fruit blast", "wiki_url": "https://oldschool.runescape.wiki/w/Fruit_blast", - "price": 1710 + "price": 2051 }, "2086": { "id": 2086, @@ -34013,7 +34013,7 @@ "examine": "A warm creamy alcoholic beverage.", "wiki_name": "Drunk dragon", "wiki_url": "https://oldschool.runescape.wiki/w/Drunk_dragon", - "price": 1202.5 + "price": 2779 }, "2094": { "id": 2094, @@ -34095,7 +34095,7 @@ "examine": "A fresh lemon.", "wiki_name": "Lemon", "wiki_url": "https://oldschool.runescape.wiki/w/Lemon", - "price": 65.5 + "price": 65 }, "2104": { "id": 2104, @@ -34113,7 +34113,7 @@ "examine": "Fresh chunks of lemon.", "wiki_name": "Lemon chunks", "wiki_url": "https://oldschool.runescape.wiki/w/Lemon_chunks", - "price": 67 + "price": 50 }, "2106": { "id": 2106, @@ -34131,7 +34131,7 @@ "examine": "Fresh lemon slices.", "wiki_name": "Lemon slices", "wiki_url": "https://oldschool.runescape.wiki/w/Lemon_slices", - "price": 313 + "price": 102 }, "2108": { "id": 2108, @@ -34149,7 +34149,7 @@ "examine": "A fresh orange.", "wiki_name": "Orange", "wiki_url": "https://oldschool.runescape.wiki/w/Orange", - "price": 190 + "price": 115 }, "2110": { "id": 2110, @@ -34167,7 +34167,7 @@ "examine": "Fresh chunks of orange.", "wiki_name": "Orange chunks", "wiki_url": "https://oldschool.runescape.wiki/w/Orange_chunks", - "price": 209.5 + "price": 249 }, "2112": { "id": 2112, @@ -34185,7 +34185,7 @@ "examine": "Fresh orange slices.", "wiki_name": "Orange slices", "wiki_url": "https://oldschool.runescape.wiki/w/Orange_slices", - "price": 428.5 + "price": 109 }, "2114": { "id": 2114, @@ -34203,7 +34203,7 @@ "examine": "It can be cut up into something more manageable with a knife.", "wiki_name": "Pineapple", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple", - "price": 224 + "price": 191 }, "2116": { "id": 2116, @@ -34221,7 +34221,7 @@ "examine": "Fresh chunks of pineapple.", "wiki_name": "Pineapple chunks", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple_chunks", - "price": 283.5 + "price": 30 }, "2118": { "id": 2118, @@ -34239,7 +34239,7 @@ "examine": "Exotic fruit.", "wiki_name": "Pineapple ring", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple_ring", - "price": 113 + "price": 82 }, "2120": { "id": 2120, @@ -34257,7 +34257,7 @@ "examine": "A fresh lime.", "wiki_name": "Lime", "wiki_url": "https://oldschool.runescape.wiki/w/Lime", - "price": 70 + "price": 100 }, "2122": { "id": 2122, @@ -34275,7 +34275,7 @@ "examine": "Fresh chunks of lime.", "wiki_name": "Lime chunks", "wiki_url": "https://oldschool.runescape.wiki/w/Lime_chunks", - "price": 454 + "price": 115 }, "2124": { "id": 2124, @@ -34293,7 +34293,7 @@ "examine": "Fresh lime slices.", "wiki_name": "Lime slices", "wiki_url": "https://oldschool.runescape.wiki/w/Lime_slices", - "price": 1500 + "price": 1057 }, "2126": { "id": 2126, @@ -34311,7 +34311,7 @@ "examine": "Some rather pretty blue berries.", "wiki_name": "Dwellberries", "wiki_url": "https://oldschool.runescape.wiki/w/Dwellberries", - "price": 70 + "price": 83 }, "2128": { "id": 2128, @@ -34329,7 +34329,7 @@ "examine": "Small sweet smelling leaves.", "wiki_name": "Equa leaves", "wiki_url": "https://oldschool.runescape.wiki/w/Equa_leaves", - "price": 172 + "price": 282 }, "2130": { "id": 2130, @@ -34347,7 +34347,7 @@ "examine": "Fresh cream.", "wiki_name": "Pot of cream", "wiki_url": "https://oldschool.runescape.wiki/w/Pot_of_cream", - "price": 15 + "price": 17 }, "2132": { "id": 2132, @@ -34364,7 +34364,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw beef", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_beef", - "price": 72.5 + "price": 72 }, "2134": { "id": 2134, @@ -34381,7 +34381,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw rat meat", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_rat_meat", - "price": 131 + "price": 101 }, "2136": { "id": 2136, @@ -34398,7 +34398,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw bear meat", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_bear_meat", - "price": 164.5 + "price": 142 }, "2138": { "id": 2138, @@ -34449,7 +34449,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Cooked meat", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_meat", - "price": 138 + "price": 124 }, "2144": { "id": 2144, @@ -34525,7 +34525,7 @@ "examine": "A slippery little blighter.", "wiki_name": "Swamp toad (item)", "wiki_url": "https://oldschool.runescape.wiki/w/Swamp_toad_(item)", - "price": 440.5 + "price": 50 }, "2152": { "id": 2152, @@ -34543,7 +34543,7 @@ "examine": "They're a gnome delicacy apparently.", "wiki_name": "Toad's legs", "wiki_url": "https://oldschool.runescape.wiki/w/Toad's_legs", - "price": 574.5 + "price": 203 }, "2154": { "id": 2154, @@ -34621,7 +34621,7 @@ "examine": "They're a gnome delicacy apparently.", "wiki_name": "King worm", "wiki_url": "https://oldschool.runescape.wiki/w/King_worm", - "price": 356.5 + "price": 300 }, "2164": { "id": 2164, @@ -34639,7 +34639,7 @@ "examine": "A deep tin used for baking gnome battas in.", "wiki_name": "Batta tin", "wiki_url": "https://oldschool.runescape.wiki/w/Batta_tin", - "price": 8 + "price": 14 }, "2165": { "id": 2165, @@ -34657,7 +34657,7 @@ "examine": "A shallow tray used for baking crunchies in.", "wiki_name": "Crunchy tray", "wiki_url": "https://oldschool.runescape.wiki/w/Crunchy_tray", - "price": 41.5 + "price": 225 }, "2166": { "id": 2166, @@ -34675,7 +34675,7 @@ "examine": "A large ovenproof bowl.", "wiki_name": "Gnomebowl mould", "wiki_url": "https://oldschool.runescape.wiki/w/Gnomebowl_mould", - "price": 211 + "price": 1206 }, "2167": { "id": 2167, @@ -34693,7 +34693,7 @@ "examine": "Aluft Gianne's favorite dishes.", "wiki_name": "Gianne's cook book", "wiki_url": "https://oldschool.runescape.wiki/w/Gianne's_cook_book", - "price": 17 + "price": 11 }, "2169": { "id": 2169, @@ -34711,7 +34711,7 @@ "examine": "It's Aluft Gianne's secret mix of spices.", "wiki_name": "Gnome spice", "wiki_url": "https://oldschool.runescape.wiki/w/Gnome_spice", - "price": 362.5 + "price": 695 }, "2171": { "id": 2171, @@ -34729,7 +34729,7 @@ "examine": "It's made from a secret recipe.", "wiki_name": "Gianne dough", "wiki_url": "https://oldschool.runescape.wiki/w/Gianne_dough", - "price": 15.5 + "price": 39 }, "2173": { "id": 2173, @@ -34851,7 +34851,7 @@ "examine": "Full of creamy, chocolately goodness.", "wiki_name": "Chocolate bomb", "wiki_url": "https://oldschool.runescape.wiki/w/Chocolate_bomb", - "price": 797.5 + "price": 1182 }, "2187": { "id": 2187, @@ -34869,7 +34869,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Tangled toad's legs", "wiki_url": "https://oldschool.runescape.wiki/w/Tangled_toad's_legs", - "price": 623 + "price": 832 }, "2189": { "id": 2189, @@ -34902,7 +34902,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Worm hole", "wiki_url": "https://oldschool.runescape.wiki/w/Worm_hole", - "price": 1741.5 + "price": 417 }, "2193": { "id": 2193, @@ -34935,7 +34935,7 @@ "examine": "This looks pretty healthy.", "wiki_name": "Veg ball", "wiki_url": "https://oldschool.runescape.wiki/w/Veg_ball", - "price": 5.5 + "price": 5 }, "2197": { "id": 2197, @@ -35030,7 +35030,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Worm crunchies", "wiki_url": "https://oldschool.runescape.wiki/w/Worm_crunchies", - "price": 6000 + "price": 4441 }, "2207": { "id": 2207, @@ -35063,7 +35063,7 @@ "examine": "Yum... smells good.", "wiki_name": "Chocchip crunchies", "wiki_url": "https://oldschool.runescape.wiki/w/Chocchip_crunchies", - "price": 3269 + "price": 713 }, "2211": { "id": 2211, @@ -35129,7 +35129,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Toad crunchies", "wiki_url": "https://oldschool.runescape.wiki/w/Toad_crunchies", - "price": 3971.5 + "price": 5355 }, "2219": { "id": 2219, @@ -35147,7 +35147,7 @@ "examine": "A premade Worm Batta.", "wiki_name": "Premade w'm batta", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_w'm_batta", - "price": 510 + "price": 215 }, "2221": { "id": 2221, @@ -35201,7 +35201,7 @@ "examine": "A premade Fruit Batta.", "wiki_name": "Premade fr't batta", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_fr't_batta", - "price": 37.5 + "price": 22 }, "2227": { "id": 2227, @@ -35237,7 +35237,7 @@ "examine": "A premade Chocolate Bomb.", "wiki_name": "Premade choc bomb", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_choc_bomb", - "price": 636 + "price": 1185 }, "2231": { "id": 2231, @@ -35273,7 +35273,7 @@ "examine": "A premade Worm Hole.", "wiki_name": "Premade worm hole", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_worm_hole", - "price": 450 + "price": 275 }, "2235": { "id": 2235, @@ -35291,7 +35291,7 @@ "examine": "A premade Vegetable Ball.", "wiki_name": "Premade veg ball", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_veg_ball", - "price": 175 + "price": 24 }, "2237": { "id": 2237, @@ -35327,7 +35327,7 @@ "examine": "Some Premade chocchip crunchies.", "wiki_name": "Premade ch' crunch", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_ch'_crunch", - "price": 87.5 + "price": 87 }, "2241": { "id": 2241, @@ -35363,7 +35363,7 @@ "examine": "Some premade Toad Crunchies.", "wiki_name": "Premade t'd crunch", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_t'd_crunch", - "price": 2616.5 + "price": 620 }, "2245": { "id": 2245, @@ -35455,7 +35455,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Worm batta", "wiki_url": "https://oldschool.runescape.wiki/w/Worm_batta", - "price": 3500.5 + "price": 8000 }, "2255": { "id": 2255, @@ -35506,7 +35506,7 @@ "examine": "This smells really good.", "wiki_name": "Cheese+tom batta", "wiki_url": "https://oldschool.runescape.wiki/w/Cheese+tom_batta", - "price": 3823.5 + "price": 350 }, "2261": { "id": 2261, @@ -35644,7 +35644,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Fruit batta", "wiki_url": "https://oldschool.runescape.wiki/w/Fruit_batta", - "price": 151 + "price": 2687 }, "2279": { "id": 2279, @@ -35677,7 +35677,7 @@ "examine": "Well... it looks healthy.", "wiki_name": "Vegetable batta", "wiki_url": "https://oldschool.runescape.wiki/w/Vegetable_batta", - "price": 2500.5 + "price": 856 }, "2283": { "id": 2283, @@ -35694,7 +35694,7 @@ "examine": "I need to add some tomato next.", "wiki_name": "Pizza base", "wiki_url": "https://oldschool.runescape.wiki/w/Pizza_base", - "price": 216.5 + "price": 244 }, "2285": { "id": 2285, @@ -35741,7 +35741,7 @@ "examine": "A cheese and tomato pizza.", "wiki_name": "Plain pizza (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Plain_pizza#Full", - "price": 586.5 + "price": 650 }, "2291": { "id": 2291, @@ -35804,7 +35804,7 @@ "examine": "A pizza with anchovies.", "wiki_name": "Anchovy pizza (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Anchovy_pizza#Full", - "price": 709 + "price": 891 }, "2299": { "id": 2299, @@ -35885,7 +35885,7 @@ "examine": "Some uncooked dough.", "wiki_name": "Bread dough", "wiki_url": "https://oldschool.runescape.wiki/w/Bread_dough", - "price": 164.5 + "price": 164 }, "2309": { "id": 2309, @@ -35902,7 +35902,7 @@ "examine": "Nice crispy bread.", "wiki_name": "Bread", "wiki_url": "https://oldschool.runescape.wiki/w/Bread", - "price": 179.5 + "price": 153 }, "2311": { "id": 2311, @@ -35934,7 +35934,7 @@ "examine": "Deceptively pie shaped.", "wiki_name": "Pie dish", "wiki_url": "https://oldschool.runescape.wiki/w/Pie_dish", - "price": 42 + "price": 24 }, "2315": { "id": 2315, @@ -35951,7 +35951,7 @@ "examine": "I need to find a filling for this pie.", "wiki_name": "Pie shell", "wiki_url": "https://oldschool.runescape.wiki/w/Pie_shell", - "price": 362.5 + "price": 362 }, "2317": { "id": 2317, @@ -35968,7 +35968,7 @@ "examine": "This would be much tastier cooked.", "wiki_name": "Uncooked apple pie", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_apple_pie", - "price": 504 + "price": 430 }, "2319": { "id": 2319, @@ -36019,7 +36019,7 @@ "examine": "Mmm Apple pie.", "wiki_name": "Apple pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Apple_pie#Full", - "price": 59 + "price": 82 }, "2325": { "id": 2325, @@ -36053,7 +36053,7 @@ "examine": "Not for vegetarians.", "wiki_name": "Meat pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Meat_pie#Full", - "price": 50 + "price": 68 }, "2329": { "id": 2329, @@ -36177,7 +36177,7 @@ "examine": "Oomlie meat in a palm leaf pouch. It just needs to be cooked.", "wiki_name": "Wrapped oomlie", "wiki_url": "https://oldschool.runescape.wiki/w/Wrapped_oomlie", - "price": 3076.5 + "price": 8501 }, "2343": { "id": 2343, @@ -36195,7 +36195,7 @@ "examine": "Deliciously cooked oomlie meat in a palm leaf pouch.", "wiki_name": "Cooked oomlie wrap", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_oomlie_wrap", - "price": 940.5 + "price": 1298 }, "2345": { "id": 2345, @@ -36228,7 +36228,7 @@ "examine": "Good for hitting things!", "wiki_name": "Hammer", "wiki_url": "https://oldschool.runescape.wiki/w/Hammer", - "price": 28.5 + "price": 65 }, "2349": { "id": 2349, @@ -36245,7 +36245,7 @@ "examine": "It's a bar of bronze.", "wiki_name": "Bronze bar", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_bar", - "price": 201 + "price": 148 }, "2351": { "id": 2351, @@ -36262,7 +36262,7 @@ "examine": "It's a bar of iron.", "wiki_name": "Iron bar", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_bar", - "price": 303 + "price": 201 }, "2353": { "id": 2353, @@ -36279,7 +36279,7 @@ "examine": "It's a bar of steel.", "wiki_name": "Steel bar", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_bar", - "price": 497.5 + "price": 416 }, "2355": { "id": 2355, @@ -36296,7 +36296,7 @@ "examine": "It's a bar of silver.", "wiki_name": "Silver bar", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_bar", - "price": 105.5 + "price": 105 }, "2357": { "id": 2357, @@ -36313,7 +36313,7 @@ "examine": "It's a bar of gold.", "wiki_name": "Gold bar", "wiki_url": "https://oldschool.runescape.wiki/w/Gold_bar", - "price": 102.5 + "price": 102 }, "2359": { "id": 2359, @@ -36330,7 +36330,7 @@ "examine": "It's a bar of mithril.", "wiki_name": "Mithril bar", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_bar", - "price": 713.5 + "price": 582 }, "2361": { "id": 2361, @@ -36396,7 +36396,7 @@ "examine": "The left half of a dragon square shield.", "wiki_name": "Shield left half", "wiki_url": "https://oldschool.runescape.wiki/w/Shield_left_half", - "price": 65635.5 + "price": 65635 }, "2368": { "id": 2368, @@ -36432,7 +36432,7 @@ "examine": "A set of studs for leather armour.", "wiki_name": "Steel studs", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_studs", - "price": 252.5 + "price": 252 }, "2372": { "id": 2372, @@ -37519,7 +37519,7 @@ "examine": "4 doses of Attack potion.", "wiki_name": "Attack potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Attack_potion#4_dose", - "price": 17.5 + "price": 8 }, "2430": { "id": 2430, @@ -37537,7 +37537,7 @@ "examine": "4 doses of restore potion.", "wiki_name": "Restore potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Restore_potion#4_dose", - "price": 122.5 + "price": 97 }, "2432": { "id": 2432, @@ -37555,7 +37555,7 @@ "examine": "4 doses of Defence potion.", "wiki_name": "Defence potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Defence_potion#4_dose", - "price": 417.5 + "price": 417 }, "2434": { "id": 2434, @@ -37591,7 +37591,7 @@ "examine": "4 doses of super Attack potion.", "wiki_name": "Super attack (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_attack#4_dose", - "price": 1160 + "price": 2215 }, "2438": { "id": 2438, @@ -37609,7 +37609,7 @@ "examine": "4 doses of Fishing potion.", "wiki_name": "Fishing potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_potion#4_dose", - "price": 65.5 + "price": 194 }, "2440": { "id": 2440, @@ -37627,7 +37627,7 @@ "examine": "4 doses of super Strength potion.", "wiki_name": "Super strength (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_strength#4_dose", - "price": 4880.5 + "price": 6591 }, "2442": { "id": 2442, @@ -37645,7 +37645,7 @@ "examine": "4 doses of super Defence potion.", "wiki_name": "Super defence (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_defence#4_dose", - "price": 4952.5 + "price": 8183 }, "2444": { "id": 2444, @@ -37663,7 +37663,7 @@ "examine": "4 doses of ranging potion.", "wiki_name": "Ranging potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ranging_potion#4_dose", - "price": 3194.5 + "price": 3194 }, "2446": { "id": 2446, @@ -37680,7 +37680,7 @@ "examine": "4 doses of antipoison potion.", "wiki_name": "Antipoison (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antipoison#4_dose", - "price": 167.5 + "price": 197 }, "2448": { "id": 2448, @@ -37698,7 +37698,7 @@ "examine": "4 doses of super antipoison potion.", "wiki_name": "Superantipoison (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Superantipoison#4_dose", - "price": 1056 + "price": 1863 }, "2450": { "id": 2450, @@ -37716,7 +37716,7 @@ "examine": "4 doses of Zamorak brew.", "wiki_name": "Zamorak brew (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_brew#4_dose", - "price": 2949.5 + "price": 3445 }, "2452": { "id": 2452, @@ -37734,7 +37734,7 @@ "examine": "4 doses of anti-firebreath potion.", "wiki_name": "Antifire potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antifire_potion#4_dose", - "price": 885.5 + "price": 1242 }, "2454": { "id": 2454, @@ -37752,7 +37752,7 @@ "examine": "3 doses of anti-firebreath potion.", "wiki_name": "Antifire potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antifire_potion#3_dose", - "price": 635.5 + "price": 868 }, "2456": { "id": 2456, @@ -37770,7 +37770,7 @@ "examine": "2 doses of anti-firebreath potion.", "wiki_name": "Antifire potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antifire_potion#2_dose", - "price": 318 + "price": 519 }, "2458": { "id": 2458, @@ -37788,7 +37788,7 @@ "examine": "1 dose of anti-firebreath potion.", "wiki_name": "Antifire potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antifire_potion#1_dose", - "price": 218.5 + "price": 286 }, "2460": { "id": 2460, @@ -37920,7 +37920,7 @@ } ] }, - "price": 152.5 + "price": 275 }, "2464": { "id": 2464, @@ -37986,7 +37986,7 @@ } ] }, - "price": 259.5 + "price": 175 }, "2466": { "id": 2466, @@ -38052,7 +38052,7 @@ } ] }, - "price": 72.5 + "price": 176 }, "2468": { "id": 2468, @@ -38118,7 +38118,7 @@ } ] }, - "price": 1464.5 + "price": 1464 }, "2470": { "id": 2470, @@ -38184,7 +38184,7 @@ } ] }, - "price": 439.5 + "price": 95 }, "2472": { "id": 2472, @@ -38250,7 +38250,7 @@ } ] }, - "price": 325 + "price": 75 }, "2474": { "id": 2474, @@ -38316,7 +38316,7 @@ } ] }, - "price": 500000 + "price": 380000 }, "2476": { "id": 2476, @@ -38382,7 +38382,7 @@ } ] }, - "price": 117005 + "price": 59044 }, "2481": { "id": 2481, @@ -38418,7 +38418,7 @@ "examine": "I need another ingredient to finish this Lantadyme potion.", "wiki_name": "Lantadyme potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Lantadyme_potion_(unf)", - "price": 1505.5 + "price": 1505 }, "2485": { "id": 2485, @@ -38436,7 +38436,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy lantadyme", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_lantadyme", - "price": 1403.5 + "price": 1403 }, "2487": { "id": 2487, @@ -38516,7 +38516,7 @@ "ranged": 60 } }, - "price": 1663.5 + "price": 1663 }, "2491": { "id": 2491, @@ -38596,7 +38596,7 @@ "ranged": 50 } }, - "price": 2383 + "price": 2018 }, "2495": { "id": 2495, @@ -38676,7 +38676,7 @@ "ranged": 70 } }, - "price": 5056.5 + "price": 4548 }, "2499": { "id": 2499, @@ -38758,7 +38758,7 @@ "defence": 40 } }, - "price": 6315.5 + "price": 5613 }, "2503": { "id": 2503, @@ -38799,7 +38799,7 @@ "defence": 40 } }, - "price": 7482.5 + "price": 7482 }, "2505": { "id": 2505, @@ -38817,7 +38817,7 @@ "examine": "It's a piece of prepared blue dragonhide.", "wiki_name": "Blue dragon leather", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_dragon_leather", - "price": 1780.5 + "price": 1780 }, "2507": { "id": 2507, @@ -38835,7 +38835,7 @@ "examine": "It's a piece of prepared red dragonhide.", "wiki_name": "Red dragon leather", "wiki_url": "https://oldschool.runescape.wiki/w/Red_dragon_leather", - "price": 2484 + "price": 2069 }, "2509": { "id": 2509, @@ -38853,7 +38853,7 @@ "examine": "It's a piece of prepared black dragonhide.", "wiki_name": "Black dragon leather", "wiki_url": "https://oldschool.runescape.wiki/w/Black_dragon_leather", - "price": 3134.5 + "price": 2800 }, "2511": { "id": 2511, @@ -38929,7 +38929,7 @@ "examine": "A brown toy horse.", "wiki_name": "Brown toy horsey", "wiki_url": "https://oldschool.runescape.wiki/w/Brown_toy_horsey", - "price": 533.5 + "price": 213 }, "2522": { "id": 2522, @@ -38946,7 +38946,7 @@ "examine": "A white toy horse.", "wiki_name": "White toy horsey", "wiki_url": "https://oldschool.runescape.wiki/w/White_toy_horsey", - "price": 432.5 + "price": 60 }, "2524": { "id": 2524, @@ -38963,7 +38963,7 @@ "examine": "A black toy horse.", "wiki_name": "Black toy horsey", "wiki_url": "https://oldschool.runescape.wiki/w/Black_toy_horsey", - "price": 1374.5 + "price": 600 }, "2526": { "id": 2526, @@ -38980,7 +38980,7 @@ "examine": "A grey toy horse.", "wiki_name": "Grey toy horsey", "wiki_url": "https://oldschool.runescape.wiki/w/Grey_toy_horsey", - "price": 301 + "price": 1300 }, "2528": { "id": 2528, @@ -39429,7 +39429,7 @@ "slot": "ring", "requirements": null }, - "price": 691.5 + "price": 691 }, "2552": { "id": 2552, @@ -39915,7 +39915,7 @@ "defence": 1 } }, - "price": 30850000 + "price": 32459676 }, "2579": { "id": 2579, @@ -39956,7 +39956,7 @@ "defence": 1 } }, - "price": 187693.5 + "price": 228892 }, "2581": { "id": 2581, @@ -39997,7 +39997,7 @@ "defence": 1 } }, - "price": 1538860 + "price": 1375673 }, "2583": { "id": 2583, @@ -40036,7 +40036,7 @@ "defence": 10 } }, - "price": 35732.5 + "price": 21156 }, "2585": { "id": 2585, @@ -40075,7 +40075,7 @@ "defence": 10 } }, - "price": 14448.5 + "price": 21214 }, "2587": { "id": 2587, @@ -40114,7 +40114,7 @@ "defence": 10 } }, - "price": 19532.5 + "price": 16879 }, "2589": { "id": 2589, @@ -40192,7 +40192,7 @@ "defence": 10 } }, - "price": 110325 + "price": 128278 }, "2593": { "id": 2593, @@ -40231,7 +40231,7 @@ "defence": 10 } }, - "price": 42745.5 + "price": 36412 }, "2595": { "id": 2595, @@ -40270,7 +40270,7 @@ "defence": 10 } }, - "price": 87403.5 + "price": 110395 }, "2597": { "id": 2597, @@ -40309,7 +40309,7 @@ "defence": 10 } }, - "price": 91796.5 + "price": 103581 }, "2599": { "id": 2599, @@ -40348,7 +40348,7 @@ "defence": 30 } }, - "price": 9237.5 + "price": 11706 }, "2601": { "id": 2601, @@ -40387,7 +40387,7 @@ "defence": 30 } }, - "price": 3648 + "price": 5031 }, "2603": { "id": 2603, @@ -40426,7 +40426,7 @@ "defence": 30 } }, - "price": 2687.5 + "price": 3469 }, "2605": { "id": 2605, @@ -40504,7 +40504,7 @@ "defence": 30 } }, - "price": 16788 + "price": 20671 }, "2609": { "id": 2609, @@ -40543,7 +40543,7 @@ "defence": 30 } }, - "price": 3946 + "price": 7556 }, "2611": { "id": 2611, @@ -40582,7 +40582,7 @@ "defence": 30 } }, - "price": 1.5 + "price": 10437 }, "2613": { "id": 2613, @@ -40621,7 +40621,7 @@ "defence": 30 } }, - "price": 8269.5 + "price": 11489 }, "2615": { "id": 2615, @@ -40660,7 +40660,7 @@ "defence": 40 } }, - "price": 90051.5 + "price": 78982 }, "2617": { "id": 2617, @@ -40699,7 +40699,7 @@ "defence": 40 } }, - "price": 54479.5 + "price": 41397 }, "2619": { "id": 2619, @@ -40738,7 +40738,7 @@ "defence": 40 } }, - "price": 137092 + "price": 97243 }, "2621": { "id": 2621, @@ -40777,7 +40777,7 @@ "defence": 40 } }, - "price": 165500.5 + "price": 142659 }, "2623": { "id": 2623, @@ -40816,7 +40816,7 @@ "defence": 40 } }, - "price": 44343 + "price": 38913 }, "2625": { "id": 2625, @@ -40855,7 +40855,7 @@ "defence": 40 } }, - "price": 39698.5 + "price": 39698 }, "2627": { "id": 2627, @@ -40933,7 +40933,7 @@ "defence": 40 } }, - "price": 36267.5 + "price": 36267 }, "2631": { "id": 2631, @@ -40971,7 +40971,7 @@ "slot": "head", "requirements": null }, - "price": 23736.5 + "price": 32597 }, "2633": { "id": 2633, @@ -41009,7 +41009,7 @@ "slot": "head", "requirements": null }, - "price": 8819 + "price": 19643 }, "2635": { "id": 2635, @@ -41047,7 +41047,7 @@ "slot": "head", "requirements": null }, - "price": 17500 + "price": 36045 }, "2637": { "id": 2637, @@ -41085,7 +41085,7 @@ "slot": "head", "requirements": null }, - "price": 31817 + "price": 19173 }, "2639": { "id": 2639, @@ -41123,7 +41123,7 @@ "slot": "head", "requirements": null }, - "price": 8501 + "price": 53250 }, "2641": { "id": 2641, @@ -41161,7 +41161,7 @@ "slot": "head", "requirements": null }, - "price": 11360.5 + "price": 9741 }, "2643": { "id": 2643, @@ -41237,7 +41237,7 @@ "slot": "head", "requirements": null }, - "price": 7500 + "price": 4656 }, "2647": { "id": 2647, @@ -41313,7 +41313,7 @@ "slot": "head", "requirements": null }, - "price": 4530 + "price": 3951 }, "2651": { "id": 2651, @@ -41351,7 +41351,7 @@ "slot": "head", "requirements": null }, - "price": 140800.5 + "price": 140800 }, "2653": { "id": 2653, @@ -41390,7 +41390,7 @@ "defence": 40 } }, - "price": 48765.5 + "price": 40288 }, "2655": { "id": 2655, @@ -41429,7 +41429,7 @@ "defence": 40 } }, - "price": 43853.5 + "price": 43853 }, "2657": { "id": 2657, @@ -41468,7 +41468,7 @@ "defence": 40 } }, - "price": 982002 + "price": 900001 }, "2659": { "id": 2659, @@ -41546,7 +41546,7 @@ "defence": 40 } }, - "price": 90605 + "price": 51769 }, "2663": { "id": 2663, @@ -41624,7 +41624,7 @@ "defence": 40 } }, - "price": 117750.5 + "price": 106871 }, "2667": { "id": 2667, @@ -41663,7 +41663,7 @@ "defence": 40 } }, - "price": 128944 + "price": 82942 }, "2669": { "id": 2669, @@ -41702,7 +41702,7 @@ "defence": 40 } }, - "price": 63240 + "price": 54190 }, "2671": { "id": 2671, @@ -41741,7 +41741,7 @@ "defence": 40 } }, - "price": 41996.5 + "price": 41996 }, "2673": { "id": 2673, @@ -41780,7 +41780,7 @@ "defence": 40 } }, - "price": 27255 + "price": 35649 }, "2675": { "id": 2675, @@ -41819,7 +41819,7 @@ "defence": 40 } }, - "price": 51159.5 + "price": 44680 }, "2677": { "id": 2677, @@ -41829,478 +41829,10 @@ "lowalch": 8, "highalch": 12, "weight": 0.02, + "release_date": "2004-05-05", "examine": "A clue!", "wiki_name": "Clue scroll (easy)", "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "price": 0, - "release_date": "2004-05-05" - }, - "2678": { - "id": 2678, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crate in the left-hand tower of Lumbridge Castle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crate_in_the_left-hand_tower_of_Lumbridge_Castle", - "price": 0 - }, - "2679": { - "id": 2679, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes in the goblin house near Lumbridge", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_in_the_goblin_house_near_Lumbridge", - "price": 0 - }, - "2680": { - "id": 2680, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the chests upstairs in Al Kharid Palace", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_chests_upstairs_in_Al_Kharid_Palace", - "price": 0 - }, - "2681": { - "id": 2681, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Hans to solve the clue", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Hans_to_solve_the_clue", - "price": 0 - }, - "2682": { - "id": 2682, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the most north-western house in Al Kharid", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_most_north-western_house_in_Al_Kharid", - "price": 0 - }, - "2683": { - "id": 2683, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Zeke in Al Kharid", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Zeke_in_Al_Kharid", - "price": 0 - }, - "2684": { - "id": 2684, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Ellis in Al Kharid", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Ellis_in_Al_Kharid", - "price": 0 - }, - "2685": { - "id": 2685, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes in the house near the south entrance to Varrock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_in_the_house_near_the_south_entrance_to_Varrock", - "price": 0 - }, - "2686": { - "id": 2686, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to the bartender of the Blue Moon Inn in Varrock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_the_bartender_of_the_Blue_Moon_Inn_in_Varrock", - "price": 0 - }, - "2687": { - "id": 2687, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers, upstairs in the bank to the East of Varrock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers,_upstairs_in_the_bank_to_the_East_of_Varrock", - "price": 0 - }, - "2688": { - "id": 2688, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in Horvik's armoury", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_Horvik's_armoury", - "price": 0 - }, - "2689": { - "id": 2689, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in one of Gertrude's bedrooms", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_one_of_Gertrude's_bedrooms", - "price": 0 - }, - "2690": { - "id": 2690, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the Barbarian Village helmet shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_Barbarian_Village_helmet_shop", - "price": 0 - }, - "2691": { - "id": 2691, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers upstairs in Falador's shield shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_upstairs_in_Falador's_shield_shop", - "price": 0 - }, - "2692": { - "id": 2692, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes of Falador's general store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_of_Falador's_general_store", - "price": 0 - }, - "2693": { - "id": 2693, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to the Squire in the White Knights' castle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_the_Squire_in_the_White_Knights'_castle", - "price": 0 - }, - "2694": { - "id": 2694, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in Falador's chain mail shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_Falador's_chain_mail_shop", - "price": 0 - }, - "2695": { - "id": 2695, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the Port Sarim Fishing shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_Port_Sarim_Fishing_shop", - "price": 0 - }, - "2696": { - "id": 2696, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to the bartender of the Rusty Anchor in Port Sarim", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_the_bartender_of_the_Rusty_Anchor_in_Port_Sarim", - "price": 0 - }, - "2697": { - "id": 2697, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Ned in Draynor Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Ned_in_Draynor_Village", - "price": 0 - }, - "2698": { - "id": 2698, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Doric, who lives north of Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Doric,_who_lives_north_of_Falador", - "price": 0 - }, - "2699": { - "id": 2699, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Gaius in Taverley", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Gaius_in_Taverley", - "price": 0 - }, - "2700": { - "id": 2700, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in Catherby's Archery shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_Catherby's_Archery_shop", - "price": 0 - }, - "2701": { - "id": 2701, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Arhein in Catherby", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Arhein_in_Catherby", - "price": 0 - }, - "2702": { - "id": 2702, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Sir Kay in Camelot Castle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Sir_Kay_in_Camelot_Castle", - "price": 0 - }, - "2703": { - "id": 2703, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the chest in the left-hand tower of Camelot Castle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_chest_in_the_left-hand_tower_of_Camelot_Castle", - "price": 0 - }, - "2704": { - "id": 2704, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the guard house in northern East Ardougne", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_guard_house_in_northern_East_Ardougne", - "price": 0 - }, - "2705": { - "id": 2705, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes just outside the Armour shop in East Ardougne", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_just_outside_the_Armour_shop_in_East_Ardougne", - "price": 0 - }, - "2706": { - "id": 2706, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in East Ardougne's general store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_East_Ardougne's_general_store", - "price": 0 - }, - "2707": { - "id": 2707, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the shed just north of East Ardougne", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_shed_just_north_of_East_Ardougne", - "price": 0 - }, - "2708": { - "id": 2708, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers above Varrock's shops", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_above_Varrock's_shops", - "price": 0 - }, - "2709": { - "id": 2709, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates near a cart in Varrock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_near_a_cart_in_Varrock", - "price": 0 - }, - "2710": { - "id": 2710, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers found upstairs in East Ardougne's houses", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_found_upstairs_in_East_Ardougne's_houses", - "price": 0 - }, - "2711": { - "id": 2711, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - A crate found in the tower of a church", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_A_crate_found_in_the_tower_of_a_church", - "price": 0 - }, - "2712": { - "id": 2712, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Look in the ground floor crates of houses in Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Look_in_the_ground_floor_crates_of_houses_in_Falador", - "price": 0 - }, - "2713": { - "id": 2713, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - West of the Champions' Guild", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_West_of_the_Champions'_Guild", "price": 0 }, "2714": { @@ -42331,19 +41863,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Casket_(unobtainable_item)#Champions'_Guild", "price": 0 }, - "2716": { - "id": 2716, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - South-east Varrock mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_South-east_Varrock_mine", - "price": 0 - }, "2718": { "id": 2718, "name": "Casket (easy)", @@ -42358,19 +41877,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Casket_(unobtainable_item)#Varrock_mine", "price": 0 }, - "2719": { - "id": 2719, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - At the standing stones north of Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_At_the_standing_stones_north_of_Falador", - "price": 0 - }, "2721": { "id": 2721, "name": "Casket (easy)", @@ -42393,23 +41899,10 @@ "lowalch": 8, "highalch": 12, "weight": 0.02, + "release_date": "2004-05-05", "examine": "A clue!", "wiki_name": "Clue scroll (hard)", "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "price": 0, - "release_date": "2004-05-05" - }, - "2723": { - "id": 2723, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 22.35N 19.18E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_22.35N_19.18E", "price": 0 }, "2724": { @@ -42426,345 +41919,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Casket_(discontinued)#Hard", "price": 0 }, - "2725": { - "id": 2725, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 25.03N 17.05E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_25.03N_17.05E", - "price": 0 - }, - "2727": { - "id": 2727, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 24.56N 22.28E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_24.56N_22.28E", - "price": 0 - }, - "2729": { - "id": 2729, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 25.03N 23.24E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_25.03N_23.24E", - "price": 0 - }, - "2731": { - "id": 2731, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 22.45N 26.33E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_22.45N_26.33E", - "price": 0 - }, - "2733": { - "id": 2733, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 20.05N 21.52E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_20.05N_21.52E", - "price": 0 - }, - "2735": { - "id": 2735, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 20.33N 15.48E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_20.33N_15.48E", - "price": 0 - }, - "2737": { - "id": 2737, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 21.24N 17.54E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_21.24N_17.54E", - "price": 0 - }, - "2739": { - "id": 2739, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 24.58N 18.43E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_24.58N_18.43E", - "price": 0 - }, - "2741": { - "id": 2741, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 19.43N 25.07E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_19.43N_25.07E", - "price": 0 - }, - "2743": { - "id": 2743, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.07N 22.45E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.07N_22.45E", - "price": 0 - }, - "2745": { - "id": 2745, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.43N 19.13E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.43N_19.13E", - "price": 0 - }, - "2747": { - "id": 2747, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 19.00N 27.13E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_19.00N_27.13E", - "price": 0 - }, - "2773": { - "id": 2773, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - You will need to under-cook to solve this one", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_You_will_need_to_under-cook_to_solve_this_one", - "price": 0 - }, - "2774": { - "id": 2774, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Come to the evil ledge", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Come_to_the_evil_ledge", - "price": 0 - }, - "2776": { - "id": 2776, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - I am a token of the greatest love", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_I_am_a_token_of_the_greatest_love", - "price": 0 - }, - "2778": { - "id": 2778, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - If a man carried my burden", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_If_a_man_carried_my_burden", - "price": 0 - }, - "2780": { - "id": 2780, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Aggie I see", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Aggie_I_see", - "price": 0 - }, - "2782": { - "id": 2782, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - My home is grey, and made of stone", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_My_home_is_grey,_and_made_of_stone", - "price": 0 - }, - "2783": { - "id": 2783, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The beasts to my east snap claws and tails", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_beasts_to_my_east_snap_claws_and_tails", - "price": 0 - }, - "2785": { - "id": 2785, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Four blades I have, yet draw no blood", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Four_blades_I_have,_yet_draw_no_blood", - "price": 0 - }, - "2786": { - "id": 2786, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - I lie lonely and forgotten in mid wilderness", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_I_lie_lonely_and_forgotten_in_mid_wilderness", - "price": 0 - }, - "2788": { - "id": 2788, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 46 is my number", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_46_is_my_number", - "price": 0 - }, - "2790": { - "id": 2790, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - My giant guardians below the market streets", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_My_giant_guardians_below_the_market_streets", - "price": 0 - }, - "2792": { - "id": 2792, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Snah? I feel all confused, like one of those cakes", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Snah?_I_feel_all_confused,_like_one_of_those_cakes", - "price": 0 - }, - "2793": { - "id": 2793, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2004-05-05", - "examine": "A clue!", - "wiki_name": "Clue scroll (hard)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)", - "price": 0 - }, - "2794": { - "id": 2794, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The keeper of Melzars Spare? Skeleton? Anar?", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_keeper_of_Melzars_Spare?_Skeleton?_Anar?", - "price": 0 - }, "2795": { "id": 2795, "name": "Puzzle box (hard)", @@ -42779,45 +41933,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Puzzle_box#Castle", "price": 0 }, - "2796": { - "id": 2796, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Surprising", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Surprising", - "price": 0 - }, - "2797": { - "id": 2797, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - My name is like a tree, yet it is spelt with a 'g'", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_My_name_is_like_a_tree,_yet_it_is_spelt_with_a_'g'", - "price": 0 - }, - "2799": { - "id": 2799, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Generally speaking, his nose was very bent", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Generally_speaking,_his_nose_was_very_bent", - "price": 0 - }, "2801": { "id": 2801, "name": "Clue scroll (medium)", @@ -42826,11 +41941,11 @@ "lowalch": 8, "highalch": 12, "weight": 0.02, + "release_date": "2004-05-05", "examine": "A clue!", "wiki_name": "Clue scroll (medium)", "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "price": 0, - "release_date": "2004-05-05" + "price": 0 }, "2802": { "id": 2802, @@ -42846,202 +41961,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Casket_(discontinued)#Medium", "price": 0 }, - "2803": { - "id": 2803, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 01.35S 07.28E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_01.35S_07.28E", - "price": 0 - }, - "2805": { - "id": 2805, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 01.26N 08.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_01.26N_08.01E", - "price": 0 - }, - "2807": { - "id": 2807, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 06.31N 01.46W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_06.31N_01.46W", - "price": 0 - }, - "2809": { - "id": 2809, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 00.05S 01.13E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_00.05S_01.13E", - "price": 0 - }, - "2811": { - "id": 2811, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 09.33N 02.15E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_09.33N_02.15E", - "price": 0 - }, - "2813": { - "id": 2813, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 02.50N 06.20E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_02.50N_06.20E", - "price": 0 - }, - "2815": { - "id": 2815, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 04.13N 12.45E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_04.13N_12.45E", - "price": 0 - }, - "2817": { - "id": 2817, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 04.00S 12.46E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_04.00S_12.46E", - "price": 0 - }, - "2819": { - "id": 2819, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 00.31S 17.43E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_00.31S_17.43E", - "price": 0 - }, - "2821": { - "id": 2821, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 07.33N 15.00E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_07.33N_15.00E", - "price": 0 - }, - "2823": { - "id": 2823, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 00.30N 24.16E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_00.30N_24.16E", - "price": 0 - }, - "2825": { - "id": 2825, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 05.43N 23.05E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_05.43N_23.05E", - "price": 0 - }, - "2827": { - "id": 2827, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - South of Draynor Village bank", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_South_of_Draynor_Village_bank", - "price": 0 - }, - "2829": { - "id": 2829, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium, map 2)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium,_map_2)", - "price": 0, - "release_date": "2004-05-05" - }, - "2831": { - "id": 2831, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Look for a locked chest in the town's chapel", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Look_for_a_locked_chest_in_the_town's_chapel", - "price": 0 - }, "2832": { "id": 2832, "name": "Key (medium)", @@ -43056,72 +41975,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Key_(Treasure_Trails)#Medium", "price": 0 }, - "2833": { - "id": 2833, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - In a town where the guards are armed with maces", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_In_a_town_where_the_guards_are_armed_with_maces", - "price": 0 - }, - "2835": { - "id": 2835, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - In a town where thieves steal from stalls", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_In_a_town_where_thieves_steal_from_stalls", - "price": 0 - }, - "2837": { - "id": 2837, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - In a town where everyone has perfect vision", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_In_a_town_where_everyone_has_perfect_vision", - "price": 0 - }, - "2839": { - "id": 2839, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - In a town where wizards are known to gather", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_In_a_town_where_wizards_are_known_to_gather", - "price": 0 - }, - "2841": { - "id": 2841, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to Hazelmere.", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Hazelmere.", - "price": 0, - "release_date": "2004-05-05" - }, "2842": { "id": 2842, "name": "Challenge scroll (medium)", @@ -43136,149 +41989,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Challenge_scroll#Medium", "price": 0 }, - "2843": { - "id": 2843, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - OK CO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_OK_CO", - "price": 0 - }, - "2845": { - "id": 2845, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - EEK ZERO OP", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_EEK_ZERO_OP", - "price": 0 - }, - "2847": { - "id": 2847, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - EL OW", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_EL_OW", - "price": 0 - }, - "2848": { - "id": 2848, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to Hajedy", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Hajedy", - "price": 0 - }, - "2849": { - "id": 2849, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - R AK MI", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_R_AK_MI", - "price": 0 - }, - "2851": { - "id": 2851, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - ARE COL", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_ARE_COL", - "price": 0 - }, - "2853": { - "id": 2853, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to a referee", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_a_referee", - "price": 0 - }, - "2855": { - "id": 2855, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to Donovan, the Family Handyman", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Donovan,_the_Family_Handyman", - "price": 0 - }, - "2856": { - "id": 2856, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - PEATY PERT", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_PEATY_PERT", - "price": 0 - }, - "2857": { - "id": 2857, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - GOBLIN KERN", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_GOBLIN_KERN", - "price": 0 - }, - "2858": { - "id": 2858, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - HALT US", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_HALT_US", - "price": 0 - }, "2859": { "id": 2859, "name": "Wolf bones", @@ -43295,7 +42005,7 @@ "examine": "Bones of a recently slain wolf.", "wiki_name": "Wolf bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wolf_bones", - "price": 473 + "price": 688 }, "2861": { "id": 2861, @@ -43312,7 +42022,7 @@ "examine": "I can make an ogre arrow with these.", "wiki_name": "Wolfbone arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Wolfbone_arrowtips", - "price": 54 + "price": 39 }, "2862": { "id": 2862, @@ -43330,7 +42040,7 @@ "examine": "These logs are longer than normal.", "wiki_name": "Achey tree logs", "wiki_url": "https://oldschool.runescape.wiki/w/Achey_tree_logs", - "price": 437 + "price": 369 }, "2864": { "id": 2864, @@ -43347,7 +42057,7 @@ "examine": "A wooden arrow shaft.", "wiki_name": "Ogre arrow shaft", "wiki_url": "https://oldschool.runescape.wiki/w/Ogre_arrow_shaft", - "price": 134 + "price": 93 }, "2865": { "id": 2865, @@ -43403,7 +42113,7 @@ "ranged": 30 } }, - "price": 153 + "price": 171 }, "2871": { "id": 2871, @@ -43491,7 +42201,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw chompy", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_chompy", - "price": 1725.5 + "price": 2582 }, "2878": { "id": 2878, @@ -43509,7 +42219,7 @@ "examine": "It might look delicious to an ogre.", "wiki_name": "Cooked chompy", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_chompy", - "price": 39 + "price": 111 }, "2880": { "id": 2880, @@ -43693,7 +42403,7 @@ "slot": "shield", "requirements": null }, - "price": 774 + "price": 924 }, "2892": { "id": 2892, @@ -43758,7 +42468,7 @@ "slot": "feet", "requirements": null }, - "price": 1030.5 + "price": 2322 }, "2896": { "id": 2896, @@ -43796,7 +42506,7 @@ "slot": "body", "requirements": null }, - "price": 362.5 + "price": 321 }, "2898": { "id": 2898, @@ -43834,7 +42544,7 @@ "slot": "legs", "requirements": null }, - "price": 416.5 + "price": 213 }, "2900": { "id": 2900, @@ -43872,7 +42582,7 @@ "slot": "head", "requirements": null }, - "price": 1193 + "price": 527 }, "2902": { "id": 2902, @@ -43909,7 +42619,7 @@ "slot": "hands", "requirements": null }, - "price": 2575 + "price": 2035 }, "2904": { "id": 2904, @@ -44022,7 +42732,7 @@ "slot": "legs", "requirements": null }, - "price": 489 + "price": 2569 }, "2910": { "id": 2910, @@ -44060,7 +42770,7 @@ "slot": "head", "requirements": null }, - "price": 1133 + "price": 833 }, "2912": { "id": 2912, @@ -44097,7 +42807,7 @@ "slot": "hands", "requirements": null }, - "price": 1295 + "price": 1013 }, "2914": { "id": 2914, @@ -44134,7 +42844,7 @@ "slot": "feet", "requirements": null }, - "price": 1765 + "price": 1465 }, "2916": { "id": 2916, @@ -44172,7 +42882,7 @@ "slot": "body", "requirements": null }, - "price": 1.5 + "price": 1 }, "2918": { "id": 2918, @@ -44210,7 +42920,7 @@ "slot": "legs", "requirements": null }, - "price": 595 + "price": 357 }, "2920": { "id": 2920, @@ -44248,7 +42958,7 @@ "slot": "head", "requirements": null }, - "price": 1375 + "price": 704 }, "2922": { "id": 2922, @@ -44285,7 +42995,7 @@ "slot": "hands", "requirements": null }, - "price": 1161 + "price": 1805 }, "2924": { "id": 2924, @@ -44322,7 +43032,7 @@ "slot": "feet", "requirements": null }, - "price": 1177.5 + "price": 565 }, "2926": { "id": 2926, @@ -44360,7 +43070,7 @@ "slot": "body", "requirements": null }, - "price": 105.5 + "price": 211 }, "2928": { "id": 2928, @@ -44398,7 +43108,7 @@ "slot": "legs", "requirements": null }, - "price": 169 + "price": 188 }, "2930": { "id": 2930, @@ -44436,7 +43146,7 @@ "slot": "head", "requirements": null }, - "price": 1235 + "price": 1976 }, "2932": { "id": 2932, @@ -44473,7 +43183,7 @@ "slot": "hands", "requirements": null }, - "price": 504 + "price": 279 }, "2934": { "id": 2934, @@ -44548,7 +43258,7 @@ "slot": "body", "requirements": null }, - "price": 222.5 + "price": 294 }, "2938": { "id": 2938, @@ -44586,7 +43296,7 @@ "slot": "legs", "requirements": null }, - "price": 654 + "price": 8690 }, "2940": { "id": 2940, @@ -45005,7 +43715,7 @@ } ] }, - "price": 387 + "price": 500 }, "2963": { "id": 2963, @@ -45164,7 +43874,7 @@ "examine": "A mushroom from the swamps of Mort Myre.", "wiki_name": "Mort myre fungus", "wiki_url": "https://oldschool.runescape.wiki/w/Mort_myre_fungus", - "price": 574.5 + "price": 409 }, "2972": { "id": 2972, @@ -45182,7 +43892,7 @@ "examine": "A cutting from a budding branch.", "wiki_name": "Mort myre stem", "wiki_url": "https://oldschool.runescape.wiki/w/Mort_myre_stem", - "price": 1108 + "price": 725 }, "2974": { "id": 2974, @@ -45200,7 +43910,7 @@ "examine": "A pear picked from a dying bush in Mort Myre.", "wiki_name": "Mort myre pear", "wiki_url": "https://oldschool.runescape.wiki/w/Mort_myre_pear", - "price": 3291 + "price": 3850 }, "2976": { "id": 2976, @@ -45218,7 +43928,7 @@ "examine": "Used to make sickles.", "wiki_name": "Sickle mould", "wiki_url": "https://oldschool.runescape.wiki/w/Sickle_mould", - "price": 100 + "price": 117 }, "2978": { "id": 2978, @@ -45882,7 +44592,7 @@ "slot": "hands", "requirements": null }, - "price": 8170500 + "price": 4749501 }, "2998": { "id": 2998, @@ -45900,7 +44610,7 @@ "examine": "A useful herb.", "wiki_name": "Toadflax", "wiki_url": "https://oldschool.runescape.wiki/w/Toadflax", - "price": 2951.5 + "price": 3740 }, "3000": { "id": 3000, @@ -45918,7 +44628,7 @@ "examine": "A powerful herb.", "wiki_name": "Snapdragon", "wiki_url": "https://oldschool.runescape.wiki/w/Snapdragon", - "price": 7017.5 + "price": 8221 }, "3002": { "id": 3002, @@ -45936,7 +44646,7 @@ "examine": "I need another ingredient to finish this Toadflax potion.", "wiki_name": "Toadflax potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Toadflax_potion_(unf)", - "price": 3391.5 + "price": 4022 }, "3004": { "id": 3004, @@ -45954,7 +44664,7 @@ "examine": "I need another ingredient to finish this Snapdragon potion.", "wiki_name": "Snapdragon potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Snapdragon_potion_(unf)", - "price": 7204.5 + "price": 8450 }, "3006": { "id": 3006, @@ -45986,7 +44696,7 @@ "examine": "4 doses of energy potion.", "wiki_name": "Energy potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Energy_potion#4_dose", - "price": 384 + "price": 714 }, "3010": { "id": 3010, @@ -46003,7 +44713,7 @@ "examine": "3 doses of energy potion.", "wiki_name": "Energy potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Energy_potion#3_dose", - "price": 264.5 + "price": 409 }, "3012": { "id": 3012, @@ -46037,7 +44747,7 @@ "examine": "1 dose of energy potion.", "wiki_name": "Energy potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Energy_potion#1_dose", - "price": 92.5 + "price": 92 }, "3016": { "id": 3016, @@ -46055,7 +44765,7 @@ "examine": "4 doses of super energy potion.", "wiki_name": "Super energy (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_energy#4_dose", - "price": 5493 + "price": 6784 }, "3018": { "id": 3018, @@ -46073,7 +44783,7 @@ "examine": "3 doses of super energy potion.", "wiki_name": "Super energy (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_energy#3_dose", - "price": 4068 + "price": 5000 }, "3020": { "id": 3020, @@ -46109,7 +44819,7 @@ "examine": "1 dose of super energy potion.", "wiki_name": "Super energy (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_energy#1_dose", - "price": 1522.5 + "price": 1679 }, "3024": { "id": 3024, @@ -46145,7 +44855,7 @@ "examine": "3 doses of super restore potion.", "wiki_name": "Super restore (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_restore#3_dose", - "price": 7678.5 + "price": 7678 }, "3028": { "id": 3028, @@ -46163,7 +44873,7 @@ "examine": "2 doses of super restore potion.", "wiki_name": "Super restore (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_restore#2_dose", - "price": 4856.5 + "price": 6054 }, "3030": { "id": 3030, @@ -46181,7 +44891,7 @@ "examine": "1 dose of super restore potion.", "wiki_name": "Super restore (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_restore#1_dose", - "price": 2398.5 + "price": 2772 }, "3032": { "id": 3032, @@ -46235,7 +44945,7 @@ "examine": "2 doses of Agility potion.", "wiki_name": "Agility potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Agility_potion#2_dose", - "price": 1604 + "price": 131 }, "3038": { "id": 3038, @@ -46253,7 +44963,7 @@ "examine": "1 dose of Agility potion.", "wiki_name": "Agility potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Agility_potion#1_dose", - "price": 105.5 + "price": 74 }, "3040": { "id": 3040, @@ -46271,7 +44981,7 @@ "examine": "4 doses of Magic potion.", "wiki_name": "Magic potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_potion#4_dose", - "price": 107.5 + "price": 145 }, "3042": { "id": 3042, @@ -46289,7 +44999,7 @@ "examine": "3 doses of Magic potion.", "wiki_name": "Magic potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_potion#3_dose", - "price": 76.5 + "price": 68 }, "3044": { "id": 3044, @@ -46307,7 +45017,7 @@ "examine": "2 doses of Magic potion.", "wiki_name": "Magic potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_potion#2_dose", - "price": 57.5 + "price": 22 }, "3046": { "id": 3046, @@ -46325,7 +45035,7 @@ "examine": "1 dose of Magic potion.", "wiki_name": "Magic potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_potion#1_dose", - "price": 33.5 + "price": 38 }, "3049": { "id": 3049, @@ -46343,7 +45053,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy toadflax", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_toadflax", - "price": 3018.5 + "price": 3725 }, "3051": { "id": 3051, @@ -46361,7 +45071,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy snapdragon", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_snapdragon", - "price": 7025 + "price": 8214 }, "3053": { "id": 3053, @@ -46770,7 +45480,7 @@ } ] }, - "price": 2078 + "price": 2369 }, "3094": { "id": 3094, @@ -46837,7 +45547,7 @@ } ] }, - "price": 20049.5 + "price": 20049 }, "3095": { "id": 3095, @@ -46912,7 +45622,7 @@ } ] }, - "price": 165 + "price": 37 }, "3096": { "id": 3096, @@ -46987,7 +45697,7 @@ } ] }, - "price": 8812.5 + "price": 313 }, "3097": { "id": 3097, @@ -47062,7 +45772,7 @@ } ] }, - "price": 316.5 + "price": 50 }, "3098": { "id": 3098, @@ -47212,7 +45922,7 @@ } ] }, - "price": 1338 + "price": 456 }, "3100": { "id": 3100, @@ -47287,7 +45997,7 @@ } ] }, - "price": 1714 + "price": 463 }, "3101": { "id": 3101, @@ -47362,7 +46072,7 @@ } ] }, - "price": 16000 + "price": 10650 }, "3102": { "id": 3102, @@ -47474,7 +46184,7 @@ "slot": "feet", "requirements": null }, - "price": 6168 + "price": 4732 }, "3109": { "id": 3109, @@ -47615,7 +46325,7 @@ "examine": "Large glistening bones which glow with a pale yellow aura.", "wiki_name": "Shaikahan bones", "wiki_url": "https://oldschool.runescape.wiki/w/Shaikahan_bones", - "price": 5540.5 + "price": 23350 }, "3125": { "id": 3125, @@ -47633,7 +46343,7 @@ "examine": "Fairly big bones which smell distinctly of Jogre.", "wiki_name": "Jogre bones", "wiki_url": "https://oldschool.runescape.wiki/w/Jogre_bones", - "price": 2205 + "price": 2625 }, "3127": { "id": 3127, @@ -47787,7 +46497,7 @@ "examine": "How am I supposed to eat that?!", "wiki_name": "Potato cactus", "wiki_url": "https://oldschool.runescape.wiki/w/Potato_cactus", - "price": 39.5 + "price": 32 }, "3140": { "id": 3140, @@ -47827,7 +46537,7 @@ "defence": 60 } }, - "price": 181000 + "price": 200723 }, "3142": { "id": 3142, @@ -47863,7 +46573,7 @@ "examine": "Cooked octopus. It looks very nutritious.", "wiki_name": "Cooked karambwan", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_karambwan", - "price": 505 + "price": 566 }, "3146": { "id": 3146, @@ -48009,7 +46719,7 @@ "examine": "A wide bodied and thin necked vessel, encrusted with sea salt.", "wiki_name": "Karambwan vessel (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Karambwan_vessel#Empty", - "price": 1614 + "price": 1185 }, "3159": { "id": 3159, @@ -48027,7 +46737,7 @@ "examine": "This Karambwan Vessel is loaded with Karambwanji.", "wiki_name": "Karambwan vessel (Baited)", "wiki_url": "https://oldschool.runescape.wiki/w/Karambwan_vessel#Baited", - "price": 2017 + "price": 1597 }, "3161": { "id": 3161, @@ -48058,7 +46768,7 @@ "examine": "You swear you had more than three slices before.", "wiki_name": "Sliced banana", "wiki_url": "https://oldschool.runescape.wiki/w/Sliced_banana", - "price": 90 + "price": 14 }, "3164": { "id": 3164, @@ -48724,7 +47434,7 @@ "examine": "These are small monkey bones.", "wiki_name": "Monkey bones", "wiki_url": "https://oldschool.runescape.wiki/w/Monkey_bones", - "price": 504.5 + "price": 504 }, "3185": { "id": 3185, @@ -48784,7 +47494,7 @@ "examine": "A spirit soaked piece of silk which can be used to remove poison.", "wiki_name": "Cleaning cloth", "wiki_url": "https://oldschool.runescape.wiki/w/Cleaning_cloth", - "price": 342 + "price": 197 }, "3190": { "id": 3190, @@ -48852,7 +47562,7 @@ } ] }, - "price": 5474.5 + "price": 4003 }, "3192": { "id": 3192, @@ -48920,7 +47630,7 @@ } ] }, - "price": 10 + "price": 105 }, "3194": { "id": 3194, @@ -48988,7 +47698,7 @@ } ] }, - "price": 3256.5 + "price": 1434 }, "3196": { "id": 3196, @@ -49057,7 +47767,7 @@ } ] }, - "price": 3501 + "price": 2057 }, "3198": { "id": 3198, @@ -49126,7 +47836,7 @@ } ] }, - "price": 15512.5 + "price": 11740 }, "3200": { "id": 3200, @@ -49195,7 +47905,7 @@ } ] }, - "price": 26487.5 + "price": 10709 }, "3202": { "id": 3202, @@ -49264,7 +47974,7 @@ } ] }, - "price": 38511.5 + "price": 38511 }, "3204": { "id": 3204, @@ -49333,7 +48043,7 @@ } ] }, - "price": 150078.5 + "price": 150078 }, "3206": { "id": 3206, @@ -49428,7 +48138,7 @@ "examine": "Some limestone.", "wiki_name": "Limestone", "wiki_url": "https://oldschool.runescape.wiki/w/Limestone", - "price": 105 + "price": 143 }, "3213": { "id": 3213, @@ -49488,7 +48198,7 @@ "examine": "An empty barrel.", "wiki_name": "Barrel", "wiki_url": "https://oldschool.runescape.wiki/w/Barrel", - "price": 2215 + "price": 1476 }, "3218": { "id": 3218, @@ -49623,7 +48333,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Cooked rabbit", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_rabbit", - "price": 217 + "price": 1000 }, "3230": { "id": 3230, @@ -49715,7 +48425,7 @@ "examine": "Bark from a hollow tree.", "wiki_name": "Bark", "wiki_url": "https://oldschool.runescape.wiki/w/Bark", - "price": 80.5 + "price": 80 }, "3241": { "id": 3241, @@ -49978,7 +48688,7 @@ "examine": "That used to be a vampyre!", "wiki_name": "Vampyre dust", "wiki_url": "https://oldschool.runescape.wiki/w/Vampyre_dust", - "price": 886 + "price": 1431 }, "3327": { "id": 3327, @@ -50016,7 +48726,7 @@ "slot": "head", "requirements": null }, - "price": 25.5 + "price": 25 }, "3329": { "id": 3329, @@ -50092,7 +48802,7 @@ "slot": "head", "requirements": null }, - "price": 12 + "price": 33 }, "3333": { "id": 3333, @@ -50168,7 +48878,7 @@ "slot": "head", "requirements": null }, - "price": 14.5 + "price": 5 }, "3337": { "id": 3337, @@ -50244,7 +48954,7 @@ "slot": "head", "requirements": null }, - "price": 71 + "price": 301 }, "3341": { "id": 3341, @@ -50282,7 +48992,7 @@ "slot": "head", "requirements": null }, - "price": 589 + "price": 491 }, "3343": { "id": 3343, @@ -50320,7 +49030,7 @@ "slot": "head", "requirements": null }, - "price": 9500 + "price": 6062 }, "3345": { "id": 3345, @@ -50338,7 +49048,7 @@ "examine": "A large 'Myre' coloured blamish snail shell, looks protective.", "wiki_name": "Blamish myre shell (round)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_myre_shell_(round)", - "price": 111 + "price": 582 }, "3347": { "id": 3347, @@ -50356,7 +49066,7 @@ "examine": "A large red and black blamish snail shell, looks protective.", "wiki_name": "Blamish red shell (round)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_red_shell_(round)", - "price": 281 + "price": 347 }, "3349": { "id": 3349, @@ -50374,7 +49084,7 @@ "examine": "A large muddy yellow coloured blamish snail shell, looks protective.", "wiki_name": "Blamish ochre shell (round)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_ochre_shell_(round)", - "price": 84.5 + "price": 84 }, "3351": { "id": 3351, @@ -50392,7 +49102,7 @@ "examine": "A large blue coloured blamish snail shell, looks protective.", "wiki_name": "Blamish blue shell (round)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_blue_shell_(round)", - "price": 927 + "price": 10000 }, "3353": { "id": 3353, @@ -50410,7 +49120,7 @@ "examine": "A large bark coloured blamish snail shell, looks protective.", "wiki_name": "Blamish bark shell", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_bark_shell", - "price": 3189 + "price": 4582 }, "3355": { "id": 3355, @@ -50428,7 +49138,7 @@ "examine": "A large 'Myre' coloured blamish snail shell, looks protective.", "wiki_name": "Blamish myre shell (pointed)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_myre_shell_(pointed)", - "price": 244.5 + "price": 3750 }, "3357": { "id": 3357, @@ -50446,7 +49156,7 @@ "examine": "A large red coloured blamish snail shell, looks protective.", "wiki_name": "Blamish red shell (pointed)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_red_shell_(pointed)", - "price": 1008.5 + "price": 691 }, "3359": { "id": 3359, @@ -50464,7 +49174,7 @@ "examine": "A large ochre coloured blamish snail shell, looks protective.", "wiki_name": "Blamish ochre shell (pointed)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_ochre_shell_(pointed)", - "price": 363.5 + "price": 5144 }, "3361": { "id": 3361, @@ -50482,7 +49192,7 @@ "examine": "A large blue coloured blamish snail shell, looks protective.", "wiki_name": "Blamish blue shell (pointed)", "wiki_url": "https://oldschool.runescape.wiki/w/Blamish_blue_shell_(pointed)", - "price": 5923.5 + "price": 3765 }, "3363": { "id": 3363, @@ -50500,7 +49210,7 @@ "examine": "The thin, slimy corpse of a deceased giant snail.", "wiki_name": "Thin snail", "wiki_url": "https://oldschool.runescape.wiki/w/Thin_snail", - "price": 663.5 + "price": 663 }, "3365": { "id": 3365, @@ -50518,7 +49228,7 @@ "examine": "The lean, slimy corpse of a deceased giant snail.", "wiki_name": "Lean snail", "wiki_url": "https://oldschool.runescape.wiki/w/Lean_snail", - "price": 1371 + "price": 3044 }, "3367": { "id": 3367, @@ -50536,7 +49246,7 @@ "examine": "The fat, slimy corpse of a deceased giant snail.", "wiki_name": "Fat snail", "wiki_url": "https://oldschool.runescape.wiki/w/Fat_snail", - "price": 1837 + "price": 3388 }, "3369": { "id": 3369, @@ -50554,7 +49264,7 @@ "examine": "A succulently slimy slice of sumptuous snail.", "wiki_name": "Thin snail meat", "wiki_url": "https://oldschool.runescape.wiki/w/Thin_snail_meat", - "price": 1699 + "price": 1132 }, "3371": { "id": 3371, @@ -50590,7 +49300,7 @@ "examine": "A succulently slimy slice of sumptuous snail.", "wiki_name": "Fat snail meat", "wiki_url": "https://oldschool.runescape.wiki/w/Fat_snail_meat", - "price": 4023 + "price": 2536 }, "3375": { "id": 3375, @@ -50640,7 +49350,7 @@ "examine": "A slime covered eel - yuck!", "wiki_name": "Raw slimy eel", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_slimy_eel", - "price": 687.5 + "price": 1039 }, "3381": { "id": 3381, @@ -50658,7 +49368,7 @@ "examine": "A cooked slimy eel - not delicious, but pretty nutritious.", "wiki_name": "Cooked slimy eel", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_slimy_eel", - "price": 115 + "price": 69 }, "3383": { "id": 3383, @@ -50715,7 +49425,7 @@ "defence": 40 } }, - "price": 5750 + "price": 9396 }, "3387": { "id": 3387, @@ -50756,7 +49466,7 @@ "defence": 40 } }, - "price": 29425.5 + "price": 47500 }, "3389": { "id": 3389, @@ -50797,7 +49507,7 @@ "defence": 40 } }, - "price": 23460 + "price": 32383 }, "3391": { "id": 3391, @@ -50838,7 +49548,7 @@ "defence": 40 } }, - "price": 2556 + "price": 2278 }, "3393": { "id": 3393, @@ -50879,7 +49589,7 @@ "defence": 40 } }, - "price": 2543.5 + "price": 13796 }, "3395": { "id": 3395, @@ -50911,7 +49621,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Loar remains", "wiki_url": "https://oldschool.runescape.wiki/w/Loar_remains", - "price": 25.5 + "price": 25 }, "3398": { "id": 3398, @@ -50929,7 +49639,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Phrin remains", "wiki_url": "https://oldschool.runescape.wiki/w/Phrin_remains", - "price": 2178 + "price": 6104 }, "3400": { "id": 3400, @@ -50965,7 +49675,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Asyn remains", "wiki_url": "https://oldschool.runescape.wiki/w/Asyn_remains", - "price": 3133.5 + "price": 4986 }, "3404": { "id": 3404, @@ -50983,7 +49693,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Fiyr remains", "wiki_url": "https://oldschool.runescape.wiki/w/Fiyr_remains", - "price": 7935.5 + "price": 5571 }, "3406": { "id": 3406, @@ -51001,7 +49711,7 @@ "examine": "I need another ingredient to finish this potion.", "wiki_name": "Unfinished potion", "wiki_url": "https://oldschool.runescape.wiki/w/Unfinished_potion", - "price": 166.5 + "price": 274 }, "3408": { "id": 3408, @@ -51019,7 +49729,7 @@ "examine": "4 doses serum 207 as described in Herbi Flax's diary.", "wiki_name": "Serum 207 (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Serum_207#4_dose", - "price": 17.5 + "price": 7 }, "3410": { "id": 3410, @@ -51037,7 +49747,7 @@ "examine": "3 doses serum 207 as described in Herbi Flax's diary.", "wiki_name": "Serum 207 (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Serum_207#3_dose", - "price": 8 + "price": 10 }, "3412": { "id": 3412, @@ -51073,7 +49783,7 @@ "examine": "1 dose serum 207 as described in Herbi Flax's diary.", "wiki_name": "Serum 207 (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Serum_207#1_dose", - "price": 18 + "price": 10 }, "3416": { "id": 3416, @@ -51147,7 +49857,7 @@ "examine": "A well carved limestone brick.", "wiki_name": "Limestone brick", "wiki_url": "https://oldschool.runescape.wiki/w/Limestone_brick", - "price": 190 + "price": 170 }, "3422": { "id": 3422, @@ -51165,7 +49875,7 @@ "examine": "4 doses of olive oil.", "wiki_name": "Olive oil (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Olive_oil#4_dose", - "price": 44.5 + "price": 201 }, "3424": { "id": 3424, @@ -51201,7 +49911,7 @@ "examine": "2 doses of olive oil.", "wiki_name": "Olive oil (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Olive_oil#2_dose", - "price": 151.5 + "price": 35 }, "3428": { "id": 3428, @@ -51219,7 +49929,7 @@ "examine": "1 dose of olive oil.", "wiki_name": "Olive oil (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Olive_oil#1_dose", - "price": 136 + "price": 22 }, "3430": { "id": 3430, @@ -51237,7 +49947,7 @@ "examine": "4 doses of sacred Oil.", "wiki_name": "Sacred oil (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sacred_oil#4_dose", - "price": 3235 + "price": 2352 }, "3432": { "id": 3432, @@ -51255,7 +49965,7 @@ "examine": "3 doses of sacred Oil.", "wiki_name": "Sacred oil (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sacred_oil#3_dose", - "price": 2118 + "price": 1682 }, "3434": { "id": 3434, @@ -51273,7 +49983,7 @@ "examine": "2 doses of sacred Oil.", "wiki_name": "Sacred oil (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sacred_oil#2_dose", - "price": 1514.5 + "price": 801 }, "3436": { "id": 3436, @@ -51309,7 +50019,7 @@ "examine": "Logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Pyre_logs", - "price": 4461 + "price": 1732 }, "3440": { "id": 3440, @@ -51327,7 +50037,7 @@ "examine": "Oak logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Oak pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_pyre_logs", - "price": 1572.5 + "price": 2100 }, "3442": { "id": 3442, @@ -51345,7 +50055,7 @@ "examine": "Willow logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Willow pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_pyre_logs", - "price": 1890 + "price": 5727 }, "3444": { "id": 3444, @@ -51363,7 +50073,7 @@ "examine": "Maple logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Maple pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_pyre_logs", - "price": 2642.5 + "price": 1460 }, "3446": { "id": 3446, @@ -51381,7 +50091,7 @@ "examine": "Yew logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Yew pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_pyre_logs", - "price": 2247.5 + "price": 1056 }, "3448": { "id": 3448, @@ -51399,7 +50109,7 @@ "examine": "Magic logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Magic pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_pyre_logs", - "price": 4799.5 + "price": 3083 }, "3450": { "id": 3450, @@ -51697,7 +50407,7 @@ "examine": "Amazingly untouched by time.", "wiki_name": "Fine cloth", "wiki_url": "https://oldschool.runescape.wiki/w/Fine_cloth", - "price": 7243.5 + "price": 11500 }, "3472": { "id": 3472, @@ -51736,7 +50446,7 @@ "defence": 10 } }, - "price": 3250.5 + "price": 3250 }, "3473": { "id": 3473, @@ -51775,7 +50485,7 @@ "defence": 10 } }, - "price": 7718.5 + "price": 6914 }, "3474": { "id": 3474, @@ -51814,7 +50524,7 @@ "defence": 30 } }, - "price": 3318 + "price": 4757 }, "3475": { "id": 3475, @@ -51853,7 +50563,7 @@ "defence": 30 } }, - "price": 3887.5 + "price": 5892 }, "3476": { "id": 3476, @@ -52009,7 +50719,7 @@ "defence": 40 } }, - "price": 43354.5 + "price": 37303 }, "3480": { "id": 3480, @@ -52087,7 +50797,7 @@ "defence": 40 } }, - "price": 7222501.5 + "price": 6991650 }, "3483": { "id": 3483, @@ -52126,7 +50836,7 @@ "defence": 40 } }, - "price": 6909082 + "price": 7365628 }, "3485": { "id": 3485, @@ -52165,7 +50875,7 @@ "defence": 40 } }, - "price": 1774999.5 + "price": 1870001 }, "3486": { "id": 3486, @@ -52204,7 +50914,7 @@ "defence": 40 } }, - "price": 6070327.5 + "price": 6300001 }, "3488": { "id": 3488, @@ -52243,671 +50953,7 @@ "defence": 40 } }, - "price": 6740000.5 - }, - "3490": { - "id": 3490, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers of houses in Burthorpe", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_of_houses_in_Burthorpe", - "price": 0 - }, - "3491": { - "id": 3491, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in a house in Yanille that has a piano", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_a_house_in_Yanille_that_has_a_piano", - "price": 0 - }, - "3492": { - "id": 3492, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in the ground floor of a shop in Yanille", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_the_ground_floor_of_a_shop_in_Yanille", - "price": 0 - }, - "3493": { - "id": 3493, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the chests in the Dwarven Mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_chests_in_the_Dwarven_Mine", - "price": 0 - }, - "3494": { - "id": 3494, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search through some drawers in the upstairs of a house in Rimmington", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_through_some_drawers_in_the_upstairs_of_a_house_in_Rimmington", - "price": 0 - }, - "3495": { - "id": 3495, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search chests found in the upstairs of shops in Port Sarim", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_chests_found_in_the_upstairs_of_shops_in_Port_Sarim", - "price": 0 - }, - "3496": { - "id": 3496, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - One of the sailors in Port Sarim", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_One_of_the_sailors_in_Port_Sarim", - "price": 0 - }, - "3497": { - "id": 3497, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search through chests found in the upstairs of houses in eastern Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_through_chests_found_in_the_upstairs_of_houses_in_eastern_Falador", - "price": 0 - }, - "3498": { - "id": 3498, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers downstairs of houses in the eastern part of Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_downstairs_of_houses_in_the_eastern_part_of_Falador", - "price": 0 - }, - "3499": { - "id": 3499, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes in a shop in Taverley", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_in_a_shop_in_Taverley", - "price": 0 - }, - "3500": { - "id": 3500, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search through some drawers found in Taverley's houses", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_through_some_drawers_found_in_Taverley's_houses", - "price": 0 - }, - "3501": { - "id": 3501, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes in one of the tents in Al Kharid", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_in_one_of_the_tents_in_Al_Kharid", - "price": 0 - }, - "3502": { - "id": 3502, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in Draynor Manor", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_Draynor_Manor", - "price": 0 - }, - "3503": { - "id": 3503, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the tents in the Imperial Guard camp in Burthorpe for some boxes", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_tents_in_the_Imperial_Guard_camp_in_Burthorpe_for_some_boxes", - "price": 0 - }, - "3504": { - "id": 3504, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crate near a cart in Port Khazard", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crate_near_a_cart_in_Port_Khazard", - "price": 0 - }, - "3505": { - "id": 3505, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers on the ground floor of a building facing Ardougne's market", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_on_the_ground_floor_of_a_building_facing_Ardougne's_market", - "price": 0 - }, - "3506": { - "id": 3506, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search for a crate in a building in Hemenster", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_for_a_crate_in_a_building_in_Hemenster", - "price": 0 - }, - "3507": { - "id": 3507, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in the upstairs of a house in Catherby", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_the_upstairs_of_a_house_in_Catherby", - "price": 0 - }, - "3508": { - "id": 3508, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search upstairs in the houses of Seers' Village for some drawers", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_upstairs_in_the_houses_of_Seers'_Village_for_some_drawers", - "price": 0 - }, - "3509": { - "id": 3509, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search for a crate on the ground floor of a house in Seers' Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_for_a_crate_on_the_ground_floor_of_a_house_in_Seers'_Village", - "price": 0 - }, - "3510": { - "id": 3510, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dig near some giant mushrooms", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dig_near_some_giant_mushrooms", - "price": 0 - }, - "3512": { - "id": 3512, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in a house in Draynor Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_a_house_in_Draynor_Village", - "price": 0 - }, - "3513": { - "id": 3513, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to the staff of Sinclair mansion", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_the_staff_of_Sinclair_mansion", - "price": 0 - }, - "3514": { - "id": 3514, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Someone watching the fights in the Emir's Arena", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Someone_watching_the_fights_in_the_Emir's_Arena", - "price": 0 - }, - "3515": { - "id": 3515, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search for a crate in Varrock Castle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_for_a_crate_in_Varrock_Castle", - "price": 0 - }, - "3516": { - "id": 3516, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Brother Galahad's house", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Brother_Galahad's_house", - "price": 0 - }, - "3518": { - "id": 3518, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Directly behind the Wizards' Tower", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Directly_behind_the_Wizards'_Tower", - "price": 0 - }, - "3520": { - "id": 3520, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Yanille anvils", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Yanille_anvils", - "price": 0 - }, - "3522": { - "id": 3522, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - In the western section of West Ardougne", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_In_the_western_section_of_West_Ardougne", - "price": 0 - }, - "3524": { - "id": 3524, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - In a crate by the stairs to the Observatory Dungeon", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_In_a_crate_by_the_stairs_to_the_Observatory_Dungeon", - "price": 0 - }, - "3525": { - "id": 3525, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - In a crate at the Dark Warriors' Fortress", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_In_a_crate_at_the_Dark_Warriors'_Fortress", - "price": 0 - }, - "3526": { - "id": 3526, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.03N 14.07E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.03N_14.07E", - "price": 0 - }, - "3528": { - "id": 3528, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.31N 12.54E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.31N_12.54E", - "price": 0 - }, - "3530": { - "id": 3530, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 05.50S 10.05E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_05.50S_10.05E", - "price": 0 - }, - "3532": { - "id": 3532, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 08.26S 10.28E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_08.26S_10.28E", - "price": 0 - }, - "3534": { - "id": 3534, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 07.43S 12.26E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_07.43S_12.26E", - "price": 0 - }, - "3536": { - "id": 3536, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 08.05S 15.56E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_08.05S_15.56E", - "price": 0 - }, - "3538": { - "id": 3538, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 04.16S 16.16E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_04.16S_16.16E", - "price": 0 - }, - "3540": { - "id": 3540, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 06.11S 15.07E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_06.11S_15.07E", - "price": 0 - }, - "3542": { - "id": 3542, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 05.37N 31.15E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_05.37N_31.15E", - "price": 0 - }, - "3544": { - "id": 3544, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 08.03N 31.16E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_08.03N_31.16E", - "price": 0 - }, - "3546": { - "id": 3546, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 04.03S 03.11E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_04.03S_03.11E", - "price": 0 - }, - "3548": { - "id": 3548, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 04.05S 04.24E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_04.05S_04.24E", - "price": 0 - }, - "3550": { - "id": 3550, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2004-10-26", - "examine": "A clue!", - "wiki_name": "Clue scroll (hard, coordinates 26)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard,_coordinates_26)", - "price": 0 - }, - "3552": { - "id": 3552, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 03.45S 22.45E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_03.45S_22.45E", - "price": 0 - }, - "3554": { - "id": 3554, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 02.39N 29.58E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_02.39N_29.58E", - "price": 0 - }, - "3556": { - "id": 3556, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 18.50N 20.26E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_18.50N_20.26E", - "price": 0 - }, - "3558": { - "id": 3558, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 24.24N 26.24E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_24.24N_26.24E", - "price": 0 - }, - "3560": { - "id": 3560, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 00.00N 07.13W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_00.00N_07.13W", - "price": 0 - }, - "3562": { - "id": 3562, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 01.24N 08.05W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_01.24N_08.05W", - "price": 0 - }, - "3564": { - "id": 3564, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - A general who sets a 'shining' example", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_A_general_who_sets_a_'shining'_example", - "price": 0 + "price": 6083984 }, "3565": { "id": 3565, @@ -52923,32 +50969,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Puzzle_box#Tree", "price": 0 }, - "3566": { - "id": 3566, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Often sought out by scholars of histories past", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Often_sought_out_by_scholars_of_histories_past", - "price": 0 - }, - "3568": { - "id": 3568, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Identify the back of this over-acting brother", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Identify_the_back_of_this_over-acting_brother", - "price": 0 - }, "3569": { "id": 3569, "name": "Puzzle box (hard)", @@ -52963,422 +50983,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Puzzle_box#Troll", "price": 0 }, - "3570": { - "id": 3570, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - This aviator is at the peak of his profession", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_This_aviator_is_at_the_peak_of_his_profession", - "price": 0 - }, - "3572": { - "id": 3572, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Read 'How to breed scorpions' By OWThathurt", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Read_'How_to_breed_scorpions'_By_OWThathurt", - "price": 0 - }, - "3573": { - "id": 3573, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - A great view - watch the rapidly drying hides get splashed", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_A_great_view_-_watch_the_rapidly_drying_hides_get_splashed", - "price": 0 - }, - "3574": { - "id": 3574, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Must be full of railings", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Must_be_full_of_railings", - "price": 0 - }, - "3575": { - "id": 3575, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Citric cellar", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Citric_cellar", - "price": 0 - }, - "3579": { - "id": 3579, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - When no weapons are at hand", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_When_no_weapons_are_at_hand", - "price": 0 - }, - "3580": { - "id": 3580, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Mine was the strangest birth under the sun", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Mine_was_the_strangest_birth_under_the_sun", - "price": 0 - }, - "3582": { - "id": 3582, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 11.03N 31.20E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_11.03N_31.20E", - "price": 0 - }, - "3584": { - "id": 3584, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 07.05N 30.56E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_07.05N_30.56E", - "price": 0 - }, - "3586": { - "id": 3586, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 11.41N 14.58E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_11.41N_14.58E", - "price": 0 - }, - "3588": { - "id": 3588, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 00.13S 13.58E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_00.13S_13.58E", - "price": 0 - }, - "3590": { - "id": 3590, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 00.18S 09.28E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_00.18S_09.28E", - "price": 0 - }, - "3592": { - "id": 3592, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 08.33N 01.39W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_08.33N_01.39W", - "price": 0 - }, - "3594": { - "id": 3594, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 11.05N 00.45W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_11.05N_00.45W", - "price": 0 - }, - "3596": { - "id": 3596, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - West of the Crafting Guild", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_West_of_the_Crafting_Guild", - "price": 0 - }, - "3598": { - "id": 3598, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - The crate in McGrubor's Wood", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_The_crate_in_McGrubor's_Wood", - "price": 0 - }, - "3599": { - "id": 3599, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - North of the Tower of Life", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_North_of_the_Tower_of_Life", - "price": 0 - }, - "3601": { - "id": 3601, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - The crate west of the Clock Tower", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_The_crate_west_of_the_Clock_Tower", - "price": 0 - }, - "3602": { - "id": 3602, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Behind the Chemist's house in Rimmington", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Behind_the_Chemist's_house_in_Rimmington", - "price": 0 - }, - "3604": { - "id": 3604, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - In a village made of bamboo", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_In_a_village_made_of_bamboo", - "price": 0 - }, - "3605": { - "id": 3605, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Search the upstairs drawers of a house", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Search_the_upstairs_drawers_of_a_house", - "price": 0 - }, - "3607": { - "id": 3607, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Go to the village being attacked by trolls", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Go_to_the_village_being_attacked_by_trolls", - "price": 0 - }, - "3609": { - "id": 3609, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - A town with a different sort of night-life is your destination", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_A_town_with_a_different_sort_of_night-life_is_your_destination", - "price": 0 - }, - "3610": { - "id": 3610, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Find a crate close to the monks that like to paaarty!", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Find_a_crate_close_to_the_monks_that_like_to_paaarty!", - "price": 0 - }, - "3611": { - "id": 3611, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - ME IF", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_ME_IF", - "price": 0 - }, - "3612": { - "id": 3612, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - BAIL TRIMS", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_BAIL_TRIMS", - "price": 0 - }, - "3613": { - "id": 3613, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - A BAS", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_A_BAS", - "price": 0 - }, - "3614": { - "id": 3614, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to Ulizius", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Ulizius", - "price": 0 - }, - "3615": { - "id": 3615, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to Roavar", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Roavar", - "price": 0 - }, - "3616": { - "id": 3616, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - AHA JAR", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_AHA_JAR", - "price": 0 - }, - "3617": { - "id": 3617, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Speak to Kangai Mau", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Kangai_Mau", - "price": 0 - }, - "3618": { - "id": 3618, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - ICY FE", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_ICY_FE", - "price": 0 - }, "3667": { "id": 3667, "name": "Boss helper tool", @@ -54445,7 +52049,7 @@ "defence": 45 } }, - "price": 42850.5 + "price": 49095 }, "3751": { "id": 3751, @@ -54485,7 +52089,7 @@ "defence": 45 } }, - "price": 80699.5 + "price": 80699 }, "3753": { "id": 3753, @@ -54525,7 +52129,7 @@ "defence": 45 } }, - "price": 70000 + "price": 56987 }, "3755": { "id": 3755, @@ -54565,7 +52169,7 @@ "defence": 45 } }, - "price": 43093.5 + "price": 43093 }, "3757": { "id": 3757, @@ -54710,7 +52314,7 @@ "slot": "cape", "requirements": null }, - "price": 5615.5 + "price": 769 }, "3761": { "id": 3761, @@ -54786,7 +52390,7 @@ "slot": "cape", "requirements": null }, - "price": 562 + "price": 1638 }, "3765": { "id": 3765, @@ -54824,7 +52428,7 @@ "slot": "cape", "requirements": null }, - "price": 2215.5 + "price": 879 }, "3767": { "id": 3767, @@ -54900,7 +52504,7 @@ "slot": "body", "requirements": null }, - "price": 1265 + "price": 589 }, "3771": { "id": 3771, @@ -54938,7 +52542,7 @@ "slot": "body", "requirements": null }, - "price": 4.5 + "price": 4 }, "3773": { "id": 3773, @@ -55014,7 +52618,7 @@ "slot": "body", "requirements": null }, - "price": 907.5 + "price": 389 }, "3777": { "id": 3777, @@ -55052,7 +52656,7 @@ "slot": "cape", "requirements": null }, - "price": 788 + "price": 501 }, "3779": { "id": 3779, @@ -55090,7 +52694,7 @@ "slot": "cape", "requirements": null }, - "price": 959.5 + "price": 670 }, "3781": { "id": 3781, @@ -55128,7 +52732,7 @@ "slot": "cape", "requirements": null }, - "price": 1023 + "price": 1581 }, "3783": { "id": 3783, @@ -55166,7 +52770,7 @@ "slot": "cape", "requirements": null }, - "price": 594.5 + "price": 298 }, "3785": { "id": 3785, @@ -55242,7 +52846,7 @@ "slot": "cape", "requirements": null }, - "price": 854.5 + "price": 960 }, "3789": { "id": 3789, @@ -55280,7 +52884,7 @@ "slot": "cape", "requirements": null }, - "price": 2907.5 + "price": 1981 }, "3791": { "id": 3791, @@ -55318,7 +52922,7 @@ "slot": "feet", "requirements": null }, - "price": 5077 + "price": 412 }, "3793": { "id": 3793, @@ -55356,7 +52960,7 @@ "slot": "body", "requirements": null }, - "price": 330.5 + "price": 1849 }, "3795": { "id": 3795, @@ -55394,7 +52998,7 @@ "slot": "legs", "requirements": null }, - "price": 1312 + "price": 322 }, "3797": { "id": 3797, @@ -55432,7 +53036,7 @@ "slot": "head", "requirements": null }, - "price": 1038 + "price": 334 }, "3799": { "id": 3799, @@ -55470,7 +53074,7 @@ "slot": "hands", "requirements": null }, - "price": 72.5 + "price": 1118 }, "3801": { "id": 3801, @@ -55488,7 +53092,7 @@ "examine": "A lot of beer in a barrel.", "wiki_name": "Keg of beer", "wiki_url": "https://oldschool.runescape.wiki/w/Keg_of_beer", - "price": 724 + "price": 933 }, "3803": { "id": 3803, @@ -55506,7 +53110,7 @@ "examine": "Frothy and alcoholic.", "wiki_name": "Beer tankard", "wiki_url": "https://oldschool.runescape.wiki/w/Beer_tankard", - "price": 254 + "price": 338 }, "3805": { "id": 3805, @@ -55539,7 +53143,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Saradomin page 1", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_page_1", - "price": 6500 + "price": 2530 }, "3828": { "id": 3828, @@ -55556,7 +53160,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Saradomin page 2", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_page_2", - "price": 2083.5 + "price": 3139 }, "3829": { "id": 3829, @@ -55573,7 +53177,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Saradomin page 3", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_page_3", - "price": 1466.5 + "price": 2332 }, "3830": { "id": 3830, @@ -55590,7 +53194,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Saradomin page 4", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_page_4", - "price": 4549.5 + "price": 4549 }, "3831": { "id": 3831, @@ -55607,7 +53211,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Zamorak page 1", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_page_1", - "price": 8502.5 + "price": 8502 }, "3832": { "id": 3832, @@ -55624,7 +53228,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Zamorak page 2", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_page_2", - "price": 11561 + "price": 6712 }, "3833": { "id": 3833, @@ -55641,7 +53245,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Zamorak page 3", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_page_3", - "price": 5904.5 + "price": 5904 }, "3834": { "id": 3834, @@ -55658,7 +53262,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Zamorak page 4", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_page_4", - "price": 9983 + "price": 6613 }, "3835": { "id": 3835, @@ -55675,7 +53279,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Guthix page 1", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_page_1", - "price": 4500 + "price": 2029 }, "3836": { "id": 3836, @@ -55692,7 +53296,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Guthix page 2", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_page_2", - "price": 1145 + "price": 1907 }, "3837": { "id": 3837, @@ -55726,7 +53330,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Guthix page 4", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_page_4", - "price": 4631 + "price": 3395 }, "3839": { "id": 3839, @@ -56038,7 +53642,7 @@ "slot": "neck", "requirements": null }, - "price": 726.5 + "price": 726 }, "3855": { "id": 3855, @@ -56626,7 +54230,7 @@ "examine": "These are monkey nuts. Yummy.", "wiki_name": "Monkey nuts", "wiki_url": "https://oldschool.runescape.wiki/w/Monkey_nuts", - "price": 313.5 + "price": 164 }, "4014": { "id": 4014, @@ -56644,7 +54248,7 @@ "examine": "It's a monkey bar. It looks highly nutritious.", "wiki_name": "Monkey bar", "wiki_url": "https://oldschool.runescape.wiki/w/Monkey_bar", - "price": 257 + "price": 28 }, "4016": { "id": 4016, @@ -56662,7 +54266,7 @@ "examine": "It's a bowl full of mushy banana.", "wiki_name": "Banana stew", "wiki_url": "https://oldschool.runescape.wiki/w/Banana_stew", - "price": 2250 + "price": 625 }, "4018": { "id": 4018, @@ -57735,7 +55339,7 @@ "defence": 20 } }, - "price": 13567.5 + "price": 13567 }, "4091": { "id": 4091, @@ -57858,7 +55462,7 @@ "defence": 20 } }, - "price": 6455 + "price": 5404 }, "4097": { "id": 4097, @@ -57899,7 +55503,7 @@ "defence": 20 } }, - "price": 7179 + "price": 9022 }, "4099": { "id": 4099, @@ -57940,7 +55544,7 @@ "defence": 20 } }, - "price": 73888.5 + "price": 73888 }, "4101": { "id": 4101, @@ -57981,7 +55585,7 @@ "defence": 20 } }, - "price": 71734.5 + "price": 71734 }, "4103": { "id": 4103, @@ -58063,7 +55667,7 @@ "defence": 20 } }, - "price": 6627.5 + "price": 17500 }, "4107": { "id": 4107, @@ -58104,7 +55708,7 @@ "defence": 20 } }, - "price": 101111 + "price": 104564 }, "4109": { "id": 4109, @@ -58186,7 +55790,7 @@ "defence": 20 } }, - "price": 71134.5 + "price": 71134 }, "4113": { "id": 4113, @@ -58227,7 +55831,7 @@ "defence": 20 } }, - "price": 48749.5 + "price": 48749 }, "4115": { "id": 4115, @@ -58268,7 +55872,7 @@ "defence": 20 } }, - "price": 6476.5 + "price": 8151 }, "4117": { "id": 4117, @@ -58309,7 +55913,7 @@ "defence": 20 } }, - "price": 14966.5 + "price": 17040 }, "4119": { "id": 4119, @@ -58349,7 +55953,7 @@ "defence": 1 } }, - "price": 764 + "price": 2728 }, "4121": { "id": 4121, @@ -58389,7 +55993,7 @@ "defence": 1 } }, - "price": 8194 + "price": 11285 }, "4123": { "id": 4123, @@ -58429,7 +56033,7 @@ "defence": 5 } }, - "price": 103.5 + "price": 81 }, "4125": { "id": 4125, @@ -58469,7 +56073,7 @@ "defence": 10 } }, - "price": 677 + "price": 379 }, "4127": { "id": 4127, @@ -58509,7 +56113,7 @@ "defence": 20 } }, - "price": 478.5 + "price": 1030 }, "4129": { "id": 4129, @@ -58549,7 +56153,7 @@ "defence": 30 } }, - "price": 1060 + "price": 2322 }, "4131": { "id": 4131, @@ -58589,7 +56193,7 @@ "defence": 40 } }, - "price": 7695.5 + "price": 7695 }, "4133": { "id": 4133, @@ -58810,7 +56414,7 @@ } ] }, - "price": 2011025 + "price": 1688658 }, "4153": { "id": 4153, @@ -58878,7 +56482,7 @@ } ] }, - "price": 192260 + "price": 181539 }, "4155": { "id": 4155, @@ -58933,7 +56537,7 @@ "defence": 20 } }, - "price": 6616.5 + "price": 6616 }, "4158": { "id": 4158, @@ -59092,7 +56696,7 @@ "examine": "I can even smash stone with this.", "wiki_name": "Rock hammer", "wiki_url": "https://oldschool.runescape.wiki/w/Rock_hammer", - "price": 899 + "price": 238 }, "4164": { "id": 4164, @@ -59132,7 +56736,7 @@ "slayer": 10 } }, - "price": 651.5 + "price": 357 }, "4166": { "id": 4166, @@ -59172,7 +56776,7 @@ "slayer": 15 } }, - "price": 133 + "price": 99 }, "4168": { "id": 4168, @@ -59726,7 +57330,7 @@ "examine": "A seed to be sung into the finest crystal weapons.", "wiki_name": "Crystal weapon seed", "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_weapon_seed", - "price": 221352.5 + "price": 206945 }, "4209": { "id": 4209, @@ -61764,7 +59368,7 @@ "slot": "body", "requirements": null }, - "price": 825.5 + "price": 1399 }, "4300": { "id": 4300, @@ -61802,7 +59406,7 @@ "slot": "legs", "requirements": null }, - "price": 604.5 + "price": 5390 }, "4302": { "id": 4302, @@ -61840,7 +59444,7 @@ "slot": "head", "requirements": null }, - "price": 247.5 + "price": 1050 }, "4304": { "id": 4304, @@ -61878,7 +59482,7 @@ "slot": "cape", "requirements": null }, - "price": 958 + "price": 2525 }, "4306": { "id": 4306, @@ -61916,7 +59520,7 @@ "slot": "neck", "requirements": null }, - "price": 1829 + "price": 3000 }, "4308": { "id": 4308, @@ -61954,7 +59558,7 @@ "slot": "hands", "requirements": null }, - "price": 1718 + "price": 3281 }, "4310": { "id": 4310, @@ -61992,7 +59596,7 @@ "slot": "feet", "requirements": null }, - "price": 1550 + "price": 9007 }, "4313": { "id": 4313, @@ -62045,7 +59649,7 @@ "slot": "cape", "requirements": null }, - "price": 770 + "price": 858 }, "4317": { "id": 4317, @@ -62082,7 +59686,7 @@ "slot": "cape", "requirements": null }, - "price": 295.5 + "price": 612 }, "4319": { "id": 4319, @@ -62119,7 +59723,7 @@ "slot": "cape", "requirements": null }, - "price": 182.5 + "price": 209 }, "4321": { "id": 4321, @@ -62156,7 +59760,7 @@ "slot": "cape", "requirements": null }, - "price": 565.5 + "price": 449 }, "4323": { "id": 4323, @@ -62193,7 +59797,7 @@ "slot": "cape", "requirements": null }, - "price": 5500 + "price": 584 }, "4325": { "id": 4325, @@ -62230,7 +59834,7 @@ "slot": "cape", "requirements": null }, - "price": 143.5 + "price": 143 }, "4327": { "id": 4327, @@ -62267,7 +59871,7 @@ "slot": "cape", "requirements": null }, - "price": 667.5 + "price": 667 }, "4329": { "id": 4329, @@ -62341,7 +59945,7 @@ "slot": "cape", "requirements": null }, - "price": 160.5 + "price": 55 }, "4333": { "id": 4333, @@ -62378,7 +59982,7 @@ "slot": "cape", "requirements": null }, - "price": 88 + "price": 166 }, "4335": { "id": 4335, @@ -62415,7 +60019,7 @@ "slot": "cape", "requirements": null }, - "price": 1289.5 + "price": 362 }, "4337": { "id": 4337, @@ -62452,7 +60056,7 @@ "slot": "cape", "requirements": null }, - "price": 4771 + "price": 500 }, "4339": { "id": 4339, @@ -62489,7 +60093,7 @@ "slot": "cape", "requirements": null }, - "price": 303.5 + "price": 303 }, "4341": { "id": 4341, @@ -62526,7 +60130,7 @@ "slot": "cape", "requirements": null }, - "price": 798 + "price": 5933 }, "4343": { "id": 4343, @@ -62563,7 +60167,7 @@ "slot": "cape", "requirements": null }, - "price": 958.5 + "price": 1825 }, "4345": { "id": 4345, @@ -62600,7 +60204,7 @@ "slot": "cape", "requirements": null }, - "price": 73.5 + "price": 172 }, "4347": { "id": 4347, @@ -62637,7 +60241,7 @@ "slot": "cape", "requirements": null }, - "price": 290.5 + "price": 396 }, "4349": { "id": 4349, @@ -62674,7 +60278,7 @@ "slot": "cape", "requirements": null }, - "price": 670.5 + "price": 584 }, "4351": { "id": 4351, @@ -62711,7 +60315,7 @@ "slot": "cape", "requirements": null }, - "price": 514 + "price": 272 }, "4353": { "id": 4353, @@ -62748,7 +60352,7 @@ "slot": "cape", "requirements": null }, - "price": 666.5 + "price": 739 }, "4355": { "id": 4355, @@ -62785,7 +60389,7 @@ "slot": "cape", "requirements": null }, - "price": 440 + "price": 361 }, "4357": { "id": 4357, @@ -62822,7 +60426,7 @@ "slot": "cape", "requirements": null }, - "price": 370 + "price": 233 }, "4359": { "id": 4359, @@ -62859,7 +60463,7 @@ "slot": "cape", "requirements": null }, - "price": 256 + "price": 631 }, "4361": { "id": 4361, @@ -62896,7 +60500,7 @@ "slot": "cape", "requirements": null }, - "price": 1154.5 + "price": 1761 }, "4363": { "id": 4363, @@ -62933,7 +60537,7 @@ "slot": "cape", "requirements": null }, - "price": 1248 + "price": 20000 }, "4365": { "id": 4365, @@ -62970,7 +60574,7 @@ "slot": "cape", "requirements": null }, - "price": 48 + "price": 18 }, "4367": { "id": 4367, @@ -63007,7 +60611,7 @@ "slot": "cape", "requirements": null }, - "price": 748 + "price": 1142 }, "4369": { "id": 4369, @@ -63044,7 +60648,7 @@ "slot": "cape", "requirements": null }, - "price": 540 + "price": 2170 }, "4371": { "id": 4371, @@ -63081,7 +60685,7 @@ "slot": "cape", "requirements": null }, - "price": 99 + "price": 200 }, "4373": { "id": 4373, @@ -63118,7 +60722,7 @@ "slot": "cape", "requirements": null }, - "price": 854 + "price": 202 }, "4375": { "id": 4375, @@ -63155,7 +60759,7 @@ "slot": "cape", "requirements": null }, - "price": 207 + "price": 1 }, "4377": { "id": 4377, @@ -63192,7 +60796,7 @@ "slot": "cape", "requirements": null }, - "price": 1219 + "price": 418 }, "4379": { "id": 4379, @@ -63229,7 +60833,7 @@ "slot": "cape", "requirements": null }, - "price": 155 + "price": 706 }, "4381": { "id": 4381, @@ -63266,7 +60870,7 @@ "slot": "cape", "requirements": null }, - "price": 568.5 + "price": 568 }, "4383": { "id": 4383, @@ -63303,7 +60907,7 @@ "slot": "cape", "requirements": null }, - "price": 2999.5 + "price": 512 }, "4385": { "id": 4385, @@ -63340,7 +60944,7 @@ "slot": "cape", "requirements": null }, - "price": 10.5 + "price": 30 }, "4387": { "id": 4387, @@ -63377,7 +60981,7 @@ "slot": "cape", "requirements": null }, - "price": 15.5 + "price": 3 }, "4389": { "id": 4389, @@ -63414,7 +61018,7 @@ "slot": "cape", "requirements": null }, - "price": 143 + "price": 202 }, "4391": { "id": 4391, @@ -63451,7 +61055,7 @@ "slot": "cape", "requirements": null }, - "price": 88 + "price": 800 }, "4393": { "id": 4393, @@ -63488,7 +61092,7 @@ "slot": "cape", "requirements": null }, - "price": 2706 + "price": 1640 }, "4395": { "id": 4395, @@ -63525,7 +61129,7 @@ "slot": "cape", "requirements": null }, - "price": 251.5 + "price": 251 }, "4397": { "id": 4397, @@ -63562,7 +61166,7 @@ "slot": "cape", "requirements": null }, - "price": 1750 + "price": 116 }, "4399": { "id": 4399, @@ -63599,7 +61203,7 @@ "slot": "cape", "requirements": null }, - "price": 256.5 + "price": 256 }, "4401": { "id": 4401, @@ -63636,7 +61240,7 @@ "slot": "cape", "requirements": null }, - "price": 282.5 + "price": 5423 }, "4403": { "id": 4403, @@ -63673,7 +61277,7 @@ "slot": "cape", "requirements": null }, - "price": 19824 + "price": 668 }, "4405": { "id": 4405, @@ -63710,7 +61314,7 @@ "slot": "cape", "requirements": null }, - "price": 375 + "price": 99 }, "4407": { "id": 4407, @@ -63747,7 +61351,7 @@ "slot": "cape", "requirements": null }, - "price": 2997.5 + "price": 2608 }, "4409": { "id": 4409, @@ -63784,7 +61388,7 @@ "slot": "cape", "requirements": null }, - "price": 337.5 + "price": 983 }, "4411": { "id": 4411, @@ -63821,7 +61425,7 @@ "slot": "cape", "requirements": null }, - "price": 425 + "price": 89 }, "4413": { "id": 4413, @@ -63858,7 +61462,7 @@ "slot": "cape", "requirements": null }, - "price": 1000 + "price": 256 }, "4415": { "id": 4415, @@ -63904,7 +61508,7 @@ "examine": "A cup of Guthix Rest.", "wiki_name": "Guthix rest (4)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_rest#(4)", - "price": 3327.5 + "price": 3327 }, "4419": { "id": 4419, @@ -63922,7 +61526,7 @@ "examine": "A cup of Guthix Rest.", "wiki_name": "Guthix rest (3)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_rest#(3)", - "price": 2227 + "price": 1698 }, "4421": { "id": 4421, @@ -63940,7 +61544,7 @@ "examine": "A cup of Guthix Rest.", "wiki_name": "Guthix rest (2)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_rest#(2)", - "price": 1528.5 + "price": 1000 }, "4423": { "id": 4423, @@ -63958,7 +61562,7 @@ "examine": "A cup of Guthix Rest.", "wiki_name": "Guthix rest (1)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_rest#(1)", - "price": 927 + "price": 559 }, "4425": { "id": 4425, @@ -64130,7 +61734,7 @@ "examine": "This is pretty well sealed.", "wiki_name": "Airtight pot", "wiki_url": "https://oldschool.runescape.wiki/w/Airtight_pot", - "price": 5000 + "price": 2727 }, "4438": { "id": 4438, @@ -64148,7 +61752,7 @@ "examine": "This needs firing, then it should fit on a normal-sized pot.", "wiki_name": "Unfired pot lid", "wiki_url": "https://oldschool.runescape.wiki/w/Unfired_pot_lid", - "price": 67 + "price": 131 }, "4440": { "id": 4440, @@ -64166,7 +61770,7 @@ "examine": "This should fit on a normal-sized pot.", "wiki_name": "Pot lid", "wiki_url": "https://oldschool.runescape.wiki/w/Pot_lid", - "price": 570.5 + "price": 447 }, "4442": { "id": 4442, @@ -64284,7 +61888,7 @@ "examine": "A cup of water.", "wiki_name": "Cup of water", "wiki_url": "https://oldschool.runescape.wiki/w/Cup_of_water", - "price": 10 + "price": 12 }, "4460": { "id": 4460, @@ -64302,7 +61906,7 @@ "examine": "It's hot!", "wiki_name": "Cup of hot water", "wiki_url": "https://oldschool.runescape.wiki/w/Cup_of_hot_water", - "price": 406 + "price": 463 }, "4462": { "id": 4462, @@ -65253,7 +62857,7 @@ "examine": "This could feed a family of gnomes for a week!", "wiki_name": "Giant frog legs", "wiki_url": "https://oldschool.runescape.wiki/w/Giant_frog_legs", - "price": 6700 + "price": 3702 }, "4519": { "id": 4519, @@ -65298,7 +62902,7 @@ "examine": "Not the genie sort.", "wiki_name": "Oil lamp (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Oil_lamp#Unlit", - "price": 2250 + "price": 1273 }, "4524": { "id": 4524, @@ -65330,7 +62934,7 @@ "examine": "An oil lamp with no oil in it.", "wiki_name": "Empty oil lamp", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_oil_lamp", - "price": 13 + "price": 25 }, "4527": { "id": 4527, @@ -65348,7 +62952,7 @@ "examine": "Put a candle in to complete it.", "wiki_name": "Empty candle lantern", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_candle_lantern", - "price": 4 + "price": 5 }, "4529": { "id": 4529, @@ -65365,7 +62969,7 @@ "examine": "A candle in a glass cage.", "wiki_name": "Candle lantern (Unlit (white candle))", "wiki_url": "https://oldschool.runescape.wiki/w/Candle_lantern#Unlit_(white_candle)", - "price": 432 + "price": 281 }, "4531": { "id": 4531, @@ -65396,7 +63000,7 @@ "examine": "A candle in a glass cage.", "wiki_name": "Candle lantern (Unlit (black candle))", "wiki_url": "https://oldschool.runescape.wiki/w/Candle_lantern#Unlit_(black_candle)", - "price": 5465.5 + "price": 23443 }, "4534": { "id": 4534, @@ -65428,7 +63032,7 @@ "examine": "Put oil in to complete it.", "wiki_name": "Empty oil lantern", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_oil_lantern", - "price": 41.5 + "price": 114 }, "4537": { "id": 4537, @@ -65446,7 +63050,7 @@ "examine": "An unlit oil lantern.", "wiki_name": "Oil lantern (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Oil_lantern#Unlit", - "price": 1210.5 + "price": 740 }, "4539": { "id": 4539, @@ -65478,7 +63082,7 @@ "examine": "Add the glass to complete.", "wiki_name": "Oil lantern frame", "wiki_url": "https://oldschool.runescape.wiki/w/Oil_lantern_frame", - "price": 24.5 + "price": 1 }, "4542": { "id": 4542, @@ -65496,7 +63100,7 @@ "examine": "A roughly circular disc of glass.", "wiki_name": "Lantern lens", "wiki_url": "https://oldschool.runescape.wiki/w/Lantern_lens", - "price": 8 + "price": 17 }, "4544": { "id": 4544, @@ -65514,7 +63118,7 @@ "examine": "You need to add a lens before you can use it.", "wiki_name": "Bullseye lantern (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Bullseye_lantern_(unf)", - "price": 37 + "price": 185 }, "4546": { "id": 4546, @@ -65532,7 +63136,7 @@ "examine": "You need to add lamp oil before you can use it.", "wiki_name": "Bullseye lantern (empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Bullseye_lantern_(empty)", - "price": 605.5 + "price": 605 }, "4548": { "id": 4548, @@ -65550,7 +63154,7 @@ "examine": "A sturdy steel lantern.", "wiki_name": "Bullseye lantern (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Bullseye_lantern#Unlit", - "price": 1008 + "price": 1225 }, "4550": { "id": 4550, @@ -65604,7 +63208,7 @@ "defence": 5 } }, - "price": 660 + "price": 1279 }, "4558": { "id": 4558, @@ -66053,7 +63657,7 @@ } ] }, - "price": 1382.5 + "price": 1003 }, "4582": { "id": 4582, @@ -66128,7 +63732,7 @@ } ] }, - "price": 4039.5 + "price": 4039 }, "4584": { "id": 4584, @@ -66314,7 +63918,7 @@ } ] }, - "price": 59802.5 + "price": 59802 }, "4589": { "id": 4589, @@ -66358,7 +63962,7 @@ "examine": "Wear it on your head.", "wiki_name": "Kharidian headpiece", "wiki_url": "https://oldschool.runescape.wiki/w/Kharidian_headpiece", - "price": 766 + "price": 214 }, "4593": { "id": 4593, @@ -66376,7 +63980,7 @@ "examine": "Makes me itch.", "wiki_name": "Fake beard", "wiki_url": "https://oldschool.runescape.wiki/w/Fake_beard", - "price": 550 + "price": 309 }, "4595": { "id": 4595, @@ -66548,7 +64152,7 @@ } ] }, - "price": 564.5 + "price": 131 }, "4601": { "id": 4601, @@ -66662,7 +64266,7 @@ "examine": "A meaty and very hot kebab.", "wiki_name": "Super kebab", "wiki_url": "https://oldschool.runescape.wiki/w/Super_kebab", - "price": 602.5 + "price": 200 }, "4610": { "id": 4610, @@ -66900,7 +64504,7 @@ "examine": "A cheeky little lager.", "wiki_name": "Bandit's brew", "wiki_url": "https://oldschool.runescape.wiki/w/Bandit's_brew", - "price": 3639.5 + "price": 1660 }, "4653": { "id": 4653, @@ -67148,7 +64752,7 @@ "examine": "Finely ground garlic powder.", "wiki_name": "Garlic powder", "wiki_url": "https://oldschool.runescape.wiki/w/Garlic_powder", - "price": 176 + "price": 400 }, "4670": { "id": 4670, @@ -67301,7 +64905,7 @@ } ] }, - "price": 68081.5 + "price": 68081 }, "4677": { "id": 4677, @@ -67433,7 +65037,7 @@ "examine": "One sheet of mummy wrap.", "wiki_name": "Linen", "wiki_url": "https://oldschool.runescape.wiki/w/Linen", - "price": 1461.5 + "price": 744 }, "4686": { "id": 4686, @@ -67465,7 +65069,7 @@ "examine": "It's a bucket of sap.", "wiki_name": "Bucket of sap", "wiki_url": "https://oldschool.runescape.wiki/w/Bucket_of_sap", - "price": 402.5 + "price": 481 }, "4689": { "id": 4689, @@ -67526,7 +65130,7 @@ "examine": "A combined Water and Fire Rune.", "wiki_name": "Steam rune", "wiki_url": "https://oldschool.runescape.wiki/w/Steam_rune", - "price": 51.5 + "price": 51 }, "4695": { "id": 4695, @@ -67543,7 +65147,7 @@ "examine": "A combined Air and Water Rune.", "wiki_name": "Mist rune", "wiki_url": "https://oldschool.runescape.wiki/w/Mist_rune", - "price": 87 + "price": 129 }, "4696": { "id": 4696, @@ -67560,7 +65164,7 @@ "examine": "A combined Air and Earth Rune.", "wiki_name": "Dust rune", "wiki_url": "https://oldschool.runescape.wiki/w/Dust_rune", - "price": 12 + "price": 16 }, "4697": { "id": 4697, @@ -67577,7 +65181,7 @@ "examine": "A combined Air and Fire Rune.", "wiki_name": "Smoke rune", "wiki_url": "https://oldschool.runescape.wiki/w/Smoke_rune", - "price": 25.5 + "price": 25 }, "4698": { "id": 4698, @@ -67594,7 +65198,7 @@ "examine": "A combined Earth and Water Rune.", "wiki_name": "Mud rune", "wiki_url": "https://oldschool.runescape.wiki/w/Mud_rune", - "price": 106.5 + "price": 106 }, "4699": { "id": 4699, @@ -67611,7 +65215,7 @@ "examine": "A combined Earth and Fire Rune.", "wiki_name": "Lava rune", "wiki_url": "https://oldschool.runescape.wiki/w/Lava_rune", - "price": 14 + "price": 16 }, "4700": { "id": 4700, @@ -67722,7 +65326,7 @@ "defence": 70 } }, - "price": 181093.5 + "price": 211435 }, "4710": { "id": 4710, @@ -67846,7 +65450,7 @@ "defence": 70 } }, - "price": 3663587.5 + "price": 3075549 }, "4714": { "id": 4714, @@ -67887,7 +65491,7 @@ "defence": 70 } }, - "price": 2569101.5 + "price": 1953002 }, "4716": { "id": 4716, @@ -67927,7 +65531,7 @@ "defence": 70 } }, - "price": 712733.5 + "price": 603760 }, "4718": { "id": 4718, @@ -68003,7 +65607,7 @@ } ] }, - "price": 1099113.5 + "price": 1351115 }, "4720": { "id": 4720, @@ -68083,7 +65687,7 @@ "defence": 70 } }, - "price": 2225200.5 + "price": 2225200 }, "4724": { "id": 4724, @@ -68123,7 +65727,7 @@ "defence": 70 } }, - "price": 207431.5 + "price": 149420 }, "4726": { "id": 4726, @@ -68198,7 +65802,7 @@ } ] }, - "price": 171494.5 + "price": 135450 }, "4728": { "id": 4728, @@ -68238,7 +65842,7 @@ "defence": 70 } }, - "price": 213912.5 + "price": 251949 }, "4730": { "id": 4730, @@ -68278,7 +65882,7 @@ "defence": 70 } }, - "price": 196860 + "price": 267500 }, "4732": { "id": 4732, @@ -68428,7 +66032,7 @@ "defence": 70 } }, - "price": 1429742 + "price": 1231597 }, "4738": { "id": 4738, @@ -68469,7 +66073,7 @@ "defence": 70 } }, - "price": 656127 + "price": 512337 }, "4740": { "id": 4740, @@ -68506,7 +66110,7 @@ "slot": "ammo", "requirements": null }, - "price": 41 + "price": 46 }, "4745": { "id": 4745, @@ -68546,7 +66150,7 @@ "defence": 70 } }, - "price": 96229.5 + "price": 128901 }, "4747": { "id": 4747, @@ -68655,7 +66259,7 @@ "defence": 70 } }, - "price": 197988.5 + "price": 171553 }, "4751": { "id": 4751, @@ -68810,7 +66414,7 @@ } ] }, - "price": 100938.5 + "price": 109388 }, "4757": { "id": 4757, @@ -68850,7 +66454,7 @@ "defence": 70 } }, - "price": 173061.5 + "price": 173061 }, "4759": { "id": 4759, @@ -68890,7 +66494,7 @@ "defence": 70 } }, - "price": 206794.5 + "price": 233267 }, "4773": { "id": 4773, @@ -68929,7 +66533,7 @@ "ranged": 1 } }, - "price": 66 + "price": 139 }, "4778": { "id": 4778, @@ -68968,7 +66572,7 @@ "ranged": 1 } }, - "price": 57.5 + "price": 123 }, "4783": { "id": 4783, @@ -69007,7 +66611,7 @@ "ranged": 5 } }, - "price": 107 + "price": 92 }, "4788": { "id": 4788, @@ -69046,7 +66650,7 @@ "ranged": 10 } }, - "price": 607.5 + "price": 607 }, "4793": { "id": 4793, @@ -69085,7 +66689,7 @@ "ranged": 20 } }, - "price": 193 + "price": 297 }, "4798": { "id": 4798, @@ -69124,7 +66728,7 @@ "ranged": 30 } }, - "price": 307 + "price": 258 }, "4803": { "id": 4803, @@ -69233,7 +66837,7 @@ "examine": "A pile of Zombie Ogre bones.", "wiki_name": "Zogre bones", "wiki_url": "https://oldschool.runescape.wiki/w/Zogre_bones", - "price": 743.5 + "price": 743 }, "4814": { "id": 4814, @@ -69318,7 +66922,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Bronze nails", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_nails", - "price": 12 + "price": 2 }, "4820": { "id": 4820, @@ -69335,7 +66939,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Iron nails", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_nails", - "price": 15.5 + "price": 12 }, "4821": { "id": 4821, @@ -69352,7 +66956,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Black nails", "wiki_url": "https://oldschool.runescape.wiki/w/Black_nails", - "price": 1815 + "price": 4692 }, "4822": { "id": 4822, @@ -69369,7 +66973,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Mithril nails", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_nails", - "price": 35.5 + "price": 41 }, "4823": { "id": 4823, @@ -69386,7 +66990,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Adamantite nails", "wiki_url": "https://oldschool.runescape.wiki/w/Adamantite_nails", - "price": 136.5 + "price": 85 }, "4824": { "id": 4824, @@ -69421,7 +67025,7 @@ "examine": "An unstrung composite ogre bow.", "wiki_name": "Unstrung comp bow", "wiki_url": "https://oldschool.runescape.wiki/w/Unstrung_comp_bow", - "price": 817 + "price": 1590 }, "4827": { "id": 4827, @@ -69489,7 +67093,7 @@ } ] }, - "price": 2036 + "price": 719 }, "4829": { "id": 4829, @@ -69521,7 +67125,7 @@ "examine": "Ancient ogre bones from the ogre burial tomb.", "wiki_name": "Fayrg bones", "wiki_url": "https://oldschool.runescape.wiki/w/Fayrg_bones", - "price": 4797 + "price": 3500 }, "4832": { "id": 4832, @@ -69557,7 +67161,7 @@ "examine": "Ancient ogre bones from the ogre burial tomb.", "wiki_name": "Ourg bones", "wiki_url": "https://oldschool.runescape.wiki/w/Ourg_bones", - "price": 56501.5 + "price": 48572 }, "4836": { "id": 4836, @@ -69643,7 +67247,7 @@ "examine": "4 doses of Relicym's balm, which helps cure disease.", "wiki_name": "Relicym's balm (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Relicym's_balm#4_dose", - "price": 908.5 + "price": 585 }, "4844": { "id": 4844, @@ -69679,7 +67283,7 @@ "examine": "2 doses of Relicym's balm, which helps cure disease.", "wiki_name": "Relicym's balm (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Relicym's_balm#2_dose", - "price": 7.5 + "price": 7 }, "4848": { "id": 4848, @@ -69697,7 +67301,7 @@ "examine": "1 dose of Relicym's balm, which helps cure disease.", "wiki_name": "Relicym's balm (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Relicym's_balm#1_dose", - "price": 105.5 + "price": 168 }, "4850": { "id": 4850, @@ -69715,7 +67319,7 @@ "examine": "A key which opens coffins!.", "wiki_name": "Ogre coffin key", "wiki_url": "https://oldschool.runescape.wiki/w/Ogre_coffin_key", - "price": 2052.5 + "price": 2052 }, "4852": { "id": 4852, @@ -69937,7 +67541,7 @@ "examine": "Ahrim the Blighted's leather hood.", "wiki_name": "Ahrim's hood (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Ahrim's_hood#0", - "price": 137865.5 + "price": 163008 }, "4862": { "id": 4862, @@ -70271,7 +67875,7 @@ "examine": "Ahrim the Blighted's quarterstaff.", "wiki_name": "Ahrim's staff (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Ahrim's_staff#0", - "price": 91750 + "price": 105950 }, "4868": { "id": 4868, @@ -70437,7 +68041,7 @@ "examine": "Ahrim the Blighted's armoured robe top.", "wiki_name": "Ahrim's robetop (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Ahrim's_robetop#0", - "price": 3563979 + "price": 3023000 }, "4874": { "id": 4874, @@ -70603,7 +68207,7 @@ "examine": "Ahrim the Blighted's armoured robe skirt.", "wiki_name": "Ahrim's robeskirt (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Ahrim's_robeskirt#0", - "price": 2379600.5 + "price": 1912500 }, "4880": { "id": 4880, @@ -70765,7 +68369,7 @@ "examine": "Dharok the Wretched's helm.", "wiki_name": "Dharok's helm (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Dharok's_helm#0", - "price": 707500 + "price": 615133 }, "4886": { "id": 4886, @@ -71071,7 +68675,7 @@ "examine": "Dharok the Wretched's greataxe.", "wiki_name": "Dharok's greataxe (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Dharok's_greataxe#0", - "price": 1058273 + "price": 1244215 }, "4892": { "id": 4892, @@ -71395,7 +68999,7 @@ "examine": "Dharok the Wretched's plate leg armour.", "wiki_name": "Dharok's platelegs (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Dharok's_platelegs#0", - "price": 2059050 + "price": 2247500 }, "4904": { "id": 4904, @@ -71557,7 +69161,7 @@ "examine": "Guthan the Infested's helm.", "wiki_name": "Guthan's helm (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthan's_helm#0", - "price": 129049 + "price": 98491 }, "4910": { "id": 4910, @@ -71859,7 +69463,7 @@ "examine": "Guthan the Infested's warspear.", "wiki_name": "Guthan's warspear (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthan's_warspear#0", - "price": 107725 + "price": 86137 }, "4916": { "id": 4916, @@ -72021,7 +69625,7 @@ "examine": "Guthan the Infested's platebody armour.", "wiki_name": "Guthan's platebody (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthan's_platebody#0", - "price": 162760.5 + "price": 169532 }, "4922": { "id": 4922, @@ -72183,7 +69787,7 @@ "examine": "Guthan the Infested's chainskirt.", "wiki_name": "Guthan's chainskirt (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthan's_chainskirt#0", - "price": 169974.5 + "price": 169974 }, "4928": { "id": 4928, @@ -72349,7 +69953,7 @@ "examine": "Karil the Tainted's coif.", "wiki_name": "Karil's coif (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Karil's_coif#0", - "price": 17504.5 + "price": 11124 }, "4934": { "id": 4934, @@ -72789,7 +70393,7 @@ "examine": "Karil the Tainted's leather body armour.", "wiki_name": "Karil's leathertop (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Karil's_leathertop#0", - "price": 1357390 + "price": 1151592 }, "4946": { "id": 4946, @@ -72955,7 +70559,7 @@ "examine": "Karil the Tainted's leather skirt.", "wiki_name": "Karil's leatherskirt (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Karil's_leatherskirt#0", - "price": 585570.5 + "price": 435421 }, "4952": { "id": 4952, @@ -73117,7 +70721,7 @@ "examine": "Torag the Corrupted's helm.", "wiki_name": "Torag's helm (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Torag's_helm#0", - "price": 66519.5 + "price": 66519 }, "4958": { "id": 4958, @@ -73719,7 +71323,7 @@ "examine": "Torag the Corrupted's plate leg armour.", "wiki_name": "Torag's platelegs (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Torag's_platelegs#0", - "price": 170204.5 + "price": 170204 }, "4976": { "id": 4976, @@ -74183,7 +71787,7 @@ "examine": "Verac the Defiled's flail.", "wiki_name": "Verac's flail (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Verac's_flail#0", - "price": 96530.5 + "price": 96530 }, "4988": { "id": 4988, @@ -74345,7 +71949,7 @@ "examine": "Verac the Defiled's brassard.", "wiki_name": "Verac's brassard (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Verac's_brassard#0", - "price": 166650 + "price": 158244 }, "4994": { "id": 4994, @@ -74507,7 +72111,7 @@ "examine": "Verac the Defiled's plate skirt.", "wiki_name": "Verac's plateskirt (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Verac's_plateskirt#0", - "price": 165719.5 + "price": 174265 }, "5001": { "id": 5001, @@ -74525,7 +72129,7 @@ "examine": "It's incredibly slimy.", "wiki_name": "Raw cave eel", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_cave_eel", - "price": 166 + "price": 87 }, "5002": { "id": 5002, @@ -74559,7 +72163,7 @@ "examine": "It's a bit slimy.", "wiki_name": "Cave eel", "wiki_url": "https://oldschool.runescape.wiki/w/Cave_eel", - "price": 16 + "price": 51 }, "5004": { "id": 5004, @@ -74713,7 +72317,7 @@ "slot": "head", "requirements": null }, - "price": 806 + "price": 558 }, "5016": { "id": 5016, @@ -74786,7 +72390,7 @@ } ] }, - "price": 1403 + "price": 1200 }, "5018": { "id": 5018, @@ -74852,7 +72456,7 @@ } ] }, - "price": 578.5 + "price": 4067 }, "5020": { "id": 5020, @@ -74946,7 +72550,7 @@ "slot": "body", "requirements": null }, - "price": 1329.5 + "price": 1036 }, "5026": { "id": 5026, @@ -74984,7 +72588,7 @@ "slot": "body", "requirements": null }, - "price": 350.5 + "price": 5559 }, "5028": { "id": 5028, @@ -75022,7 +72626,7 @@ "slot": "body", "requirements": null }, - "price": 911.5 + "price": 1508 }, "5030": { "id": 5030, @@ -75098,7 +72702,7 @@ "slot": "body", "requirements": null }, - "price": 863 + "price": 1145 }, "5034": { "id": 5034, @@ -75136,7 +72740,7 @@ "slot": "body", "requirements": null }, - "price": 1008.5 + "price": 501 }, "5036": { "id": 5036, @@ -75174,7 +72778,7 @@ "slot": "legs", "requirements": null }, - "price": 225 + "price": 2501 }, "5038": { "id": 5038, @@ -75212,7 +72816,7 @@ "slot": "legs", "requirements": null }, - "price": 1003 + "price": 1425 }, "5040": { "id": 5040, @@ -75250,7 +72854,7 @@ "slot": "legs", "requirements": null }, - "price": 1035.5 + "price": 1035 }, "5042": { "id": 5042, @@ -75288,7 +72892,7 @@ "slot": "legs", "requirements": null }, - "price": 1708.5 + "price": 5646 }, "5044": { "id": 5044, @@ -75326,7 +72930,7 @@ "slot": "legs", "requirements": null }, - "price": 605.5 + "price": 605 }, "5046": { "id": 5046, @@ -75402,7 +73006,7 @@ "slot": "legs", "requirements": null }, - "price": 944 + "price": 225 }, "5050": { "id": 5050, @@ -75478,7 +73082,7 @@ "slot": "legs", "requirements": null }, - "price": 225 + "price": 342 }, "5054": { "id": 5054, @@ -75752,7 +73356,7 @@ "examine": "It's an empty bird's nest.", "wiki_name": "Bird nest (empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Bird_nest_(empty)", - "price": 6863 + "price": 7751 }, "5076": { "id": 5076, @@ -75847,7 +73451,7 @@ "examine": "A marigold seed - plant in a flower patch.", "wiki_name": "Marigold seed", "wiki_url": "https://oldschool.runescape.wiki/w/Marigold_seed", - "price": 6 + "price": 1 }, "5097": { "id": 5097, @@ -75864,7 +73468,7 @@ "examine": "A rosemary seed - plant in a flower patch.", "wiki_name": "Rosemary seed", "wiki_url": "https://oldschool.runescape.wiki/w/Rosemary_seed", - "price": 26.5 + "price": 13 }, "5098": { "id": 5098, @@ -75881,7 +73485,7 @@ "examine": "A nasturtium seed - plant in a flower patch.", "wiki_name": "Nasturtium seed", "wiki_url": "https://oldschool.runescape.wiki/w/Nasturtium_seed", - "price": 12 + "price": 10 }, "5099": { "id": 5099, @@ -75898,7 +73502,7 @@ "examine": "A woad seed - plant in a flower patch.", "wiki_name": "Woad seed", "wiki_url": "https://oldschool.runescape.wiki/w/Woad_seed", - "price": 1 + "price": 9 }, "5100": { "id": 5100, @@ -75915,7 +73519,7 @@ "examine": "A limpwurt seed - plant in a flower patch.", "wiki_name": "Limpwurt seed", "wiki_url": "https://oldschool.runescape.wiki/w/Limpwurt_seed", - "price": 19 + "price": 4 }, "5101": { "id": 5101, @@ -75932,7 +73536,7 @@ "examine": "A redberry bush seed - plant in a bush patch.", "wiki_name": "Redberry seed", "wiki_url": "https://oldschool.runescape.wiki/w/Redberry_seed", - "price": 1 + "price": 7 }, "5102": { "id": 5102, @@ -75949,7 +73553,7 @@ "examine": "A cadavaberry bush seed - plant in a bush patch.", "wiki_name": "Cadavaberry seed", "wiki_url": "https://oldschool.runescape.wiki/w/Cadavaberry_seed", - "price": 4 + "price": 7 }, "5103": { "id": 5103, @@ -76000,7 +73604,7 @@ "examine": "A whiteberry bush seed - plant in a bush patch.", "wiki_name": "Whiteberry seed", "wiki_url": "https://oldschool.runescape.wiki/w/Whiteberry_seed", - "price": 1 + "price": 12 }, "5106": { "id": 5106, @@ -76017,7 +73621,7 @@ "examine": "A poison ivy bush seed - plant in a bush patch.", "wiki_name": "Poison ivy seed", "wiki_url": "https://oldschool.runescape.wiki/w/Poison_ivy_seed", - "price": 49 + "price": 6 }, "5171": { "id": 5171, @@ -76043,7 +73647,7 @@ "examine": "A Cactus seed - plant in a cactus patch.", "wiki_name": "Cactus seed", "wiki_url": "https://oldschool.runescape.wiki/w/Cactus_seed", - "price": 66.5 + "price": 25 }, "5281": { "id": 5281, @@ -76060,7 +73664,7 @@ "examine": "Also known as Deadly Nightshade - plant in a belladonna patch.", "wiki_name": "Belladonna seed", "wiki_url": "https://oldschool.runescape.wiki/w/Belladonna_seed", - "price": 81 + "price": 65 }, "5282": { "id": 5282, @@ -76077,7 +73681,7 @@ "examine": "A Bittercap mushroom spore - plant in a mushroom patch.", "wiki_name": "Mushroom spore", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom_spore", - "price": 1.5 + "price": 15 }, "5283": { "id": 5283, @@ -76094,7 +73698,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Apple tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Apple_tree_seed", - "price": 7 + "price": 28 }, "5284": { "id": 5284, @@ -76111,7 +73715,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Banana tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Banana_tree_seed", - "price": 7 + "price": 9 }, "5285": { "id": 5285, @@ -76128,7 +73732,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Orange tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Orange_tree_seed", - "price": 7.5 + "price": 15 }, "5286": { "id": 5286, @@ -76145,7 +73749,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Curry tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Curry_tree_seed", - "price": 8 + "price": 17 }, "5287": { "id": 5287, @@ -76162,7 +73766,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Pineapple seed", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple_seed", - "price": 28 + "price": 58 }, "5288": { "id": 5288, @@ -76179,7 +73783,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Papaya tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Papaya_tree_seed", - "price": 251.5 + "price": 300 }, "5289": { "id": 5289, @@ -76213,7 +73817,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Calquat tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Calquat_tree_seed", - "price": 36.5 + "price": 36 }, "5291": { "id": 5291, @@ -76230,7 +73834,7 @@ "examine": "A guam seed - plant in a herb patch.", "wiki_name": "Guam seed", "wiki_url": "https://oldschool.runescape.wiki/w/Guam_seed", - "price": 17.5 + "price": 28 }, "5292": { "id": 5292, @@ -76247,7 +73851,7 @@ "examine": "A marrentill seed - plant in a herb patch.", "wiki_name": "Marrentill seed", "wiki_url": "https://oldschool.runescape.wiki/w/Marrentill_seed", - "price": 4.5 + "price": 3 }, "5293": { "id": 5293, @@ -76264,7 +73868,7 @@ "examine": "A tarromin seed - plant in a herb patch.", "wiki_name": "Tarromin seed", "wiki_url": "https://oldschool.runescape.wiki/w/Tarromin_seed", - "price": 10.5 + "price": 18 }, "5294": { "id": 5294, @@ -76281,7 +73885,7 @@ "examine": "A harralander seed - plant in a herb patch.", "wiki_name": "Harralander seed", "wiki_url": "https://oldschool.runescape.wiki/w/Harralander_seed", - "price": 45.5 + "price": 7 }, "5295": { "id": 5295, @@ -76315,7 +73919,7 @@ "examine": "A toadflax seed - plant in a herb patch.", "wiki_name": "Toadflax seed", "wiki_url": "https://oldschool.runescape.wiki/w/Toadflax_seed", - "price": 986 + "price": 535 }, "5297": { "id": 5297, @@ -76332,7 +73936,7 @@ "examine": "An irit seed - plant in a herb patch.", "wiki_name": "Irit seed", "wiki_url": "https://oldschool.runescape.wiki/w/Irit_seed", - "price": 63.5 + "price": 103 }, "5298": { "id": 5298, @@ -76349,7 +73953,7 @@ "examine": "An avantoe seed - plant in a herb patch.", "wiki_name": "Avantoe seed", "wiki_url": "https://oldschool.runescape.wiki/w/Avantoe_seed", - "price": 5238.5 + "price": 2579 }, "5299": { "id": 5299, @@ -76366,7 +73970,7 @@ "examine": "A kwuarm seed - plant in a herb patch.", "wiki_name": "Kwuarm seed", "wiki_url": "https://oldschool.runescape.wiki/w/Kwuarm_seed", - "price": 1122.5 + "price": 1693 }, "5300": { "id": 5300, @@ -76383,7 +73987,7 @@ "examine": "A snapdragon seed - plant in a herb patch.", "wiki_name": "Snapdragon seed", "wiki_url": "https://oldschool.runescape.wiki/w/Snapdragon_seed", - "price": 35074.5 + "price": 35074 }, "5301": { "id": 5301, @@ -76400,7 +74004,7 @@ "examine": "A cadantine seed - plant in a herb patch.", "wiki_name": "Cadantine seed", "wiki_url": "https://oldschool.runescape.wiki/w/Cadantine_seed", - "price": 7045.5 + "price": 8397 }, "5302": { "id": 5302, @@ -76417,7 +74021,7 @@ "examine": "A lantadyme seed - plant in a herb patch.", "wiki_name": "Lantadyme seed", "wiki_url": "https://oldschool.runescape.wiki/w/Lantadyme_seed", - "price": 336.5 + "price": 336 }, "5303": { "id": 5303, @@ -76434,7 +74038,7 @@ "examine": "A dwarf weed seed - plant in a herb patch.", "wiki_name": "Dwarf weed seed", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarf_weed_seed", - "price": 777.5 + "price": 685 }, "5304": { "id": 5304, @@ -76451,7 +74055,7 @@ "examine": "A torstol seed - plant in a herb patch.", "wiki_name": "Torstol seed", "wiki_url": "https://oldschool.runescape.wiki/w/Torstol_seed", - "price": 6073 + "price": 7052 }, "5305": { "id": 5305, @@ -76468,7 +74072,7 @@ "examine": "A barley seed - plant in a hops patch.", "wiki_name": "Barley seed", "wiki_url": "https://oldschool.runescape.wiki/w/Barley_seed", - "price": 2 + "price": 3 }, "5306": { "id": 5306, @@ -76485,7 +74089,7 @@ "examine": "A jute plant seed - plant in a hops patch.", "wiki_name": "Jute seed", "wiki_url": "https://oldschool.runescape.wiki/w/Jute_seed", - "price": 1 + "price": 2 }, "5307": { "id": 5307, @@ -76502,7 +74106,7 @@ "examine": "A Hammerstone hop seed - plant in a hops patch.", "wiki_name": "Hammerstone seed", "wiki_url": "https://oldschool.runescape.wiki/w/Hammerstone_seed", - "price": 2 + "price": 1 }, "5308": { "id": 5308, @@ -76519,7 +74123,7 @@ "examine": "An Asgarnian hop seed - plant in a hops patch.", "wiki_name": "Asgarnian seed", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_seed", - "price": 3.5 + "price": 2 }, "5309": { "id": 5309, @@ -76536,7 +74140,7 @@ "examine": "A Yanillian hop seed - plant in a hops patch.", "wiki_name": "Yanillian seed", "wiki_url": "https://oldschool.runescape.wiki/w/Yanillian_seed", - "price": 1.5 + "price": 2 }, "5310": { "id": 5310, @@ -76553,7 +74157,7 @@ "examine": "A Krandorian hop seed - plant in a hops patch.", "wiki_name": "Krandorian seed", "wiki_url": "https://oldschool.runescape.wiki/w/Krandorian_seed", - "price": 1 + "price": 9 }, "5311": { "id": 5311, @@ -76570,7 +74174,7 @@ "examine": "A Wildblood hop seed - plant in a hops patch.", "wiki_name": "Wildblood seed", "wiki_url": "https://oldschool.runescape.wiki/w/Wildblood_seed", - "price": 10 + "price": 7 }, "5312": { "id": 5312, @@ -76587,7 +74191,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Acorn", "wiki_url": "https://oldschool.runescape.wiki/w/Acorn", - "price": 107.5 + "price": 107 }, "5313": { "id": 5313, @@ -76604,7 +74208,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Willow seed", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_seed", - "price": 81 + "price": 49 }, "5314": { "id": 5314, @@ -76621,7 +74225,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Maple seed", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_seed", - "price": 3963.5 + "price": 3963 }, "5315": { "id": 5315, @@ -76686,7 +74290,7 @@ "examine": "A potato seed - plant in an allotment.", "wiki_name": "Potato seed", "wiki_url": "https://oldschool.runescape.wiki/w/Potato_seed", - "price": 1.5 + "price": 2 }, "5319": { "id": 5319, @@ -76754,7 +74358,7 @@ "examine": "A tomato seed - plant in an allotment.", "wiki_name": "Tomato seed", "wiki_url": "https://oldschool.runescape.wiki/w/Tomato_seed", - "price": 9.5 + "price": 1 }, "5323": { "id": 5323, @@ -76771,7 +74375,7 @@ "examine": "A strawberry seed - plant in an allotment.", "wiki_name": "Strawberry seed", "wiki_url": "https://oldschool.runescape.wiki/w/Strawberry_seed", - "price": 2.5 + "price": 11 }, "5324": { "id": 5324, @@ -76788,7 +74392,7 @@ "examine": "A cabbage seed - plant in an allotment.", "wiki_name": "Cabbage seed", "wiki_url": "https://oldschool.runescape.wiki/w/Cabbage_seed", - "price": 2 + "price": 1 }, "5325": { "id": 5325, @@ -76806,7 +74410,7 @@ "examine": "Not suitable for archaeological digs.", "wiki_name": "Gardening trowel", "wiki_url": "https://oldschool.runescape.wiki/w/Gardening_trowel", - "price": 100 + "price": 145 }, "5327": { "id": 5327, @@ -76868,7 +74472,7 @@ "examine": "This watering can is empty.", "wiki_name": "Watering can (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Watering_can#Empty", - "price": 8 + "price": 129 }, "5333": { "id": 5333, @@ -76998,7 +74602,7 @@ "examine": "Use this to clear weeds.", "wiki_name": "Rake", "wiki_url": "https://oldschool.runescape.wiki/w/Rake", - "price": 2.5 + "price": 2 }, "5343": { "id": 5343, @@ -77054,7 +74658,7 @@ "slot": "feet", "requirements": null }, - "price": 8028.5 + "price": 5955 }, "5347": { "id": 5347, @@ -77107,7 +74711,7 @@ "examine": "An empty plant pot.", "wiki_name": "Empty plant pot", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_plant_pot", - "price": 12 + "price": 30 }, "5352": { "id": 5352, @@ -77125,7 +74729,7 @@ "examine": "An unfired plant pot.", "wiki_name": "Unfired plant pot", "wiki_url": "https://oldschool.runescape.wiki/w/Unfired_plant_pot", - "price": 69.5 + "price": 69 }, "5354": { "id": 5354, @@ -77143,7 +74747,7 @@ "examine": "A plant pot filled with soil.", "wiki_name": "Filled plant pot", "wiki_url": "https://oldschool.runescape.wiki/w/Filled_plant_pot", - "price": 3.5 + "price": 3 }, "5356": { "id": 5356, @@ -77345,7 +74949,7 @@ "examine": "This sapling is ready to be replanted in a tree patch.", "wiki_name": "Oak sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_sapling", - "price": 565 + "price": 399 }, "5371": { "id": 5371, @@ -77381,7 +74985,7 @@ "examine": "This sapling is ready to be replanted in a tree patch.", "wiki_name": "Maple sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_sapling", - "price": 4972 + "price": 5614 }, "5373": { "id": 5373, @@ -77399,7 +75003,7 @@ "examine": "This sapling is ready to be replanted in a tree patch.", "wiki_name": "Yew sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_sapling", - "price": 24420.5 + "price": 24420 }, "5374": { "id": 5374, @@ -77449,7 +75053,7 @@ "examine": "An empty fruit basket.", "wiki_name": "Basket", "wiki_url": "https://oldschool.runescape.wiki/w/Basket", - "price": 2 + "price": 5 }, "5378": { "id": 5378, @@ -77613,7 +75217,7 @@ "examine": "A fruit basket filled with oranges.", "wiki_name": "Oranges (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Oranges#(5)", - "price": 846 + "price": 931 }, "5398": { "id": 5398, @@ -77695,7 +75299,7 @@ "examine": "A fruit basket filled with strawberries.", "wiki_name": "Strawberries (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Strawberries#(5)", - "price": 506 + "price": 748 }, "5408": { "id": 5408, @@ -77777,7 +75381,7 @@ "examine": "A fruit basket filled with bananas.", "wiki_name": "Bananas (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Bananas#(5)", - "price": 658 + "price": 579 }, "5418": { "id": 5418, @@ -77957,7 +75561,7 @@ "examine": "There are 10 potatoes in this sack.", "wiki_name": "Potatoes (10)", "wiki_url": "https://oldschool.runescape.wiki/w/Potatoes#10", - "price": 1705.5 + "price": 2206 }, "5440": { "id": 5440, @@ -78119,7 +75723,7 @@ "examine": "There are 10 onions in this sack.", "wiki_name": "Onions (10)", "wiki_url": "https://oldschool.runescape.wiki/w/Onions#10", - "price": 615 + "price": 1109 }, "5460": { "id": 5460, @@ -78281,7 +75885,7 @@ "examine": "There are 10 cabbages in this sack.", "wiki_name": "Cabbages (10)", "wiki_url": "https://oldschool.runescape.wiki/w/Cabbages#10", - "price": 1051 + "price": 1273 }, "5480": { "id": 5480, @@ -78523,7 +76127,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Apple sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Apple_sapling", - "price": 262 + "price": 417 }, "5497": { "id": 5497, @@ -78541,7 +76145,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Banana sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Banana_sapling", - "price": 545 + "price": 138 }, "5498": { "id": 5498, @@ -78559,7 +76163,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Orange sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Orange_sapling", - "price": 97 + "price": 87 }, "5499": { "id": 5499, @@ -78577,7 +76181,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Curry sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Curry_sapling", - "price": 471.5 + "price": 644 }, "5500": { "id": 5500, @@ -78595,7 +76199,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Pineapple sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple_sapling", - "price": 305.5 + "price": 402 }, "5501": { "id": 5501, @@ -78613,7 +76217,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Papaya sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Papaya_sapling", - "price": 781 + "price": 974 }, "5502": { "id": 5502, @@ -78631,7 +76235,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Palm sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Palm_sapling", - "price": 19611.5 + "price": 19611 }, "5503": { "id": 5503, @@ -78649,7 +76253,7 @@ "examine": "This sapling is ready to be replanted in a Calquat tree patch.", "wiki_name": "Calquat sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Calquat_sapling", - "price": 408 + "price": 760 }, "5504": { "id": 5504, @@ -78667,7 +76271,7 @@ "examine": "A freshly picked strawberry.", "wiki_name": "Strawberry", "wiki_url": "https://oldschool.runescape.wiki/w/Strawberry", - "price": 176 + "price": 108 }, "5506": { "id": 5506, @@ -78823,7 +76427,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Elemental talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Elemental_talisman", - "price": 1623.5 + "price": 6049 }, "5518": { "id": 5518, @@ -78920,7 +76524,7 @@ "examine": "A mould for tiaras.", "wiki_name": "Tiara mould", "wiki_url": "https://oldschool.runescape.wiki/w/Tiara_mould", - "price": 55 + "price": 160 }, "5525": { "id": 5525, @@ -78957,7 +76561,7 @@ "slot": "head", "requirements": null }, - "price": 84.5 + "price": 115 }, "5527": { "id": 5527, @@ -78994,7 +76598,7 @@ "slot": "head", "requirements": null }, - "price": 2.5 + "price": 18 }, "5529": { "id": 5529, @@ -79031,7 +76635,7 @@ "slot": "head", "requirements": null }, - "price": 2 + "price": 37 }, "5531": { "id": 5531, @@ -79068,7 +76672,7 @@ "slot": "head", "requirements": null }, - "price": 4.5 + "price": 4 }, "5533": { "id": 5533, @@ -79105,7 +76709,7 @@ "slot": "head", "requirements": null }, - "price": 32.5 + "price": 21 }, "5535": { "id": 5535, @@ -79142,7 +76746,7 @@ "slot": "head", "requirements": null }, - "price": 13.5 + "price": 9 }, "5537": { "id": 5537, @@ -79179,7 +76783,7 @@ "slot": "head", "requirements": null }, - "price": 67.5 + "price": 67 }, "5539": { "id": 5539, @@ -79217,7 +76821,7 @@ "slot": "head", "requirements": null }, - "price": 270.5 + "price": 101 }, "5541": { "id": 5541, @@ -79255,7 +76859,7 @@ "slot": "head", "requirements": null }, - "price": 35 + "price": 185 }, "5543": { "id": 5543, @@ -79293,7 +76897,7 @@ "slot": "head", "requirements": null }, - "price": 438 + "price": 4 }, "5545": { "id": 5545, @@ -79402,7 +77006,7 @@ "slot": "head", "requirements": null }, - "price": 140887.5 + "price": 94398 }, "5553": { "id": 5553, @@ -79833,7 +77437,7 @@ "prayer": 10 } }, - "price": 4023 + "price": 5660 }, "5575": { "id": 5575, @@ -79874,7 +77478,7 @@ "prayer": 10 } }, - "price": 12741 + "price": 5053 }, "5576": { "id": 5576, @@ -79914,7 +77518,7 @@ "defence": 10 } }, - "price": 16558.5 + "price": 3911 }, "5577": { "id": 5577, @@ -80511,7 +78115,7 @@ "ranged": 1 } }, - "price": 18.5 + "price": 18 }, "5617": { "id": 5617, @@ -80550,7 +78154,7 @@ "ranged": 1 } }, - "price": 50 + "price": 34 }, "5618": { "id": 5618, @@ -80589,7 +78193,7 @@ "ranged": 5 } }, - "price": 550.5 + "price": 9000 }, "5619": { "id": 5619, @@ -80628,7 +78232,7 @@ "ranged": 20 } }, - "price": 239.5 + "price": 278 }, "5620": { "id": 5620, @@ -80667,7 +78271,7 @@ "ranged": 30 } }, - "price": 485.5 + "price": 216 }, "5621": { "id": 5621, @@ -80706,7 +78310,7 @@ "ranged": 40 } }, - "price": 388.5 + "price": 388 }, "5622": { "id": 5622, @@ -80862,7 +78466,7 @@ "ranged": 30 } }, - "price": 279 + "price": 489 }, "5626": { "id": 5626, @@ -80901,7 +78505,7 @@ "ranged": 30 } }, - "price": 51 + "price": 28 }, "5627": { "id": 5627, @@ -80940,7 +78544,7 @@ "ranged": 40 } }, - "price": 944 + "price": 1041 }, "5628": { "id": 5628, @@ -81074,7 +78678,7 @@ } ] }, - "price": 6299.5 + "price": 35024 }, "5630": { "id": 5630, @@ -81141,7 +78745,7 @@ } ] }, - "price": 2536 + "price": 73 }, "5631": { "id": 5631, @@ -81275,7 +78879,7 @@ } ] }, - "price": 160 + "price": 2366 }, "5633": { "id": 5633, @@ -81342,7 +78946,7 @@ } ] }, - "price": 205 + "price": 125 }, "5634": { "id": 5634, @@ -81409,7 +79013,7 @@ } ] }, - "price": 333 + "price": 697 }, "5635": { "id": 5635, @@ -81476,7 +79080,7 @@ } ] }, - "price": 149 + "price": 1019 }, "5636": { "id": 5636, @@ -81543,7 +79147,7 @@ } ] }, - "price": 116 + "price": 67 }, "5637": { "id": 5637, @@ -81610,7 +79214,7 @@ } ] }, - "price": 107 + "price": 81 }, "5638": { "id": 5638, @@ -81677,7 +79281,7 @@ } ] }, - "price": 25049.5 + "price": 25049 }, "5639": { "id": 5639, @@ -81744,7 +79348,7 @@ } ] }, - "price": 495 + "price": 873 }, "5640": { "id": 5640, @@ -81811,7 +79415,7 @@ } ] }, - "price": 1099.5 + "price": 600 }, "5641": { "id": 5641, @@ -81956,7 +79560,7 @@ "ranged": 1 } }, - "price": 7500 + "price": 2250 }, "5644": { "id": 5644, @@ -81995,7 +79599,7 @@ "ranged": 5 } }, - "price": 13.5 + "price": 11 }, "5645": { "id": 5645, @@ -82034,7 +79638,7 @@ "ranged": 20 } }, - "price": 683.5 + "price": 19 }, "5646": { "id": 5646, @@ -82073,7 +79677,7 @@ "ranged": 30 } }, - "price": 34 + "price": 257 }, "5647": { "id": 5647, @@ -82112,7 +79716,7 @@ "ranged": 40 } }, - "price": 1594.5 + "price": 255 }, "5648": { "id": 5648, @@ -82151,7 +79755,7 @@ "ranged": 1 } }, - "price": 11.5 + "price": 11 }, "5649": { "id": 5649, @@ -82229,7 +79833,7 @@ "ranged": 5 } }, - "price": 18.5 + "price": 30 }, "5651": { "id": 5651, @@ -82268,7 +79872,7 @@ "ranged": 20 } }, - "price": 25.5 + "price": 39 }, "5652": { "id": 5652, @@ -82307,7 +79911,7 @@ "ranged": 30 } }, - "price": 183.5 + "price": 183 }, "5653": { "id": 5653, @@ -82413,7 +80017,7 @@ } ] }, - "price": 7499.5 + "price": 7499 }, "5655": { "id": 5655, @@ -82480,7 +80084,7 @@ } ] }, - "price": 1137 + "price": 394 }, "5656": { "id": 5656, @@ -82614,7 +80218,7 @@ } ] }, - "price": 340.5 + "price": 468 }, "5658": { "id": 5658, @@ -82681,7 +80285,7 @@ } ] }, - "price": 88 + "price": 111 }, "5659": { "id": 5659, @@ -82815,7 +80419,7 @@ } ] }, - "price": 349.5 + "price": 279 }, "5661": { "id": 5661, @@ -82882,7 +80486,7 @@ } ] }, - "price": 944 + "price": 180 }, "5662": { "id": 5662, @@ -82949,7 +80553,7 @@ } ] }, - "price": 1307.5 + "price": 358 }, "5663": { "id": 5663, @@ -83016,7 +80620,7 @@ } ] }, - "price": 955 + "price": 80 }, "5664": { "id": 5664, @@ -83083,7 +80687,7 @@ } ] }, - "price": 1161 + "price": 1398 }, "5665": { "id": 5665, @@ -83150,7 +80754,7 @@ } ] }, - "price": 1114.5 + "price": 1 }, "5666": { "id": 5666, @@ -83217,7 +80821,7 @@ } ] }, - "price": 5674.5 + "price": 272 }, "5667": { "id": 5667, @@ -83284,7 +80888,7 @@ } ] }, - "price": 281 + "price": 250 }, "5668": { "id": 5668, @@ -83434,7 +81038,7 @@ } ] }, - "price": 4.5 + "price": 4 }, "5672": { "id": 5672, @@ -83584,7 +81188,7 @@ } ] }, - "price": 1089.5 + "price": 950 }, "5676": { "id": 5676, @@ -83659,7 +81263,7 @@ } ] }, - "price": 1287 + "price": 1870 }, "5678": { "id": 5678, @@ -83734,7 +81338,7 @@ } ] }, - "price": 4032.5 + "price": 4032 }, "5680": { "id": 5680, @@ -83884,7 +81488,7 @@ } ] }, - "price": 25.5 + "price": 25 }, "5684": { "id": 5684, @@ -83974,7 +81578,7 @@ } ] }, - "price": 3330.5 + "price": 3685 }, "5688": { "id": 5688, @@ -84124,7 +81728,7 @@ } ] }, - "price": 2915.5 + "price": 2044 }, "5692": { "id": 5692, @@ -84274,7 +81878,7 @@ } ] }, - "price": 3888.5 + "price": 9347 }, "5696": { "id": 5696, @@ -84349,7 +81953,7 @@ } ] }, - "price": 12885 + "price": 5648 }, "5698": { "id": 5698, @@ -84424,7 +82028,7 @@ } ] }, - "price": 21257.5 + "price": 21257 }, "5700": { "id": 5700, @@ -84499,7 +82103,7 @@ } ] }, - "price": 1851.5 + "price": 14251 }, "5702": { "id": 5702, @@ -84589,7 +82193,7 @@ } ] }, - "price": 385.5 + "price": 770 }, "5706": { "id": 5706, @@ -84739,7 +82343,7 @@ } ] }, - "price": 280 + "price": 217 }, "5710": { "id": 5710, @@ -84814,7 +82418,7 @@ } ] }, - "price": 200 + "price": 2966 }, "5712": { "id": 5712, @@ -84889,7 +82493,7 @@ } ] }, - "price": 1955.5 + "price": 2490 }, "5714": { "id": 5714, @@ -84964,7 +82568,7 @@ } ] }, - "price": 5500.5 + "price": 74497 }, "5716": { "id": 5716, @@ -85039,7 +82643,7 @@ } ] }, - "price": 39100 + "price": 49220 }, "5718": { "id": 5718, @@ -85114,7 +82718,7 @@ } ] }, - "price": 900 + "price": 28 }, "5720": { "id": 5720, @@ -85189,7 +82793,7 @@ } ] }, - "price": 12061.5 + "price": 12061 }, "5722": { "id": 5722, @@ -85264,7 +82868,7 @@ } ] }, - "price": 85 + "price": 476 }, "5724": { "id": 5724, @@ -85339,7 +82943,7 @@ } ] }, - "price": 4245 + "price": 2229 }, "5726": { "id": 5726, @@ -85414,7 +83018,7 @@ } ] }, - "price": 22338 + "price": 810 }, "5728": { "id": 5728, @@ -85489,7 +83093,7 @@ } ] }, - "price": 34756 + "price": 11142 }, "5730": { "id": 5730, @@ -85665,7 +83269,7 @@ } ] }, - "price": 2499.5 + "price": 5106 }, "5736": { "id": 5736, @@ -85740,7 +83344,7 @@ } ] }, - "price": 9728 + "price": 7989 }, "5739": { "id": 5739, @@ -85758,7 +83362,7 @@ "examine": "This looks a good deal stronger than normal Asgarnian Ale.", "wiki_name": "Asgarnian ale(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_ale(m)", - "price": 151000 + "price": 40000 }, "5741": { "id": 5741, @@ -85776,7 +83380,7 @@ "examine": "This looks a good deal stronger than normal Wizards Mind Bomb.", "wiki_name": "Mature wmb", "wiki_url": "https://oldschool.runescape.wiki/w/Mature_wmb", - "price": 123321 + "price": 22090 }, "5743": { "id": 5743, @@ -85794,7 +83398,7 @@ "examine": "This looks a good deal stronger than normal Greenman's Ale.", "wiki_name": "Greenman's ale(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Greenman's_ale(m)", - "price": 51915.5 + "price": 93598 }, "5745": { "id": 5745, @@ -85812,7 +83416,7 @@ "examine": "This looks a good deal stronger than normal Dragon Bitter.", "wiki_name": "Dragon bitter(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bitter(m)", - "price": 60000 + "price": 50192 }, "5747": { "id": 5747, @@ -85830,7 +83434,7 @@ "examine": "This looks a good deal stronger than normal Dwarven Stout.", "wiki_name": "Dwarven stout(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarven_stout(m)", - "price": 8721.5 + "price": 15815 }, "5749": { "id": 5749, @@ -85848,7 +83452,7 @@ "examine": "This looks a good deal stronger than normal Moonlight Mead.", "wiki_name": "Moonlight mead(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_mead(m)", - "price": 40801 + "price": 64444 }, "5751": { "id": 5751, @@ -85866,7 +83470,7 @@ "examine": "This might help me chop harder.", "wiki_name": "Axeman's folly", "wiki_url": "https://oldschool.runescape.wiki/w/Axeman's_folly", - "price": 1757 + "price": 1076 }, "5753": { "id": 5753, @@ -85884,7 +83488,7 @@ "examine": "This looks a good deal stronger than normal Axeman's Folly.", "wiki_name": "Axeman's folly(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Axeman's_folly(m)", - "price": 49403 + "price": 73945 }, "5755": { "id": 5755, @@ -85920,7 +83524,7 @@ "examine": "This looks a good deal stronger than normal Chef's Delight.", "wiki_name": "Chef's delight(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Chef's_delight(m)", - "price": 61002.5 + "price": 67583 }, "5759": { "id": 5759, @@ -85938,7 +83542,7 @@ "examine": "Ale with bite.", "wiki_name": "Slayer's respite", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer's_respite", - "price": 42.5 + "price": 34 }, "5761": { "id": 5761, @@ -85956,7 +83560,7 @@ "examine": "This looks a good deal stronger than normal Slayer's Respite.", "wiki_name": "Slayer's respite(m)", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer's_respite(m)", - "price": 91273.5 + "price": 77699 }, "5763": { "id": 5763, @@ -85974,7 +83578,7 @@ "examine": "A glass of cider.", "wiki_name": "Cider", "wiki_url": "https://oldschool.runescape.wiki/w/Cider", - "price": 271 + "price": 232 }, "5765": { "id": 5765, @@ -85992,7 +83596,7 @@ "examine": "This looks a good deal stronger than normal cider.", "wiki_name": "Mature cider", "wiki_url": "https://oldschool.runescape.wiki/w/Mature_cider", - "price": 117500.5 + "price": 151728 }, "5767": { "id": 5767, @@ -86010,7 +83614,7 @@ "examine": "A pot filled with ale yeast.", "wiki_name": "Ale yeast", "wiki_url": "https://oldschool.runescape.wiki/w/Ale_yeast", - "price": 851.5 + "price": 851 }, "5769": { "id": 5769, @@ -86028,7 +83632,7 @@ "examine": "Sliced and hollowed out to form a keg.", "wiki_name": "Calquat keg", "wiki_url": "https://oldschool.runescape.wiki/w/Calquat_keg", - "price": 75 + "price": 138 }, "5771": { "id": 5771, @@ -86160,7 +83764,7 @@ "examine": "This keg contains 4 pints of Asgarnian Ale.", "wiki_name": "Asgarnian ale (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_ale_(keg)#4_pints", - "price": 52500 + "price": 60794 }, "5787": { "id": 5787, @@ -86226,7 +83830,7 @@ "examine": "This keg contains 4 pints of Greenmans Ale.", "wiki_name": "Greenmans ale (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Greenmans_ale_(keg)#4_pints", - "price": 12842 + "price": 27981 }, "5795": { "id": 5795, @@ -86292,7 +83896,7 @@ "examine": "This keg contains 4 pints of Wizards Mind Bomb.", "wiki_name": "Mind bomb (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Mind_bomb_(keg)#4_pints", - "price": 25863 + "price": 63579 }, "5803": { "id": 5803, @@ -86358,7 +83962,7 @@ "examine": "This keg contains 4 pints of Dragon Bitter.", "wiki_name": "Dragon bitter (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bitter_(keg)#4_pints", - "price": 25522 + "price": 19955 }, "5811": { "id": 5811, @@ -86424,7 +84028,7 @@ "examine": "This keg contains 4 pints of Moonlight Mead.", "wiki_name": "Moonlight mead (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_mead_(keg)#4_pints", - "price": 30050 + "price": 25001 }, "5819": { "id": 5819, @@ -86490,7 +84094,7 @@ "examine": "This keg contains 4 pints of Axeman's Folly.", "wiki_name": "Axeman's folly (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Axeman's_folly_(keg)#4_pints", - "price": 10848.5 + "price": 10848 }, "5827": { "id": 5827, @@ -86556,7 +84160,7 @@ "examine": "This keg contains 4 pints of Chef's Delight.", "wiki_name": "Chef's delight (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Chef's_delight_(keg)#4_pints", - "price": 13481.5 + "price": 5173 }, "5835": { "id": 5835, @@ -86622,7 +84226,7 @@ "examine": "This keg contains 4 pints of Slayer's Respite.", "wiki_name": "Slayer's respite (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer's_respite_(keg)#4_pints", - "price": 16485 + "price": 7256 }, "5843": { "id": 5843, @@ -86688,7 +84292,7 @@ "examine": "This keg contains 4 pints of Cider.", "wiki_name": "Cider (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Cider_(keg)#4_pints", - "price": 9570.5 + "price": 24900 }, "5851": { "id": 5851, @@ -86754,7 +84358,7 @@ "examine": "This keg contains 4 pints of mature Dwarven Stout.", "wiki_name": "Dwarven stout(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarven_stout(m)_(keg)#4_pints", - "price": 226000 + "price": 273790 }, "5859": { "id": 5859, @@ -86820,7 +84424,7 @@ "examine": "This keg contains 4 pints of mature Asgarnian Ale.", "wiki_name": "Asgarnian ale(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_ale(m)_(keg)#4_pints", - "price": 145000 + "price": 75250 }, "5867": { "id": 5867, @@ -86886,7 +84490,7 @@ "examine": "This keg contains 4 pints of mature Greenmans Ale.", "wiki_name": "Greenmans ale(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Greenmans_ale(m)_(keg)#4_pints", - "price": 351250 + "price": 176500 }, "5875": { "id": 5875, @@ -86952,7 +84556,7 @@ "examine": "This keg contains 4 pints of mature Wizards Mind Bomb.", "wiki_name": "Mind bomb(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Mind_bomb(m)_(keg)#4_pints", - "price": 64397 + "price": 46897 }, "5883": { "id": 5883, @@ -87084,7 +84688,7 @@ "examine": "This keg contains 4 pints of mature Moonlight Mead.", "wiki_name": "Moonlight mead(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_mead(m)_(keg)#4_pints", - "price": 143047 + "price": 120691 }, "5899": { "id": 5899, @@ -87216,7 +84820,7 @@ "examine": "This keg contains 4 pints of mature Chef's Delight.", "wiki_name": "Chef's delight(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Chef's_delight(m)_(keg)#4_pints", - "price": 270578 + "price": 304000 }, "5915": { "id": 5915, @@ -87282,7 +84886,7 @@ "examine": "This keg contains 4 pints of mature Slayer's Respite.", "wiki_name": "Slayer's respite(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer's_respite(m)_(keg)#4_pints", - "price": 260000 + "price": 112000 }, "5923": { "id": 5923, @@ -87348,7 +84952,7 @@ "examine": "This keg contains 4 pints of mature Cider.", "wiki_name": "Cider(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Cider(m)_(keg)#4_pints", - "price": 99095 + "price": 1026050 }, "5931": { "id": 5931, @@ -87366,7 +84970,7 @@ "examine": "I can weave this to make sacks.", "wiki_name": "Jute fibre", "wiki_url": "https://oldschool.runescape.wiki/w/Jute_fibre", - "price": 1255.5 + "price": 1487 }, "5933": { "id": 5933, @@ -87402,7 +85006,7 @@ "examine": "A vial filled with coconut milk", "wiki_name": "Coconut milk", "wiki_url": "https://oldschool.runescape.wiki/w/Coconut_milk", - "price": 197.5 + "price": 220 }, "5936": { "id": 5936, @@ -87434,7 +85038,7 @@ "examine": "A vial of extra strong weapon poison, for spears and daggers.", "wiki_name": "Weapon poison(+)", "wiki_url": "https://oldschool.runescape.wiki/w/Weapon_poison(+)", - "price": 360 + "price": 657 }, "5939": { "id": 5939, @@ -87466,7 +85070,7 @@ "examine": "A vial of super strong weapon poison, for spears and daggers.", "wiki_name": "Weapon poison(++)", "wiki_url": "https://oldschool.runescape.wiki/w/Weapon_poison(++)", - "price": 4628 + "price": 5710 }, "5942": { "id": 5942, @@ -87498,7 +85102,7 @@ "examine": "4 doses of extra strong antipoison potion.", "wiki_name": "Antidote+ (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote+#4_dose", - "price": 1461 + "price": 1976 }, "5945": { "id": 5945, @@ -87516,7 +85120,7 @@ "examine": "3 doses of extra strong antipoison potion.", "wiki_name": "Antidote+ (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote+#3_dose", - "price": 1023.5 + "price": 1362 }, "5947": { "id": 5947, @@ -87552,7 +85156,7 @@ "examine": "1 dose of extra strong antipoison potion.", "wiki_name": "Antidote+ (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote+#1_dose", - "price": 180 + "price": 720 }, "5951": { "id": 5951, @@ -87584,7 +85188,7 @@ "examine": "4 doses of super strong antipoison potion.", "wiki_name": "Antidote++ (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote++#4_dose", - "price": 5868.5 + "price": 4502 }, "5954": { "id": 5954, @@ -87602,7 +85206,7 @@ "examine": "3 doses of super strong antipoison potion.", "wiki_name": "Antidote++ (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote++#3_dose", - "price": 3938.5 + "price": 3355 }, "5956": { "id": 5956, @@ -87620,7 +85224,7 @@ "examine": "2 doses of super strong antipoison potion.", "wiki_name": "Antidote++ (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote++#2_dose", - "price": 2519 + "price": 2051 }, "5958": { "id": 5958, @@ -87638,7 +85242,7 @@ "examine": "1 dose of super strong antipoison potion.", "wiki_name": "Antidote++ (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote++#1_dose", - "price": 1465.5 + "price": 1301 }, "5960": { "id": 5960, @@ -87720,7 +85324,7 @@ "examine": "A fruit basket filled with tomatoes.", "wiki_name": "Tomatoes (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Tomatoes#(5)", - "price": 326.5 + "price": 186 }, "5970": { "id": 5970, @@ -87738,7 +85342,7 @@ "examine": "I could make a spicy curry with this.", "wiki_name": "Curry leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Curry_leaf", - "price": 24.5 + "price": 24 }, "5972": { "id": 5972, @@ -87756,7 +85360,7 @@ "examine": "Looks delicious.", "wiki_name": "Papaya fruit", "wiki_url": "https://oldschool.runescape.wiki/w/Papaya_fruit", - "price": 1133 + "price": 1627 }, "5974": { "id": 5974, @@ -87774,7 +85378,7 @@ "examine": "It's a coconut.", "wiki_name": "Coconut", "wiki_url": "https://oldschool.runescape.wiki/w/Coconut", - "price": 2422.5 + "price": 2422 }, "5976": { "id": 5976, @@ -87824,7 +85428,7 @@ "examine": "This is the largest fruit I've ever seen.", "wiki_name": "Calquat fruit", "wiki_url": "https://oldschool.runescape.wiki/w/Calquat_fruit", - "price": 124.5 + "price": 124 }, "5982": { "id": 5982, @@ -87842,7 +85446,7 @@ "examine": "A juicy watermelon.", "wiki_name": "Watermelon", "wiki_url": "https://oldschool.runescape.wiki/w/Watermelon", - "price": 24 + "price": 27 }, "5984": { "id": 5984, @@ -87878,7 +85482,7 @@ "examine": "Raw sweetcorn.", "wiki_name": "Sweetcorn", "wiki_url": "https://oldschool.runescape.wiki/w/Sweetcorn", - "price": 93.5 + "price": 52 }, "5988": { "id": 5988, @@ -87896,7 +85500,7 @@ "examine": "Delicious cooked sweetcorn.", "wiki_name": "Cooked sweetcorn", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_sweetcorn", - "price": 184 + "price": 349 }, "5990": { "id": 5990, @@ -87930,7 +85534,7 @@ "examine": "A bucket of apple mush.", "wiki_name": "Apple mush", "wiki_url": "https://oldschool.runescape.wiki/w/Apple_mush", - "price": 9000.5 + "price": 6250 }, "5994": { "id": 5994, @@ -87948,7 +85552,7 @@ "examine": "A handful of Hammerstone Hops.", "wiki_name": "Hammerstone hops", "wiki_url": "https://oldschool.runescape.wiki/w/Hammerstone_hops", - "price": 179 + "price": 245 }, "5996": { "id": 5996, @@ -87966,7 +85570,7 @@ "examine": "A handful of Asgarnian Hops.", "wiki_name": "Asgarnian hops", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_hops", - "price": 95 + "price": 234 }, "5998": { "id": 5998, @@ -87984,7 +85588,7 @@ "examine": "A handful of Yanillian Hops.", "wiki_name": "Yanillian hops", "wiki_url": "https://oldschool.runescape.wiki/w/Yanillian_hops", - "price": 1421 + "price": 1275 }, "6000": { "id": 6000, @@ -88002,7 +85606,7 @@ "examine": "A handful of Krandorian Hops.", "wiki_name": "Krandorian hops", "wiki_url": "https://oldschool.runescape.wiki/w/Krandorian_hops", - "price": 485.5 + "price": 83 }, "6002": { "id": 6002, @@ -88020,7 +85624,7 @@ "examine": "A handful of Wildblood Hops.", "wiki_name": "Wildblood hops", "wiki_url": "https://oldschool.runescape.wiki/w/Wildblood_hops", - "price": 90 + "price": 25 }, "6004": { "id": 6004, @@ -88038,7 +85642,7 @@ "examine": "A Bittercap Mushroom", "wiki_name": "Mushroom", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom", - "price": 126 + "price": 335 }, "6006": { "id": 6006, @@ -88056,7 +85660,7 @@ "examine": "A handful of Barley.", "wiki_name": "Barley", "wiki_url": "https://oldschool.runescape.wiki/w/Barley", - "price": 5362 + "price": 800 }, "6008": { "id": 6008, @@ -88074,7 +85678,7 @@ "examine": "A handful of barley malt.", "wiki_name": "Barley malt", "wiki_url": "https://oldschool.runescape.wiki/w/Barley_malt", - "price": 820 + "price": 1472 }, "6010": { "id": 6010, @@ -88092,7 +85696,7 @@ "examine": "A bunch of marigolds.", "wiki_name": "Marigolds", "wiki_url": "https://oldschool.runescape.wiki/w/Marigolds", - "price": 280 + "price": 211 }, "6012": { "id": 6012, @@ -88110,7 +85714,7 @@ "examine": "A bunch of nasturtiums.", "wiki_name": "Nasturtiums", "wiki_url": "https://oldschool.runescape.wiki/w/Nasturtiums", - "price": 421.5 + "price": 155 }, "6014": { "id": 6014, @@ -88146,7 +85750,7 @@ "examine": "Don't prick yourself with this.", "wiki_name": "Cactus spine", "wiki_url": "https://oldschool.runescape.wiki/w/Cactus_spine", - "price": 2148.5 + "price": 2148 }, "6018": { "id": 6018, @@ -88164,7 +85768,7 @@ "examine": "They look sweet and juicy, but only a fool would eat them.", "wiki_name": "Poison ivy berries", "wiki_url": "https://oldschool.runescape.wiki/w/Poison_ivy_berries", - "price": 71 + "price": 62 }, "6020": { "id": 6020, @@ -88180,7 +85784,7 @@ "examine": "A pile of leaves.", "wiki_name": "Leaves", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves", - "price": 20 + "price": 32 }, "6022": { "id": 6022, @@ -88196,7 +85800,7 @@ "examine": "A pile of Oak tree leaves.", "wiki_name": "Leaves (oak)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(oak)", - "price": 20 + "price": 108 }, "6024": { "id": 6024, @@ -88212,7 +85816,7 @@ "examine": "A pile of Willow tree leaves.", "wiki_name": "Leaves (willow)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(willow)", - "price": 101 + "price": 142 }, "6026": { "id": 6026, @@ -88228,7 +85832,7 @@ "examine": "A pile of Yew tree leaves.", "wiki_name": "Leaves (yew)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(yew)", - "price": 315 + "price": 464 }, "6028": { "id": 6028, @@ -88244,7 +85848,7 @@ "examine": "A pile of Maple tree leaves.", "wiki_name": "Leaves (maple)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(maple)", - "price": 225 + "price": 303 }, "6030": { "id": 6030, @@ -88260,7 +85864,7 @@ "examine": "A pile of Magic tree leaves.", "wiki_name": "Leaves (magic)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(magic)", - "price": 484.5 + "price": 697 }, "6032": { "id": 6032, @@ -88278,7 +85882,7 @@ "examine": "Good for plants, helps them grow.", "wiki_name": "Compost", "wiki_url": "https://oldschool.runescape.wiki/w/Compost", - "price": 15 + "price": 24 }, "6034": { "id": 6034, @@ -88296,7 +85900,7 @@ "examine": "Super-good for the smallest or largest of plants.", "wiki_name": "Supercompost", "wiki_url": "https://oldschool.runescape.wiki/w/Supercompost", - "price": 61 + "price": 267 }, "6036": { "id": 6036, @@ -88314,7 +85918,7 @@ "examine": "Use this on plants to cure disease.", "wiki_name": "Plant cure", "wiki_url": "https://oldschool.runescape.wiki/w/Plant_cure", - "price": 196 + "price": 138 }, "6038": { "id": 6038, @@ -88420,7 +86024,7 @@ "examine": "The roots of the Oak tree.", "wiki_name": "Oak roots", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_roots", - "price": 80 + "price": 30 }, "6045": { "id": 6045, @@ -88438,7 +86042,7 @@ "examine": "The roots of the Willow tree.", "wiki_name": "Willow roots", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_roots", - "price": 180 + "price": 60 }, "6047": { "id": 6047, @@ -88456,7 +86060,7 @@ "examine": "The roots of the Maple tree.", "wiki_name": "Maple roots", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_roots", - "price": 41.5 + "price": 94 }, "6049": { "id": 6049, @@ -88474,7 +86078,7 @@ "examine": "The roots of the Yew tree.", "wiki_name": "Yew roots", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_roots", - "price": 89 + "price": 51 }, "6051": { "id": 6051, @@ -88525,7 +86129,7 @@ "examine": "A handful of weeds.", "wiki_name": "Weeds", "wiki_url": "https://oldschool.runescape.wiki/w/Weeds", - "price": 116.5 + "price": 151 }, "6057": { "id": 6057, @@ -88606,7 +86210,7 @@ "ranged": 1 } }, - "price": 4141.5 + "price": 143 }, "6062": { "id": 6062, @@ -88645,7 +86249,7 @@ "ranged": 1 } }, - "price": 5273.5 + "price": 10364 }, "6063": { "id": 6063, @@ -89868,7 +87472,7 @@ "defence": 40 } }, - "price": 21946.5 + "price": 55778 }, "6129": { "id": 6129, @@ -89989,7 +87593,7 @@ "ranged": 40 } }, - "price": 40167 + "price": 36034 }, "6133": { "id": 6133, @@ -90030,7 +87634,7 @@ "ranged": 40 } }, - "price": 7903.5 + "price": 3568 }, "6135": { "id": 6135, @@ -90071,7 +87675,7 @@ "ranged": 40 } }, - "price": 4942.5 + "price": 10016 }, "6137": { "id": 6137, @@ -90153,7 +87757,7 @@ "magic": 40 } }, - "price": 28963.5 + "price": 26034 }, "6141": { "id": 6141, @@ -90194,7 +87798,7 @@ "magic": 40 } }, - "price": 28099.5 + "price": 24100 }, "6143": { "id": 6143, @@ -90235,7 +87839,7 @@ "magic": 40 } }, - "price": 1624.5 + "price": 8348 }, "6145": { "id": 6145, @@ -90273,7 +87877,7 @@ "slot": "feet", "requirements": null }, - "price": 415.5 + "price": 463 }, "6147": { "id": 6147, @@ -90311,7 +87915,7 @@ "slot": "feet", "requirements": null }, - "price": 30000 + "price": 17564 }, "6149": { "id": 6149, @@ -90349,7 +87953,7 @@ "slot": "hands", "requirements": null }, - "price": 1440 + "price": 10500 }, "6151": { "id": 6151, @@ -90425,7 +88029,7 @@ "slot": "hands", "requirements": null }, - "price": 91602 + "price": 80000 }, "6155": { "id": 6155, @@ -90461,7 +88065,7 @@ "examine": "A spherical chunk of rock-shell.", "wiki_name": "Rock-shell chunk", "wiki_url": "https://oldschool.runescape.wiki/w/Rock-shell_chunk", - "price": 9306 + "price": 11250 }, "6159": { "id": 6159, @@ -90479,7 +88083,7 @@ "examine": "A curved piece of rock-shell.", "wiki_name": "Rock-shell shard", "wiki_url": "https://oldschool.runescape.wiki/w/Rock-shell_shard", - "price": 19349 + "price": 6700 }, "6161": { "id": 6161, @@ -90497,7 +88101,7 @@ "examine": "A slim piece of rock-shell.", "wiki_name": "Rock-shell splinter", "wiki_url": "https://oldschool.runescape.wiki/w/Rock-shell_splinter", - "price": 20168 + "price": 12200 }, "6163": { "id": 6163, @@ -90515,7 +88119,7 @@ "examine": "A fearsome looking skull.", "wiki_name": "Skull piece", "wiki_url": "https://oldschool.runescape.wiki/w/Skull_piece", - "price": 31652 + "price": 71764 }, "6165": { "id": 6165, @@ -90533,7 +88137,7 @@ "examine": "A slightly damaged ribcage.", "wiki_name": "Ribcage piece", "wiki_url": "https://oldschool.runescape.wiki/w/Ribcage_piece", - "price": 4878.5 + "price": 17550 }, "6167": { "id": 6167, @@ -90551,7 +88155,7 @@ "examine": "An interesting looking bone shard.", "wiki_name": "Fibula piece", "wiki_url": "https://oldschool.runescape.wiki/w/Fibula_piece", - "price": 12762 + "price": 23130 }, "6169": { "id": 6169, @@ -90569,7 +88173,7 @@ "examine": "A toughened chunk of dagannoth hide.", "wiki_name": "Circular hide", "wiki_url": "https://oldschool.runescape.wiki/w/Circular_hide", - "price": 15454 + "price": 17736 }, "6171": { "id": 6171, @@ -90605,7 +88209,7 @@ "examine": "A weathered chunk of dagannoth hide.", "wiki_name": "Stretched hide", "wiki_url": "https://oldschool.runescape.wiki/w/Stretched_hide", - "price": 1.5 + "price": 1 }, "6178": { "id": 6178, @@ -91442,7 +89046,7 @@ "defence": 25 } }, - "price": 6747 + "price": 4551 }, "6237": { "id": 6237, @@ -91481,7 +89085,7 @@ "defence": 25 } }, - "price": 3911.5 + "price": 1756 }, "6239": { "id": 6239, @@ -91862,7 +89466,7 @@ "defence": 25 } }, - "price": 7203.5 + "price": 32153 }, "6259": { "id": 6259, @@ -91901,7 +89505,7 @@ "defence": 25 } }, - "price": 1764 + "price": 786 }, "6261": { "id": 6261, @@ -92282,7 +89886,7 @@ "defence": 25 } }, - "price": 3448 + "price": 2261 }, "6281": { "id": 6281, @@ -92300,7 +89904,7 @@ "examine": "A wooden pole for use in primitive construction.", "wiki_name": "Thatch spar light", "wiki_url": "https://oldschool.runescape.wiki/w/Thatch_spar_light", - "price": 13 + "price": 182 }, "6283": { "id": 6283, @@ -92354,7 +89958,7 @@ "examine": "Scaly but not slimy! It could be a useful material if it were tanned.", "wiki_name": "Snake hide", "wiki_url": "https://oldschool.runescape.wiki/w/Snake_hide", - "price": 62 + "price": 123 }, "6289": { "id": 6289, @@ -92372,7 +89976,7 @@ "examine": "Nicely tanned skin from a snake.", "wiki_name": "Snakeskin", "wiki_url": "https://oldschool.runescape.wiki/w/Snakeskin", - "price": 23 + "price": 14 }, "6291": { "id": 6291, @@ -92390,7 +89994,7 @@ "examine": "Its creeping days are over!", "wiki_name": "Spider carcass", "wiki_url": "https://oldschool.runescape.wiki/w/Spider_carcass", - "price": 167.5 + "price": 139 }, "6293": { "id": 6293, @@ -92458,7 +90062,7 @@ "examine": "A nicely roasted spider threaded onto an arrow shaft.", "wiki_name": "Spider on shaft", "wiki_url": "https://oldschool.runescape.wiki/w/Spider_on_shaft", - "price": 35.5 + "price": 35 }, "6301": { "id": 6301, @@ -92507,7 +90111,7 @@ "examine": "A sharp pointed stick, quite resistant to fire.", "wiki_name": "Skewer stick", "wiki_url": "https://oldschool.runescape.wiki/w/Skewer_stick", - "price": 42 + "price": 12 }, "6306": { "id": 6306, @@ -92524,7 +90128,7 @@ "examine": "Karamja currency.", "wiki_name": "Trading sticks", "wiki_url": "https://oldschool.runescape.wiki/w/Trading_sticks", - "price": 9 + "price": 10 }, "6311": { "id": 6311, @@ -92542,7 +90146,7 @@ "examine": "Plant this in a herb patch to grow Goutweed.", "wiki_name": "Gout tuber", "wiki_url": "https://oldschool.runescape.wiki/w/Gout_tuber", - "price": 935075.5 + "price": 676136 }, "6313": { "id": 6313, @@ -92615,7 +90219,7 @@ } ] }, - "price": 1466.5 + "price": 1466 }, "6315": { "id": 6315, @@ -92688,7 +90292,7 @@ } ] }, - "price": 6705.5 + "price": 7575 }, "6317": { "id": 6317, @@ -92761,7 +90365,7 @@ } ] }, - "price": 18415.5 + "price": 18415 }, "6319": { "id": 6319, @@ -92819,7 +90423,7 @@ "defence": 30 } }, - "price": 658 + "price": 1048 }, "6324": { "id": 6324, @@ -92860,7 +90464,7 @@ "defence": 30 } }, - "price": 335 + "price": 1619 }, "6326": { "id": 6326, @@ -92901,7 +90505,7 @@ "defence": 30 } }, - "price": 226.5 + "price": 275 }, "6328": { "id": 6328, @@ -92942,7 +90546,7 @@ "defence": 30 } }, - "price": 227.5 + "price": 422 }, "6330": { "id": 6330, @@ -93001,7 +90605,7 @@ "examine": "Some well-cut mahogany logs.", "wiki_name": "Mahogany logs", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_logs", - "price": 530.5 + "price": 530 }, "6333": { "id": 6333, @@ -93019,7 +90623,7 @@ "examine": "Some well-cut teak logs.", "wiki_name": "Teak logs", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_logs", - "price": 172 + "price": 290 }, "6335": { "id": 6335, @@ -93095,7 +90699,7 @@ "slot": "head", "requirements": null }, - "price": 5072.5 + "price": 2301 }, "6339": { "id": 6339, @@ -93133,7 +90737,7 @@ "slot": "head", "requirements": null }, - "price": 589.5 + "price": 2594 }, "6341": { "id": 6341, @@ -93171,7 +90775,7 @@ "slot": "body", "requirements": null }, - "price": 2121.5 + "price": 4588 }, "6343": { "id": 6343, @@ -93209,7 +90813,7 @@ "slot": "legs", "requirements": null }, - "price": 3563.5 + "price": 1852 }, "6345": { "id": 6345, @@ -93247,7 +90851,7 @@ "slot": "head", "requirements": null }, - "price": 8500 + "price": 11588 }, "6347": { "id": 6347, @@ -93323,7 +90927,7 @@ "slot": "feet", "requirements": null }, - "price": 1284.5 + "price": 1284 }, "6351": { "id": 6351, @@ -93399,7 +91003,7 @@ "slot": "legs", "requirements": null }, - "price": 7327.5 + "price": 2919 }, "6355": { "id": 6355, @@ -93437,7 +91041,7 @@ "slot": "head", "requirements": null }, - "price": 858 + "price": 6362 }, "6357": { "id": 6357, @@ -93475,7 +91079,7 @@ "slot": "feet", "requirements": null }, - "price": 900 + "price": 535 }, "6359": { "id": 6359, @@ -93551,7 +91155,7 @@ "slot": "body", "requirements": null }, - "price": 3791 + "price": 1750 }, "6363": { "id": 6363, @@ -93665,7 +91269,7 @@ "slot": "feet", "requirements": null }, - "price": 2952 + "price": 1485 }, "6369": { "id": 6369, @@ -93703,7 +91307,7 @@ "slot": "hands", "requirements": null }, - "price": 858.5 + "price": 858 }, "6371": { "id": 6371, @@ -93741,7 +91345,7 @@ "slot": "body", "requirements": null }, - "price": 7643 + "price": 5456 }, "6373": { "id": 6373, @@ -93779,7 +91383,7 @@ "slot": "legs", "requirements": null }, - "price": 6531 + "price": 1217 }, "6375": { "id": 6375, @@ -93817,7 +91421,7 @@ "slot": "head", "requirements": null }, - "price": 2758 + "price": 1580 }, "6377": { "id": 6377, @@ -93855,7 +91459,7 @@ "slot": "feet", "requirements": null }, - "price": 5400 + "price": 49500 }, "6379": { "id": 6379, @@ -93893,7 +91497,7 @@ "slot": "hands", "requirements": null }, - "price": 1012 + "price": 501 }, "6382": { "id": 6382, @@ -93931,7 +91535,7 @@ "slot": "head", "requirements": null }, - "price": 1528.5 + "price": 1528 }, "6384": { "id": 6384, @@ -93969,7 +91573,7 @@ "slot": "body", "requirements": null }, - "price": 197 + "price": 672 }, "6386": { "id": 6386, @@ -94007,7 +91611,7 @@ "slot": "legs", "requirements": null }, - "price": 619 + "price": 727 }, "6388": { "id": 6388, @@ -94045,7 +91649,7 @@ "slot": "body", "requirements": null }, - "price": 3928 + "price": 655 }, "6390": { "id": 6390, @@ -94083,7 +91687,7 @@ "slot": "legs", "requirements": null }, - "price": 980 + "price": 572 }, "6392": { "id": 6392, @@ -94121,7 +91725,7 @@ "slot": "head", "requirements": null }, - "price": 634.5 + "price": 1150 }, "6394": { "id": 6394, @@ -94159,7 +91763,7 @@ "slot": "body", "requirements": null }, - "price": 163 + "price": 1001 }, "6396": { "id": 6396, @@ -94197,7 +91801,7 @@ "slot": "legs", "requirements": null }, - "price": 675 + "price": 1376 }, "6398": { "id": 6398, @@ -94235,7 +91839,7 @@ "slot": "legs", "requirements": null }, - "price": 501 + "price": 438 }, "6400": { "id": 6400, @@ -94273,7 +91877,7 @@ "slot": "head", "requirements": null }, - "price": 482 + "price": 806 }, "6402": { "id": 6402, @@ -94311,7 +91915,7 @@ "slot": "body", "requirements": null }, - "price": 562 + "price": 4507 }, "6404": { "id": 6404, @@ -94349,7 +91953,7 @@ "slot": "legs", "requirements": null }, - "price": 595 + "price": 506 }, "6406": { "id": 6406, @@ -94519,7 +92123,7 @@ } ] }, - "price": 5313.5 + "price": 850 }, "6412": { "id": 6412, @@ -94717,7 +92321,7 @@ } ] }, - "price": 1874.5 + "price": 1006 }, "6418": { "id": 6418, @@ -94783,7 +92387,7 @@ } ] }, - "price": 857 + "price": 1289 }, "6420": { "id": 6420, @@ -94849,7 +92453,7 @@ } ] }, - "price": 1916 + "price": 2250 }, "6448": { "id": 6448, @@ -95157,7 +92761,7 @@ "examine": "Pour this on compost to turn it into super-compost.", "wiki_name": "Compost potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Compost_potion#4_dose", - "price": 12 + "price": 25 }, "6472": { "id": 6472, @@ -95175,7 +92779,7 @@ "examine": "Pour this on compost to turn it into super-compost.", "wiki_name": "Compost potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Compost_potion#3_dose", - "price": 1 + "price": 2 }, "6474": { "id": 6474, @@ -95193,7 +92797,7 @@ "examine": "Pour this on compost to turn it into super-compost.", "wiki_name": "Compost potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Compost_potion#2_dose", - "price": 3.5 + "price": 11 }, "6476": { "id": 6476, @@ -95211,7 +92815,7 @@ "examine": "Pour this on compost to turn it into super-compost.", "wiki_name": "Compost potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Compost_potion#1_dose", - "price": 4 + "price": 11 }, "6478": { "id": 6478, @@ -95346,7 +92950,7 @@ } ] }, - "price": 3080 + "price": 2673 }, "6523": { "id": 6523, @@ -95421,7 +93025,7 @@ } ] }, - "price": 577608 + "price": 370439 }, "6524": { "id": 6524, @@ -95461,7 +93065,7 @@ "defence": 60 } }, - "price": 521825.5 + "price": 422482 }, "6525": { "id": 6525, @@ -95536,7 +93140,7 @@ } ] }, - "price": 114364 + "price": 55472 }, "6526": { "id": 6526, @@ -95619,7 +93223,7 @@ } ] }, - "price": 500195.5 + "price": 339483 }, "6527": { "id": 6527, @@ -95687,7 +93291,7 @@ } ] }, - "price": 208703.5 + "price": 352500 }, "6528": { "id": 6528, @@ -95755,7 +93359,7 @@ } ] }, - "price": 236014.5 + "price": 348960 }, "6529": { "id": 6529, @@ -96249,7 +93853,7 @@ } ] }, - "price": 31219.5 + "price": 31219 }, "6563": { "id": 6563, @@ -96332,7 +93936,7 @@ } ] }, - "price": 55140 + "price": 77656 }, "6568": { "id": 6568, @@ -96370,7 +93974,7 @@ "slot": "cape", "requirements": null }, - "price": 855559.5 + "price": 541843 }, "6570": { "id": 6570, @@ -96422,7 +94026,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut onyx", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_onyx", - "price": 2751691 + "price": 1770283 }, "6573": { "id": 6573, @@ -96440,7 +94044,7 @@ "examine": "This looks valuable.", "wiki_name": "Onyx", "wiki_url": "https://oldschool.runescape.wiki/w/Onyx", - "price": 2763706.5 + "price": 1775550 }, "6575": { "id": 6575, @@ -96478,7 +94082,7 @@ "slot": "ring", "requirements": null }, - "price": 2500000 + "price": 1686567 }, "6577": { "id": 6577, @@ -96516,7 +94120,7 @@ "slot": "neck", "requirements": null }, - "price": 2750000 + "price": 1800000 }, "6579": { "id": 6579, @@ -96534,7 +94138,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Onyx amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Onyx_amulet_(u)", - "price": 2611999.5 + "price": 2002781 }, "6581": { "id": 6581, @@ -96572,7 +94176,7 @@ "slot": "neck", "requirements": null }, - "price": 2965000 + "price": 1638043 }, "6583": { "id": 6583, @@ -96610,7 +94214,7 @@ "slot": "ring", "requirements": null }, - "price": 2860200 + "price": 1847570 }, "6585": { "id": 6585, @@ -96648,7 +94252,7 @@ "slot": "neck", "requirements": null }, - "price": 2758125.5 + "price": 1779342 }, "6587": { "id": 6587, @@ -96723,7 +94327,7 @@ } ] }, - "price": 601 + "price": 207 }, "6589": { "id": 6589, @@ -96798,7 +94402,7 @@ } ] }, - "price": 4337.5 + "price": 2188 }, "6591": { "id": 6591, @@ -96948,7 +94552,7 @@ } ] }, - "price": 318.5 + "price": 318 }, "6595": { "id": 6595, @@ -97098,7 +94702,7 @@ } ] }, - "price": 389 + "price": 176 }, "6599": { "id": 6599, @@ -97167,7 +94771,7 @@ } ] }, - "price": 1339 + "price": 1092 }, "6601": { "id": 6601, @@ -97324,7 +94928,7 @@ } ] }, - "price": 2773.5 + "price": 2773 }, "6605": { "id": 6605, @@ -97399,7 +95003,7 @@ } ] }, - "price": 894.5 + "price": 894 }, "6607": { "id": 6607, @@ -97549,7 +95153,7 @@ } ] }, - "price": 1697.5 + "price": 10760 }, "6611": { "id": 6611, @@ -97624,7 +95228,7 @@ } ] }, - "price": 1031 + "price": 625 }, "6613": { "id": 6613, @@ -97692,7 +95296,7 @@ } ] }, - "price": 669.5 + "price": 545 }, "6615": { "id": 6615, @@ -97732,7 +95336,7 @@ "defence": 10 } }, - "price": 2229 + "price": 979 }, "6617": { "id": 6617, @@ -97772,7 +95376,7 @@ "defence": 10 } }, - "price": 6484.5 + "price": 5120 }, "6619": { "id": 6619, @@ -97812,7 +95416,7 @@ "defence": 10 } }, - "price": 2659 + "price": 863 }, "6621": { "id": 6621, @@ -97852,7 +95456,7 @@ "defence": 10 } }, - "price": 6.5 + "price": 6 }, "6623": { "id": 6623, @@ -97892,7 +95496,7 @@ "defence": 10 } }, - "price": 896.5 + "price": 2562 }, "6625": { "id": 6625, @@ -97932,7 +95536,7 @@ "defence": 10 } }, - "price": 6046.5 + "price": 2757 }, "6627": { "id": 6627, @@ -97972,7 +95576,7 @@ "defence": 10 } }, - "price": 526 + "price": 6197 }, "6629": { "id": 6629, @@ -98012,7 +95616,7 @@ "defence": 10 } }, - "price": 420.5 + "price": 320 }, "6631": { "id": 6631, @@ -98052,7 +95656,7 @@ "defence": 10 } }, - "price": 1811 + "price": 1021 }, "6633": { "id": 6633, @@ -98092,7 +95696,7 @@ "defence": 10 } }, - "price": 2304 + "price": 1688 }, "6635": { "id": 6635, @@ -98612,7 +96216,7 @@ "examine": "An empty fishbowl.", "wiki_name": "Fishbowl (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishbowl#Empty", - "price": 60 + "price": 37 }, "6668": { "id": 6668, @@ -98798,7 +96402,7 @@ "examine": "One of the ingredients for making fish food.", "wiki_name": "Ground guam", "wiki_url": "https://oldschool.runescape.wiki/w/Ground_guam", - "price": 108.5 + "price": 17 }, "6683": { "id": 6683, @@ -98832,7 +96436,7 @@ "examine": "4 doses of Saradomin brew.", "wiki_name": "Saradomin brew (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_brew#4_dose", - "price": 12135 + "price": 15183 }, "6687": { "id": 6687, @@ -98850,7 +96454,7 @@ "examine": "3 doses of Saradomin brew.", "wiki_name": "Saradomin brew (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_brew#3_dose", - "price": 9023 + "price": 11041 }, "6689": { "id": 6689, @@ -98868,7 +96472,7 @@ "examine": "2 doses of Saradomin brew.", "wiki_name": "Saradomin brew (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_brew#2_dose", - "price": 5873 + "price": 7480 }, "6691": { "id": 6691, @@ -98886,7 +96490,7 @@ "examine": "1 dose of Saradomin brew.", "wiki_name": "Saradomin brew (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_brew#1_dose", - "price": 2971.5 + "price": 3959 }, "6693": { "id": 6693, @@ -98904,7 +96508,7 @@ "examine": "A crushed bird's nest.", "wiki_name": "Crushed nest", "wiki_url": "https://oldschool.runescape.wiki/w/Crushed_nest", - "price": 6970 + "price": 7926 }, "6695": { "id": 6695, @@ -98945,7 +96549,7 @@ "examine": "A pat of freshly churned butter.", "wiki_name": "Pat of butter", "wiki_url": "https://oldschool.runescape.wiki/w/Pat_of_butter", - "price": 40 + "price": 45 }, "6699": { "id": 6699, @@ -98979,7 +96583,7 @@ "examine": "It'd taste even better with some toppings.", "wiki_name": "Baked potato", "wiki_url": "https://oldschool.runescape.wiki/w/Baked_potato", - "price": 200 + "price": 242 }, "6703": { "id": 6703, @@ -99015,7 +96619,7 @@ "examine": "A baked potato with butter and cheese.", "wiki_name": "Potato with cheese", "wiki_url": "https://oldschool.runescape.wiki/w/Potato_with_cheese", - "price": 230.5 + "price": 348 }, "6707": { "id": 6707, @@ -99302,7 +96906,7 @@ } ] }, - "price": 34378 + "price": 45663 }, "6728": { "id": 6728, @@ -99334,7 +96938,7 @@ "examine": "These would feed a dogfish for months!", "wiki_name": "Dagannoth bones", "wiki_url": "https://oldschool.runescape.wiki/w/Dagannoth_bones", - "price": 11301 + "price": 8150 }, "6731": { "id": 6731, @@ -99372,7 +96976,7 @@ "slot": "ring", "requirements": null }, - "price": 651039 + "price": 555677 }, "6733": { "id": 6733, @@ -99410,7 +97014,7 @@ "slot": "ring", "requirements": null }, - "price": 4547616 + "price": 3531373 }, "6735": { "id": 6735, @@ -99448,7 +97052,7 @@ "slot": "ring", "requirements": null }, - "price": 73156 + "price": 85198 }, "6737": { "id": 6737, @@ -99486,7 +97090,7 @@ "slot": "ring", "requirements": null }, - "price": 5113640 + "price": 4685975 }, "6739": { "id": 6739, @@ -99561,7 +97165,7 @@ } ] }, - "price": 56829 + "price": 64155 }, "6741": { "id": 6741, @@ -99809,7 +97413,7 @@ "slot": "body", "requirements": null }, - "price": 1887.5 + "price": 924 }, "6752": { "id": 6752, @@ -99847,7 +97451,7 @@ "slot": "legs", "requirements": null }, - "price": 1849.5 + "price": 508 }, "6754": { "id": 6754, @@ -100057,7 +97661,7 @@ } ] }, - "price": 7257.5 + "price": 7257 }, "6764": { "id": 6764, @@ -100123,7 +97727,7 @@ } ] }, - "price": 3950 + "price": 4535 }, "6766": { "id": 6766, @@ -100866,7 +98470,7 @@ "examine": "Better eat this before it melts.", "wiki_name": "Choc-ice", "wiki_url": "https://oldschool.runescape.wiki/w/Choc-ice", - "price": 127 + "price": 196 }, "6796": { "id": 6796, @@ -101073,7 +98677,7 @@ "strength": 50 } }, - "price": 41211.5 + "price": 41211 }, "6810": { "id": 6810, @@ -101114,7 +98718,7 @@ "examine": "Bones of a large flying creature!", "wiki_name": "Wyvern bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wyvern_bones", - "price": 3546.5 + "price": 2681 }, "6814": { "id": 6814, @@ -101131,7 +98735,7 @@ "examine": "This would make warm clothing.", "wiki_name": "Fur", "wiki_url": "https://oldschool.runescape.wiki/w/Fur", - "price": 546 + "price": 489 }, "6817": { "id": 6817, @@ -102308,7 +99912,7 @@ "magic": 60 } }, - "price": 2117910.5 + "price": 3105006 }, "6891": { "id": 6891, @@ -102608,7 +100212,7 @@ } ] }, - "price": 120733 + "price": 224245 }, "6910": { "id": 6910, @@ -102690,7 +100294,7 @@ } ] }, - "price": 461272.5 + "price": 685211 }, "6912": { "id": 6912, @@ -102772,7 +100376,7 @@ } ] }, - "price": 1797500 + "price": 1599912 }, "6914": { "id": 6914, @@ -102854,7 +100458,7 @@ } ] }, - "price": 2099230.5 + "price": 2211202 }, "6916": { "id": 6916, @@ -102895,7 +100499,7 @@ "defence": 25 } }, - "price": 1506750 + "price": 1883532 }, "6918": { "id": 6918, @@ -102936,7 +100540,7 @@ "defence": 25 } }, - "price": 976108.5 + "price": 976108 }, "6920": { "id": 6920, @@ -102977,7 +100581,7 @@ "defence": 25 } }, - "price": 411473 + "price": 393500 }, "6922": { "id": 6922, @@ -103018,7 +100622,7 @@ "defence": 25 } }, - "price": 616174 + "price": 720000 }, "6924": { "id": 6924, @@ -103059,7 +100663,7 @@ "defence": 25 } }, - "price": 1438523 + "price": 2109500 }, "6926": { "id": 6926, @@ -103301,7 +100905,7 @@ "slot": "cape", "requirements": null }, - "price": 2972.5 + "price": 2496 }, "6961": { "id": 6961, @@ -103428,7 +101032,7 @@ "examine": "A tiny chunk of sandstone.", "wiki_name": "Sandstone (1kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Sandstone#1kg", - "price": 2 + "price": 15 }, "6973": { "id": 6973, @@ -103446,7 +101050,7 @@ "examine": "A small chunk of sandstone.", "wiki_name": "Sandstone (2kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Sandstone#2kg", - "price": 476 + "price": 801 }, "6975": { "id": 6975, @@ -103482,7 +101086,7 @@ "examine": "A large chunk of sandstone.", "wiki_name": "Sandstone (10kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Sandstone#10kg", - "price": 3309.5 + "price": 2875 }, "6979": { "id": 6979, @@ -103500,7 +101104,7 @@ "examine": "A tiny chunk of granite.", "wiki_name": "Granite (500g)", "wiki_url": "https://oldschool.runescape.wiki/w/Granite#500g", - "price": 500 + "price": 75 }, "6981": { "id": 6981, @@ -103536,7 +101140,7 @@ "examine": "A medium-sized chunk of granite.", "wiki_name": "Granite (5kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Granite#5kg", - "price": 789 + "price": 652 }, "6985": { "id": 6985, @@ -103871,7 +101475,7 @@ "slayer": 33 } }, - "price": 376.5 + "price": 181 }, "7053": { "id": 7053, @@ -103925,7 +101529,7 @@ "examine": "A baked potato with chilli con carne.", "wiki_name": "Chilli potato", "wiki_url": "https://oldschool.runescape.wiki/w/Chilli_potato", - "price": 193 + "price": 217 }, "7056": { "id": 7056, @@ -103943,7 +101547,7 @@ "examine": "A baked potato with egg and tomato.", "wiki_name": "Egg potato", "wiki_url": "https://oldschool.runescape.wiki/w/Egg_potato", - "price": 269.5 + "price": 355 }, "7058": { "id": 7058, @@ -103979,7 +101583,7 @@ "examine": "A baked potato with tuna and sweetcorn.", "wiki_name": "Tuna potato", "wiki_url": "https://oldschool.runescape.wiki/w/Tuna_potato", - "price": 1529.5 + "price": 1688 }, "7062": { "id": 7062, @@ -103997,7 +101601,7 @@ "examine": "A bowl of meat in chilli-con-carne sauce.", "wiki_name": "Chilli con carne", "wiki_url": "https://oldschool.runescape.wiki/w/Chilli_con_carne", - "price": 2539.5 + "price": 320 }, "7064": { "id": 7064, @@ -104033,7 +101637,7 @@ "examine": "A bowl of fried mushroom and onions.", "wiki_name": "Mushroom & onion", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom_&_onion", - "price": 10000 + "price": 1099 }, "7068": { "id": 7068, @@ -104051,7 +101655,7 @@ "examine": "A bowl of cooked tuna and sweetcorn.", "wiki_name": "Tuna and corn", "wiki_url": "https://oldschool.runescape.wiki/w/Tuna_and_corn", - "price": 899 + "price": 1150 }, "7070": { "id": 7070, @@ -104087,7 +101691,7 @@ "examine": "A bowl of spicy sauce.", "wiki_name": "Spicy sauce", "wiki_url": "https://oldschool.runescape.wiki/w/Spicy_sauce", - "price": 1558 + "price": 1350 }, "7074": { "id": 7074, @@ -104105,7 +101709,7 @@ "examine": "A bowl of chopped garlic.", "wiki_name": "Chopped garlic", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_garlic", - "price": 10000 + "price": 282 }, "7076": { "id": 7076, @@ -104123,7 +101727,7 @@ "examine": "A bowl of uncooked egg.", "wiki_name": "Uncooked egg", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_egg", - "price": 2243.5 + "price": 3738 }, "7078": { "id": 7078, @@ -104177,7 +101781,7 @@ "examine": "A bowl of fried Bittercap mushrooms.", "wiki_name": "Fried mushrooms", "wiki_url": "https://oldschool.runescape.wiki/w/Fried_mushrooms", - "price": 85 + "price": 76 }, "7084": { "id": 7084, @@ -104213,7 +101817,7 @@ "examine": "A bowl of finely chopped tuna.", "wiki_name": "Chopped tuna", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_tuna", - "price": 248.5 + "price": 366 }, "7088": { "id": 7088, @@ -104231,7 +101835,7 @@ "examine": "A bowl of cooked sweetcorn.", "wiki_name": "Sweetcorn (bowl)", "wiki_url": "https://oldschool.runescape.wiki/w/Sweetcorn_(bowl)", - "price": 210.5 + "price": 550 }, "7090": { "id": 7090, @@ -104341,7 +101945,7 @@ "slot": "body", "requirements": null }, - "price": 397.5 + "price": 223 }, "7112": { "id": 7112, @@ -104379,7 +101983,7 @@ "slot": "head", "requirements": null }, - "price": 502 + "price": 689 }, "7114": { "id": 7114, @@ -104417,7 +102021,7 @@ "slot": "feet", "requirements": null }, - "price": 1010.5 + "price": 1010 }, "7116": { "id": 7116, @@ -104455,7 +102059,7 @@ "slot": "legs", "requirements": null }, - "price": 262 + "price": 418 }, "7118": { "id": 7118, @@ -104545,7 +102149,7 @@ "slot": "body", "requirements": null }, - "price": 855 + "price": 2424 }, "7124": { "id": 7124, @@ -104583,7 +102187,7 @@ "slot": "head", "requirements": null }, - "price": 1440.5 + "price": 615 }, "7126": { "id": 7126, @@ -104621,7 +102225,7 @@ "slot": "legs", "requirements": null }, - "price": 2935 + "price": 2401 }, "7128": { "id": 7128, @@ -104659,7 +102263,7 @@ "slot": "body", "requirements": null }, - "price": 1803.5 + "price": 2423 }, "7130": { "id": 7130, @@ -104697,7 +102301,7 @@ "slot": "head", "requirements": null }, - "price": 2485 + "price": 275 }, "7132": { "id": 7132, @@ -104735,7 +102339,7 @@ "slot": "legs", "requirements": null }, - "price": 2892.5 + "price": 1603 }, "7134": { "id": 7134, @@ -104773,7 +102377,7 @@ "slot": "body", "requirements": null }, - "price": 32.5 + "price": 32 }, "7136": { "id": 7136, @@ -104811,7 +102415,7 @@ "slot": "head", "requirements": null }, - "price": 524.5 + "price": 338 }, "7138": { "id": 7138, @@ -104849,7 +102453,7 @@ "slot": "legs", "requirements": null }, - "price": 721.5 + "price": 721 }, "7140": { "id": 7140, @@ -105289,7 +102893,7 @@ } ] }, - "price": 130943.5 + "price": 130943 }, "7159": { "id": 7159, @@ -105329,7 +102933,7 @@ "slayer": 37 } }, - "price": 425 + "price": 518 }, "7160": { "id": 7160, @@ -105356,7 +102960,7 @@ "examine": "Lots of pie recipes for me to try.", "wiki_name": "Pie recipe book", "wiki_url": "https://oldschool.runescape.wiki/w/Pie_recipe_book", - "price": 116.5 + "price": 67 }, "7164": { "id": 7164, @@ -105472,7 +103076,7 @@ } ] }, - "price": 1867.5 + "price": 1867 }, "7172": { "id": 7172, @@ -105522,7 +103126,7 @@ "examine": "Needs cooking before I eat it.", "wiki_name": "Raw garden pie", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_garden_pie", - "price": 1375.5 + "price": 667 }, "7178": { "id": 7178, @@ -105540,7 +103144,7 @@ "examine": "What I wouldn't give for a good steak about now...", "wiki_name": "Garden pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Garden_pie#Full", - "price": 177.5 + "price": 131 }, "7180": { "id": 7180, @@ -105624,7 +103228,7 @@ "examine": "Bounty of the sea.", "wiki_name": "Fish pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Fish_pie#Full", - "price": 373.5 + "price": 125 }, "7190": { "id": 7190, @@ -105708,7 +103312,7 @@ "examine": "Much tastier than a normal fish pie.", "wiki_name": "Admiral pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Admiral_pie#Full", - "price": 96.5 + "price": 149 }, "7200": { "id": 7200, @@ -105774,7 +103378,7 @@ "examine": "Good as it looks, I'd better cook it.", "wiki_name": "Raw wild pie", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_wild_pie", - "price": 3849.5 + "price": 4589 }, "7208": { "id": 7208, @@ -105792,7 +103396,7 @@ "examine": "A triumph of man over nature.", "wiki_name": "Wild pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Wild_pie#Full", - "price": 631.5 + "price": 846 }, "7210": { "id": 7210, @@ -105858,7 +103462,7 @@ "examine": "Fresh fruit may be good for you, but I should really cook this.", "wiki_name": "Raw summer pie", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_summer_pie", - "price": 1120.5 + "price": 1120 }, "7218": { "id": 7218, @@ -105926,7 +103530,7 @@ "examine": "A delicious looking piece of roast rabbit.", "wiki_name": "Roast rabbit", "wiki_url": "https://oldschool.runescape.wiki/w/Roast_rabbit", - "price": 286.5 + "price": 121 }, "7224": { "id": 7224, @@ -105960,7 +103564,7 @@ "examine": "An iron spit.", "wiki_name": "Iron spit", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_spit", - "price": 203 + "price": 339 }, "7226": { "id": 7226, @@ -106010,293 +103614,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Skewered_chompy", "price": 0 }, - "7236": { - "id": 7236, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - North of Falador.", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_North_of_Falador.", - "price": 0 - }, - "7238": { - "id": 7238, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in Canifis", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_Canifis", - "price": 0 - }, - "7239": { - "id": 7239, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - South-east of the Wilderness Agility Course", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_South-east_of_the_Wilderness_Agility_Course", - "price": 0 - }, - "7241": { - "id": 7241, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - South of the Legends' Guild", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_South_of_the_Legends'_Guild", - "price": 0 - }, - "7243": { - "id": 7243, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - And so on, and so on, and so on", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_And_so_on,_and_so_on,_and_so_on", - "price": 0 - }, - "7245": { - "id": 7245, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Covered in shadows", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Covered_in_shadows", - "price": 0 - }, - "7247": { - "id": 7247, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - This village has a problem with cartloads of the undead", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_This_village_has_a_problem_with_cartloads_of_the_undead", - "price": 0 - }, - "7248": { - "id": 7248, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The cheapest water for miles around", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_cheapest_water_for_miles_around", - "price": 0 - }, - "7249": { - "id": 7249, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Probably filled with books on magic", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Probably_filled_with_books_on_magic", - "price": 0 - }, - "7250": { - "id": 7250, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - You have all of the elements available to solve this clue", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_You_have_all_of_the_elements_available_to_solve_this_clue", - "price": 0 - }, - "7251": { - "id": 7251, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - It seems to have reached the end of the line", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_It_seems_to_have_reached_the_end_of_the_line", - "price": 0 - }, - "7252": { - "id": 7252, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - When you get tired of fighting", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_When_you_get_tired_of_fighting", - "price": 0 - }, - "7253": { - "id": 7253, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - His head might be hollow", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_His_head_might_be_hollow", - "price": 0 - }, - "7254": { - "id": 7254, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - If you look closely enough", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_If_you_look_closely_enough", - "price": 0 - }, - "7255": { - "id": 7255, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard, cryptic 39)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard,_cryptic_39)", - "price": 0, - "release_date": "2022-02-16" - }, - "7256": { - "id": 7256, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 04.41N 03.09W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_04.41N_03.09W", - "price": 0 - }, - "7258": { - "id": 7258, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 06.00S 21.48E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_06.00S_21.48E", - "price": 0 - }, - "7260": { - "id": 7260, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 18.22N 16.33E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_18.22N_16.33E", - "price": 0 - }, - "7262": { - "id": 7262, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 13.46N 21.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_13.46N_21.01E", - "price": 0 - }, - "7264": { - "id": 7264, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.35N 27.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.35N_27.01E", - "price": 0 - }, - "7266": { - "id": 7266, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 17.50N 08.30E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_17.50N_08.30E", - "price": 0 - }, - "7268": { - "id": 7268, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - C On Game Hoc", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_C_On_Game_Hoc", - "price": 0 - }, "7269": { "id": 7269, "name": "Challenge scroll (hard)", @@ -106311,344 +103628,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Challenge_scroll#Hard", "price": 0 }, - "7270": { - "id": 7270, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - By Look", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_By_Look", - "price": 0 - }, - "7272": { - "id": 7272, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - O Birdz A Zany En Pc", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_O_Birdz_A_Zany_En_Pc", - "price": 0 - }, - "7274": { - "id": 7274, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - DT RUN B", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_DT_RUN_B", - "price": 0 - }, - "7276": { - "id": 7276, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - GOT A BOY", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_GOT_A_BOY", - "price": 0 - }, - "7278": { - "id": 7278, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - HICK JET", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_HICK_JET", - "price": 0 - }, - "7280": { - "id": 7280, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - ARC O LINE", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_ARC_O_LINE", - "price": 0 - }, - "7282": { - "id": 7282, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - NOD MED", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_NOD_MED", - "price": 0 - }, - "7284": { - "id": 7284, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - LARK IN DOG", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_LARK_IN_DOG", - "price": 0 - }, - "7286": { - "id": 7286, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Miscellania", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Miscellania", - "price": 0 - }, - "7288": { - "id": 7288, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Mort Myre Swamp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Mort_Myre_Swamp", - "price": 0 - }, - "7290": { - "id": 7290, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - At the entrance to the Ourania Cave", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_At_the_entrance_to_the_Ourania_Cave", - "price": 0 - }, - "7292": { - "id": 7292, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - South-east of the Lighthouse", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_South-east_of_the_Lighthouse", - "price": 0 - }, - "7294": { - "id": 7294, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Between Seers' Village and Rellekka", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Between_Seers'_Village_and_Rellekka", - "price": 0 - }, - "7296": { - "id": 7296, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - The dead, red dragon watches over this chest", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_The_dead,_red_dragon_watches_over_this_chest", - "price": 0 - }, - "7298": { - "id": 7298, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Go to this building to be illuminated", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Go_to_this_building_to_be_illuminated", - "price": 0 - }, - "7300": { - "id": 7300, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Try not to step on any aquatic nasties while searching this crate", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Try_not_to_step_on_any_aquatic_nasties_while_searching_this_crate", - "price": 0 - }, - "7301": { - "id": 7301, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Probably filled with wizards socks", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Probably_filled_with_wizards_socks", - "price": 0 - }, - "7303": { - "id": 7303, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - This crate is mine, all mine, even if it is in the middle of the desert", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_This_crate_is_mine,_all_mine,_even_if_it_is_in_the_middle_of_the_desert", - "price": 0 - }, - "7304": { - "id": 7304, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - This crate holds a better reward than a broken arrow", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_This_crate_holds_a_better_reward_than_a_broken_arrow", - "price": 0 - }, - "7305": { - "id": 7305, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 22.30N 03.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_22.30N_03.01E", - "price": 0 - }, - "7307": { - "id": 7307, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 05.20S 04.28E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_05.20S_04.28E", - "price": 0 - }, - "7309": { - "id": 7309, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 01.18S 14.15E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_01.18S_14.15E", - "price": 0 - }, - "7311": { - "id": 7311, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 09.48N 17.39E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_09.48N_17.39E", - "price": 0 - }, - "7313": { - "id": 7313, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 00.20S 23.15E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_00.20S_23.15E", - "price": 0 - }, - "7315": { - "id": 7315, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 14.54N 09.13E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_14.54N_09.13E", - "price": 0 - }, - "7317": { - "id": 7317, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 03.35S 13.35E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_03.35S_13.35E", - "price": 0 - }, "7319": { "id": 7319, "name": "Red boater", @@ -106723,7 +103702,7 @@ "slot": "head", "requirements": null }, - "price": 5404.5 + "price": 5404 }, "7323": { "id": 7323, @@ -106761,7 +103740,7 @@ "slot": "head", "requirements": null }, - "price": 15000 + "price": 12148 }, "7325": { "id": 7325, @@ -106799,7 +103778,7 @@ "slot": "head", "requirements": null }, - "price": 17062 + "price": 9680 }, "7327": { "id": 7327, @@ -106837,7 +103816,7 @@ "slot": "head", "requirements": null }, - "price": 11062.5 + "price": 9457 }, "7329": { "id": 7329, @@ -106854,7 +103833,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Red firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Red_firelighter", - "price": 54 + "price": 107 }, "7330": { "id": 7330, @@ -106871,7 +103850,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Green firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Green_firelighter", - "price": 128.5 + "price": 128 }, "7331": { "id": 7331, @@ -106927,7 +103906,7 @@ "defence": 10 } }, - "price": 2530.5 + "price": 2530 }, "7334": { "id": 7334, @@ -107005,7 +103984,7 @@ "defence": 40 } }, - "price": 70116 + "price": 56950 }, "7338": { "id": 7338, @@ -107122,7 +104101,7 @@ "defence": 40 } }, - "price": 32565.5 + "price": 39891 }, "7344": { "id": 7344, @@ -107161,7 +104140,7 @@ "defence": 10 } }, - "price": 2412.5 + "price": 2412 }, "7346": { "id": 7346, @@ -107239,7 +104218,7 @@ "defence": 40 } }, - "price": 34649.5 + "price": 34649 }, "7350": { "id": 7350, @@ -107278,7 +104257,7 @@ "defence": 10 } }, - "price": 2050.5 + "price": 2569 }, "7352": { "id": 7352, @@ -107317,7 +104296,7 @@ "defence": 30 } }, - "price": 3162.5 + "price": 2767 }, "7354": { "id": 7354, @@ -107395,7 +104374,7 @@ "defence": 10 } }, - "price": 2386.5 + "price": 2386 }, "7358": { "id": 7358, @@ -107434,7 +104413,7 @@ "defence": 30 } }, - "price": 2803.5 + "price": 2803 }, "7360": { "id": 7360, @@ -107473,7 +104452,7 @@ "defence": 40 } }, - "price": 34053.5 + "price": 34053 }, "7362": { "id": 7362, @@ -107513,7 +104492,7 @@ "defence": 20 } }, - "price": 11499.5 + "price": 6320 }, "7364": { "id": 7364, @@ -107553,7 +104532,7 @@ "defence": 20 } }, - "price": 2166 + "price": 1893 }, "7366": { "id": 7366, @@ -107593,7 +104572,7 @@ "defence": 1 } }, - "price": 6445 + "price": 4045 }, "7368": { "id": 7368, @@ -107633,7 +104612,7 @@ "defence": 1 } }, - "price": 2177.5 + "price": 6704 }, "7370": { "id": 7370, @@ -107673,7 +104652,7 @@ "defence": 40 } }, - "price": 5030 + "price": 6274 }, "7372": { "id": 7372, @@ -107713,7 +104692,7 @@ "defence": 40 } }, - "price": 6407.5 + "price": 4100 }, "7374": { "id": 7374, @@ -107754,7 +104733,7 @@ "defence": 40 } }, - "price": 5101.5 + "price": 5101 }, "7376": { "id": 7376, @@ -107795,7 +104774,7 @@ "defence": 40 } }, - "price": 5457 + "price": 3881 }, "7378": { "id": 7378, @@ -107834,7 +104813,7 @@ "ranged": 40 } }, - "price": 44347 + "price": 52121 }, "7380": { "id": 7380, @@ -107873,7 +104852,7 @@ "ranged": 40 } }, - "price": 7732 + "price": 5250 }, "7382": { "id": 7382, @@ -107953,7 +104932,7 @@ "ranged": 50 } }, - "price": 3059.5 + "price": 3059 }, "7386": { "id": 7386, @@ -107990,7 +104969,7 @@ "slot": "legs", "requirements": null }, - "price": 25748 + "price": 16438 }, "7388": { "id": 7388, @@ -108027,7 +105006,7 @@ "slot": "legs", "requirements": null }, - "price": 6309.5 + "price": 7655 }, "7390": { "id": 7390, @@ -108064,7 +105043,7 @@ "slot": "body", "requirements": null }, - "price": 160625.5 + "price": 193288 }, "7392": { "id": 7392, @@ -108175,7 +105154,7 @@ "slot": "head", "requirements": null }, - "price": 48500 + "price": 1240255 }, "7398": { "id": 7398, @@ -108216,7 +105195,7 @@ "magic": 40 } }, - "price": 52584.5 + "price": 66034 }, "7399": { "id": 7399, @@ -108257,7 +105236,7 @@ "magic": 40 } }, - "price": 80292.5 + "price": 89732 }, "7400": { "id": 7400, @@ -108298,7 +105277,7 @@ "magic": 40 } }, - "price": 18781.5 + "price": 9328 }, "7404": { "id": 7404, @@ -108496,7 +105475,7 @@ "examine": "A mole claw.", "wiki_name": "Mole claw", "wiki_url": "https://oldschool.runescape.wiki/w/Mole_claw", - "price": 9303.5 + "price": 9303 }, "7418": { "id": 7418, @@ -108514,7 +105493,7 @@ "examine": "The skin of a large mole.", "wiki_name": "Mole skin", "wiki_url": "https://oldschool.runescape.wiki/w/Mole_skin", - "price": 8998 + "price": 7697 }, "7420": { "id": 7420, @@ -108764,7 +105743,7 @@ } ] }, - "price": 749.5 + "price": 537 }, "7435": { "id": 7435, @@ -108837,7 +105816,7 @@ } ] }, - "price": 30.5 + "price": 30 }, "7437": { "id": 7437, @@ -108910,7 +105889,7 @@ } ] }, - "price": 350 + "price": 638 }, "7439": { "id": 7439, @@ -108983,7 +105962,7 @@ } ] }, - "price": 1201 + "price": 1747 }, "7441": { "id": 7441, @@ -109049,7 +106028,7 @@ } ] }, - "price": 864.5 + "price": 684 }, "7443": { "id": 7443, @@ -109122,7 +106101,7 @@ } ] }, - "price": 1869.5 + "price": 750 }, "7445": { "id": 7445, @@ -109188,7 +106167,7 @@ } ] }, - "price": 8302 + "price": 14048 }, "7447": { "id": 7447, @@ -109263,7 +106242,7 @@ } ] }, - "price": 3571.5 + "price": 6603 }, "7449": { "id": 7449, @@ -109402,7 +106381,7 @@ } ] }, - "price": 2950.5 + "price": 14924 }, "7453": { "id": 7453, @@ -109815,7 +106794,7 @@ "examine": "It's cornflour in a pot.", "wiki_name": "Pot of cornflour", "wiki_url": "https://oldschool.runescape.wiki/w/Pot_of_cornflour", - "price": 1012.5 + "price": 2500 }, "7470": { "id": 7470, @@ -110420,7 +107399,7 @@ "examine": "Nice and tasty!", "wiki_name": "Cooked crab meat (Five)", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_crab_meat#Five", - "price": 784.5 + "price": 380 }, "7523": { "id": 7523, @@ -110896,7 +107875,7 @@ "examine": "Lovely Jubbly!", "wiki_name": "Cooked jubbly", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_jubbly", - "price": 1902 + "price": 850 }, "7570": { "id": 7570, @@ -112330,7 +109309,7 @@ "examine": "It's ground up silver.", "wiki_name": "Silver dust", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_dust", - "price": 1750 + "price": 728 }, "7652": { "id": 7652, @@ -112412,7 +109391,7 @@ "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", "wiki_name": "Guthix balance (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_balance#4_dose", - "price": 453 + "price": 4938 }, "7662": { "id": 7662, @@ -112430,7 +109409,7 @@ "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", "wiki_name": "Guthix balance (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_balance#3_dose", - "price": 39 + "price": 154 }, "7664": { "id": 7664, @@ -112448,7 +109427,7 @@ "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", "wiki_name": "Guthix balance (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_balance#2_dose", - "price": 2566.5 + "price": 424 }, "7666": { "id": 7666, @@ -112466,7 +109445,7 @@ "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", "wiki_name": "Guthix balance (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_balance#1_dose", - "price": 221.5 + "price": 221 }, "7668": { "id": 7668, @@ -112534,7 +109513,7 @@ } ] }, - "price": 2157 + "price": 2519 }, "7671": { "id": 7671, @@ -113505,7 +110484,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy soldier (Normal)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_soldier#Normal", - "price": 2750 + "price": 2195 }, "7761": { "id": 7761, @@ -113523,7 +110502,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy soldier (Wound)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_soldier#Wound", - "price": 3573.5 + "price": 1750 }, "7763": { "id": 7763, @@ -113541,7 +110520,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy doll (Normal)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_doll#Normal", - "price": 1199.5 + "price": 2145 }, "7765": { "id": 7765, @@ -113577,7 +110556,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy mouse (Normal)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_mouse#Normal", - "price": 7336 + "price": 3118 }, "7769": { "id": 7769, @@ -113595,7 +110574,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy mouse (Wound)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_mouse#Wound", - "price": 3884.5 + "price": 3884 }, "7771": { "id": 7771, @@ -113613,7 +110592,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy cat", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_cat", - "price": 3947 + "price": 3294 }, "7773": { "id": 7773, @@ -114023,7 +111002,7 @@ "examine": "Scaly but not slimy!", "wiki_name": "Snake hide (swamp)", "wiki_url": "https://oldschool.runescape.wiki/w/Snake_hide_(swamp)", - "price": 346.5 + "price": 222 }, "7803": { "id": 7803, @@ -115934,7 +112913,7 @@ "examine": "A very good vintage.", "wiki_name": "Bottle of wine", "wiki_url": "https://oldschool.runescape.wiki/w/Bottle_of_wine", - "price": 1020.5 + "price": 810 }, "7921": { "id": 7921, @@ -116105,7 +113084,7 @@ "examine": "An unimbued rune of extra capability.", "wiki_name": "Pure essence", "wiki_url": "https://oldschool.runescape.wiki/w/Pure_essence", - "price": 1 + "price": 2 }, "7938": { "id": 7938, @@ -116137,7 +113116,7 @@ "examine": "A word in your shell-like.", "wiki_name": "Tortoise shell", "wiki_url": "https://oldschool.runescape.wiki/w/Tortoise_shell", - "price": 9100.5 + "price": 11005 }, "7941": { "id": 7941, @@ -116197,7 +113176,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw monkfish", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_monkfish", - "price": 276.5 + "price": 500 }, "7946": { "id": 7946, @@ -116215,7 +113194,7 @@ "examine": "A tasty fish.", "wiki_name": "Monkfish", "wiki_url": "https://oldschool.runescape.wiki/w/Monkfish", - "price": 404.5 + "price": 969 }, "7948": { "id": 7948, @@ -117018,7 +113997,7 @@ "examine": "A teleport to Varrock.", "wiki_name": "Varrock teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Varrock_teleport_(tablet)", - "price": 532 + "price": 452 }, "8008": { "id": 8008, @@ -117035,7 +114014,7 @@ "examine": "A teleport to Lumbridge.", "wiki_name": "Lumbridge teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Lumbridge_teleport_(tablet)", - "price": 670 + "price": 527 }, "8009": { "id": 8009, @@ -117052,7 +114031,7 @@ "examine": "A teleport to Falador.", "wiki_name": "Falador teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Falador_teleport_(tablet)", - "price": 581.5 + "price": 482 }, "8010": { "id": 8010, @@ -117086,7 +114065,7 @@ "examine": "A teleport to East Ardougne.", "wiki_name": "Ardougne teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Ardougne_teleport_(tablet)", - "price": 591 + "price": 393 }, "8012": { "id": 8012, @@ -117103,7 +114082,7 @@ "examine": "A teleport to the Yanille Watchtower.", "wiki_name": "Watchtower teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Watchtower_teleport_(tablet)", - "price": 736 + "price": 594 }, "8013": { "id": 8013, @@ -117120,7 +114099,7 @@ "examine": "A teleport to one's own house.", "wiki_name": "Teleport to house (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Teleport_to_house_(tablet)", - "price": 556 + "price": 485 }, "8014": { "id": 8014, @@ -117137,7 +114116,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Bones to bananas (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Bones_to_bananas_(tablet)", - "price": 560.5 + "price": 452 }, "8015": { "id": 8015, @@ -117154,7 +114133,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Bones to peaches (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Bones_to_peaches_(tablet)", - "price": 744.5 + "price": 529 }, "8016": { "id": 8016, @@ -117171,7 +114150,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant sapphire or opal", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_sapphire_or_opal", - "price": 1559.5 + "price": 88 }, "8017": { "id": 8017, @@ -117188,7 +114167,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant emerald or jade", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_emerald_or_jade", - "price": 181 + "price": 901 }, "8018": { "id": 8018, @@ -117205,7 +114184,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant ruby or topaz", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_ruby_or_topaz", - "price": 2000 + "price": 767 }, "8019": { "id": 8019, @@ -117222,7 +114201,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant diamond", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_diamond", - "price": 1.5 + "price": 1 }, "8020": { "id": 8020, @@ -117239,7 +114218,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant dragonstone", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_dragonstone", - "price": 1.5 + "price": 1 }, "8021": { "id": 8021, @@ -117256,7 +114235,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant onyx", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_onyx", - "price": 1264.5 + "price": 143 }, "8022": { "id": 8022, @@ -120501,7 +117480,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged nice tree", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_nice_tree", - "price": 3234.5 + "price": 3645 }, "8421": { "id": 8421, @@ -120555,7 +117534,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged maple tree", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_maple_tree", - "price": 18506 + "price": 16512 }, "8427": { "id": 8427, @@ -120573,7 +117552,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged yew tree", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_yew_tree", - "price": 20647.5 + "price": 25750 }, "8429": { "id": 8429, @@ -120645,7 +117624,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged plant 3", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_plant_3", - "price": 12325.5 + "price": 12325 }, "8437": { "id": 8437, @@ -120663,7 +117642,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Thorny hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Thorny_hedge_(bagged)", - "price": 3931 + "price": 4639 }, "8439": { "id": 8439, @@ -120699,7 +117678,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Small box hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Small_box_hedge_(bagged)", - "price": 11612.5 + "price": 6620 }, "8443": { "id": 8443, @@ -120717,7 +117696,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Topiary hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Topiary_hedge_(bagged)", - "price": 17518 + "price": 23422 }, "8445": { "id": 8445, @@ -120735,7 +117714,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Fancy hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Fancy_hedge_(bagged)", - "price": 18249.5 + "price": 18249 }, "8447": { "id": 8447, @@ -120753,7 +117732,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Tall fancy hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Tall_fancy_hedge_(bagged)", - "price": 56223 + "price": 31556 }, "8449": { "id": 8449, @@ -120771,7 +117750,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Tall box hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Tall_box_hedge_(bagged)", - "price": 106254.5 + "price": 114739 }, "8451": { "id": 8451, @@ -120789,7 +117768,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged flower", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_flower", - "price": 6050.5 + "price": 7404 }, "8453": { "id": 8453, @@ -120807,7 +117786,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged daffodils", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_daffodils", - "price": 11616 + "price": 7600 }, "8455": { "id": 8455, @@ -120825,7 +117804,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged bluebells", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_bluebells", - "price": 17519 + "price": 20651 }, "8457": { "id": 8457, @@ -120861,7 +117840,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged marigolds", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_marigolds", - "price": 5496.5 + "price": 12749 }, "8461": { "id": 8461, @@ -120879,7 +117858,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged roses", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_roses", - "price": 12033.5 + "price": 18233 }, "8463": { "id": 8463, @@ -121487,7 +118466,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Crude chair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Crude_chair_(flatpack)", - "price": 1991.5 + "price": 1991 }, "8498": { "id": 8498, @@ -121505,7 +118484,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Wooden chair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Wooden_chair_(flatpack)", - "price": 2105 + "price": 1809 }, "8500": { "id": 8500, @@ -121523,7 +118502,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Rocking chair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Rocking_chair_(flatpack)", - "price": 44.5 + "price": 44 }, "8502": { "id": 8502, @@ -121577,7 +118556,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak armchair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_armchair_(flatpack)", - "price": 30 + "price": 16 }, "8508": { "id": 8508, @@ -121595,7 +118574,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany armchair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_armchair_(flatpack)", - "price": 60.5 + "price": 1033 }, "8510": { "id": 8510, @@ -121631,7 +118610,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak bookcase (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_bookcase_(flatpack)", - "price": 125.5 + "price": 125 }, "8514": { "id": 8514, @@ -121685,7 +118664,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Cider barrel (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Cider_barrel_(flatpack)", - "price": 11850 + "price": 10058 }, "8520": { "id": 8520, @@ -121703,7 +118682,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Asgarnian ale (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_ale_(flatpack)", - "price": 3299 + "price": 5040 }, "8522": { "id": 8522, @@ -121721,7 +118700,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Greenman's ale (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Greenman's_ale_(flatpack)", - "price": 16087 + "price": 7696 }, "8524": { "id": 8524, @@ -121739,7 +118718,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Dragon bitter (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bitter_(flatpack)", - "price": 50986.5 + "price": 50986 }, "8526": { "id": 8526, @@ -121757,7 +118736,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Chef's delight (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Chef's_delight_(flatpack)", - "price": 15802 + "price": 9906 }, "8528": { "id": 8528, @@ -121941,7 +118920,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Wood dining table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Wood_dining_table_(flatpack)", - "price": 4 + "price": 5 }, "8550": { "id": 8550, @@ -121995,7 +118974,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_table_(flatpack)", - "price": 78.5 + "price": 6 }, "8556": { "id": 8556, @@ -122013,7 +118992,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Carved teak table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Carved_teak_table_(flatpack)", - "price": 619 + "price": 10 }, "8558": { "id": 8558, @@ -122031,7 +119010,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_table_(flatpack)", - "price": 155 + "price": 18 }, "8560": { "id": 8560, @@ -122049,7 +119028,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Opulent table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Opulent_table_(flatpack)", - "price": 739767 + "price": 309801 }, "8562": { "id": 8562, @@ -122067,7 +119046,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Wooden bench (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Wooden_bench_(flatpack)", - "price": 1 + "price": 12 }, "8564": { "id": 8564, @@ -122085,7 +119064,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak bench (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_bench_(flatpack)", - "price": 17 + "price": 68 }, "8566": { "id": 8566, @@ -122139,7 +119118,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Carved teak bench (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Carved_teak_bench_(flatpack)", - "price": 34.5 + "price": 27 }, "8572": { "id": 8572, @@ -122157,7 +119136,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany bench (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_bench_(flatpack)", - "price": 165.5 + "price": 1375 }, "8574": { "id": 8574, @@ -122175,7 +119154,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Gilded bench (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_bench_(flatpack)", - "price": 514761 + "price": 420060 }, "8576": { "id": 8576, @@ -122193,7 +119172,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Wooden bed (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Wooden_bed_(flatpack)", - "price": 558.5 + "price": 1725 }, "8578": { "id": 8578, @@ -122211,7 +119190,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak bed (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_bed_(flatpack)", - "price": 3517 + "price": 35250 }, "8580": { "id": 8580, @@ -122247,7 +119226,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak bed (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_bed_(flatpack)", - "price": 24000 + "price": 1926 }, "8584": { "id": 8584, @@ -122283,7 +119262,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Four-poster bed (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Four-poster_bed_(flatpack)", - "price": 37754.5 + "price": 5940 }, "8588": { "id": 8588, @@ -122301,7 +119280,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Gilded four-poster (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_four-poster_(flatpack)", - "price": 700000 + "price": 385000 }, "8590": { "id": 8590, @@ -122337,7 +119316,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak clock (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_clock_(flatpack)", - "price": 3643.5 + "price": 1400 }, "8594": { "id": 8594, @@ -122355,7 +119334,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Gilded clock (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_clock_(flatpack)", - "price": 520500 + "price": 745500 }, "8596": { "id": 8596, @@ -122391,7 +119370,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak shaving stand (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_shaving_stand_(flatpack)", - "price": 535.5 + "price": 535 }, "8600": { "id": 8600, @@ -122427,7 +119406,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak dresser (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_dresser_(flatpack)", - "price": 684 + "price": 1073 }, "8604": { "id": 8604, @@ -122445,7 +119424,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Fancy teak dresser (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Fancy_teak_dresser_(flatpack)", - "price": 50170.5 + "price": 329 }, "8606": { "id": 8606, @@ -122463,7 +119442,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany dresser (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_dresser_(flatpack)", - "price": 6025 + "price": 8094 }, "8608": { "id": 8608, @@ -122499,7 +119478,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Shoe box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Shoe_box_(flatpack)", - "price": 8 + "price": 51 }, "8612": { "id": 8612, @@ -122535,7 +119514,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_wardrobe_(flatpack)", - "price": 1 + "price": 11 }, "8616": { "id": 8616, @@ -122553,7 +119532,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak drawers (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_drawers_(flatpack)", - "price": 91 + "price": 48 }, "8618": { "id": 8618, @@ -122571,7 +119550,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_wardrobe_(flatpack)", - "price": 312 + "price": 5064 }, "8620": { "id": 8620, @@ -122589,7 +119568,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_wardrobe_(flatpack)", - "price": 1290 + "price": 1058 }, "8622": { "id": 8622, @@ -122607,7 +119586,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Gilded wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_wardrobe_(flatpack)", - "price": 729333 + "price": 546000 }, "8624": { "id": 8624, @@ -125683,7 +122662,7 @@ "examine": "A plank of fine teak.", "wiki_name": "Teak plank", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_plank", - "price": 853.5 + "price": 853 }, "8782": { "id": 8782, @@ -125719,7 +122698,7 @@ "examine": "A very delicate sheet of gold.", "wiki_name": "Gold leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Gold_leaf", - "price": 138664 + "price": 133131 }, "8786": { "id": 8786, @@ -125737,7 +122716,7 @@ "examine": "A beautifully carved marble block.", "wiki_name": "Marble block", "wiki_url": "https://oldschool.runescape.wiki/w/Marble_block", - "price": 334016.5 + "price": 334016 }, "8788": { "id": 8788, @@ -125755,7 +122734,7 @@ "examine": "A magic stone to make high-level furniture.", "wiki_name": "Magic stone", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_stone", - "price": 986888.5 + "price": 986888 }, "8790": { "id": 8790, @@ -125773,7 +122752,7 @@ "examine": "A bolt of ordinary cloth.", "wiki_name": "Bolt of cloth", "wiki_url": "https://oldschool.runescape.wiki/w/Bolt_of_cloth", - "price": 748 + "price": 863 }, "8792": { "id": 8792, @@ -125791,7 +122770,7 @@ "examine": "A clockwork mechanism.", "wiki_name": "Clockwork", "wiki_url": "https://oldschool.runescape.wiki/w/Clockwork", - "price": 813 + "price": 720 }, "8794": { "id": 8794, @@ -125827,7 +122806,7 @@ "examine": "A hefty beam of timber, perfect for building temples.", "wiki_name": "Timber beam", "wiki_url": "https://oldschool.runescape.wiki/w/Timber_beam", - "price": 457.5 + "price": 742 }, "8839": { "id": 8839, @@ -126597,7 +123576,7 @@ } ] }, - "price": 4096.5 + "price": 4096 }, "8874": { "id": 8874, @@ -126670,7 +123649,7 @@ } ] }, - "price": 12124 + "price": 5311 }, "8876": { "id": 8876, @@ -126743,7 +123722,7 @@ } ] }, - "price": 760.5 + "price": 1750 }, "8878": { "id": 8878, @@ -126923,7 +123902,7 @@ "ranged": 28 } }, - "price": 6 + "price": 4 }, "8887": { "id": 8887, @@ -127016,7 +123995,7 @@ "combat": 40 } }, - "price": 636836.5 + "price": 636836 }, "8903": { "id": 8903, @@ -127568,7 +124547,7 @@ "slot": "head", "requirements": null }, - "price": 48.5 + "price": 560 }, "8927": { "id": 8927, @@ -127606,7 +124585,7 @@ "slot": "head", "requirements": null }, - "price": 10000 + "price": 1116 }, "8928": { "id": 8928, @@ -127644,7 +124623,7 @@ "slot": "head", "requirements": null }, - "price": 137461.5 + "price": 156656 }, "8929": { "id": 8929, @@ -129271,7 +126250,7 @@ "examine": "WARNING: Contains information which could make your account secure!", "wiki_name": "Security book", "wiki_url": "https://oldschool.runescape.wiki/w/Security_book", - "price": 85.5 + "price": 85 }, "9004": { "id": 9004, @@ -129288,7 +126267,7 @@ "examine": "Information regarding the Stronghold of Security.", "wiki_name": "Stronghold notes", "wiki_url": "https://oldschool.runescape.wiki/w/Stronghold_notes", - "price": 222 + "price": 166 }, "9005": { "id": 9005, @@ -129663,7 +126642,7 @@ "examine": "Gets knots and kinks out of your hair.", "wiki_name": "Ivory comb", "wiki_url": "https://oldschool.runescape.wiki/w/Ivory_comb", - "price": 1500 + "price": 893 }, "9028": { "id": 9028, @@ -129681,7 +126660,7 @@ "examine": "Little ornament in the shape of a scarab.", "wiki_name": "Golden scarab", "wiki_url": "https://oldschool.runescape.wiki/w/Golden_scarab", - "price": 1038.5 + "price": 1038 }, "9030": { "id": 9030, @@ -129699,7 +126678,7 @@ "examine": "Little ornament in the shape of a scarab.", "wiki_name": "Stone scarab", "wiki_url": "https://oldschool.runescape.wiki/w/Stone_scarab", - "price": 175.5 + "price": 175 }, "9032": { "id": 9032, @@ -129717,7 +126696,7 @@ "examine": "Little ornament in the shape of a scarab.", "wiki_name": "Pottery scarab", "wiki_url": "https://oldschool.runescape.wiki/w/Pottery_scarab", - "price": 223.5 + "price": 223 }, "9034": { "id": 9034, @@ -129735,7 +126714,7 @@ "examine": "A small golden statuette.", "wiki_name": "Golden statuette", "wiki_url": "https://oldschool.runescape.wiki/w/Golden_statuette", - "price": 1287.5 + "price": 1287 }, "9036": { "id": 9036, @@ -129789,7 +126768,7 @@ "examine": "A seal. It's gold.", "wiki_name": "Gold seal", "wiki_url": "https://oldschool.runescape.wiki/w/Gold_seal", - "price": 786.5 + "price": 786 }, "9042": { "id": 9042, @@ -129887,7 +126866,7 @@ "examine": "Delicious and nutritious. Well, nutritious anyway.", "wiki_name": "Locust meat", "wiki_url": "https://oldschool.runescape.wiki/w/Locust_meat", - "price": 2032.5 + "price": 12535 }, "9054": { "id": 9054, @@ -130274,7 +127253,7 @@ "examine": "Used for Lunar spells.", "wiki_name": "Astral rune", "wiki_url": "https://oldschool.runescape.wiki/w/Astral_rune", - "price": 73 + "price": 93 }, "9076": { "id": 9076, @@ -131244,7 +128223,7 @@ "ranged": 26 } }, - "price": 8.5 + "price": 24 }, "9141": { "id": 9141, @@ -131322,7 +128301,7 @@ "ranged": 36 } }, - "price": 22 + "price": 29 }, "9143": { "id": 9143, @@ -131361,7 +128340,7 @@ "ranged": 46 } }, - "price": 27 + "price": 11 }, "9144": { "id": 9144, @@ -131400,7 +128379,7 @@ "ranged": 61 } }, - "price": 75.5 + "price": 64 }, "9145": { "id": 9145, @@ -131439,7 +128418,7 @@ "ranged": 26 } }, - "price": 5 + "price": 39 }, "9174": { "id": 9174, @@ -131639,7 +128618,7 @@ } ] }, - "price": 2725.5 + "price": 747 }, "9179": { "id": 9179, @@ -131707,7 +128686,7 @@ } ] }, - "price": 136.5 + "price": 586 }, "9181": { "id": 9181, @@ -131775,7 +128754,7 @@ } ] }, - "price": 5499.5 + "price": 1644 }, "9183": { "id": 9183, @@ -131843,7 +128822,7 @@ } ] }, - "price": 4692.5 + "price": 4692 }, "9185": { "id": 9185, @@ -131928,7 +128907,7 @@ "examine": "Jade bolt tips.", "wiki_name": "Jade bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Jade_bolt_tips", - "price": 10.5 + "price": 17 }, "9188": { "id": 9188, @@ -131945,7 +128924,7 @@ "examine": "Red Topaz bolt tips.", "wiki_name": "Topaz bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Topaz_bolt_tips", - "price": 224.5 + "price": 162 }, "9189": { "id": 9189, @@ -131962,7 +128941,7 @@ "examine": "Sapphire bolt tips.", "wiki_name": "Sapphire bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Sapphire_bolt_tips", - "price": 27.5 + "price": 50 }, "9190": { "id": 9190, @@ -131979,7 +128958,7 @@ "examine": "Emerald bolt tips.", "wiki_name": "Emerald bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Emerald_bolt_tips", - "price": 60 + "price": 46 }, "9191": { "id": 9191, @@ -132030,7 +129009,7 @@ "examine": "Dragonstone bolt tips.", "wiki_name": "Dragonstone bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonstone_bolt_tips", - "price": 666 + "price": 498 }, "9194": { "id": 9194, @@ -132086,7 +129065,7 @@ "ranged": 1 } }, - "price": 7.5 + "price": 9 }, "9237": { "id": 9237, @@ -132161,7 +129140,7 @@ "ranged": 1 } }, - "price": 15.5 + "price": 9 }, "9239": { "id": 9239, @@ -132200,7 +129179,7 @@ "ranged": 31 } }, - "price": 13.5 + "price": 8 }, "9240": { "id": 9240, @@ -132239,7 +129218,7 @@ "ranged": 36 } }, - "price": 45.5 + "price": 20 }, "9241": { "id": 9241, @@ -132278,7 +129257,7 @@ "ranged": 36 } }, - "price": 19 + "price": 21 }, "9242": { "id": 9242, @@ -132317,7 +129296,7 @@ "ranged": 46 } }, - "price": 44.5 + "price": 44 }, "9243": { "id": 9243, @@ -132356,7 +129335,7 @@ "ranged": 61 } }, - "price": 59 + "price": 70 }, "9244": { "id": 9244, @@ -132395,7 +129374,7 @@ "ranged": 61 } }, - "price": 412 + "price": 363 }, "9245": { "id": 9245, @@ -132509,7 +129488,7 @@ "ranged": 26 } }, - "price": 193 + "price": 3444 }, "9288": { "id": 9288, @@ -132548,7 +129527,7 @@ "ranged": 31 } }, - "price": 178 + "price": 2613 }, "9289": { "id": 9289, @@ -132587,7 +129566,7 @@ "ranged": 36 } }, - "price": 293 + "price": 253 }, "9290": { "id": 9290, @@ -132626,7 +129605,7 @@ "ranged": 46 } }, - "price": 288 + "price": 209 }, "9291": { "id": 9291, @@ -132665,7 +129644,7 @@ "ranged": 61 } }, - "price": 157 + "price": 444 }, "9292": { "id": 9292, @@ -132935,7 +129914,7 @@ "ranged": 61 } }, - "price": 390.5 + "price": 471 }, "9299": { "id": 9299, @@ -132974,7 +129953,7 @@ "ranged": 26 } }, - "price": 167.5 + "price": 119 }, "9300": { "id": 9300, @@ -133049,7 +130028,7 @@ "ranged": 26 } }, - "price": 914.5 + "price": 737 }, "9302": { "id": 9302, @@ -133088,7 +130067,7 @@ "ranged": 31 } }, - "price": 5392 + "price": 583 }, "9303": { "id": 9303, @@ -133127,7 +130106,7 @@ "ranged": 36 } }, - "price": 1336 + "price": 1102 }, "9304": { "id": 9304, @@ -133166,7 +130145,7 @@ "ranged": 46 } }, - "price": 1220 + "price": 847 }, "9305": { "id": 9305, @@ -133205,7 +130184,7 @@ "ranged": 61 } }, - "price": 853.5 + "price": 961 }, "9306": { "id": 9306, @@ -133319,7 +130298,7 @@ "ranged": 31 } }, - "price": 352.5 + "price": 232 }, "9337": { "id": 9337, @@ -133397,7 +130376,7 @@ "ranged": 46 } }, - "price": 107 + "price": 125 }, "9339": { "id": 9339, @@ -133475,7 +130454,7 @@ "ranged": 61 } }, - "price": 201.5 + "price": 160 }, "9341": { "id": 9341, @@ -133514,7 +130493,7 @@ "ranged": 61 } }, - "price": 765.5 + "price": 600 }, "9342": { "id": 9342, @@ -133553,7 +130532,7 @@ "ranged": 61 } }, - "price": 8446.5 + "price": 8446 }, "9375": { "id": 9375, @@ -133570,7 +130549,7 @@ "examine": "Unfeathered bronze crossbow bolts.", "wiki_name": "Bronze bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_bolts_(unf)", - "price": 20 + "price": 16 }, "9376": { "id": 9376, @@ -133601,7 +130580,7 @@ "examine": "Unfeathered iron crossbow bolts.", "wiki_name": "Iron bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_bolts_(unf)", - "price": 15 + "price": 22 }, "9378": { "id": 9378, @@ -133618,7 +130597,7 @@ "examine": "Unfeathered steel crossbow bolts.", "wiki_name": "Steel bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_bolts_(unf)", - "price": 62 + "price": 43 }, "9379": { "id": 9379, @@ -133635,7 +130614,7 @@ "examine": "Unfeathered mithril crossbow bolts.", "wiki_name": "Mithril bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_bolts_(unf)", - "price": 88 + "price": 52 }, "9380": { "id": 9380, @@ -133652,7 +130631,7 @@ "examine": "Unfeathered adamantite crossbow bolts.", "wiki_name": "Adamant bolts(unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_bolts(unf)", - "price": 175.5 + "price": 132 }, "9381": { "id": 9381, @@ -133669,7 +130648,7 @@ "examine": "Unfeathered runite crossbow bolts.", "wiki_name": "Runite bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Runite_bolts_(unf)", - "price": 131 + "price": 100 }, "9382": { "id": 9382, @@ -133686,7 +130665,7 @@ "examine": "Unfeathered silver crossbow bolts.", "wiki_name": "Silver bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_bolts_(unf)", - "price": 16 + "price": 25 }, "9415": { "id": 9415, @@ -133718,7 +130697,7 @@ "examine": "A mithril grapple tip.", "wiki_name": "Mith grapple tip", "wiki_url": "https://oldschool.runescape.wiki/w/Mith_grapple_tip", - "price": 535 + "price": 222 }, "9418": { "id": 9418, @@ -133736,7 +130715,7 @@ "examine": "A mithril grapple tipped bolt - needs a rope.", "wiki_name": "Mith grapple (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Mith_grapple_(unf)", - "price": 217 + "price": 2903 }, "9419": { "id": 9419, @@ -133776,7 +130755,7 @@ "ranged": 1 } }, - "price": 1441 + "price": 1633 }, "9420": { "id": 9420, @@ -133826,7 +130805,7 @@ "examine": "A pair of iron crossbow limbs.", "wiki_name": "Iron limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_limbs", - "price": 2.5 + "price": 25 }, "9425": { "id": 9425, @@ -133862,7 +130841,7 @@ "examine": "A pair of mithril crossbow limbs.", "wiki_name": "Mithril limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_limbs", - "price": 879 + "price": 214 }, "9429": { "id": 9429, @@ -133880,7 +130859,7 @@ "examine": "A pair of adamantite crossbow limbs.", "wiki_name": "Adamantite limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Adamantite_limbs", - "price": 1364.5 + "price": 1060 }, "9431": { "id": 9431, @@ -133898,7 +130877,7 @@ "examine": "A pair of runite crossbow limbs.", "wiki_name": "Runite limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Runite_limbs", - "price": 9275 + "price": 12066 }, "9433": { "id": 9433, @@ -133946,7 +130925,7 @@ "examine": "I can use this to make a crossbow string.", "wiki_name": "Sinew", "wiki_url": "https://oldschool.runescape.wiki/w/Sinew", - "price": 336.5 + "price": 336 }, "9438": { "id": 9438, @@ -133964,7 +130943,7 @@ "examine": "A string for a crossbow.", "wiki_name": "Crossbow string", "wiki_url": "https://oldschool.runescape.wiki/w/Crossbow_string", - "price": 558.5 + "price": 558 }, "9440": { "id": 9440, @@ -133982,7 +130961,7 @@ "examine": "A wooden crossbow stock.", "wiki_name": "Wooden stock", "wiki_url": "https://oldschool.runescape.wiki/w/Wooden_stock", - "price": 1 + "price": 12 }, "9442": { "id": 9442, @@ -134018,7 +130997,7 @@ "examine": "A willow crossbow stock.", "wiki_name": "Willow stock", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_stock", - "price": 8 + "price": 5 }, "9446": { "id": 9446, @@ -134072,7 +131051,7 @@ "examine": "A mahogany crossbow stock.", "wiki_name": "Mahogany stock", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_stock", - "price": 18 + "price": 10 }, "9452": { "id": 9452, @@ -134090,7 +131069,7 @@ "examine": "A yew crossbow stock.", "wiki_name": "Yew stock", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_stock", - "price": 46 + "price": 180 }, "9454": { "id": 9454, @@ -134108,7 +131087,7 @@ "examine": "An unstrung bronze crossbow.", "wiki_name": "Bronze crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_crossbow_(u)", - "price": 111 + "price": 675 }, "9456": { "id": 9456, @@ -134140,7 +131119,7 @@ "examine": "An unstrung iron crossbow.", "wiki_name": "Iron crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_crossbow_(u)", - "price": 188 + "price": 142 }, "9459": { "id": 9459, @@ -134158,7 +131137,7 @@ "examine": "An unstrung steel crossbow.", "wiki_name": "Steel crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_crossbow_(u)", - "price": 46.5 + "price": 55 }, "9461": { "id": 9461, @@ -134176,7 +131155,7 @@ "examine": "An unstrung mithril crossbow.", "wiki_name": "Mithril crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_crossbow_(u)", - "price": 2850 + "price": 487 }, "9463": { "id": 9463, @@ -134194,7 +131173,7 @@ "examine": "An unstrung adamantite crossbow.", "wiki_name": "Adamant crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_crossbow_(u)", - "price": 1984 + "price": 1732 }, "9465": { "id": 9465, @@ -134212,7 +131191,7 @@ "examine": "An unstrung runite crossbow.", "wiki_name": "Runite crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Runite_crossbow_(u)", - "price": 9206.5 + "price": 9206 }, "9467": { "id": 9467, @@ -134256,7 +131235,7 @@ "examine": "A seed pod of the Grand Tree.", "wiki_name": "Grand seed pod", "wiki_url": "https://oldschool.runescape.wiki/w/Grand_seed_pod", - "price": 191449.5 + "price": 173043 }, "9470": { "id": 9470, @@ -134332,7 +131311,7 @@ "slot": "head", "requirements": null }, - "price": 73438 + "price": 45805 }, "9474": { "id": 9474, @@ -134364,7 +131343,7 @@ "examine": "It looks very minty.", "wiki_name": "Mint cake", "wiki_url": "https://oldschool.runescape.wiki/w/Mint_cake", - "price": 78748 + "price": 98000 }, "9477": { "id": 9477, @@ -135446,7 +132425,7 @@ "defence": 5 } }, - "price": 1171.5 + "price": 576 }, "9632": { "id": 9632, @@ -135512,7 +132491,7 @@ "slot": "body", "requirements": null }, - "price": 1545.5 + "price": 1545 }, "9636": { "id": 9636, @@ -135550,7 +132529,7 @@ "slot": "legs", "requirements": null }, - "price": 3210 + "price": 1510 }, "9638": { "id": 9638, @@ -135588,7 +132567,7 @@ "slot": "feet", "requirements": null }, - "price": 3142 + "price": 1321 }, "9640": { "id": 9640, @@ -135626,7 +132605,7 @@ "slot": "body", "requirements": null }, - "price": 390 + "price": 288 }, "9642": { "id": 9642, @@ -135664,7 +132643,7 @@ "slot": "legs", "requirements": null }, - "price": 140.5 + "price": 140 }, "9644": { "id": 9644, @@ -135702,7 +132681,7 @@ "slot": "feet", "requirements": null }, - "price": 693.5 + "price": 364 }, "9646": { "id": 9646, @@ -135971,7 +132950,7 @@ "examine": "Initiate level armour pack.", "wiki_name": "Initiate harness m", "wiki_url": "https://oldschool.runescape.wiki/w/Initiate_harness_m", - "price": 21125 + "price": 24107 }, "9670": { "id": 9670, @@ -135989,7 +132968,7 @@ "examine": "Proselyte level armour pack.", "wiki_name": "Proselyte harness f", "wiki_url": "https://oldschool.runescape.wiki/w/Proselyte_harness_f", - "price": 27131 + "price": 20732 }, "9672": { "id": 9672, @@ -136030,7 +133009,7 @@ "prayer": 20 } }, - "price": 4667.5 + "price": 6235 }, "9674": { "id": 9674, @@ -136071,7 +133050,7 @@ "prayer": 20 } }, - "price": 6550.5 + "price": 6550 }, "9676": { "id": 9676, @@ -136112,7 +133091,7 @@ "prayer": 20 } }, - "price": 7858 + "price": 5854 }, "9678": { "id": 9678, @@ -136153,7 +133132,7 @@ "prayer": 20 } }, - "price": 6042 + "price": 7500 }, "9680": { "id": 9680, @@ -136891,7 +133870,7 @@ "slot": "shield", "requirements": null }, - "price": 27130.5 + "price": 21978 }, "9733": { "id": 9733, @@ -136929,7 +133908,7 @@ "slot": "head", "requirements": null }, - "price": 5107.5 + "price": 5888 }, "9735": { "id": 9735, @@ -136947,7 +133926,7 @@ "examine": "Not much good for blowing.", "wiki_name": "Desert goat horn", "wiki_url": "https://oldschool.runescape.wiki/w/Desert_goat_horn", - "price": 49.5 + "price": 34 }, "9736": { "id": 9736, @@ -136965,7 +133944,7 @@ "examine": "Finely ground desert goat horn.", "wiki_name": "Goat horn dust", "wiki_url": "https://oldschool.runescape.wiki/w/Goat_horn_dust", - "price": 94.5 + "price": 107 }, "9739": { "id": 9739, @@ -136983,7 +133962,7 @@ "examine": "4 doses of combat potion.", "wiki_name": "Combat potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_potion#4_dose", - "price": 254 + "price": 222 }, "9741": { "id": 9741, @@ -137001,7 +133980,7 @@ "examine": "3 doses of combat potion.", "wiki_name": "Combat potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_potion#3_dose", - "price": 179.5 + "price": 179 }, "9743": { "id": 9743, @@ -137019,7 +133998,7 @@ "examine": "2 doses of combat potion.", "wiki_name": "Combat potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_potion#2_dose", - "price": 146 + "price": 105 }, "9745": { "id": 9745, @@ -137037,7 +134016,7 @@ "examine": "1 dose of combat potion.", "wiki_name": "Combat potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_potion#1_dose", - "price": 41.5 + "price": 54 }, "9747": { "id": 9747, @@ -139697,7 +136676,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak cape rack (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_cape_rack_(flatpack)", - "price": 505.5 + "price": 505 }, "9844": { "id": 9844, @@ -139715,7 +136694,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak cape rack (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_cape_rack_(flatpack)", - "price": 5000 + "price": 1519 }, "9845": { "id": 9845, @@ -139733,7 +136712,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany cape rack (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_cape_rack_(flatpack)", - "price": 405.5 + "price": 405 }, "9846": { "id": 9846, @@ -139751,7 +136730,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Gilded cape rack (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_cape_rack_(flatpack)", - "price": 278447.5 + "price": 278447 }, "9847": { "id": 9847, @@ -139787,7 +136766,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Magic cape rack (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_cape_rack_(flatpack)", - "price": 1007083.5 + "price": 1130976 }, "9849": { "id": 9849, @@ -139805,7 +136784,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak toy box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_toy_box_(flatpack)", - "price": 17.5 + "price": 24 }, "9850": { "id": 9850, @@ -139823,7 +136802,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak toy box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_toy_box_(flatpack)", - "price": 28.5 + "price": 28 }, "9851": { "id": 9851, @@ -139841,7 +136820,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Mahogany toy box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_toy_box_(flatpack)", - "price": 841 + "price": 1020 }, "9852": { "id": 9852, @@ -139877,7 +136856,7 @@ "examine": "Carved oak magic wardrobe.", "wiki_name": "Carved oak magic wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Carved_oak_magic_wardrobe_(flatpack)", - "price": 55.5 + "price": 55 }, "9854": { "id": 9854, @@ -139913,7 +136892,7 @@ "examine": "Carved teak magic wardrobe.", "wiki_name": "Carved teak magic wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Carved_teak_magic_wardrobe_(flatpack)", - "price": 39 + "price": 21 }, "9856": { "id": 9856, @@ -139931,7 +136910,7 @@ "examine": "Mahogany magic wardrobe.", "wiki_name": "Mahogany magic wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_magic_wardrobe_(flatpack)", - "price": 3004.5 + "price": 1187 }, "9857": { "id": 9857, @@ -139949,7 +136928,7 @@ "examine": "Gilded mahogany magic wardrobe.", "wiki_name": "Gilded magic wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_magic_wardrobe_(flatpack)", - "price": 1050000 + "price": 355000 }, "9858": { "id": 9858, @@ -139967,7 +136946,7 @@ "examine": "Marble magic wardrobe.", "wiki_name": "Marble magic wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Marble_magic_wardrobe_(flatpack)", - "price": 349237 + "price": 440859 }, "9859": { "id": 9859, @@ -140003,7 +136982,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak armour case (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_armour_case_(flatpack)", - "price": 560 + "price": 5081 }, "9861": { "id": 9861, @@ -140021,7 +137000,7 @@ "examine": "Mahogany armour case.", "wiki_name": "Mahogany armour case (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_armour_case_(flatpack)", - "price": 3377.5 + "price": 3377 }, "9862": { "id": 9862, @@ -140039,7 +137018,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak treasure chest (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_treasure_chest_(flatpack)", - "price": 512 + "price": 639 }, "9863": { "id": 9863, @@ -140057,7 +137036,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Teak treasure chest (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_treasure_chest_(flatpack)", - "price": 157 + "price": 2579 }, "9864": { "id": 9864, @@ -140075,7 +137054,7 @@ "examine": "Mahogany treasure chest.", "wiki_name": "M. treasure chest (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/M._treasure_chest_(flatpack)", - "price": 4500 + "price": 2759 }, "9865": { "id": 9865, @@ -140093,7 +137072,7 @@ "examine": "Oak fancy dress box.", "wiki_name": "Oak fancy dress box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_fancy_dress_box_(flatpack)", - "price": 17.5 + "price": 11 }, "9866": { "id": 9866, @@ -140111,7 +137090,7 @@ "examine": "Teak fancy dress box.", "wiki_name": "Teak fancy dress box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_fancy_dress_box_(flatpack)", - "price": 1390 + "price": 613 }, "9867": { "id": 9867, @@ -140129,7 +137108,7 @@ "examine": "Mahogany fancy dress box.", "wiki_name": "Mahogany fancy dress box (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_fancy_dress_box_(flatpack)", - "price": 750 + "price": 4775 }, "9901": { "id": 9901, @@ -141224,7 +138203,7 @@ "examine": "A nicely roasted bird.", "wiki_name": "Roast bird meat", "wiki_url": "https://oldschool.runescape.wiki/w/Roast_bird_meat", - "price": 10.5 + "price": 8 }, "9982": { "id": 9982, @@ -141342,7 +138321,7 @@ "examine": "A bowl of chopped tomatoes with an extra kick.", "wiki_name": "Spicy tomato", "wiki_url": "https://oldschool.runescape.wiki/w/Spicy_tomato", - "price": 495 + "price": 223 }, "9996": { "id": 9996, @@ -141360,7 +138339,7 @@ "examine": "A bowl of fiery minced meat.", "wiki_name": "Spicy minced meat", "wiki_url": "https://oldschool.runescape.wiki/w/Spicy_minced_meat", - "price": 1691.5 + "price": 2000 }, "9998": { "id": 9998, @@ -141378,7 +138357,7 @@ "examine": "4 doses of Hunter potion.", "wiki_name": "Hunter potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunter_potion#4_dose", - "price": 4107.5 + "price": 2199 }, "10000": { "id": 10000, @@ -141396,7 +138375,7 @@ "examine": "3 doses of Hunter potion.", "wiki_name": "Hunter potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunter_potion#3_dose", - "price": 2779 + "price": 1619 }, "10002": { "id": 10002, @@ -141414,7 +138393,7 @@ "examine": "2 doses of Hunter potion.", "wiki_name": "Hunter potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunter_potion#2_dose", - "price": 1000 + "price": 1521 }, "10004": { "id": 10004, @@ -141450,7 +138429,7 @@ "examine": "A simple bird catcher.", "wiki_name": "Bird snare", "wiki_url": "https://oldschool.runescape.wiki/w/Bird_snare", - "price": 56.5 + "price": 20 }, "10008": { "id": 10008, @@ -141468,7 +138447,7 @@ "examine": "If a creature goes inside, the box should then slam shut.", "wiki_name": "Box trap", "wiki_url": "https://oldschool.runescape.wiki/w/Box_trap", - "price": 119 + "price": 10 }, "10010": { "id": 10010, @@ -141561,7 +138540,7 @@ "examine": "It's got little holes in the top.", "wiki_name": "Butterfly jar", "wiki_url": "https://oldschool.runescape.wiki/w/Butterfly_jar", - "price": 237 + "price": 104 }, "10014": { "id": 10014, @@ -141779,7 +138758,7 @@ "examine": "A magical catching box.", "wiki_name": "Magic box", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_box", - "price": 306.5 + "price": 410 }, "10027": { "id": 10027, @@ -141825,7 +138804,7 @@ "examine": "Reduces the risk of hand severage when poking large, vicious carnivores.", "wiki_name": "Teasing stick", "wiki_url": "https://oldschool.runescape.wiki/w/Teasing_stick", - "price": 27.5 + "price": 1 }, "10031": { "id": 10031, @@ -141843,7 +138822,7 @@ "examine": "The snare will tighten around animals passing through.", "wiki_name": "Rabbit snare", "wiki_url": "https://oldschool.runescape.wiki/w/Rabbit_snare", - "price": 12.5 + "price": 7 }, "10033": { "id": 10033, @@ -141910,7 +138889,7 @@ } ] }, - "price": 608 + "price": 679 }, "10034": { "id": 10034, @@ -141977,7 +138956,7 @@ } ] }, - "price": 1434.5 + "price": 1434 }, "10035": { "id": 10035, @@ -142017,7 +138996,7 @@ "hunter": 52 } }, - "price": 1049.5 + "price": 829 }, "10037": { "id": 10037, @@ -142057,7 +139036,7 @@ "hunter": 52 } }, - "price": 569.5 + "price": 804 }, "10039": { "id": 10039, @@ -142097,7 +139076,7 @@ "hunter": 52 } }, - "price": 925 + "price": 1715 }, "10041": { "id": 10041, @@ -142137,7 +139116,7 @@ "hunter": 28 } }, - "price": 353.5 + "price": 561 }, "10043": { "id": 10043, @@ -142177,7 +139156,7 @@ "hunter": 28 } }, - "price": 446.5 + "price": 922 }, "10045": { "id": 10045, @@ -142217,7 +139196,7 @@ "hunter": 28 } }, - "price": 2057.5 + "price": 258 }, "10047": { "id": 10047, @@ -142257,7 +139236,7 @@ "hunter": 38 } }, - "price": 400.5 + "price": 400 }, "10049": { "id": 10049, @@ -142297,7 +139276,7 @@ "hunter": 38 } }, - "price": 599 + "price": 1515 }, "10051": { "id": 10051, @@ -142337,7 +139316,7 @@ "hunter": 38 } }, - "price": 3249 + "price": 7355 }, "10053": { "id": 10053, @@ -142374,7 +139353,7 @@ "slot": "body", "requirements": null }, - "price": 5794.5 + "price": 3000 }, "10055": { "id": 10055, @@ -142448,7 +139427,7 @@ "slot": "body", "requirements": null }, - "price": 2760.5 + "price": 4000 }, "10059": { "id": 10059, @@ -142485,7 +139464,7 @@ "slot": "legs", "requirements": null }, - "price": 1674.5 + "price": 3683 }, "10061": { "id": 10061, @@ -142522,7 +139501,7 @@ "slot": "body", "requirements": null }, - "price": 1711.5 + "price": 16140 }, "10063": { "id": 10063, @@ -142559,7 +139538,7 @@ "slot": "legs", "requirements": null }, - "price": 7785 + "price": 14254 }, "10065": { "id": 10065, @@ -142596,7 +139575,7 @@ "slot": "body", "requirements": null }, - "price": 13042.5 + "price": 7900 }, "10067": { "id": 10067, @@ -142633,7 +139612,7 @@ "slot": "legs", "requirements": null }, - "price": 13174.5 + "price": 8136 }, "10069": { "id": 10069, @@ -142673,7 +139652,7 @@ "hunter": 40 } }, - "price": 1550 + "price": 951 }, "10071": { "id": 10071, @@ -142713,7 +139692,7 @@ "hunter": 66 } }, - "price": 457.5 + "price": 3241 }, "10075": { "id": 10075, @@ -142833,7 +139812,7 @@ "ranged": 40 } }, - "price": 981 + "price": 2750 }, "10081": { "id": 10081, @@ -142873,7 +139852,7 @@ "ranged": 50 } }, - "price": 1683 + "price": 2262 }, "10083": { "id": 10083, @@ -142913,7 +139892,7 @@ "ranged": 60 } }, - "price": 1553.5 + "price": 1824 }, "10085": { "id": 10085, @@ -142953,7 +139932,7 @@ "ranged": 70 } }, - "price": 5875.5 + "price": 1972 }, "10087": { "id": 10087, @@ -143232,7 +140211,7 @@ "examine": "Previously a kebbit-sized set of dentures.", "wiki_name": "Kebbit teeth dust", "wiki_url": "https://oldschool.runescape.wiki/w/Kebbit_teeth_dust", - "price": 934.5 + "price": 650 }, "10113": { "id": 10113, @@ -143487,7 +140466,7 @@ "slot": "neck", "requirements": null }, - "price": 2057.5 + "price": 2057 }, "10134": { "id": 10134, @@ -143541,7 +140520,7 @@ "examine": "A colourful fish, attracted to colourful flies.", "wiki_name": "Raw rainbow fish", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_rainbow_fish", - "price": 411 + "price": 899 }, "10140": { "id": 10140, @@ -143594,7 +140573,7 @@ "slot": "ammo", "requirements": null }, - "price": 4.5 + "price": 5 }, "10143": { "id": 10143, @@ -143668,7 +140647,7 @@ "slot": "ammo", "requirements": null }, - "price": 1.5 + "price": 1 }, "10145": { "id": 10145, @@ -143705,7 +140684,7 @@ "slot": "ammo", "requirements": null }, - "price": 3 + "price": 5 }, "10146": { "id": 10146, @@ -144058,7 +141037,7 @@ } ] }, - "price": 20 + "price": 23 }, "10156": { "id": 10156, @@ -144126,7 +141105,7 @@ } ] }, - "price": 1689.5 + "price": 2422 }, "10158": { "id": 10158, @@ -144165,7 +141144,7 @@ "ranged": 50 } }, - "price": 96.5 + "price": 74 }, "10159": { "id": 10159, @@ -144204,7 +141183,7 @@ "ranged": 50 } }, - "price": 120.5 + "price": 50 }, "10167": { "id": 10167, @@ -144386,632 +141365,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Feathered_journal", "price": 0 }, - "10180": { - "id": 10180, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dance in the shack in Lumbridge Swamp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dance_in_the_shack_in_Lumbridge_Swamp", - "price": 0 - }, - "10182": { - "id": 10182, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Clap on the causeway to the Wizards' Tower", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Clap_on_the_causeway_to_the_Wizards'_Tower", - "price": 0 - }, - "10184": { - "id": 10184, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2004-05-05", - "examine": "A clue!", - "wiki_name": "Clue scroll (easy)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)", - "price": 0 - }, - "10186": { - "id": 10186, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Panic in the Limestone Mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Panic_in_the_Limestone_Mine", - "price": 0 - }, - "10188": { - "id": 10188, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Bow outside the entrance to the Legends' Guild", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Bow_outside_the_entrance_to_the_Legends'_Guild", - "price": 0 - }, - "10190": { - "id": 10190, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Wave on Mudskipper Point", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Wave_on_Mudskipper_Point", - "price": 0 - }, - "10192": { - "id": 10192, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Cheer for the monks at Port Sarim", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Cheer_for_the_monks_at_Port_Sarim", - "price": 0 - }, - "10194": { - "id": 10194, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Headbang in the mine north of Al Kharid", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Headbang_in_the_mine_north_of_Al_Kharid", - "price": 0 - }, - "10196": { - "id": 10196, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Spin in Draynor Manor by the fountain", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Spin_in_Draynor_Manor_by_the_fountain", - "price": 0 - }, - "10198": { - "id": 10198, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Think in middle of the wheat field by the Lumbridge mill", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Think_in_middle_of_the_wheat_field_by_the_Lumbridge_mill", - "price": 0 - }, - "10202": { - "id": 10202, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Shrug in the mine near Rimmington", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Shrug_in_the_mine_near_Rimmington", - "price": 0 - }, - "10204": { - "id": 10204, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Yawn in the Varrock library", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Yawn_in_the_Varrock_library", - "price": 0 - }, - "10206": { - "id": 10206, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Clap on the top level of the mill, north of East Ardougne", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Clap_on_the_top_level_of_the_mill,_north_of_East_Ardougne", - "price": 0 - }, - "10208": { - "id": 10208, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dance in the Party Room", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dance_in_the_Party_Room", - "price": 0 - }, - "10210": { - "id": 10210, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Cheer at the Druids' Circle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Cheer_at_the_Druids'_Circle", - "price": 0 - }, - "10212": { - "id": 10212, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Cheer at the games room", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Cheer_at_the_games_room", - "price": 0 - }, - "10214": { - "id": 10214, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Jump for joy at the beehives", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Jump_for_joy_at_the_beehives", - "price": 0 - }, - "10216": { - "id": 10216, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Blow a raspberry at the monkey cage in Ardougne Zoo", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Blow_a_raspberry_at_the_monkey_cage_in_Ardougne_Zoo", - "price": 0 - }, - "10218": { - "id": 10218, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Spin at the crossroads north of Rimmington", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Spin_at_the_crossroads_north_of_Rimmington", - "price": 0 - }, - "10220": { - "id": 10220, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dance a jig by the entrance to the Fishing Guild", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dance_a_jig_by_the_entrance_to_the_Fishing_Guild", - "price": 0 - }, - "10222": { - "id": 10222, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Blow raspberries outside the entrance to Keep Le Faye", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Blow_raspberries_outside_the_entrance_to_Keep_Le_Faye", - "price": 0 - }, - "10224": { - "id": 10224, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Panic on the pier where you catch the Fishing trawler", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Panic_on_the_pier_where_you_catch_the_Fishing_trawler", - "price": 0 - }, - "10226": { - "id": 10226, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Laugh at the crossroads south of the Sinclair Mansion", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Laugh_at_the_crossroads_south_of_the_Sinclair_Mansion", - "price": 0 - }, - "10228": { - "id": 10228, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Clap in the main exam room in the Exam Centre", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Clap_in_the_main_exam_room_in_the_Exam_Centre", - "price": 0 - }, - "10230": { - "id": 10230, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Wave along the south fence of the Lumber Yard", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Wave_along_the_south_fence_of_the_Lumber_Yard", - "price": 0 - }, - "10232": { - "id": 10232, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Bow in the office of the Emir's Arena", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Bow_in_the_office_of_the_Emir's_Arena", - "price": 0 - }, - "10234": { - "id": 10234, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Shrug in the Zamorak temple found in the Eastern Wilderness", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Shrug_in_the_Zamorak_temple_found_in_the_Eastern_Wilderness", - "price": 0 - }, - "10236": { - "id": 10236, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Blow a raspberry in the Fishing Guild bank", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Blow_a_raspberry_in_the_Fishing_Guild_bank", - "price": 0 - }, - "10238": { - "id": 10238, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Bow at the top of the lighthouse", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Bow_at_the_top_of_the_lighthouse", - "price": 0 - }, - "10240": { - "id": 10240, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Panic in the heart of the Haunted Woods", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Panic_in_the_heart_of_the_Haunted_Woods", - "price": 0 - }, - "10242": { - "id": 10242, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Dance at the cat-doored pyramid in Sophanem", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Dance_at_the_cat-doored_pyramid_in_Sophanem", - "price": 0 - }, - "10244": { - "id": 10244, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Yawn in the rogues' general store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Yawn_in_the_rogues'_general_store", - "price": 0 - }, - "10246": { - "id": 10246, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Salute in the banana plantation", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Salute_in_the_banana_plantation", - "price": 0 - }, - "10248": { - "id": 10248, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Laugh in Jokul's tent in the Mountain Camp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Laugh_in_Jokul's_tent_in_the_Mountain_Camp", - "price": 0 - }, - "10250": { - "id": 10250, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Panic by the pilot on White Wolf Mountain", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Panic_by_the_pilot_on_White_Wolf_Mountain", - "price": 0 - }, - "10254": { - "id": 10254, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Dance in the centre of Canifis", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Dance_in_the_centre_of_Canifis", - "price": 0 - }, - "10256": { - "id": 10256, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Panic by the mausoleum in Morytania", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Panic_by_the_mausoleum_in_Morytania", - "price": 0 - }, - "10258": { - "id": 10258, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Spin on the bridge by the Barbarian Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Spin_on_the_bridge_by_the_Barbarian_Village", - "price": 0 - }, - "10260": { - "id": 10260, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2006-12-05", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Beckon in Tai Bwo Wannai", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Beckon_in_Tai_Bwo_Wannai", - "price": 0 - }, - "10262": { - "id": 10262, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Yawn in the Castle Wars lobby", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Yawn_in_the_Castle_Wars_lobby", - "price": 0 - }, - "10264": { - "id": 10264, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Cheer in the Barbarian Agility Arena", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Cheer_in_the_Barbarian_Agility_Arena", - "price": 0 - }, - "10266": { - "id": 10266, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Cry on top of the western tree in the Gnome Agility Arena", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Cry_on_top_of_the_western_tree_in_the_Gnome_Agility_Arena", - "price": 0 - }, - "10268": { - "id": 10268, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Jump for joy in Yanille bank", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Jump_for_joy_in_Yanille_bank", - "price": 0 - }, - "10270": { - "id": 10270, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Think in the centre of the Observatory", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Think_in_the_centre_of_the_Observatory", - "price": 0 - }, - "10272": { - "id": 10272, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Cheer in the Ogre Pen in the Training Camp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Cheer_in_the_Ogre_Pen_in_the_Training_Camp", - "price": 0 - }, - "10274": { - "id": 10274, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Beckon in the Digsite, near the eastern winch", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Beckon_in_the_Digsite,_near_the_eastern_winch", - "price": 0 - }, - "10276": { - "id": 10276, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Cry in the Catherby Ranging shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Cry_in_the_Catherby_Ranging_shop", - "price": 0 - }, - "10278": { - "id": 10278, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Dance a jig under Shantay's Awning", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Dance_a_jig_under_Shantay's_Awning", - "price": 0 - }, "10280": { "id": 10280, "name": "Willow comp bow", @@ -145077,7 +141430,7 @@ } ] }, - "price": 3460.5 + "price": 5706 }, "10282": { "id": 10282, @@ -145145,7 +141498,7 @@ } ] }, - "price": 1012.5 + "price": 1532 }, "10284": { "id": 10284, @@ -145213,7 +141566,7 @@ } ] }, - "price": 6229 + "price": 5186 }, "10286": { "id": 10286, @@ -145252,7 +141605,7 @@ "defence": 40 } }, - "price": 68449.5 + "price": 97001 }, "10288": { "id": 10288, @@ -145291,7 +141644,7 @@ "defence": 40 } }, - "price": 24140 + "price": 35926 }, "10290": { "id": 10290, @@ -145330,7 +141683,7 @@ "defence": 40 } }, - "price": 21591.5 + "price": 35965 }, "10292": { "id": 10292, @@ -145369,7 +141722,7 @@ "defence": 40 } }, - "price": 20449 + "price": 44575 }, "10294": { "id": 10294, @@ -145408,7 +141761,7 @@ "defence": 40 } }, - "price": 21819 + "price": 42004 }, "10296": { "id": 10296, @@ -145447,7 +141800,7 @@ "defence": 30 } }, - "price": 5470 + "price": 1533 }, "10298": { "id": 10298, @@ -145486,7 +141839,7 @@ "defence": 30 } }, - "price": 7624 + "price": 2051 }, "10300": { "id": 10300, @@ -145525,7 +141878,7 @@ "defence": 30 } }, - "price": 3010 + "price": 1573 }, "10302": { "id": 10302, @@ -145564,7 +141917,7 @@ "defence": 30 } }, - "price": 6896 + "price": 2770 }, "10304": { "id": 10304, @@ -145603,7 +141956,7 @@ "defence": 30 } }, - "price": 2501 + "price": 2037 }, "10306": { "id": 10306, @@ -145642,7 +141995,7 @@ "defence": 10 } }, - "price": 5028 + "price": 2688 }, "10308": { "id": 10308, @@ -145681,7 +142034,7 @@ "defence": 10 } }, - "price": 4000.5 + "price": 2585 }, "10310": { "id": 10310, @@ -145720,7 +142073,7 @@ "defence": 10 } }, - "price": 4020.5 + "price": 2427 }, "10312": { "id": 10312, @@ -145759,7 +142112,7 @@ "defence": 10 } }, - "price": 26497.5 + "price": 3691 }, "10314": { "id": 10314, @@ -145798,7 +142151,7 @@ "defence": 10 } }, - "price": 7778.5 + "price": 4061 }, "10316": { "id": 10316, @@ -145836,7 +142189,7 @@ "slot": "body", "requirements": null }, - "price": 7075 + "price": 5577 }, "10318": { "id": 10318, @@ -145874,7 +142227,7 @@ "slot": "body", "requirements": null }, - "price": 5908.5 + "price": 12652 }, "10320": { "id": 10320, @@ -145912,7 +142265,7 @@ "slot": "body", "requirements": null }, - "price": 6548.5 + "price": 4871 }, "10322": { "id": 10322, @@ -145950,7 +142303,7 @@ "slot": "body", "requirements": null }, - "price": 12345.5 + "price": 17300 }, "10324": { "id": 10324, @@ -146005,7 +142358,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Purple firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Purple_firelighter", - "price": 73.5 + "price": 113 }, "10327": { "id": 10327, @@ -146022,7 +142375,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "White firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/White_firelighter", - "price": 38 + "price": 72 }, "10328": { "id": 10328, @@ -146091,7 +142444,7 @@ "defence": 45 } }, - "price": 51712993.5 + "price": 67388889 }, "10332": { "id": 10332, @@ -146132,7 +142485,7 @@ "defence": 45 } }, - "price": 29075500 + "price": 56394425 }, "10334": { "id": 10334, @@ -146173,7 +142526,7 @@ "defence": 45 } }, - "price": 30010500 + "price": 42250000 }, "10336": { "id": 10336, @@ -146214,7 +142567,7 @@ "defence": 45 } }, - "price": 27802394 + "price": 37706003 }, "10338": { "id": 10338, @@ -146255,7 +142608,7 @@ "defence": 30 } }, - "price": 158724000 + "price": 217583000 }, "10340": { "id": 10340, @@ -146296,7 +142649,7 @@ "defence": 30 } }, - "price": 51733000 + "price": 86070210 }, "10342": { "id": 10342, @@ -146337,7 +142690,7 @@ "defence": 30 } }, - "price": 34399389.5 + "price": 61550000 }, "10344": { "id": 10344, @@ -146378,7 +142731,7 @@ "defence": 30 } }, - "price": 115555555.5 + "price": 174565921 }, "10346": { "id": 10346, @@ -146418,7 +142771,7 @@ "defence": 65 } }, - "price": 91000500.5 + "price": 137781500 }, "10348": { "id": 10348, @@ -146458,7 +142811,7 @@ "defence": 65 } }, - "price": 188616993.5 + "price": 266416062 }, "10350": { "id": 10350, @@ -146498,7 +142851,7 @@ "defence": 65 } }, - "price": 64297000 + "price": 86697925 }, "10352": { "id": 10352, @@ -146538,7 +142891,7 @@ "defence": 65 } }, - "price": 144901066 + "price": 234750050 }, "10354": { "id": 10354, @@ -146576,7 +142929,7 @@ "slot": "neck", "requirements": null }, - "price": 58141.5 + "price": 49623 }, "10356": { "id": 10356, @@ -146722,7 +143075,7 @@ "slot": "neck", "requirements": null }, - "price": 65586.5 + "price": 75216 }, "10364": { "id": 10364, @@ -146759,7 +143112,7 @@ "slot": "neck", "requirements": null }, - "price": 16648 + "price": 23240 }, "10366": { "id": 10366, @@ -146796,7 +143149,7 @@ "slot": "neck", "requirements": null }, - "price": 18637.5 + "price": 11302 }, "10368": { "id": 10368, @@ -146837,7 +143190,7 @@ "defence": 40 } }, - "price": 198285.5 + "price": 191759 }, "10370": { "id": 10370, @@ -146878,7 +143231,7 @@ "defence": 40 } }, - "price": 380650 + "price": 345954 }, "10372": { "id": 10372, @@ -146919,7 +143272,7 @@ "defence": 40 } }, - "price": 718785 + "price": 657826 }, "10374": { "id": 10374, @@ -146960,7 +143313,7 @@ "defence": 40 } }, - "price": 87542 + "price": 105564 }, "10376": { "id": 10376, @@ -147001,7 +143354,7 @@ "defence": 40 } }, - "price": 32821 + "price": 48444 }, "10378": { "id": 10378, @@ -147042,7 +143395,7 @@ "defence": 40 } }, - "price": 200298.5 + "price": 208849 }, "10380": { "id": 10380, @@ -147083,7 +143436,7 @@ "defence": 40 } }, - "price": 535226.5 + "price": 476439 }, "10382": { "id": 10382, @@ -147124,7 +143477,7 @@ "defence": 40 } }, - "price": 94929.5 + "price": 150521 }, "10384": { "id": 10384, @@ -147165,7 +143518,7 @@ "defence": 40 } }, - "price": 74029 + "price": 99250 }, "10386": { "id": 10386, @@ -147247,7 +143600,7 @@ "defence": 40 } }, - "price": 519395 + "price": 558219 }, "10390": { "id": 10390, @@ -147326,7 +143679,7 @@ "slot": "head", "requirements": null }, - "price": 6574.5 + "price": 4045 }, "10394": { "id": 10394, @@ -147364,7 +143717,7 @@ "slot": "legs", "requirements": null }, - "price": 2496168.5 + "price": 2496168 }, "10396": { "id": 10396, @@ -147440,7 +143793,7 @@ "slot": "head", "requirements": null }, - "price": 9050.5 + "price": 21910 }, "10400": { "id": 10400, @@ -147478,7 +143831,7 @@ "slot": "body", "requirements": null }, - "price": 30000 + "price": 15500 }, "10402": { "id": 10402, @@ -147516,7 +143869,7 @@ "slot": "legs", "requirements": null }, - "price": 1672 + "price": 14000 }, "10404": { "id": 10404, @@ -147554,7 +143907,7 @@ "slot": "body", "requirements": null }, - "price": 4044.5 + "price": 29000 }, "10406": { "id": 10406, @@ -147592,7 +143945,7 @@ "slot": "legs", "requirements": null }, - "price": 4630.5 + "price": 9000 }, "10408": { "id": 10408, @@ -147630,7 +143983,7 @@ "slot": "body", "requirements": null }, - "price": 3188.5 + "price": 9500 }, "10410": { "id": 10410, @@ -147668,7 +144021,7 @@ "slot": "legs", "requirements": null }, - "price": 1500.5 + "price": 23499 }, "10412": { "id": 10412, @@ -147706,7 +144059,7 @@ "slot": "body", "requirements": null }, - "price": 7247.5 + "price": 14000 }, "10414": { "id": 10414, @@ -147744,7 +144097,7 @@ "slot": "legs", "requirements": null }, - "price": 6100 + "price": 476172 }, "10416": { "id": 10416, @@ -147782,7 +144135,7 @@ "slot": "body", "requirements": null }, - "price": 11597 + "price": 3826 }, "10418": { "id": 10418, @@ -147820,7 +144173,7 @@ "slot": "legs", "requirements": null }, - "price": 4051 + "price": 4894 }, "10420": { "id": 10420, @@ -147858,7 +144211,7 @@ "slot": "body", "requirements": null }, - "price": 8995 + "price": 31639 }, "10422": { "id": 10422, @@ -147896,7 +144249,7 @@ "slot": "legs", "requirements": null }, - "price": 17598.5 + "price": 41500 }, "10424": { "id": 10424, @@ -147934,7 +144287,7 @@ "slot": "body", "requirements": null }, - "price": 6909.5 + "price": 44160 }, "10426": { "id": 10426, @@ -147972,7 +144325,7 @@ "slot": "legs", "requirements": null }, - "price": 572.5 + "price": 26514 }, "10428": { "id": 10428, @@ -148010,7 +144363,7 @@ "slot": "body", "requirements": null }, - "price": 19205 + "price": 30470 }, "10430": { "id": 10430, @@ -148048,7 +144401,7 @@ "slot": "legs", "requirements": null }, - "price": 1170.5 + "price": 55000 }, "10432": { "id": 10432, @@ -148086,7 +144439,7 @@ "slot": "body", "requirements": null }, - "price": 5831.5 + "price": 26342 }, "10434": { "id": 10434, @@ -148124,7 +144477,7 @@ "slot": "legs", "requirements": null }, - "price": 1631 + "price": 52750 }, "10436": { "id": 10436, @@ -148162,7 +144515,7 @@ "slot": "body", "requirements": null }, - "price": 5512 + "price": 2650 }, "10438": { "id": 10438, @@ -148200,7 +144553,7 @@ "slot": "legs", "requirements": null }, - "price": 3332 + "price": 4463 }, "10440": { "id": 10440, @@ -148364,7 +144717,7 @@ } ] }, - "price": 12407 + "price": 17669 }, "10444": { "id": 10444, @@ -148446,7 +144799,7 @@ } ] }, - "price": 9027 + "price": 18500 }, "10446": { "id": 10446, @@ -148486,7 +144839,7 @@ "prayer": 40 } }, - "price": 66427.5 + "price": 53084 }, "10448": { "id": 10448, @@ -148526,7 +144879,7 @@ "prayer": 40 } }, - "price": 23750 + "price": 39750 }, "10450": { "id": 10450, @@ -148566,7 +144919,7 @@ "prayer": 40 } }, - "price": 31219 + "price": 35632 }, "10452": { "id": 10452, @@ -148607,7 +144960,7 @@ "magic": 40 } }, - "price": 19659.5 + "price": 21863 }, "10454": { "id": 10454, @@ -148648,7 +145001,7 @@ "magic": 40 } }, - "price": 17399 + "price": 24539 }, "10456": { "id": 10456, @@ -148689,7 +145042,7 @@ "magic": 40 } }, - "price": 26909 + "price": 23451 }, "10458": { "id": 10458, @@ -148729,7 +145082,7 @@ "prayer": 20 } }, - "price": 56186 + "price": 80170 }, "10460": { "id": 10460, @@ -148769,7 +145122,7 @@ "prayer": 20 } }, - "price": 70073.5 + "price": 81251 }, "10462": { "id": 10462, @@ -148809,7 +145162,7 @@ "prayer": 20 } }, - "price": 30470 + "price": 53000 }, "10464": { "id": 10464, @@ -148849,7 +145202,7 @@ "prayer": 20 } }, - "price": 51094.5 + "price": 81929 }, "10466": { "id": 10466, @@ -148889,7 +145242,7 @@ "prayer": 20 } }, - "price": 25953 + "price": 37153 }, "10468": { "id": 10468, @@ -148929,7 +145282,7 @@ "prayer": 20 } }, - "price": 81678.5 + "price": 66000 }, "10470": { "id": 10470, @@ -148969,7 +145322,7 @@ "prayer": 60 } }, - "price": 7000 + "price": 11155 }, "10472": { "id": 10472, @@ -149009,7 +145362,7 @@ "prayer": 60 } }, - "price": 6549.5 + "price": 6549 }, "10474": { "id": 10474, @@ -149049,7 +145402,7 @@ "prayer": 60 } }, - "price": 3504 + "price": 4084 }, "10476": { "id": 10476, @@ -149343,7 +145696,7 @@ "examine": "Shiny!", "wiki_name": "Polished buttons", "wiki_url": "https://oldschool.runescape.wiki/w/Polished_buttons", - "price": 3489.5 + "price": 6275 }, "10498": { "id": 10498, @@ -150485,7 +146838,7 @@ "defence": 50 } }, - "price": 53183.5 + "price": 53183 }, "10566": { "id": 10566, @@ -150913,7 +147266,7 @@ "defence": 50 } }, - "price": 32466.5 + "price": 37960 }, "10591": { "id": 10591, @@ -151064,7 +147417,7 @@ "examine": "Arctic pine logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Arctic pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Arctic_pyre_logs", - "price": 1953.5 + "price": 1599 }, "10810": { "id": 10810, @@ -151082,7 +147435,7 @@ "examine": "Log cut from an arctic pine.", "wiki_name": "Arctic pine logs", "wiki_url": "https://oldschool.runescape.wiki/w/Arctic_pine_logs", - "price": 397.5 + "price": 397 }, "10812": { "id": 10812, @@ -151100,7 +147453,7 @@ "examine": "Used to repair bridges.", "wiki_name": "Split log", "wiki_url": "https://oldschool.runescape.wiki/w/Split_log", - "price": 957.5 + "price": 1446 }, "10814": { "id": 10814, @@ -151118,7 +147471,7 @@ "examine": "I can spin this into rope.", "wiki_name": "Hair", "wiki_url": "https://oldschool.runescape.wiki/w/Hair", - "price": 402.5 + "price": 571 }, "10816": { "id": 10816, @@ -151154,7 +147507,7 @@ "examine": "Thakkrad, of Neitiznot, can cure this.", "wiki_name": "Yak-hide", "wiki_url": "https://oldschool.runescape.wiki/w/Yak-hide", - "price": 353 + "price": 463 }, "10820": { "id": 10820, @@ -151172,7 +147525,7 @@ "examine": "Ready to be cut and sewn into armour.", "wiki_name": "Cured yak-hide", "wiki_url": "https://oldschool.runescape.wiki/w/Cured_yak-hide", - "price": 906 + "price": 3087 }, "10822": { "id": 10822, @@ -151212,7 +147565,7 @@ "defence": 20 } }, - "price": 2347 + "price": 1337 }, "10824": { "id": 10824, @@ -151252,7 +147605,7 @@ "defence": 20 } }, - "price": 926 + "price": 160 }, "10826": { "id": 10826, @@ -151292,7 +147645,7 @@ "defence": 30 } }, - "price": 2211.5 + "price": 4170 }, "10828": { "id": 10828, @@ -152744,7 +149097,7 @@ "examine": "A 4 dose Sanfew Serum.", "wiki_name": "Sanfew serum (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sanfew_serum#4_dose", - "price": 28241.5 + "price": 24226 }, "10927": { "id": 10927, @@ -152762,7 +149115,7 @@ "examine": "A 3 dose Sanfew Serum.", "wiki_name": "Sanfew serum (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sanfew_serum#3_dose", - "price": 20309 + "price": 18000 }, "10929": { "id": 10929, @@ -152780,7 +149133,7 @@ "examine": "A 2 dose Sanfew Serum.", "wiki_name": "Sanfew serum (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sanfew_serum#2_dose", - "price": 12730 + "price": 11107 }, "10931": { "id": 10931, @@ -152798,7 +149151,7 @@ "examine": "A 1 dose Sanfew Serum.", "wiki_name": "Sanfew serum (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sanfew_serum#1_dose", - "price": 6334 + "price": 5580 }, "10933": { "id": 10933, @@ -152892,7 +149245,7 @@ "examine": "The claws from a nail beast.", "wiki_name": "Nail beast nails", "wiki_url": "https://oldschool.runescape.wiki/w/Nail_beast_nails", - "price": 8545 + "price": 6642 }, "10939": { "id": 10939, @@ -153132,7 +149485,7 @@ "examine": "Don't make anyone jump when you ring this!", "wiki_name": "Slayer bell", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer_bell", - "price": 1590.5 + "price": 5076 }, "10954": { "id": 10954, @@ -153173,7 +149526,7 @@ "ranged": 25 } }, - "price": 1651 + "price": 9990 }, "10956": { "id": 10956, @@ -153214,7 +149567,7 @@ "ranged": 25 } }, - "price": 659 + "price": 337 }, "10958": { "id": 10958, @@ -153515,7 +149868,7 @@ "examine": "Swamp weed found in the caves near Dorgesh-Kaan.", "wiki_name": "Swamp weed", "wiki_url": "https://oldschool.runescape.wiki/w/Swamp_weed", - "price": 86 + "price": 198 }, "10980": { "id": 10980, @@ -153547,7 +149900,7 @@ "examine": "Wire found in Dorgesh-Kaan.", "wiki_name": "Cave goblin wire", "wiki_url": "https://oldschool.runescape.wiki/w/Cave_goblin_wire", - "price": 1059.5 + "price": 1208 }, "10983": { "id": 10983, @@ -153779,7 +150132,7 @@ "examine": "A tattered goblin holy book.", "wiki_name": "Goblin book", "wiki_url": "https://oldschool.runescape.wiki/w/Goblin_book", - "price": 511.5 + "price": 643 }, "11001": { "id": 11001, @@ -154348,7 +150701,7 @@ } ] }, - "price": 350878 + "price": 447513 }, "11039": { "id": 11039, @@ -154713,7 +151066,7 @@ } ] }, - "price": 5453, + "price": 755, "lowalch": 400, "highalch": 600 }, @@ -154747,7 +151100,7 @@ "examine": "Used to make bracelets.", "wiki_name": "Bracelet mould", "wiki_url": "https://oldschool.runescape.wiki/w/Bracelet_mould", - "price": 675 + "price": 335 }, "11069": { "id": 11069, @@ -154785,7 +151138,7 @@ "slot": "hands", "requirements": null }, - "price": 269 + "price": 238 }, "11072": { "id": 11072, @@ -154823,7 +151176,7 @@ "slot": "hands", "requirements": null }, - "price": 619.5 + "price": 619 }, "11074": { "id": 11074, @@ -154861,7 +151214,7 @@ "slot": "hands", "requirements": null }, - "price": 594 + "price": 444 }, "11076": { "id": 11076, @@ -154936,7 +151289,7 @@ "slot": "hands", "requirements": null }, - "price": 836.5 + "price": 836 }, "11081": { "id": 11081, @@ -155120,7 +151473,7 @@ "slot": "neck", "requirements": null }, - "price": 2473.5 + "price": 2088 }, "11092": { "id": 11092, @@ -155196,7 +151549,7 @@ "slot": "hands", "requirements": null }, - "price": 2194.5 + "price": 2194 }, "11097": { "id": 11097, @@ -155562,7 +151915,7 @@ "slot": "hands", "requirements": null }, - "price": 11870.5 + "price": 11870 }, "11117": { "id": 11117, @@ -155755,7 +152108,7 @@ "slot": "hands", "requirements": null }, - "price": 12245.5 + "price": 12245 }, "11128": { "id": 11128, @@ -155793,7 +152146,7 @@ "slot": "neck", "requirements": null }, - "price": 2763120.5 + "price": 1755000 }, "11130": { "id": 11130, @@ -155831,7 +152184,7 @@ "slot": "hands", "requirements": null }, - "price": 2698999 + "price": 1113663 }, "11133": { "id": 11133, @@ -155869,7 +152222,7 @@ "slot": "hands", "requirements": null }, - "price": 2779679 + "price": 1702052 }, "11136": { "id": 11136, @@ -156789,7 +153142,7 @@ "examine": "A shrunk ogleroot! How odd...", "wiki_name": "Shrunk ogleroot", "wiki_url": "https://oldschool.runescape.wiki/w/Shrunk_ogleroot", - "price": 358 + "price": 3092 }, "11210": { "id": 11210, @@ -156856,7 +153209,7 @@ "ranged": 60 } }, - "price": 1438.5 + "price": 1060 }, "11217": { "id": 11217, @@ -156969,7 +153322,7 @@ "ranged": 60 } }, - "price": 1640 + "price": 1128 }, "11228": { "id": 11228, @@ -157008,7 +153361,7 @@ "ranged": 60 } }, - "price": 1671.5 + "price": 1443 }, "11229": { "id": 11229, @@ -157047,7 +153400,7 @@ "ranged": 60 } }, - "price": 2339.5 + "price": 2339 }, "11230": { "id": 11230, @@ -157114,7 +153467,7 @@ } ] }, - "price": 1250.5 + "price": 955 }, "11231": { "id": 11231, @@ -157181,7 +153534,7 @@ } ] }, - "price": 1328.5 + "price": 1115 }, "11232": { "id": 11232, @@ -157198,7 +153551,7 @@ "examine": "A deadly looking dragon dart tip - needs feathers for flight.", "wiki_name": "Dragon dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_dart_tip", - "price": 1511.5 + "price": 1209 }, "11233": { "id": 11233, @@ -157265,7 +153618,7 @@ } ] }, - "price": 1401 + "price": 1189 }, "11234": { "id": 11234, @@ -157400,7 +153753,7 @@ } ] }, - "price": 995436 + "price": 1109301 }, "11237": { "id": 11237, @@ -157417,7 +153770,7 @@ "examine": "Dragon talons, usable as arrowheads.", "wiki_name": "Dragon arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_arrowtips", - "price": 1418.5 + "price": 1077 }, "11238": { "id": 11238, @@ -157453,7 +153806,7 @@ "examine": "A young impling in a jar. Don't trap me, man.", "wiki_name": "Young impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Young_impling_jar", - "price": 2050 + "price": 2650 }, "11242": { "id": 11242, @@ -157471,7 +153824,7 @@ "examine": "A gourmet impling in a jar.", "wiki_name": "Gourmet impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Gourmet_impling_jar", - "price": 2917 + "price": 3935 }, "11244": { "id": 11244, @@ -157507,7 +153860,7 @@ "examine": "Essence impling in a jar.", "wiki_name": "Essence impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Essence_impling_jar", - "price": 2899.5 + "price": 2899 }, "11248": { "id": 11248, @@ -157525,7 +153878,7 @@ "examine": "Eclectic impling in a jar.", "wiki_name": "Eclectic impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Eclectic_impling_jar", - "price": 5630.5 + "price": 5630 }, "11250": { "id": 11250, @@ -157543,7 +153896,7 @@ "examine": "Nature impling in a jar.", "wiki_name": "Nature impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Nature_impling_jar", - "price": 7121 + "price": 8982 }, "11252": { "id": 11252, @@ -157561,7 +153914,7 @@ "examine": "Magpie impling in a jar.", "wiki_name": "Magpie impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Magpie_impling_jar", - "price": 28082.5 + "price": 28082 }, "11254": { "id": 11254, @@ -157579,7 +153932,7 @@ "examine": "Ninja impling in a jar.", "wiki_name": "Ninja impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Ninja_impling_jar", - "price": 60614.5 + "price": 60614 }, "11256": { "id": 11256, @@ -157597,7 +153950,7 @@ "examine": "Dragon impling in a jar.", "wiki_name": "Dragon impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_impling_jar", - "price": 495001.5 + "price": 543500 }, "11258": { "id": 11258, @@ -157810,7 +154163,7 @@ "slot": "head", "requirements": null }, - "price": 97498 + "price": 65889 }, "11282": { "id": 11282, @@ -157920,7 +154273,7 @@ "defence": 75 } }, - "price": 3421908 + "price": 2762496 }, "11286": { "id": 11286, @@ -157938,7 +154291,7 @@ "examine": "It looks like this could be attached to a shield somehow.", "wiki_name": "Draconic visage", "wiki_url": "https://oldschool.runescape.wiki/w/Draconic_visage", - "price": 3273783.5 + "price": 2743429 }, "11323": { "id": 11323, @@ -157970,7 +154323,7 @@ "examine": "Roe, or cheap fishy eggs.", "wiki_name": "Roe", "wiki_url": "https://oldschool.runescape.wiki/w/Roe", - "price": 130 + "price": 172 }, "11326": { "id": 11326, @@ -157988,7 +154341,7 @@ "examine": "Caviar, or expensive fishy eggs.", "wiki_name": "Caviar", "wiki_url": "https://oldschool.runescape.wiki/w/Caviar", - "price": 114.5 + "price": 114 }, "11328": { "id": 11328, @@ -158006,7 +154359,7 @@ "examine": "A sad-looking trout.", "wiki_name": "Leaping trout", "wiki_url": "https://oldschool.runescape.wiki/w/Leaping_trout", - "price": 11 + "price": 21 }, "11330": { "id": 11330, @@ -158024,7 +154377,7 @@ "examine": "Some non-tasty salmon.", "wiki_name": "Leaping salmon", "wiki_url": "https://oldschool.runescape.wiki/w/Leaping_salmon", - "price": 16.5 + "price": 21 }, "11332": { "id": 11332, @@ -158042,7 +154395,7 @@ "examine": "A bloated sturgeon.", "wiki_name": "Leaping sturgeon", "wiki_url": "https://oldschool.runescape.wiki/w/Leaping_sturgeon", - "price": 21 + "price": 51 }, "11334": { "id": 11334, @@ -158059,7 +154412,7 @@ "examine": "Slices of inedible fish.", "wiki_name": "Fish offcuts", "wiki_url": "https://oldschool.runescape.wiki/w/Fish_offcuts", - "price": 24 + "price": 50 }, "11335": { "id": 11335, @@ -158099,7 +154452,7 @@ "defence": 60 } }, - "price": 83388888.5 + "price": 92612277 }, "11337": { "id": 11337, @@ -158594,7 +154947,7 @@ } ] }, - "price": 15.5 + "price": 280 }, "11369": { "id": 11369, @@ -159044,7 +155397,7 @@ } ] }, - "price": 300.5 + "price": 300 }, "11381": { "id": 11381, @@ -159190,7 +155543,7 @@ } ] }, - "price": 4935.5 + "price": 2720 }, "11384": { "id": 11384, @@ -159340,7 +155693,7 @@ } ] }, - "price": 10001.5 + "price": 10001 }, "11388": { "id": 11388, @@ -159486,7 +155839,7 @@ } ] }, - "price": 2014.5 + "price": 1765 }, "11391": { "id": 11391, @@ -159782,7 +156135,7 @@ } ] }, - "price": 2242 + "price": 10062 }, "11398": { "id": 11398, @@ -159857,7 +156210,7 @@ } ] }, - "price": 1530.5 + "price": 2565 }, "11400": { "id": 11400, @@ -159932,7 +156285,7 @@ } ] }, - "price": 838.5 + "price": 838 }, "11402": { "id": 11402, @@ -160078,7 +156431,7 @@ } ] }, - "price": 251.5 + "price": 251 }, "11405": { "id": 11405, @@ -160228,7 +156581,7 @@ } ] }, - "price": 5631 + "price": 3012 }, "11409": { "id": 11409, @@ -160374,7 +156727,7 @@ } ] }, - "price": 6691.5 + "price": 6691 }, "11412": { "id": 11412, @@ -160449,7 +156802,7 @@ } ] }, - "price": 7835.5 + "price": 3544 }, "11414": { "id": 11414, @@ -160524,7 +156877,7 @@ } ] }, - "price": 10993.5 + "price": 14641 }, "11416": { "id": 11416, @@ -160670,7 +157023,7 @@ } ] }, - "price": 23710.5 + "price": 23710 }, "11419": { "id": 11419, @@ -160745,7 +157098,7 @@ } ] }, - "price": 30689 + "price": 13002 }, "11427": { "id": 11427, @@ -160809,7 +157162,7 @@ "examine": "One dose of fishy Attack potion.", "wiki_name": "Attack mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Attack_mix#1_dose", - "price": 399 + "price": 68 }, "11433": { "id": 11433, @@ -160827,7 +157180,7 @@ "examine": "Two doses of fishy antipoison potion.", "wiki_name": "Antipoison mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antipoison_mix#2_dose", - "price": 85.5 + "price": 51 }, "11435": { "id": 11435, @@ -160845,7 +157198,7 @@ "examine": "One dose of fishy antipoison potion.", "wiki_name": "Antipoison mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antipoison_mix#1_dose", - "price": 235.5 + "price": 285 }, "11437": { "id": 11437, @@ -160899,7 +157252,7 @@ "examine": "One dose of fishy strength potion.", "wiki_name": "Strength mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Strength_mix#1_dose", - "price": 90 + "price": 260 }, "11443": { "id": 11443, @@ -160917,7 +157270,7 @@ "examine": "Two doses of fishy strength potion.", "wiki_name": "Strength mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Strength_mix#2_dose", - "price": 42 + "price": 21 }, "11445": { "id": 11445, @@ -160935,7 +157288,7 @@ "examine": "Two doses of fishy combat potion.", "wiki_name": "Combat mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_mix#2_dose", - "price": 71.5 + "price": 89 }, "11447": { "id": 11447, @@ -160971,7 +157324,7 @@ "examine": "Two doses of fishy restore potion.", "wiki_name": "Restore mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Restore_mix#2_dose", - "price": 51.5 + "price": 109 }, "11451": { "id": 11451, @@ -160989,7 +157342,7 @@ "examine": "One dose of fishy restore potion.", "wiki_name": "Restore mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Restore_mix#1_dose", - "price": 120.5 + "price": 152 }, "11453": { "id": 11453, @@ -161007,7 +157360,7 @@ "examine": "Two doses of fishy energy potion.", "wiki_name": "Energy mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Energy_mix#2_dose", - "price": 240.5 + "price": 348 }, "11455": { "id": 11455, @@ -161025,7 +157378,7 @@ "examine": "One dose of fishy energy potion.", "wiki_name": "Energy mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Energy_mix#1_dose", - "price": 608.5 + "price": 279 }, "11457": { "id": 11457, @@ -161061,7 +157414,7 @@ "examine": "One dose of fishy Defence potion.", "wiki_name": "Defence mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Defence_mix#1_dose", - "price": 1233.5 + "price": 22 }, "11461": { "id": 11461, @@ -161079,7 +157432,7 @@ "examine": "Two doses of fishy Agility potion.", "wiki_name": "Agility mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Agility_mix#2_dose", - "price": 174 + "price": 756 }, "11463": { "id": 11463, @@ -161097,7 +157450,7 @@ "examine": "One dose of fishy Agility potion.", "wiki_name": "Agility mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Agility_mix#1_dose", - "price": 567 + "price": 345 }, "11465": { "id": 11465, @@ -161115,7 +157468,7 @@ "examine": "Two doses of fishy Prayer potion.", "wiki_name": "Prayer mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Prayer_mix#2_dose", - "price": 4437.5 + "price": 4996 }, "11467": { "id": 11467, @@ -161133,7 +157486,7 @@ "examine": "One dose of fishy Prayer potion.", "wiki_name": "Prayer mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Prayer_mix#1_dose", - "price": 1191 + "price": 1630 }, "11469": { "id": 11469, @@ -161169,7 +157522,7 @@ "examine": "One dose of fishy super Attack potion.", "wiki_name": "Superattack mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Superattack_mix#1_dose", - "price": 44.5 + "price": 165 }, "11473": { "id": 11473, @@ -161187,7 +157540,7 @@ "examine": "Two doses of fishy super antipoison potion.", "wiki_name": "Anti-poison supermix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-poison_supermix#2_dose", - "price": 899 + "price": 343 }, "11475": { "id": 11475, @@ -161205,7 +157558,7 @@ "examine": "One dose of fishy super antipoison potion.", "wiki_name": "Anti-poison supermix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-poison_supermix#1_dose", - "price": 1025 + "price": 1720 }, "11477": { "id": 11477, @@ -161223,7 +157576,7 @@ "examine": "Two doses of fishy Fishing potion.", "wiki_name": "Fishing mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_mix#2_dose", - "price": 57 + "price": 104 }, "11479": { "id": 11479, @@ -161241,7 +157594,7 @@ "examine": "One dose of fishy Fishing potion.", "wiki_name": "Fishing mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_mix#1_dose", - "price": 1000 + "price": 281 }, "11481": { "id": 11481, @@ -161259,7 +157612,7 @@ "examine": "Two doses of fishy super energy potion.", "wiki_name": "Super energy mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_energy_mix#2_dose", - "price": 1624.5 + "price": 1810 }, "11483": { "id": 11483, @@ -161277,7 +157630,7 @@ "examine": "One dose of fishy super energy potion.", "wiki_name": "Super energy mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_energy_mix#1_dose", - "price": 446 + "price": 838 }, "11485": { "id": 11485, @@ -161313,7 +157666,7 @@ "examine": "One dose of fishy super Strength potion.", "wiki_name": "Super str. mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_str._mix#1_dose", - "price": 717.5 + "price": 717 }, "11489": { "id": 11489, @@ -161331,7 +157684,7 @@ "examine": "Two doses of fishy Magic essence.", "wiki_name": "Magic essence mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_essence_mix#2_dose", - "price": 914 + "price": 1927 }, "11491": { "id": 11491, @@ -161349,7 +157702,7 @@ "examine": "One dose of fishy Magic essence.", "wiki_name": "Magic essence mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_essence_mix#1_dose", - "price": 1090 + "price": 203 }, "11493": { "id": 11493, @@ -161367,7 +157720,7 @@ "examine": "Two doses of fishy super restore potion.", "wiki_name": "Super restore mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_restore_mix#2_dose", - "price": 3517 + "price": 4325 }, "11495": { "id": 11495, @@ -161385,7 +157738,7 @@ "examine": "One dose of fishy super restore potion.", "wiki_name": "Super restore mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_restore_mix#1_dose", - "price": 2182.5 + "price": 5548 }, "11497": { "id": 11497, @@ -161403,7 +157756,7 @@ "examine": "Two doses of fishy super Defence potion.", "wiki_name": "Super def. mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_def._mix#2_dose", - "price": 537 + "price": 634 }, "11499": { "id": 11499, @@ -161421,7 +157774,7 @@ "examine": "One dose of fishy super Defence potion.", "wiki_name": "Super def. mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_def._mix#1_dose", - "price": 184 + "price": 314 }, "11501": { "id": 11501, @@ -161439,7 +157792,7 @@ "examine": "Two doses of fishy extra strength antidote potion.", "wiki_name": "Antidote+ mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote+_mix#2_dose", - "price": 1198.5 + "price": 1537 }, "11503": { "id": 11503, @@ -161475,7 +157828,7 @@ "examine": "Two doses of fishy anti-firebreath potion.", "wiki_name": "Antifire mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antifire_mix#2_dose", - "price": 144.5 + "price": 161 }, "11507": { "id": 11507, @@ -161493,7 +157846,7 @@ "examine": "One dose of fishy anti-firebreath potion.", "wiki_name": "Antifire mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antifire_mix#1_dose", - "price": 84.5 + "price": 84 }, "11509": { "id": 11509, @@ -161511,7 +157864,7 @@ "examine": "Two doses of fishy ranging potion.", "wiki_name": "Ranging mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ranging_mix#2_dose", - "price": 1650 + "price": 1187 }, "11511": { "id": 11511, @@ -161529,7 +157882,7 @@ "examine": "One dose of fishy ranging potion.", "wiki_name": "Ranging mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ranging_mix#1_dose", - "price": 450.5 + "price": 450 }, "11513": { "id": 11513, @@ -161547,7 +157900,7 @@ "examine": "Two doses of fishy Magic potion.", "wiki_name": "Magic mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_mix#2_dose", - "price": 61.5 + "price": 52 }, "11515": { "id": 11515, @@ -161565,7 +157918,7 @@ "examine": "One dose of fishy Magic potion.", "wiki_name": "Magic mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_mix#1_dose", - "price": 20.5 + "price": 63 }, "11517": { "id": 11517, @@ -161583,7 +157936,7 @@ "examine": "Two doses of fishy Hunter potion.", "wiki_name": "Hunting mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunting_mix#2_dose", - "price": 5266.5 + "price": 22274 }, "11519": { "id": 11519, @@ -161601,7 +157954,7 @@ "examine": "One dose of fishy Hunter potion.", "wiki_name": "Hunting mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunting_mix#1_dose", - "price": 2997.5 + "price": 140 }, "11521": { "id": 11521, @@ -161619,7 +157972,7 @@ "examine": "Two doses of fishy Zamorak brew.", "wiki_name": "Zamorak mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_mix#2_dose", - "price": 301 + "price": 88 }, "11523": { "id": 11523, @@ -161637,7 +157990,7 @@ "examine": "One dose of fishy Zamorak brew.", "wiki_name": "Zamorak mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_mix#1_dose", - "price": 2513.5 + "price": 2513 }, "11525": { "id": 11525, @@ -165325,7 +161678,7 @@ } ] }, - "price": 57645743.5 + "price": 54293467 }, "11787": { "id": 11787, @@ -165408,7 +161761,7 @@ } ] }, - "price": 67000 + "price": 102500 }, "11789": { "id": 11789, @@ -165491,7 +161844,7 @@ } ] }, - "price": 78426 + "price": 168494 }, "11791": { "id": 11791, @@ -165574,7 +161927,7 @@ } ] }, - "price": 13149999.5 + "price": 14479842 }, "11794": { "id": 11794, @@ -165624,7 +161977,7 @@ "examine": "The blade for the ultimate weapon.", "wiki_name": "Godsword blade", "wiki_url": "https://oldschool.runescape.wiki/w/Godsword_blade", - "price": 520941 + "price": 485001 }, "11800": { "id": 11800, @@ -165865,7 +162218,7 @@ } ] }, - "price": 37246199.5 + "price": 32564377 }, "11808": { "id": 11808, @@ -165940,7 +162293,7 @@ } ] }, - "price": 22445000 + "price": 28504194 }, "11810": { "id": 11810, @@ -165958,7 +162311,7 @@ "examine": "Brimming with potential.", "wiki_name": "Armadyl hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_hilt", - "price": 10854343 + "price": 11639988 }, "11812": { "id": 11812, @@ -165976,7 +162329,7 @@ "examine": "Brimming with potential.", "wiki_name": "Bandos hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_hilt", - "price": 20205167 + "price": 19575000 }, "11814": { "id": 11814, @@ -165994,7 +162347,7 @@ "examine": "Brimming with potential.", "wiki_name": "Saradomin hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_hilt", - "price": 36325000 + "price": 31715999 }, "11816": { "id": 11816, @@ -166012,7 +162365,7 @@ "examine": "Brimming with potential.", "wiki_name": "Zamorak hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_hilt", - "price": 20768671.5 + "price": 27346985 }, "11818": { "id": 11818, @@ -166030,7 +162383,7 @@ "examine": "A part of the Godsword blade.", "wiki_name": "Godsword shard 1", "wiki_url": "https://oldschool.runescape.wiki/w/Godsword_shard_1", - "price": 157281 + "price": 151320 }, "11820": { "id": 11820, @@ -166048,7 +162401,7 @@ "examine": "A part of the Godsword blade.", "wiki_name": "Godsword shard 2", "wiki_url": "https://oldschool.runescape.wiki/w/Godsword_shard_2", - "price": 158149 + "price": 150802 }, "11822": { "id": 11822, @@ -166141,7 +162494,7 @@ } ] }, - "price": 4411374.5 + "price": 4880620 }, "11826": { "id": 11826, @@ -166182,7 +162535,7 @@ "ranged": 70 } }, - "price": 11010188 + "price": 11918299 }, "11828": { "id": 11828, @@ -166223,7 +162576,7 @@ "ranged": 70 } }, - "price": 44101768 + "price": 47480506 }, "11830": { "id": 11830, @@ -166264,7 +162617,7 @@ "ranged": 70 } }, - "price": 32813869 + "price": 35512614 }, "11832": { "id": 11832, @@ -166304,7 +162657,7 @@ "defence": 65 } }, - "price": 29866081 + "price": 26010627 }, "11834": { "id": 11834, @@ -166344,7 +162697,7 @@ "defence": 65 } }, - "price": 19656348.5 + "price": 17447414 }, "11836": { "id": 11836, @@ -166384,7 +162737,7 @@ "defence": 65 } }, - "price": 190134.5 + "price": 190134 }, "11838": { "id": 11838, @@ -166459,7 +162812,7 @@ } ] }, - "price": 155281.5 + "price": 175550 }, "11840": { "id": 11840, @@ -166499,7 +162852,7 @@ "defence": 60 } }, - "price": 114777.5 + "price": 114777 }, "11842": { "id": 11842, @@ -167258,7 +163611,7 @@ "slayer": 55 } }, - "price": 51.5 + "price": 45 }, "11876": { "id": 11876, @@ -167275,7 +163628,7 @@ "examine": "Add feathers to make broad-tipped crossbow bolts.", "wiki_name": "Unfinished broad bolts", "wiki_url": "https://oldschool.runescape.wiki/w/Unfinished_broad_bolts", - "price": 49.5 + "price": 56 }, "11877": { "id": 11877, @@ -167442,7 +163795,7 @@ } ] }, - "price": 4644915 + "price": 4922663 }, "11891": { "id": 11891, @@ -168057,7 +164410,7 @@ } ] }, - "price": 855877.5 + "price": 596653 }, "11907": { "id": 11907, @@ -168189,7 +164542,7 @@ } ] }, - "price": 42700 + "price": 48871 }, "11910": { "id": 11910, @@ -168382,7 +164735,7 @@ } ] }, - "price": 1069900.5 + "price": 963996 }, "11922": { "id": 11922, @@ -168450,7 +164803,7 @@ "defence": 60 } }, - "price": 1050000 + "price": 1915982 }, "11926": { "id": 11926, @@ -168490,7 +164843,7 @@ "defence": 60 } }, - "price": 3761245.5 + "price": 3182608 }, "11928": { "id": 11928, @@ -168508,7 +164861,7 @@ "examine": "A broken shield piece.", "wiki_name": "Odium shard 1", "wiki_url": "https://oldschool.runescape.wiki/w/Odium_shard_1", - "price": 2900000 + "price": 2125000 }, "11929": { "id": 11929, @@ -168526,7 +164879,7 @@ "examine": "A broken shield piece.", "wiki_name": "Odium shard 2", "wiki_url": "https://oldschool.runescape.wiki/w/Odium_shard_2", - "price": 785000 + "price": 1009000 }, "11930": { "id": 11930, @@ -168544,7 +164897,7 @@ "examine": "A broken shield piece.", "wiki_name": "Odium shard 3", "wiki_url": "https://oldschool.runescape.wiki/w/Odium_shard_3", - "price": 69327.5 + "price": 97316 }, "11931": { "id": 11931, @@ -168562,7 +164915,7 @@ "examine": "A broken shield piece.", "wiki_name": "Malediction shard 1", "wiki_url": "https://oldschool.runescape.wiki/w/Malediction_shard_1", - "price": 727500 + "price": 895038 }, "11932": { "id": 11932, @@ -168580,7 +164933,7 @@ "examine": "A broken shield piece.", "wiki_name": "Malediction shard 2", "wiki_url": "https://oldschool.runescape.wiki/w/Malediction_shard_2", - "price": 273618 + "price": 536000 }, "11933": { "id": 11933, @@ -168598,7 +164951,7 @@ "examine": "A broken shield piece.", "wiki_name": "Malediction shard 3", "wiki_url": "https://oldschool.runescape.wiki/w/Malediction_shard_3", - "price": 54406 + "price": 113321 }, "11934": { "id": 11934, @@ -168616,7 +164969,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw dark crab", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_dark_crab", - "price": 1067.5 + "price": 1522 }, "11936": { "id": 11936, @@ -168634,7 +164987,7 @@ "examine": "This looks tricky to eat.", "wiki_name": "Dark crab", "wiki_url": "https://oldschool.runescape.wiki/w/Dark_crab", - "price": 1417 + "price": 1640 }, "11938": { "id": 11938, @@ -168667,7 +165020,7 @@ "examine": "What on earth would eat this?", "wiki_name": "Dark fishing bait", "wiki_url": "https://oldschool.runescape.wiki/w/Dark_fishing_bait", - "price": 8 + "price": 9 }, "11941": { "id": 11941, @@ -168713,7 +165066,7 @@ "examine": "Bones of a lava dragon.", "wiki_name": "Lava dragon bones", "wiki_url": "https://oldschool.runescape.wiki/w/Lava_dragon_bones", - "price": 4423 + "price": 3599 }, "11951": { "id": 11951, @@ -168731,7 +165084,7 @@ "examine": "4 doses of extended anti-firebreath potion.", "wiki_name": "Extended antifire (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_antifire#4_dose", - "price": 242 + "price": 392 }, "11953": { "id": 11953, @@ -168749,7 +165102,7 @@ "examine": "3 doses of extended anti-firebreath potion.", "wiki_name": "Extended antifire (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_antifire#3_dose", - "price": 106 + "price": 345 }, "11955": { "id": 11955, @@ -168767,7 +165120,7 @@ "examine": "2 doses of extended anti-firebreath potion.", "wiki_name": "Extended antifire (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_antifire#2_dose", - "price": 43 + "price": 181 }, "11957": { "id": 11957, @@ -168785,7 +165138,7 @@ "examine": "1 dose of extended anti-firebreath potion.", "wiki_name": "Extended antifire (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_antifire#1_dose", - "price": 100.5 + "price": 66 }, "11959": { "id": 11959, @@ -168870,7 +165223,7 @@ "examine": "Two doses of fishy extended anti-firebreath potion.", "wiki_name": "Extended antifire mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_antifire_mix#2_dose", - "price": 20 + "price": 200 }, "11962": { "id": 11962, @@ -168888,7 +165241,7 @@ "examine": "One dose of fishy extended anti-firebreath potion.", "wiki_name": "Extended antifire mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_antifire_mix#1_dose", - "price": 50 + "price": 40 }, "11964": { "id": 11964, @@ -168926,7 +165279,7 @@ "slot": "neck", "requirements": null }, - "price": 48980.5 + "price": 48980 }, "11966": { "id": 11966, @@ -169184,7 +165537,7 @@ "slot": "neck", "requirements": null }, - "price": 10373 + "price": 12150 }, "11980": { "id": 11980, @@ -169222,7 +165575,7 @@ "slot": "ring", "requirements": null }, - "price": 14449.5 + "price": 14449 }, "11982": { "id": 11982, @@ -169404,7 +165757,7 @@ "slot": "head", "requirements": null }, - "price": 9042.5 + "price": 9042 }, "11992": { "id": 11992, @@ -169439,7 +165792,7 @@ "examine": "Ground-up lava dragon scale.", "wiki_name": "Lava scale shard", "wiki_url": "https://oldschool.runescape.wiki/w/Lava_scale_shard", - "price": 43.5 + "price": 43 }, "11995": { "id": 11995, @@ -169558,7 +165911,7 @@ } ] }, - "price": 1890289 + "price": 1827576 }, "12000": { "id": 12000, @@ -169641,7 +165994,7 @@ } ] }, - "price": 1893750 + "price": 1833205 }, "12002": { "id": 12002, @@ -169681,7 +166034,7 @@ "magic": 70 } }, - "price": 790940.5 + "price": 790940 }, "12004": { "id": 12004, @@ -169699,7 +166052,7 @@ "examine": "Ewwww... it's still sucky.", "wiki_name": "Kraken tentacle", "wiki_url": "https://oldschool.runescape.wiki/w/Kraken_tentacle", - "price": 712308 + "price": 876957 }, "12006": { "id": 12006, @@ -169781,7 +166134,7 @@ "examine": "It's just a jar of dirt.", "wiki_name": "Jar of dirt", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_dirt", - "price": 20865.5 + "price": 22955 }, "12009": { "id": 12009, @@ -170041,345 +166394,6 @@ }, "price": 0 }, - "12021": { - "id": 12021, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Dance in the dark caves beneath Lumbridge Swamp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Dance_in_the_dark_caves_beneath_Lumbridge_Swamp", - "price": 0 - }, - "12023": { - "id": 12023, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Shrug in Catherby bank", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Shrug_in_Catherby_bank", - "price": 0 - }, - "12025": { - "id": 12025, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Clap in Seers court house", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Clap_in_Seers_court_house", - "price": 0 - }, - "12027": { - "id": 12027, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2004-05-05", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)", - "price": 0 - }, - "12029": { - "id": 12029, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Jump for joy in the TzHaar sword shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Jump_for_joy_in_the_TzHaar_sword_shop", - "price": 0 - }, - "12031": { - "id": 12031, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Cheer in the Edgeville general store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Cheer_in_the_Edgeville_general_store", - "price": 0 - }, - "12033": { - "id": 12033, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 08.11S 04.48E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_08.11S_04.48E", - "price": 0 - }, - "12035": { - "id": 12035, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 02.43S 33.26E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_02.43S_33.26E", - "price": 0 - }, - "12037": { - "id": 12037, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 12.28N 34.37E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_12.28N_34.37E", - "price": 0 - }, - "12039": { - "id": 12039, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 15.22N 07.31E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_15.22N_07.31E", - "price": 0 - }, - "12041": { - "id": 12041, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 03.07S 03.41W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_03.07S_03.41W", - "price": 0 - }, - "12043": { - "id": 12043, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 06.58N 21.16E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_06.58N_21.16E", - "price": 0 - }, - "12045": { - "id": 12045, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 09.35N 01.50W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_09.35N_01.50W", - "price": 0 - }, - "12047": { - "id": 12047, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 11.33N 02.24W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_11.33N_02.24W", - "price": 0 - }, - "12049": { - "id": 12049, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 10.45N 04.31E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_10.45N_04.31E", - "price": 0 - }, - "12051": { - "id": 12051, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 06.41N 27.15E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_06.41N_27.15E", - "price": 0 - }, - "12053": { - "id": 12053, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 11.18N 30.54E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_11.18N_30.54E", - "price": 0 - }, - "12055": { - "id": 12055, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - GOBLETS ODD TOES", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_GOBLETS_ODD_TOES", - "price": 0 - }, - "12057": { - "id": 12057, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - A BAKER", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_A_BAKER", - "price": 0 - }, - "12059": { - "id": 12059, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - I EVEN", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_I_EVEN", - "price": 0 - }, - "12061": { - "id": 12061, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - A BASIC ANTI POT", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_A_BASIC_ANTI_POT", - "price": 0 - }, - "12063": { - "id": 12063, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - RATAI", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_RATAI", - "price": 0 - }, - "12065": { - "id": 12065, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - LEAKEY", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_LEAKEY", - "price": 0 - }, - "12067": { - "id": 12067, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - THICKNO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_THICKNO", - "price": 0 - }, - "12069": { - "id": 12069, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - KAY SIR", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_KAY_SIR", - "price": 0 - }, - "12071": { - "id": 12071, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - HEORIC", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_HEORIC", - "price": 0 - }, "12073": { "id": 12073, "name": "Clue scroll (elite)", @@ -170388,140 +166402,10 @@ "lowalch": 8, "highalch": 12, "weight": 0.02, + "release_date": "2014-06-12", "examine": "A clue!", "wiki_name": "Clue scroll (elite)", "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "price": 0, - "release_date": "2014-06-12" - }, - "12074": { - "id": 12074, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Jump for joy at the Neitiznot rune rock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Jump_for_joy_at_the_Neitiznot_rune_rock", - "price": 0 - }, - "12075": { - "id": 12075, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Blow a kiss in the heart of the lava maze", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Blow_a_kiss_in_the_heart_of_the_lava_maze", - "price": 0 - }, - "12076": { - "id": 12076, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Cheer in the Shadow dungeon", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Cheer_in_the_Shadow_dungeon", - "price": 0 - }, - "12077": { - "id": 12077, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Salute in the Warriors' guild bank", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Salute_in_the_Warriors'_guild_bank", - "price": 0 - }, - "12078": { - "id": 12078, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Bow upstairs in the Edgeville Monastery", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Bow_upstairs_in_the_Edgeville_Monastery", - "price": 0 - }, - "12079": { - "id": 12079, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Dance on the Fishing Platform", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Dance_on_the_Fishing_Platform", - "price": 0 - }, - "12080": { - "id": 12080, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Headbang at the top of Slayer Tower", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Headbang_at_the_top_of_Slayer_Tower", - "price": 0 - }, - "12081": { - "id": 12081, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Yawn at the top of Trollheim", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Yawn_at_the_top_of_Trollheim", - "price": 0 - }, - "12082": { - "id": 12082, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Laugh by the fountain of heroes", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Laugh_by_the_fountain_of_heroes", - "price": 0 - }, - "12083": { - "id": 12083, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Jump for joy in the Ancient Cavern", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Jump_for_joy_in_the_Ancient_Cavern", "price": 0 }, "12084": { @@ -170538,384 +166422,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Casket_(discontinued)#Elite", "price": 0 }, - "12085": { - "id": 12085, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 12.31N 43.11E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_12.31N_43.11E", - "price": 0 - }, - "12086": { - "id": 12086, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 03.09S 42.50E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_03.09S_42.50E", - "price": 0 - }, - "12087": { - "id": 12087, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 20.13N 08.07E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_20.13N_08.07E", - "price": 0 - }, - "12088": { - "id": 12088, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 09.46S 43.22E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_09.46S_43.22E", - "price": 0 - }, - "12089": { - "id": 12089, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 00.18S 02.35W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_00.18S_02.35W", - "price": 0 - }, - "12090": { - "id": 12090, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 18.05N 12.05E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_18.05N_12.05E", - "price": 0 - }, - "12091": { - "id": 12091, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 00.35N 35.50E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_00.35N_35.50E", - "price": 0 - }, - "12092": { - "id": 12092, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 23.48N 11.43W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_23.48N_11.43W", - "price": 0 - }, - "12093": { - "id": 12093, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 25.03N 29.22E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_25.03N_29.22E", - "price": 0 - }, - "12094": { - "id": 12094, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 19.56N 02.31W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_19.56N_02.31W", - "price": 0 - }, - "12095": { - "id": 12095, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 24.07N 23.22E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_24.07N_23.22E", - "price": 0 - }, - "12096": { - "id": 12096, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 14.15S 08.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_14.15S_08.01E", - "price": 0 - }, - "12097": { - "id": 12097, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 24.45N 17.24E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_24.45N_17.24E", - "price": 0 - }, - "12098": { - "id": 12098, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 05.39S 02.13E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_05.39S_02.13E", - "price": 0 - }, - "12099": { - "id": 12099, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 10.05S 24.31E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_10.05S_24.31E", - "price": 0 - }, - "12100": { - "id": 12100, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 05.24S 26.56E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_05.24S_26.56E", - "price": 0 - }, - "12101": { - "id": 12101, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 22.54N 29.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_22.54N_29.01E", - "price": 0 - }, - "12102": { - "id": 12102, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 06.35N 09.07E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_06.35N_09.07E", - "price": 0 - }, - "12103": { - "id": 12103, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 08.15N 35.24E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_08.15N_35.24E", - "price": 0 - }, - "12104": { - "id": 12104, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 16.09N 10.33E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_16.09N_10.33E", - "price": 0 - }, - "12105": { - "id": 12105, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 20.11N 07.41W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_20.11N_07.41W", - "price": 0 - }, - "12106": { - "id": 12106, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 13.45S 15.30E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_13.45S_15.30E", - "price": 0 - }, - "12107": { - "id": 12107, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 05.07S 13.26E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_05.07S_13.26E", - "price": 0 - }, - "12108": { - "id": 12108, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 12.35N 36.20E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_12.35N_36.20E", - "price": 0 - }, - "12109": { - "id": 12109, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 21.03N 24.13E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_21.03N_24.13E", - "price": 0 - }, - "12110": { - "id": 12110, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 02.35S 11.52E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_02.35S_11.52E", - "price": 0 - }, - "12111": { - "id": 12111, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 03.46N 08.07W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_03.46N_08.07W", - "price": 0 - }, - "12113": { - "id": 12113, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2014-06-12", - "examine": "A clue!", - "wiki_name": "Clue scroll (elite)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)", - "price": 0 - }, - "12127": { - "id": 12127, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Show this to Sherlock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Show_this_to_Sherlock", - "price": 0 - }, "12128": { "id": 12128, "name": "Challenge scroll (elite)", @@ -170930,370 +166436,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Challenge_scroll#Elite", "price": 0 }, - "12130": { - "id": 12130, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - South-west of Tree Gnome Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_South-west_of_Tree_Gnome_Village", - "price": 0 - }, - "12132": { - "id": 12132, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Career In Moon", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Career_In_Moon", - "price": 0 - }, - "12133": { - "id": 12133, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Majors Lava Bads Air", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Majors_Lava_Bads_Air", - "price": 0 - }, - "12134": { - "id": 12134, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Dr Hitman", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Dr_Hitman", - "price": 0 - }, - "12135": { - "id": 12135, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - No Owner", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_No_Owner", - "price": 0 - }, - "12136": { - "id": 12136, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Machete Clam", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Machete_Clam", - "price": 0 - }, - "12137": { - "id": 12137, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Unleash Night Mist", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Unleash_Night_Mist", - "price": 0 - }, - "12138": { - "id": 12138, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Cool Nerd", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Cool_Nerd", - "price": 0 - }, - "12140": { - "id": 12140, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Has no one told you it is rude to ask a lady her age", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Has_no_one_told_you_it_is_rude_to_ask_a_lady_her_age", - "price": 0 - }, - "12141": { - "id": 12141, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Green is the colour of my death", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Green_is_the_colour_of_my_death", - "price": 0 - }, - "12142": { - "id": 12142, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Three rule below and three sit at top", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Three_rule_below_and_three_sit_at_top", - "price": 0 - }, - "12143": { - "id": 12143, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - The beasts retreat, for their Queen is gone", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_The_beasts_retreat,_for_their_Queen_is_gone", - "price": 0 - }, - "12144": { - "id": 12144, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - I am the one who watches the giants", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_I_am_the_one_who_watches_the_giants", - "price": 0 - }, - "12145": { - "id": 12145, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Even the seers say this clue goes right over their heads", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Even_the_seers_say_this_clue_goes_right_over_their_heads", - "price": 0 - }, - "12146": { - "id": 12146, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Right on the blessed border, cursed by the evil ones", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Right_on_the_blessed_border,_cursed_by_the_evil_ones", - "price": 0 - }, - "12147": { - "id": 12147, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - You were 3 and I was the 6th Come speak to me", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_You_were_3_and_I_was_the_6th_Come_speak_to_me", - "price": 0 - }, - "12148": { - "id": 12148, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - W marks the spot", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_W_marks_the_spot", - "price": 0 - }, - "12149": { - "id": 12149, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Varrock is where I reside", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Varrock_is_where_I_reside", - "price": 0 - }, - "12150": { - "id": 12150, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Dig where the forces of Zamorak and Saradomin collide", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Dig_where_the_forces_of_Zamorak_and_Saradomin_collide", - "price": 0 - }, - "12151": { - "id": 12151, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - A reck you say", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_A_reck_you_say", - "price": 0 - }, - "12152": { - "id": 12152, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - I burn between heroes and legends", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_I_burn_between_heroes_and_legends", - "price": 0 - }, - "12153": { - "id": 12153, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - I live in a deserted crack collecting soles", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_I_live_in_a_deserted_crack_collecting_soles", - "price": 0 - }, - "12154": { - "id": 12154, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Dobson is my last name, and with gardening I seek fame", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Dobson_is_my_last_name,_and_with_gardening_I_seek_fame", - "price": 0 - }, - "12155": { - "id": 12155, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - His bark is worse than his bite", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_His_bark_is_worse_than_his_bite", - "price": 0 - }, - "12156": { - "id": 12156, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - A Guthixian ring lies between two peaks", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_A_Guthixian_ring_lies_between_two_peaks", - "price": 0 - }, - "12157": { - "id": 12157, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 'See you in your dreams' said the vegetable man", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_'See_you_in_your_dreams'_said_the_vegetable_man", - "price": 0 - }, - "12158": { - "id": 12158, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Desert insects is what I see", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Desert_insects_is_what_I_see", - "price": 0 - }, - "12159": { - "id": 12159, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Speak to a Wyse man", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Speak_to_a_Wyse_man", - "price": 0 - }, "12161": { "id": 12161, "name": "Puzzle box (elite)", @@ -171308,358 +166450,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Puzzle_box#Tree_(elite)", "price": 0 }, - "12162": { - "id": 12162, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Spin in the Varrock Castle courtyard", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Spin_in_the_Varrock_Castle_courtyard", - "price": 0 - }, - "12164": { - "id": 12164, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Wave in the Falador gem store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Wave_in_the_Falador_gem_store", - "price": 0 - }, - "12166": { - "id": 12166, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search a bookcase in Lumbridge Swamp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_a_bookcase_in_Lumbridge_Swamp", - "price": 0 - }, - "12167": { - "id": 12167, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search a bookcase in the Wizards tower", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_a_bookcase_in_the_Wizards_tower", - "price": 0 - }, - "12168": { - "id": 12168, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search a wardrobe in Draynor", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_a_wardrobe_in_Draynor", - "price": 0 - }, - "12169": { - "id": 12169, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to a party-goer in Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_a_party-goer_in_Falador", - "price": 0 - }, - "12170": { - "id": 12170, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dig between some ominous stones in Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dig_between_some_ominous_stones_in_Falador", - "price": 0 - }, - "12172": { - "id": 12172, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the chest in Barbarian Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_chest_in_Barbarian_Village", - "price": 0 - }, - "12173": { - "id": 12173, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to the mother of a basement dwelling son", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_the_mother_of_a_basement_dwelling_son", - "price": 0 - }, - "12174": { - "id": 12174, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the Coffin in Edgeville", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_Coffin_in_Edgeville", - "price": 0 - }, - "12175": { - "id": 12175, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the bush at the digsite centre", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_bush_at_the_digsite_centre", - "price": 0 - }, - "12176": { - "id": 12176, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in a bank in Varrock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_a_bank_in_Varrock", - "price": 0 - }, - "12177": { - "id": 12177, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the bookcase in the monastery", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_bookcase_in_the_monastery", - "price": 0 - }, - "12178": { - "id": 12178, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the Dwarven mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_Dwarven_mine", - "price": 0 - }, - "12179": { - "id": 12179, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Al Kharid Mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Al_Kharid_Mine", - "price": 0, - "release_date": "2004-05-05" - }, - "12181": { - "id": 12181, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Cassie in Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Cassie_in_Falador", - "price": 0 - }, - "12182": { - "id": 12182, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Ambassador Spanfipple", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Ambassador_Spanfipple", - "price": 0 - }, - "12183": { - "id": 12183, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to the barber in the Falador barber shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_the_barber_in_the_Falador_barber_shop", - "price": 0 - }, - "12184": { - "id": 12184, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Jatix in Taverley", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Jatix_in_Taverley", - "price": 0 - }, - "12185": { - "id": 12185, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crate in the Toad and Chicken pub", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crate_in_the_Toad_and_Chicken_pub", - "price": 0 - }, - "12186": { - "id": 12186, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Sarah at Falador farm", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Sarah_at_Falador_farm", - "price": 0 - }, - "12187": { - "id": 12187, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to Rusty north of Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_Rusty_north_of_Falador", - "price": 0 - }, - "12188": { - "id": 12188, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the drawers in the house next to the Port Sarim mage shop", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_drawers_in_the_house_next_to_the_Port_Sarim_mage_shop", - "price": 0 - }, - "12189": { - "id": 12189, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the wheelbarrow in Rimmington mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_wheelbarrow_in_Rimmington_mine", - "price": 0 - }, - "12190": { - "id": 12190, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Speak to The Lady of the Lake", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Speak_to_The_Lady_of_the_Lake", - "price": 0 - }, - "12191": { - "id": 12191, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the outhouse in Taverley", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_outhouse_in_Taverley", - "price": 0 - }, - "12192": { - "id": 12192, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the bucket in the Port Sarim jail", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_bucket_in_the_Port_Sarim_jail", - "price": 0 - }, "12193": { "id": 12193, "name": "Ancient robe top", @@ -171698,7 +166488,7 @@ "prayer": 20 } }, - "price": 39967.5 + "price": 64244 }, "12195": { "id": 12195, @@ -171738,7 +166528,7 @@ "prayer": 20 } }, - "price": 24221.5 + "price": 51077 }, "12197": { "id": 12197, @@ -171778,7 +166568,7 @@ "prayer": 40 } }, - "price": 25586 + "price": 53818 }, "12199": { "id": 12199, @@ -171860,7 +166650,7 @@ } ] }, - "price": 13250 + "price": 7921 }, "12201": { "id": 12201, @@ -171900,7 +166690,7 @@ "prayer": 60 } }, - "price": 2928 + "price": 6000 }, "12203": { "id": 12203, @@ -171980,7 +166770,7 @@ "defence": 1 } }, - "price": 50000 + "price": 61500 }, "12207": { "id": 12207, @@ -172019,7 +166809,7 @@ "defence": 1 } }, - "price": 7257.5 + "price": 7257 }, "12209": { "id": 12209, @@ -172058,7 +166848,7 @@ "defence": 1 } }, - "price": 5979 + "price": 4340 }, "12211": { "id": 12211, @@ -172136,7 +166926,7 @@ "defence": 1 } }, - "price": 20065.5 + "price": 27579 }, "12215": { "id": 12215, @@ -172175,7 +166965,7 @@ "defence": 1 } }, - "price": 3511 + "price": 3037 }, "12217": { "id": 12217, @@ -172214,7 +167004,7 @@ "defence": 1 } }, - "price": 3159.5 + "price": 3159 }, "12219": { "id": 12219, @@ -172253,7 +167043,7 @@ "defence": 1 } }, - "price": 3145.5 + "price": 3145 }, "12221": { "id": 12221, @@ -172292,7 +167082,7 @@ "defence": 1 } }, - "price": 1500 + "price": 5156 }, "12223": { "id": 12223, @@ -172331,7 +167121,7 @@ "defence": 1 } }, - "price": 1840.5 + "price": 51668 }, "12225": { "id": 12225, @@ -172370,7 +167160,7 @@ "defence": 1 } }, - "price": 36151.5 + "price": 170000 }, "12227": { "id": 12227, @@ -172409,7 +167199,7 @@ "defence": 1 } }, - "price": 8867.5 + "price": 4009 }, "12229": { "id": 12229, @@ -172448,7 +167238,7 @@ "defence": 1 } }, - "price": 2475.5 + "price": 4603 }, "12231": { "id": 12231, @@ -172487,7 +167277,7 @@ "defence": 1 } }, - "price": 24259.5 + "price": 24259 }, "12233": { "id": 12233, @@ -172526,7 +167316,7 @@ "defence": 1 } }, - "price": 30204.5 + "price": 10759 }, "12235": { "id": 12235, @@ -172604,7 +167394,7 @@ "defence": 1 } }, - "price": 31468.5 + "price": 24377 }, "12239": { "id": 12239, @@ -172643,7 +167433,7 @@ "defence": 1 } }, - "price": 9594 + "price": 6202 }, "12241": { "id": 12241, @@ -172721,7 +167511,7 @@ "defence": 1 } }, - "price": 46114 + "price": 78370 }, "12245": { "id": 12245, @@ -172759,7 +167549,7 @@ "slot": "head", "requirements": null }, - "price": 5415.5 + "price": 3256 }, "12247": { "id": 12247, @@ -172797,7 +167587,7 @@ "slot": "head", "requirements": null }, - "price": 14613 + "price": 25764 }, "12249": { "id": 12249, @@ -172835,7 +167625,7 @@ "slot": "head", "requirements": null }, - "price": 7274 + "price": 15932 }, "12251": { "id": 12251, @@ -172873,7 +167663,7 @@ "slot": "head", "requirements": null }, - "price": 42982.5 + "price": 16957 }, "12253": { "id": 12253, @@ -172913,7 +167703,7 @@ "prayer": 20 } }, - "price": 27626 + "price": 49184 }, "12255": { "id": 12255, @@ -172953,7 +167743,7 @@ "prayer": 20 } }, - "price": 26000.5 + "price": 49293 }, "12257": { "id": 12257, @@ -172993,7 +167783,7 @@ "prayer": 60 } }, - "price": 7070.5 + "price": 13384 }, "12259": { "id": 12259, @@ -173034,7 +167824,7 @@ "magic": 40 } }, - "price": 27541 + "price": 17730 }, "12261": { "id": 12261, @@ -173074,7 +167864,7 @@ "prayer": 40 } }, - "price": 32377 + "price": 38026 }, "12263": { "id": 12263, @@ -173156,7 +167946,7 @@ } ] }, - "price": 7077 + "price": 13200 }, "12265": { "id": 12265, @@ -173196,7 +167986,7 @@ "prayer": 20 } }, - "price": 30320.5 + "price": 41210 }, "12267": { "id": 12267, @@ -173236,7 +168026,7 @@ "prayer": 20 } }, - "price": 26578 + "price": 33947 }, "12269": { "id": 12269, @@ -173276,7 +168066,7 @@ "prayer": 60 } }, - "price": 6679 + "price": 15000 }, "12271": { "id": 12271, @@ -173317,7 +168107,7 @@ "magic": 40 } }, - "price": 18903 + "price": 24743 }, "12273": { "id": 12273, @@ -173357,7 +168147,7 @@ "prayer": 40 } }, - "price": 72550 + "price": 88179 }, "12275": { "id": 12275, @@ -173439,7 +168229,7 @@ } ] }, - "price": 8499.5 + "price": 7355 }, "12277": { "id": 12277, @@ -173478,7 +168268,7 @@ "defence": 20 } }, - "price": 5026.5 + "price": 5026 }, "12279": { "id": 12279, @@ -173517,7 +168307,7 @@ "defence": 20 } }, - "price": 6902 + "price": 1925 }, "12281": { "id": 12281, @@ -173556,7 +168346,7 @@ "defence": 20 } }, - "price": 4865 + "price": 3890 }, "12283": { "id": 12283, @@ -173595,7 +168385,7 @@ "defence": 20 } }, - "price": 9854 + "price": 3300 }, "12285": { "id": 12285, @@ -173634,7 +168424,7 @@ "defence": 20 } }, - "price": 1361 + "price": 6157 }, "12287": { "id": 12287, @@ -173673,7 +168463,7 @@ "defence": 20 } }, - "price": 4011.5 + "price": 3261 }, "12289": { "id": 12289, @@ -173712,7 +168502,7 @@ "defence": 20 } }, - "price": 3331 + "price": 2899 }, "12291": { "id": 12291, @@ -173751,7 +168541,7 @@ "defence": 20 } }, - "price": 6750.5 + "price": 3815 }, "12293": { "id": 12293, @@ -173790,7 +168580,7 @@ "defence": 20 } }, - "price": 3203.5 + "price": 3203 }, "12295": { "id": 12295, @@ -173829,7 +168619,7 @@ "defence": 20 } }, - "price": 1877.5 + "price": 20991 }, "12297": { "id": 12297, @@ -173903,7 +168693,7 @@ } ] }, - "price": 6661 + "price": 2081 }, "12299": { "id": 12299, @@ -173941,7 +168731,7 @@ "slot": "head", "requirements": null }, - "price": 4000.5 + "price": 4000 }, "12301": { "id": 12301, @@ -173979,7 +168769,7 @@ "slot": "head", "requirements": null }, - "price": 7192 + "price": 5889 }, "12303": { "id": 12303, @@ -174055,7 +168845,7 @@ "slot": "head", "requirements": null }, - "price": 6311 + "price": 4237 }, "12307": { "id": 12307, @@ -174093,7 +168883,7 @@ "slot": "head", "requirements": null }, - "price": 5869 + "price": 4251 }, "12309": { "id": 12309, @@ -174131,7 +168921,7 @@ "slot": "head", "requirements": null }, - "price": 12569.5 + "price": 23365 }, "12311": { "id": 12311, @@ -174169,7 +168959,7 @@ "slot": "head", "requirements": null }, - "price": 9004 + "price": 8014 }, "12313": { "id": 12313, @@ -174207,7 +168997,7 @@ "slot": "head", "requirements": null }, - "price": 6956.5 + "price": 13501 }, "12315": { "id": 12315, @@ -174283,7 +169073,7 @@ "slot": "legs", "requirements": null }, - "price": 8299.5 + "price": 6785 }, "12319": { "id": 12319, @@ -174359,7 +169149,7 @@ "slot": "head", "requirements": null }, - "price": 6122 + "price": 7227 }, "12323": { "id": 12323, @@ -174397,7 +169187,7 @@ "slot": "head", "requirements": null }, - "price": 9000.5 + "price": 1999 }, "12325": { "id": 12325, @@ -174435,7 +169225,7 @@ "slot": "head", "requirements": null }, - "price": 5045 + "price": 9002 }, "12327": { "id": 12327, @@ -174476,7 +169266,7 @@ "defence": 40 } }, - "price": 7689.5 + "price": 5834 }, "12329": { "id": 12329, @@ -174516,7 +169306,7 @@ "ranged": 60 } }, - "price": 8508.5 + "price": 10580 }, "12331": { "id": 12331, @@ -174557,7 +169347,7 @@ "defence": 40 } }, - "price": 7444 + "price": 6330 }, "12333": { "id": 12333, @@ -174597,7 +169387,7 @@ "ranged": 60 } }, - "price": 3416.5 + "price": 3416 }, "12335": { "id": 12335, @@ -174635,7 +169425,7 @@ "slot": "shield", "requirements": null }, - "price": 172499.5 + "price": 260000 }, "12337": { "id": 12337, @@ -174673,7 +169463,7 @@ "slot": "head", "requirements": null }, - "price": 889500 + "price": 1343668 }, "12339": { "id": 12339, @@ -174711,7 +169501,7 @@ "slot": "body", "requirements": null }, - "price": 5083 + "price": 8540 }, "12341": { "id": 12341, @@ -174749,7 +169539,7 @@ "slot": "legs", "requirements": null }, - "price": 1898.5 + "price": 7311 }, "12343": { "id": 12343, @@ -174787,7 +169577,7 @@ "slot": "body", "requirements": null }, - "price": 1737 + "price": 6410 }, "12345": { "id": 12345, @@ -174825,7 +169615,7 @@ "slot": "legs", "requirements": null }, - "price": 2068.5 + "price": 6288 }, "12347": { "id": 12347, @@ -174901,7 +169691,7 @@ "slot": "legs", "requirements": null }, - "price": 2081 + "price": 6120 }, "12351": { "id": 12351, @@ -174977,7 +169767,7 @@ "slot": "head", "requirements": null }, - "price": 5523.5 + "price": 10322 }, "12355": { "id": 12355, @@ -175015,7 +169805,7 @@ "slot": "head", "requirements": null }, - "price": 492998.5 + "price": 656224 }, "12357": { "id": 12357, @@ -175088,7 +169878,7 @@ } ] }, - "price": 100267 + "price": 111842 }, "12359": { "id": 12359, @@ -175126,7 +169916,7 @@ "slot": "head", "requirements": null }, - "price": 12326.5 + "price": 10352 }, "12361": { "id": 12361, @@ -175164,7 +169954,7 @@ "slot": "head", "requirements": null }, - "price": 8250 + "price": 11132 }, "12363": { "id": 12363, @@ -175202,7 +169992,7 @@ "slot": "head", "requirements": null }, - "price": 8463.5 + "price": 7452 }, "12365": { "id": 12365, @@ -175240,7 +170030,7 @@ "slot": "head", "requirements": null }, - "price": 2250.5 + "price": 5267 }, "12367": { "id": 12367, @@ -175278,7 +170068,7 @@ "slot": "head", "requirements": null }, - "price": 6398 + "price": 4268 }, "12369": { "id": 12369, @@ -175316,7 +170106,7 @@ "slot": "head", "requirements": null }, - "price": 8194 + "price": 7043 }, "12371": { "id": 12371, @@ -175354,7 +170144,7 @@ "slot": "head", "requirements": null }, - "price": 2681229.5 + "price": 2205000 }, "12373": { "id": 12373, @@ -175422,7 +170212,7 @@ } ] }, - "price": 18302.5 + "price": 18302 }, "12375": { "id": 12375, @@ -175497,7 +170287,7 @@ } ] }, - "price": 6499 + "price": 8500 }, "12377": { "id": 12377, @@ -175572,7 +170362,7 @@ } ] }, - "price": 2663 + "price": 6812 }, "12379": { "id": 12379, @@ -175647,7 +170437,7 @@ } ] }, - "price": 8674.5 + "price": 7776 }, "12381": { "id": 12381, @@ -175688,7 +170478,7 @@ "defence": 40 } }, - "price": 42672 + "price": 17000 }, "12383": { "id": 12383, @@ -175728,7 +170518,7 @@ "ranged": 70 } }, - "price": 125926.5 + "price": 180273 }, "12385": { "id": 12385, @@ -175769,7 +170559,7 @@ "defence": 40 } }, - "price": 8622 + "price": 14700 }, "12387": { "id": 12387, @@ -175809,7 +170599,7 @@ "ranged": 70 } }, - "price": 21356.5 + "price": 44147 }, "12389": { "id": 12389, @@ -175883,7 +170673,7 @@ } ] }, - "price": 21771864.5 + "price": 19625000 }, "12391": { "id": 12391, @@ -175961,7 +170751,7 @@ "slot": "body", "requirements": null }, - "price": 21301.5 + "price": 28644 }, "12395": { "id": 12395, @@ -175999,7 +170789,7 @@ "slot": "legs", "requirements": null }, - "price": 12021.5 + "price": 8862 }, "12397": { "id": 12397, @@ -176037,7 +170827,7 @@ "slot": "head", "requirements": null }, - "price": 199535 + "price": 162501 }, "12399": { "id": 12399, @@ -176075,7 +170865,7 @@ "slot": "head", "requirements": null }, - "price": 971000 + "price": 1464612 }, "12402": { "id": 12402, @@ -176092,7 +170882,7 @@ "examine": "Teleports you to Nardah.", "wiki_name": "Nardah teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Nardah_teleport", - "price": 41383.5 + "price": 41383 }, "12403": { "id": 12403, @@ -176109,7 +170899,7 @@ "examine": "Teleports you to the Digsite.", "wiki_name": "Digsite teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Digsite_teleport", - "price": 35013.5 + "price": 28995 }, "12404": { "id": 12404, @@ -176126,7 +170916,7 @@ "examine": "Teleports you to Feldip hills.", "wiki_name": "Feldip hills teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Feldip_hills_teleport", - "price": 1144.5 + "price": 2200 }, "12405": { "id": 12405, @@ -176160,7 +170950,7 @@ "examine": "Teleports you to Mort'ton.", "wiki_name": "Mort'ton teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Mort'ton_teleport", - "price": 37874.5 + "price": 37874 }, "12407": { "id": 12407, @@ -176177,7 +170967,7 @@ "examine": "Teleports you to Pest control.", "wiki_name": "Pest control teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Pest_control_teleport", - "price": 570.5 + "price": 642 }, "12408": { "id": 12408, @@ -176194,7 +170984,7 @@ "examine": "Teleports you to Piscatoris.", "wiki_name": "Piscatoris teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Piscatoris_teleport", - "price": 10547.5 + "price": 7233 }, "12409": { "id": 12409, @@ -176211,7 +171001,7 @@ "examine": "Teleports you to Tai bwo wannai.", "wiki_name": "Tai bwo wannai teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Tai_bwo_wannai_teleport", - "price": 6250.5 + "price": 5586 }, "12410": { "id": 12410, @@ -176228,7 +171018,7 @@ "examine": "Teleports you to the Iorwerth Camp.", "wiki_name": "Iorwerth camp teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Iorwerth_camp_teleport", - "price": 4060 + "price": 3404 }, "12411": { "id": 12411, @@ -176283,7 +171073,7 @@ "slot": "head", "requirements": null }, - "price": 559886.5 + "price": 672943 }, "12414": { "id": 12414, @@ -176652,7 +171442,7 @@ } ] }, - "price": 702222222 + "price": 1101027528 }, "12424": { "id": 12424, @@ -176720,7 +171510,7 @@ } ] }, - "price": 1790944000 + "price": 1970003504 }, "12426": { "id": 12426, @@ -176795,7 +171585,7 @@ } ] }, - "price": 1181783282.5 + "price": 2147483647 }, "12428": { "id": 12428, @@ -176833,7 +171623,7 @@ "slot": "head", "requirements": null }, - "price": 11000 + "price": 2338 }, "12430": { "id": 12430, @@ -176871,7 +171661,7 @@ "slot": "head", "requirements": null }, - "price": 450427.5 + "price": 470003 }, "12432": { "id": 12432, @@ -176909,7 +171699,7 @@ "slot": "head", "requirements": null }, - "price": 85923 + "price": 286729 }, "12434": { "id": 12434, @@ -176947,7 +171737,7 @@ "slot": "head", "requirements": null }, - "price": 117739 + "price": 138398 }, "12436": { "id": 12436, @@ -177021,7 +171811,7 @@ "prayer": 65 } }, - "price": 600000000 + "price": 949943945 }, "12439": { "id": 12439, @@ -177087,7 +171877,7 @@ } ] }, - "price": 16038 + "price": 264613 }, "12441": { "id": 12441, @@ -177125,7 +171915,7 @@ "slot": "body", "requirements": null }, - "price": 26474.5 + "price": 35588 }, "12443": { "id": 12443, @@ -177237,7 +172027,7 @@ "slot": "legs", "requirements": null }, - "price": 18650 + "price": 10428 }, "12449": { "id": 12449, @@ -177274,7 +172064,7 @@ "slot": "body", "requirements": null }, - "price": 152973.5 + "price": 152973 }, "12451": { "id": 12451, @@ -177311,7 +172101,7 @@ "slot": "body", "requirements": null }, - "price": 46843 + "price": 54376 }, "12453": { "id": 12453, @@ -177348,7 +172138,7 @@ "slot": "head", "requirements": null }, - "price": 284506.5 + "price": 298926 }, "12455": { "id": 12455, @@ -177574,7 +172364,7 @@ "defence": 40 } }, - "price": 46449.5 + "price": 46449 }, "12464": { "id": 12464, @@ -177613,7 +172403,7 @@ "defence": 40 } }, - "price": 37566.5 + "price": 37566 }, "12466": { "id": 12466, @@ -177652,7 +172442,7 @@ "defence": 40 } }, - "price": 36033 + "price": 42998 }, "12468": { "id": 12468, @@ -177691,7 +172481,7 @@ "defence": 40 } }, - "price": 44271.5 + "price": 50587 }, "12470": { "id": 12470, @@ -177730,7 +172520,7 @@ "defence": 40 } }, - "price": 46801.5 + "price": 46801 }, "12472": { "id": 12472, @@ -177769,7 +172559,7 @@ "defence": 40 } }, - "price": 39650.5 + "price": 39650 }, "12474": { "id": 12474, @@ -177808,7 +172598,7 @@ "defence": 40 } }, - "price": 40528.5 + "price": 40528 }, "12476": { "id": 12476, @@ -177847,7 +172637,7 @@ "defence": 40 } }, - "price": 23787 + "price": 31491 }, "12478": { "id": 12478, @@ -177925,7 +172715,7 @@ "defence": 40 } }, - "price": 193814.5 + "price": 215740 }, "12482": { "id": 12482, @@ -178122,7 +172912,7 @@ "defence": 40 } }, - "price": 249003.5 + "price": 157499 }, "12492": { "id": 12492, @@ -178163,7 +172953,7 @@ "defence": 40 } }, - "price": 210098.5 + "price": 230742 }, "12494": { "id": 12494, @@ -178204,7 +172994,7 @@ "defence": 40 } }, - "price": 415507.5 + "price": 488228 }, "12496": { "id": 12496, @@ -178245,7 +173035,7 @@ "defence": 40 } }, - "price": 110992.5 + "price": 172816 }, "12498": { "id": 12498, @@ -178286,7 +173076,7 @@ "defence": 40 } }, - "price": 115100.5 + "price": 101600 }, "12500": { "id": 12500, @@ -178327,7 +173117,7 @@ "defence": 40 } }, - "price": 203096 + "price": 211030 }, "12502": { "id": 12502, @@ -178368,7 +173158,7 @@ "defence": 40 } }, - "price": 426882.5 + "price": 447088 }, "12504": { "id": 12504, @@ -178409,7 +173199,7 @@ "defence": 40 } }, - "price": 212865.5 + "price": 147092 }, "12506": { "id": 12506, @@ -178450,7 +173240,7 @@ "defence": 40 } }, - "price": 127751.5 + "price": 127751 }, "12508": { "id": 12508, @@ -178532,7 +173322,7 @@ "defence": 40 } }, - "price": 596144.5 + "price": 615456 }, "12512": { "id": 12512, @@ -178573,7 +173363,7 @@ "defence": 40 } }, - "price": 109358.5 + "price": 156500 }, "12514": { "id": 12514, @@ -178611,7 +173401,7 @@ "slot": "cape", "requirements": null }, - "price": 24884 + "price": 21475 }, "12516": { "id": 12516, @@ -178649,7 +173439,7 @@ "slot": "head", "requirements": null }, - "price": 3527.5 + "price": 4129 }, "12518": { "id": 12518, @@ -178687,7 +173477,7 @@ "slot": "head", "requirements": null }, - "price": 6081.5 + "price": 6081 }, "12520": { "id": 12520, @@ -178725,7 +173515,7 @@ "slot": "head", "requirements": null }, - "price": 15200 + "price": 7379 }, "12522": { "id": 12522, @@ -178763,7 +173553,7 @@ "slot": "head", "requirements": null }, - "price": 5549.5 + "price": 6155 }, "12524": { "id": 12524, @@ -178801,7 +173591,7 @@ "slot": "head", "requirements": null }, - "price": 115789 + "price": 223641 }, "12526": { "id": 12526, @@ -178819,7 +173609,7 @@ "examine": "Use on an amulet of fury to make it look fancier!", "wiki_name": "Fury ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Fury_ornament_kit", - "price": 475590 + "price": 454446 }, "12528": { "id": 12528, @@ -178837,7 +173627,7 @@ "examine": "Use on infinity pieces to recolour them!", "wiki_name": "Dark infinity colour kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dark_infinity_colour_kit", - "price": 20354 + "price": 55832 }, "12530": { "id": 12530, @@ -178855,7 +173645,7 @@ "examine": "Use on infinity pieces to recolour them!", "wiki_name": "Light infinity colour kit", "wiki_url": "https://oldschool.runescape.wiki/w/Light_infinity_colour_kit", - "price": 6784.5 + "price": 21996 }, "12532": { "id": 12532, @@ -178891,7 +173681,7 @@ "examine": "Use on a dragon chainbody to make it look fancier!", "wiki_name": "Dragon chainbody ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_chainbody_ornament_kit", - "price": 18575 + "price": 9950 }, "12536": { "id": 12536, @@ -178927,7 +173717,7 @@ "examine": "Use on a dragon full helm to make it look fancier!", "wiki_name": "Dragon full helm ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_full_helm_ornament_kit", - "price": 24450 + "price": 15000 }, "12540": { "id": 12540, @@ -178965,306 +173755,7 @@ "slot": "head", "requirements": null }, - "price": 39475 - }, - "12542": { - "id": 12542, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Headbang at the exam centre", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Headbang_at_the_exam_centre", - "price": 0 - }, - "12544": { - "id": 12544, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Beckon on the east coast of the Kharazi Jungle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Beckon_on_the_east_coast_of_the_Kharazi_Jungle", - "price": 0 - }, - "12546": { - "id": 12546, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Panic on the Wilderness volcano bridge", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Panic_on_the_Wilderness_volcano_bridge", - "price": 0 - }, - "12548": { - "id": 12548, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Jig at Jiggig", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Jig_at_Jiggig", - "price": 0 - }, - "12550": { - "id": 12550, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Cheer at the top of the agility pyramid", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Cheer_at_the_top_of_the_agility_pyramid", - "price": 0 - }, - "12552": { - "id": 12552, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Salute in the centre of the mess hall", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Salute_in_the_centre_of_the_mess_hall", - "price": 0 - }, - "12554": { - "id": 12554, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 01.30N 20.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_01.30N_20.01E", - "price": 0 - }, - "12556": { - "id": 12556, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 23.03N 02.01E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_23.03N_02.01E", - "price": 0 - }, - "12558": { - "id": 12558, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 02.48N 08.05E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_02.48N_08.05E", - "price": 0 - }, - "12560": { - "id": 12560, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 03.18N 12.31E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_03.18N_12.31E", - "price": 0 - }, - "12562": { - "id": 12562, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 02.58N 34.30E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_02.58N_34.30E", - "price": 0 - }, - "12564": { - "id": 12564, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.43N 26.56E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.43N_26.56E", - "price": 0 - }, - "12566": { - "id": 12566, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Copper Ore Crypts", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Copper_Ore_Crypts", - "price": 0 - }, - "12568": { - "id": 12568, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Dragons Lament", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Dragons_Lament", - "price": 0 - }, - "12570": { - "id": 12570, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Rat Mat Within", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Rat_Mat_Within", - "price": 0 - }, - "12572": { - "id": 12572, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Slide Woman", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Slide_Woman", - "price": 0 - }, - "12574": { - "id": 12574, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Motherboard", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Motherboard", - "price": 0 - }, - "12576": { - "id": 12576, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Do Say More", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Do_Say_More", - "price": 0 - }, - "12578": { - "id": 12578, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Gold I see, yet gold I require", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Gold_I_see,_yet_gold_I_require", - "price": 0 - }, - "12581": { - "id": 12581, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - I watch the sea", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_I_watch_the_sea", - "price": 0 - }, - "12584": { - "id": 12584, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Surviving", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Surviving", - "price": 0 - }, - "12587": { - "id": 12587, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The King's magic shouldn't be wasted by me", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_King's_magic_shouldn't_be_wasted_by_me", - "price": 0 - }, - "12590": { - "id": 12590, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - THEY'RE EVERYWHERE!!!!", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_THEY'RE_EVERYWHERE!!!!", - "price": 0 + "price": 14123 }, "12592": { "id": 12592, @@ -179334,7 +173825,7 @@ "ranged": 40 } }, - "price": 3925838 + "price": 4927604 }, "12598": { "id": 12598, @@ -179374,7 +173865,7 @@ "prayer": 31 } }, - "price": 2092496 + "price": 2535011 }, "12600": { "id": 12600, @@ -179483,7 +173974,7 @@ "slot": "ring", "requirements": null }, - "price": 282609.5 + "price": 318308 }, "12605": { "id": 12605, @@ -179521,7 +174012,7 @@ "slot": "ring", "requirements": null }, - "price": 133747.5 + "price": 179058 }, "12607": { "id": 12607, @@ -179742,7 +174233,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Bandos page 1", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_page_1", - "price": 2911 + "price": 2077 }, "12614": { "id": 12614, @@ -179759,7 +174250,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Bandos page 2", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_page_2", - "price": 8950 + "price": 1989 }, "12615": { "id": 12615, @@ -179776,7 +174267,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Bandos page 3", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_page_3", - "price": 5101 + "price": 2156 }, "12616": { "id": 12616, @@ -179793,7 +174284,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Bandos page 4", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_page_4", - "price": 8749.5 + "price": 3081 }, "12617": { "id": 12617, @@ -179810,7 +174301,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Armadyl page 1", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_page_1", - "price": 28500.5 + "price": 11728 }, "12618": { "id": 12618, @@ -179827,7 +174318,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Armadyl page 2", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_page_2", - "price": 8705 + "price": 7495 }, "12619": { "id": 12619, @@ -179844,7 +174335,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Armadyl page 3", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_page_3", - "price": 37529.5 + "price": 16469 }, "12620": { "id": 12620, @@ -179861,7 +174352,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Armadyl page 4", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_page_4", - "price": 11044.5 + "price": 18421 }, "12621": { "id": 12621, @@ -179878,7 +174369,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Ancient page 1", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_page_1", - "price": 12750.5 + "price": 18239 }, "12622": { "id": 12622, @@ -179895,7 +174386,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Ancient page 2", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_page_2", - "price": 13776 + "price": 22597 }, "12623": { "id": 12623, @@ -179912,7 +174403,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Ancient page 3", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_page_3", - "price": 12497.5 + "price": 32000 }, "12624": { "id": 12624, @@ -179929,7 +174420,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Ancient page 4", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_page_4", - "price": 11004.5 + "price": 13079 }, "12625": { "id": 12625, @@ -179947,7 +174438,7 @@ "examine": "4 doses of stamina potion.", "wiki_name": "Stamina potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Stamina_potion#4_dose", - "price": 9231.5 + "price": 9231 }, "12627": { "id": 12627, @@ -180019,7 +174510,7 @@ "examine": "Two doses of fishy stamina potion.", "wiki_name": "Stamina mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Stamina_mix#2_dose", - "price": 3205 + "price": 4928 }, "12635": { "id": 12635, @@ -180037,7 +174528,7 @@ "examine": "One dose of fishy stamina potion.", "wiki_name": "Stamina mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Stamina_mix#1_dose", - "price": 1198.5 + "price": 1770 }, "12637": { "id": 12637, @@ -180156,7 +174647,7 @@ "examine": "Good for enhancing a super energy potion.", "wiki_name": "Amylase crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Amylase_crystal", - "price": 918 + "price": 776 }, "12641": { "id": 12641, @@ -180760,7 +175251,7 @@ "examine": "4 doses of super combat potion.", "wiki_name": "Super combat potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_combat_potion#4_dose", - "price": 16148.5 + "price": 22391 }, "12697": { "id": 12697, @@ -180778,7 +175269,7 @@ "examine": "3 doses of super combat potion.", "wiki_name": "Super combat potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_combat_potion#3_dose", - "price": 11124 + "price": 16999 }, "12699": { "id": 12699, @@ -180796,7 +175287,7 @@ "examine": "2 doses of super combat potion.", "wiki_name": "Super combat potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_combat_potion#2_dose", - "price": 7195 + "price": 11831 }, "12701": { "id": 12701, @@ -180814,7 +175305,7 @@ "examine": "1 dose of super combat potion.", "wiki_name": "Super combat potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_combat_potion#1_dose", - "price": 3532 + "price": 5347 }, "12703": { "id": 12703, @@ -181395,7 +175886,7 @@ "examine": "Paints things blue!", "wiki_name": "Blue dark bow paint", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_dark_bow_paint", - "price": 210542 + "price": 290000 }, "12759": { "id": 12759, @@ -181413,7 +175904,7 @@ "examine": "Paints things green!", "wiki_name": "Green dark bow paint", "wiki_url": "https://oldschool.runescape.wiki/w/Green_dark_bow_paint", - "price": 322527.5 + "price": 182374 }, "12761": { "id": 12761, @@ -181431,7 +175922,7 @@ "examine": "Paints things yellow!", "wiki_name": "Yellow dark bow paint", "wiki_url": "https://oldschool.runescape.wiki/w/Yellow_dark_bow_paint", - "price": 106384.5 + "price": 110783 }, "12763": { "id": 12763, @@ -181449,7 +175940,7 @@ "examine": "Paints things white!", "wiki_name": "White dark bow paint", "wiki_url": "https://oldschool.runescape.wiki/w/White_dark_bow_paint", - "price": 1085526.5 + "price": 700000 }, "12765": { "id": 12765, @@ -181723,7 +176214,7 @@ "examine": "Cold to the touch.", "wiki_name": "Frozen whip mix", "wiki_url": "https://oldschool.runescape.wiki/w/Frozen_whip_mix", - "price": 700001.5 + "price": 650729 }, "12771": { "id": 12771, @@ -181741,7 +176232,7 @@ "examine": "How has lava been stored like this...?", "wiki_name": "Volcanic whip mix", "wiki_url": "https://oldschool.runescape.wiki/w/Volcanic_whip_mix", - "price": 920759.5 + "price": 679009 }, "12773": { "id": 12773, @@ -181886,7 +176377,7 @@ "examine": "A teleport to Annakarl, in level 46 Wilderness.", "wiki_name": "Annakarl teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Annakarl_teleport_(tablet)", - "price": 2011.5 + "price": 2011 }, "12776": { "id": 12776, @@ -181903,7 +176394,7 @@ "examine": "A teleport to Carrallanger, in level 19 Wilderness.", "wiki_name": "Carrallangar teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Carrallangar_teleport_(tablet)", - "price": 1888.5 + "price": 1888 }, "12777": { "id": 12777, @@ -181920,7 +176411,7 @@ "examine": "A teleport to Dareeyak, in level 23 Wilderness.", "wiki_name": "Dareeyak teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Dareeyak_teleport_(tablet)", - "price": 1749.5 + "price": 1090 }, "12778": { "id": 12778, @@ -181954,7 +176445,7 @@ "examine": "A teleport to Kharyrll.", "wiki_name": "Kharyrll teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Kharyrll_teleport_(tablet)", - "price": 2399.5 + "price": 2399 }, "12780": { "id": 12780, @@ -181971,7 +176462,7 @@ "examine": "A teleport to Lassar.", "wiki_name": "Lassar teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Lassar_teleport_(tablet)", - "price": 2210.5 + "price": 1924 }, "12781": { "id": 12781, @@ -181988,7 +176479,7 @@ "examine": "A teleport to Paddewwa.", "wiki_name": "Paddewwa teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Paddewwa_teleport_(tablet)", - "price": 718.5 + "price": 718 }, "12782": { "id": 12782, @@ -182005,7 +176496,7 @@ "examine": "A teleport to Senntisten.", "wiki_name": "Senntisten teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Senntisten_teleport_(tablet)", - "price": 1690.5 + "price": 1690 }, "12783": { "id": 12783, @@ -182023,7 +176514,7 @@ "examine": "Use on a Ring of Wealth to imbue the ring.", "wiki_name": "Ring of wealth scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Ring_of_wealth_scroll", - "price": 5574.5 + "price": 4130 }, "12785": { "id": 12785, @@ -182075,7 +176566,7 @@ "examine": "Use on a Magic shortbow to imbue the bow.", "wiki_name": "Magic shortbow scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_shortbow_scroll", - "price": 167639 + "price": 110278 }, "12788": { "id": 12788, @@ -182157,7 +176648,7 @@ "examine": "Protects your clue scroll if you die.", "wiki_name": "Clue box", "wiki_url": "https://oldschool.runescape.wiki/w/Clue_box", - "price": 183450 + "price": 146944 }, "12791": { "id": 12791, @@ -182460,7 +176951,7 @@ "examine": "Makes a steam battlestaff or mystic steam staff more beautiful.", "wiki_name": "Steam staff upgrade kit", "wiki_url": "https://oldschool.runescape.wiki/w/Steam_staff_upgrade_kit", - "price": 345000 + "price": 517500 }, "12800": { "id": 12800, @@ -182478,7 +176969,7 @@ "examine": "Makes a dragon pickaxe more beautiful.", "wiki_name": "Dragon pickaxe upgrade kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_pickaxe_upgrade_kit", - "price": 538114.5 + "price": 347015 }, "12802": { "id": 12802, @@ -182496,7 +176987,7 @@ "examine": "Makes a malediction or odium ward more beautiful.", "wiki_name": "Ward upgrade kit", "wiki_url": "https://oldschool.runescape.wiki/w/Ward_upgrade_kit", - "price": 945000 + "price": 476829 }, "12804": { "id": 12804, @@ -182514,7 +177005,7 @@ "examine": "After a terrible battle, Saradomin wept over the wounds of his faithful Zilyana.", "wiki_name": "Saradomin's tear", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin's_tear", - "price": 4358500.5 + "price": 3912917 }, "12806": { "id": 12806, @@ -182969,7 +177460,7 @@ "prayer": 75 } }, - "price": 759702365.5 + "price": 730206512 }, "12819": { "id": 12819, @@ -182987,7 +177478,7 @@ "examine": "A sigil in the shape of an elysian symbol.", "wiki_name": "Elysian sigil", "wiki_url": "https://oldschool.runescape.wiki/w/Elysian_sigil", - "price": 755543500 + "price": 728449999 }, "12821": { "id": 12821, @@ -183189,7 +177680,7 @@ "prayer": 50 } }, - "price": 722575.5 + "price": 722575 }, "12833": { "id": 12833, @@ -183376,7 +177867,7 @@ "examine": "Unlocks the level 85 Teleport to Target spell.", "wiki_name": "Target teleport scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Target_teleport_scroll", - "price": 7770260 + "price": 6827500 }, "12848": { "id": 12848, @@ -183458,7 +177949,7 @@ "examine": "A strong clamp, used for hardening granite maul blocks.", "wiki_name": "Granite clamp", "wiki_url": "https://oldschool.runescape.wiki/w/Granite_clamp", - "price": 624382 + "price": 689517 }, "12851": { "id": 12851, @@ -183496,7 +177987,7 @@ "slot": "neck", "requirements": null }, - "price": 35330.5 + "price": 35330 }, "12853": { "id": 12853, @@ -183708,7 +178199,7 @@ "examine": "A set containing a blue dragonhide body, chaps and vambraces.", "wiki_name": "Blue dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_dragonhide_set", - "price": 11555 + "price": 9125 }, "12869": { "id": 12869, @@ -183726,7 +178217,7 @@ "examine": "A set containing a red dragonhide body, chaps and vambraces.", "wiki_name": "Red dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Red_dragonhide_set", - "price": 10956 + "price": 15000 }, "12871": { "id": 12871, @@ -183762,7 +178253,7 @@ "examine": "A set containing a Guthan's helm, chainskirt, platebody and warspear.", "wiki_name": "Guthan's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Guthan's_armour_set", - "price": 803952.5 + "price": 842149 }, "12875": { "id": 12875, @@ -183780,7 +178271,7 @@ "examine": "A set containing a Verac's helm, plateskirt, brassard and flail.", "wiki_name": "Verac's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Verac's_armour_set", - "price": 602893.5 + "price": 652171 }, "12877": { "id": 12877, @@ -183798,7 +178289,7 @@ "examine": "A set containing a Dharok's helm, platelegs, platebody and greataxe.", "wiki_name": "Dharok's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Dharok's_armour_set", - "price": 5048485 + "price": 5321070 }, "12879": { "id": 12879, @@ -183816,7 +178307,7 @@ "examine": "A set containing a Torag's helm, platelegs, platebody and hammers.", "wiki_name": "Torag's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Torag's_armour_set", - "price": 553351 + "price": 587008 }, "12881": { "id": 12881, @@ -183834,7 +178325,7 @@ "examine": "A set containing an Ahrim's hood, robetop, robeskirt and staff.", "wiki_name": "Ahrim's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Ahrim's_armour_set", - "price": 6655106.5 + "price": 5417853 }, "12883": { "id": 12883, @@ -183852,7 +178343,7 @@ "examine": "A set containing a Karil's coif, leatherskirt, leathertop and crossbow.", "wiki_name": "Karil's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Karil's_armour_set", - "price": 2313000.5 + "price": 1898805 }, "12885": { "id": 12885, @@ -183870,7 +178361,7 @@ "examine": "It's just a jar of sand.", "wiki_name": "Jar of sand", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_sand", - "price": 637470.5 + "price": 493544 }, "12887": { "id": 12887, @@ -184358,7 +178849,7 @@ } ] }, - "price": 2429807.5 + "price": 2314365 }, "12902": { "id": 12902, @@ -184441,7 +178932,7 @@ } ] }, - "price": 15507819 + "price": 16542682 }, "12904": { "id": 12904, @@ -184538,7 +179029,7 @@ "examine": "4 doses of antivenom potion.", "wiki_name": "Anti-venom (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom#4_dose", - "price": 6304.5 + "price": 6304 }, "12907": { "id": 12907, @@ -184556,7 +179047,7 @@ "examine": "3 doses of antivenom potion.", "wiki_name": "Anti-venom (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom#3_dose", - "price": 4117.5 + "price": 4117 }, "12909": { "id": 12909, @@ -184574,7 +179065,7 @@ "examine": "2 doses of antivenom potion.", "wiki_name": "Anti-venom (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom#2_dose", - "price": 5813.5 + "price": 3532 }, "12911": { "id": 12911, @@ -184610,7 +179101,7 @@ "examine": "4 doses of super antivenom potion.", "wiki_name": "Anti-venom+ (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom+#4_dose", - "price": 10142 + "price": 12238 }, "12915": { "id": 12915, @@ -184628,7 +179119,7 @@ "examine": "3 doses of super antivenom potion.", "wiki_name": "Anti-venom+ (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom+#3_dose", - "price": 7365.5 + "price": 8601 }, "12917": { "id": 12917, @@ -184646,7 +179137,7 @@ "examine": "2 doses of super antivenom potion.", "wiki_name": "Anti-venom+ (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom+#2_dose", - "price": 4085 + "price": 5334 }, "12919": { "id": 12919, @@ -184664,7 +179155,7 @@ "examine": "1 dose of super antivenom potion.", "wiki_name": "Anti-venom+ (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom+#1_dose", - "price": 2429.5 + "price": 3023 }, "12921": { "id": 12921, @@ -184696,7 +179187,7 @@ "examine": "Maybe you could use a chisel to fletch this into a blowpipe.", "wiki_name": "Tanzanite fang", "wiki_url": "https://oldschool.runescape.wiki/w/Tanzanite_fang", - "price": 2367376.5 + "price": 2261007 }, "12924": { "id": 12924, @@ -184714,7 +179205,7 @@ "examine": "Fires darts while coating them with venom.", "wiki_name": "Toxic blowpipe (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Toxic_blowpipe#Empty", - "price": 2402370 + "price": 2304876 }, "12926": { "id": 12926, @@ -184796,7 +179287,7 @@ "examine": "Maybe you could use a chisel to craft this into a helmet.", "wiki_name": "Serpentine visage", "wiki_url": "https://oldschool.runescape.wiki/w/Serpentine_visage", - "price": 2370004.5 + "price": 2270500 }, "12929": { "id": 12929, @@ -184917,7 +179408,7 @@ "examine": "This is my Swamp!", "wiki_name": "Jar of swamp", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_swamp", - "price": 24528 + "price": 40471 }, "12938": { "id": 12938, @@ -185175,7 +179666,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Bronze set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_set_(sk)", - "price": 370.5 + "price": 686 }, "12964": { "id": 12964, @@ -185209,7 +179700,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Bronze trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_trimmed_set_(sk)", - "price": 48784.5 + "price": 40916 }, "12968": { "id": 12968, @@ -185243,7 +179734,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Bronze gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_gold-trimmed_set_(sk)", - "price": 209498 + "price": 296358 }, "12972": { "id": 12972, @@ -185260,7 +179751,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Iron set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_set_(lg)", - "price": 789 + "price": 353 }, "12974": { "id": 12974, @@ -185328,7 +179819,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Iron gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_gold-trimmed_set_(lg)", - "price": 472066 + "price": 426000 }, "12982": { "id": 12982, @@ -185345,7 +179836,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Iron gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_gold-trimmed_set_(sk)", - "price": 426597.5 + "price": 385000 }, "12984": { "id": 12984, @@ -185362,7 +179853,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Steel set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_set_(lg)", - "price": 1538.5 + "price": 2067 }, "12986": { "id": 12986, @@ -185379,7 +179870,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Steel set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_set_(sk)", - "price": 4609 + "price": 2263 }, "12988": { "id": 12988, @@ -185396,7 +179887,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Black set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_set_(lg)", - "price": 7332.5 + "price": 6152 }, "12990": { "id": 12990, @@ -185413,7 +179904,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Black set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_set_(sk)", - "price": 6844 + "price": 14827 }, "12992": { "id": 12992, @@ -185430,7 +179921,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Black trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_trimmed_set_(lg)", - "price": 76663 + "price": 85151 }, "12994": { "id": 12994, @@ -185447,7 +179938,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Black trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_trimmed_set_(sk)", - "price": 118556 + "price": 76146 }, "12996": { "id": 12996, @@ -185481,7 +179972,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Black gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_gold-trimmed_set_(sk)", - "price": 380002.5 + "price": 358078 }, "13000": { "id": 13000, @@ -185498,7 +179989,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Mithril set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_set_(lg)", - "price": 7678 + "price": 16293 }, "13002": { "id": 13002, @@ -185515,7 +180006,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Mithril set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_set_(sk)", - "price": 15071.5 + "price": 4900 }, "13004": { "id": 13004, @@ -185532,7 +180023,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Mithril trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_trimmed_set_(lg)", - "price": 25361 + "price": 21721 }, "13006": { "id": 13006, @@ -185549,7 +180040,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Mithril trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_trimmed_set_(sk)", - "price": 24859.5 + "price": 16096 }, "13008": { "id": 13008, @@ -185566,7 +180057,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Mithril gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_gold-trimmed_set_(lg)", - "price": 25803.5 + "price": 25803 }, "13010": { "id": 13010, @@ -185583,7 +180074,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Mithril gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_gold-trimmed_set_(sk)", - "price": 15202 + "price": 59480 }, "13012": { "id": 13012, @@ -185600,7 +180091,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Adamant set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_set_(lg)", - "price": 18958.5 + "price": 18958 }, "13014": { "id": 13014, @@ -185634,7 +180125,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Adamant trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_trimmed_set_(lg)", - "price": 31828 + "price": 37179 }, "13018": { "id": 13018, @@ -185651,7 +180142,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Adamant trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_trimmed_set_(sk)", - "price": 33999.5 + "price": 24807 }, "13020": { "id": 13020, @@ -185685,7 +180176,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Adamant gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_gold-trimmed_set_(sk)", - "price": 44609.5 + "price": 44609 }, "13024": { "id": 13024, @@ -185719,7 +180210,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Rune armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_armour_set_(sk)", - "price": 148044 + "price": 123440 }, "13028": { "id": 13028, @@ -185736,7 +180227,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Rune trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_trimmed_set_(lg)", - "price": 167833 + "price": 179518 }, "13030": { "id": 13030, @@ -185753,7 +180244,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Rune trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_trimmed_set_(sk)", - "price": 174820.5 + "price": 151809 }, "13032": { "id": 13032, @@ -185770,7 +180261,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Rune gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_gold-trimmed_set_(lg)", - "price": 507500.5 + "price": 406500 }, "13034": { "id": 13034, @@ -185787,7 +180278,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Rune gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_gold-trimmed_set_(sk)", - "price": 453000 + "price": 345389 }, "13036": { "id": 13036, @@ -185804,7 +180295,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Gilded armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_armour_set_(lg)", - "price": 26932502.5 + "price": 26932502 }, "13038": { "id": 13038, @@ -185821,7 +180312,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Gilded armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_armour_set_(sk)", - "price": 23017499 + "price": 20842509 }, "13040": { "id": 13040, @@ -185838,7 +180329,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Saradomin armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_armour_set_(lg)", - "price": 427465.5 + "price": 364700 }, "13042": { "id": 13042, @@ -185855,7 +180346,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Saradomin armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_armour_set_(sk)", - "price": 390561 + "price": 335025 }, "13044": { "id": 13044, @@ -185872,7 +180363,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Zamorak armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_armour_set_(lg)", - "price": 1101178.5 + "price": 1101178 }, "13046": { "id": 13046, @@ -185889,7 +180380,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Zamorak armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_armour_set_(sk)", - "price": 1105000 + "price": 1000529 }, "13048": { "id": 13048, @@ -185906,7 +180397,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Guthix armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_armour_set_(lg)", - "price": 207740 + "price": 201244 }, "13050": { "id": 13050, @@ -185923,7 +180414,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Guthix armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_armour_set_(sk)", - "price": 217497.5 + "price": 197497 }, "13052": { "id": 13052, @@ -185940,7 +180431,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Armadyl rune armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_rune_armour_set_(lg)", - "price": 155857.5 + "price": 193189 }, "13054": { "id": 13054, @@ -185957,7 +180448,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Armadyl rune armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_rune_armour_set_(sk)", - "price": 148207.5 + "price": 189017 }, "13056": { "id": 13056, @@ -185991,7 +180482,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Bandos rune armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_rune_armour_set_(sk)", - "price": 301791 + "price": 355000 }, "13060": { "id": 13060, @@ -186008,7 +180499,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Ancient rune armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_rune_armour_set_(lg)", - "price": 225478 + "price": 209665 }, "13062": { "id": 13062, @@ -186025,7 +180516,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Ancient rune armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_rune_armour_set_(sk)", - "price": 230000 + "price": 203100 }, "13064": { "id": 13064, @@ -186043,7 +180534,7 @@ "examine": "A set containing 4-dose vials of Attack, Strength and Defence potions.", "wiki_name": "Combat potion set", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_potion_set", - "price": 1034 + "price": 545 }, "13066": { "id": 13066, @@ -186061,7 +180552,7 @@ "examine": "A set containing 4-dose vials of Super Attack, Super Strength and Super Defence potions.", "wiki_name": "Super potion set", "wiki_url": "https://oldschool.runescape.wiki/w/Super_potion_set", - "price": 11724.5 + "price": 17297 }, "13068": { "id": 13068, @@ -189493,7 +183984,7 @@ "examine": "A set containing the four pages of Saradomin's Holy Book.", "wiki_name": "Holy book page set", "wiki_url": "https://oldschool.runescape.wiki/w/Holy_book_page_set", - "price": 19205.5 + "price": 22947 }, "13151": { "id": 13151, @@ -189511,7 +184002,7 @@ "examine": "A set containing the four pages of Zamorak's Unholy Book.", "wiki_name": "Unholy book page set", "wiki_url": "https://oldschool.runescape.wiki/w/Unholy_book_page_set", - "price": 47973 + "price": 38469 }, "13153": { "id": 13153, @@ -189529,7 +184020,7 @@ "examine": "A set containing the four pages of Guthix's Book of Balance.", "wiki_name": "Book of balance page set", "wiki_url": "https://oldschool.runescape.wiki/w/Book_of_balance_page_set", - "price": 42221.5 + "price": 28560 }, "13155": { "id": 13155, @@ -189547,7 +184038,7 @@ "examine": "A set containing the four pages of Bandos' Book of War.", "wiki_name": "Book of war page set", "wiki_url": "https://oldschool.runescape.wiki/w/Book_of_war_page_set", - "price": 12475 + "price": 18681 }, "13157": { "id": 13157, @@ -189565,7 +184056,7 @@ "examine": "A set containing the four pages of Armadyl's Book of Law.", "wiki_name": "Book of law page set", "wiki_url": "https://oldschool.runescape.wiki/w/Book_of_law_page_set", - "price": 62214.5 + "price": 40287 }, "13159": { "id": 13159, @@ -189583,7 +184074,7 @@ "examine": "A set containing the four pages of the Ancient Book of Darkness.", "wiki_name": "Book of darkness page set", "wiki_url": "https://oldschool.runescape.wiki/w/Book_of_darkness_page_set", - "price": 53919 + "price": 42460 }, "13161": { "id": 13161, @@ -189601,7 +184092,7 @@ "examine": "A set containing a Zamorak dragonhide coif, body, chaps and vambraces.", "wiki_name": "Zamorak dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_dragonhide_set", - "price": 1425222 + "price": 1361501 }, "13163": { "id": 13163, @@ -189619,7 +184110,7 @@ "examine": "A set containing a Saradomin dragonhide coif, body, chaps and vambraces.", "wiki_name": "Saradomin dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_dragonhide_set", - "price": 993985.5 + "price": 993985 }, "13165": { "id": 13165, @@ -189637,7 +184128,7 @@ "examine": "A set containing a Guthix dragonhide coif, body, chaps and vambraces.", "wiki_name": "Guthix dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_dragonhide_set", - "price": 820076.5 + "price": 852000 }, "13167": { "id": 13167, @@ -189655,7 +184146,7 @@ "examine": "A set containing a Bandos dragonhide coif, body, chaps and bracers.", "wiki_name": "Bandos dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_dragonhide_set", - "price": 836400 + "price": 993000 }, "13169": { "id": 13169, @@ -189691,7 +184182,7 @@ "examine": "A set containing an ancient dragonhide coif, body, chaps and bracers.", "wiki_name": "Ancient dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_dragonhide_set", - "price": 1013754 + "price": 980500 }, "13173": { "id": 13173, @@ -189708,7 +184199,7 @@ "examine": "A set containing red, yellow, blue, purple, green and white partyhats.", "wiki_name": "Partyhat set", "wiki_url": "https://oldschool.runescape.wiki/w/Partyhat_set", - "price": 59683 + "price": 73773 }, "13175": { "id": 13175, @@ -189725,7 +184216,7 @@ "examine": "A set containing red, green and blue Halloween masks.", "wiki_name": "Halloween mask set", "wiki_url": "https://oldschool.runescape.wiki/w/Halloween_mask_set", - "price": 28077 + "price": 36803 }, "13177": { "id": 13177, @@ -189916,7 +184407,7 @@ "examine": "This bond can be redeemed for membership.", "wiki_name": "Old school bond (Tradeable)", "wiki_url": "https://oldschool.runescape.wiki/w/Old_school_bond#Tradeable", - "price": 11234798 + "price": 12226628 }, "13192": { "id": 13192, @@ -190374,7 +184865,7 @@ "examine": "A powerful crystal of magic.", "wiki_name": "Eternal crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Eternal_crystal", - "price": 6291444.5 + "price": 6816056 }, "13229": { "id": 13229, @@ -190392,7 +184883,7 @@ "examine": "A powerful crystal of flight.", "wiki_name": "Pegasian crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Pegasian_crystal", - "price": 126000 + "price": 214582 }, "13231": { "id": 13231, @@ -190410,7 +184901,7 @@ "examine": "A powerful crystal of strength.", "wiki_name": "Primordial crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Primordial_crystal", - "price": 33657500 + "price": 30771160 }, "13233": { "id": 13233, @@ -190469,7 +184960,7 @@ "defence": 75 } }, - "price": 6896683.5 + "price": 7263500 }, "13237": { "id": 13237, @@ -190510,7 +185001,7 @@ "defence": 75 } }, - "price": 31860246.5 + "price": 31860246 }, "13239": { "id": 13239, @@ -190551,7 +185042,7 @@ "strength": 75 } }, - "price": 33822544 + "price": 30889276 }, "13241": { "id": 13241, @@ -190853,7 +185344,7 @@ "examine": "This may be of use for a certain person.", "wiki_name": "Jar of souls", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_souls", - "price": 50777.5 + "price": 110048 }, "13247": { "id": 13247, @@ -190957,7 +185448,7 @@ "examine": "The starlight enlightens your mind to dispel the darkness of Zamorakian evil.", "wiki_name": "Saradomin's light", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin's_light", - "price": 64888 + "price": 109945 }, "13258": { "id": 13258, @@ -191174,7 +185665,7 @@ } ] }, - "price": 12180725 + "price": 14087378 }, "13265": { "id": 13265, @@ -191249,7 +185740,7 @@ } ] }, - "price": 3023631 + "price": 3531136 }, "13267": { "id": 13267, @@ -191324,7 +185815,7 @@ } ] }, - "price": 3250000 + "price": 3651000 }, "13269": { "id": 13269, @@ -191474,7 +185965,7 @@ } ] }, - "price": 3196752 + "price": 3444297 }, "13273": { "id": 13273, @@ -191546,7 +186037,7 @@ "examine": "It smells abysmal.", "wiki_name": "Jar of miasma", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_miasma", - "price": 41783.5 + "price": 34210 }, "13279": { "id": 13279, @@ -192167,7 +186658,7 @@ "cost": 49, "lowalch": 19, "highalch": 29, - "weight": 2.267, + "weight": 1, "release_date": "2015-11-12", "examine": "Makes me think of whales... I wish I knew why.", "wiki_name": "Green banner", @@ -193958,7 +188449,7 @@ "examine": "An old scrap of cloth, containing remnants of Xeric's forgotten magicks.", "wiki_name": "Xerician fabric", "wiki_url": "https://oldschool.runescape.wiki/w/Xerician_fabric", - "price": 987 + "price": 548 }, "13385": { "id": 13385, @@ -193999,7 +188490,7 @@ "defence": 10 } }, - "price": 2538.5 + "price": 1757 }, "13387": { "id": 13387, @@ -194040,7 +188531,7 @@ "defence": 10 } }, - "price": 4043.5 + "price": 4043 }, "13389": { "id": 13389, @@ -194081,7 +188572,7 @@ "defence": 10 } }, - "price": 3724.5 + "price": 3724 }, "13391": { "id": 13391, @@ -194098,7 +188589,7 @@ "examine": "Ripped from the maw of a dying lizardman of Kourend.", "wiki_name": "Lizardman fang", "wiki_url": "https://oldschool.runescape.wiki/w/Lizardman_fang", - "price": 15 + "price": 17 }, "13392": { "id": 13392, @@ -194562,7 +189053,7 @@ "examine": "A powder that can be added to compost to make fertiliser.", "wiki_name": "Saltpetre", "wiki_url": "https://oldschool.runescape.wiki/w/Saltpetre", - "price": 8 + "price": 10 }, "13423": { "id": 13423, @@ -194691,7 +189182,7 @@ "examine": "Can be used as bait for catching anglerfish.", "wiki_name": "Sandworms", "wiki_url": "https://oldschool.runescape.wiki/w/Sandworms", - "price": 99 + "price": 120 }, "13432": { "id": 13432, @@ -194784,7 +189275,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw anglerfish", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_anglerfish", - "price": 1610 + "price": 1789 }, "13441": { "id": 13441, @@ -194802,7 +189293,7 @@ "examine": "I hope this tastes better than it looks.", "wiki_name": "Anglerfish", "wiki_url": "https://oldschool.runescape.wiki/w/Anglerfish", - "price": 1612 + "price": 1958 }, "13443": { "id": 13443, @@ -194879,7 +189370,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled goblin head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_goblin_head#Item", - "price": 800 + "price": 293 }, "13450": { "id": 13450, @@ -194912,7 +189403,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled monkey head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_monkey_head#Item", - "price": 100 + "price": 367 }, "13453": { "id": 13453, @@ -194944,7 +189435,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled imp head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_imp_head#Item", - "price": 1778 + "price": 1557 }, "13456": { "id": 13456, @@ -194977,7 +189468,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled minotaur head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_minotaur_head#Item", - "price": 744 + "price": 500 }, "13459": { "id": 13459, @@ -195010,7 +189501,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled scorpion head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_scorpion_head#Item", - "price": 949 + "price": 710 }, "13462": { "id": 13462, @@ -195043,7 +189534,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled bear head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_bear_head#Item", - "price": 1894.5 + "price": 594 }, "13465": { "id": 13465, @@ -195076,7 +189567,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Basic Reanimation.", "wiki_name": "Ensouled unicorn head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_unicorn_head#Item", - "price": 1724 + "price": 2019 }, "13468": { "id": 13468, @@ -195109,7 +189600,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled dog head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_dog_head#Item", - "price": 804.5 + "price": 651 }, "13471": { "id": 13471, @@ -195175,7 +189666,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled giant head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_giant_head#Item", - "price": 1032.5 + "price": 858 }, "13477": { "id": 13477, @@ -195241,7 +189732,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled elf head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_elf_head#Item", - "price": 1451 + "price": 870 }, "13483": { "id": 13483, @@ -195274,7 +189765,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled troll head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_troll_head#Item", - "price": 2043.5 + "price": 1437 }, "13486": { "id": 13486, @@ -195340,7 +189831,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Expert Reanimation.", "wiki_name": "Ensouled kalphite head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_kalphite_head#Item", - "price": 1702.5 + "price": 1938 }, "13492": { "id": 13492, @@ -195373,7 +189864,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Expert Reanimation.", "wiki_name": "Ensouled dagannoth head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_dagannoth_head#Item", - "price": 2700 + "price": 1917 }, "13495": { "id": 13495, @@ -195406,7 +189897,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Expert Reanimation.", "wiki_name": "Ensouled bloodveld head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_bloodveld_head#Item", - "price": 3406 + "price": 2888 }, "13498": { "id": 13498, @@ -195472,7 +189963,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Expert Reanimation.", "wiki_name": "Ensouled demon head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_demon_head#Item", - "price": 4959 + "price": 4051 }, "13504": { "id": 13504, @@ -195505,7 +189996,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Master Reanimation.", "wiki_name": "Ensouled aviansie head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_aviansie_head#Item", - "price": 5281.5 + "price": 4103 }, "13507": { "id": 13507, @@ -195538,7 +190029,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Master Reanimation.", "wiki_name": "Ensouled abyssal head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_abyssal_head#Item", - "price": 5990 + "price": 4578 }, "13510": { "id": 13510, @@ -195571,7 +190062,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Master Reanimation.", "wiki_name": "Ensouled dragon head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_dragon_head#Item", - "price": 8465 + "price": 7580 }, "13513": { "id": 13513, @@ -196416,7 +190907,7 @@ "examine": "A pot of dynamite for blast mining, with a fuse ready to light.", "wiki_name": "Dynamite", "wiki_url": "https://oldschool.runescape.wiki/w/Dynamite", - "price": 622.5 + "price": 454 }, "13575": { "id": 13575, @@ -196498,7 +190989,7 @@ } ] }, - "price": 36531060.5 + "price": 34919897 }, "13579": { "id": 13579, @@ -197935,7 +192426,7 @@ } ] }, - "price": 97199249.5 + "price": 100200114 }, "13653": { "id": 13653, @@ -198022,7 +192513,7 @@ "examine": "A grape seed for growing in a vinery.", "wiki_name": "Grape seed", "wiki_url": "https://oldschool.runescape.wiki/w/Grape_seed", - "price": 910 + "price": 658 }, "13658": { "id": 13658, @@ -198037,7 +192528,7 @@ "examine": "A card which has magical properties.", "wiki_name": "Teleport card", "wiki_url": "https://oldschool.runescape.wiki/w/Teleport_card", - "price": 195 + "price": 172 }, "13660": { "id": 13660, @@ -198586,7 +193077,7 @@ } ] }, - "price": 721511.5 + "price": 812250 }, "19481": { "id": 19481, @@ -198654,7 +193145,7 @@ } ] }, - "price": 737706.5 + "price": 863282 }, "19484": { "id": 19484, @@ -198693,7 +193184,7 @@ "ranged": 65 } }, - "price": 755.5 + "price": 904 }, "19486": { "id": 19486, @@ -198771,7 +193262,7 @@ "ranged": 65 } }, - "price": 1515.5 + "price": 965 }, "19490": { "id": 19490, @@ -198810,7 +193301,7 @@ "ranged": 65 } }, - "price": 1919.5 + "price": 2249 }, "19493": { "id": 19493, @@ -198828,7 +193319,7 @@ "examine": "This looks valuable.", "wiki_name": "Zenyte", "wiki_url": "https://oldschool.runescape.wiki/w/Zenyte", - "price": 11578890 + "price": 13470860 }, "19496": { "id": 19496, @@ -198846,7 +193337,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut zenyte", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_zenyte", - "price": 11411728 + "price": 13317679 }, "19501": { "id": 19501, @@ -198864,7 +193355,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Zenyte amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Zenyte_amulet_(u)", - "price": 10075000 + "price": 13237807 }, "19505": { "id": 19505, @@ -199062,7 +193553,7 @@ "examine": "A shard of unstable zenyte.", "wiki_name": "Zenyte shard", "wiki_url": "https://oldschool.runescape.wiki/w/Zenyte_shard", - "price": 9041500 + "price": 12425500 }, "19532": { "id": 19532, @@ -199100,7 +193591,7 @@ "slot": "hands", "requirements": null }, - "price": 11350000 + "price": 12057418 }, "19535": { "id": 19535, @@ -199138,7 +193629,7 @@ "slot": "neck", "requirements": null }, - "price": 12005415 + "price": 13397000 }, "19538": { "id": 19538, @@ -199176,7 +193667,7 @@ "slot": "ring", "requirements": null }, - "price": 11590916.5 + "price": 11590916 }, "19541": { "id": 19541, @@ -199214,7 +193705,7 @@ "slot": "neck", "requirements": null }, - "price": 11845000 + "price": 15888889 }, "19544": { "id": 19544, @@ -199254,7 +193745,7 @@ "hitpoints": 75 } }, - "price": 11884840.5 + "price": 14369505 }, "19547": { "id": 19547, @@ -199294,7 +193785,7 @@ "hitpoints": 75 } }, - "price": 12044763.5 + "price": 14579105 }, "19550": { "id": 19550, @@ -199334,7 +193825,7 @@ "hitpoints": 75 } }, - "price": 12030593 + "price": 14143219 }, "19553": { "id": 19553, @@ -199374,7 +193865,7 @@ "hitpoints": 75 } }, - "price": 12194947.5 + "price": 14529025 }, "19556": { "id": 19556, @@ -199549,7 +194040,7 @@ "examine": "Needs a shaft.", "wiki_name": "Bronze javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_javelin_heads", - "price": 42.5 + "price": 42 }, "19572": { "id": 19572, @@ -199566,7 +194057,7 @@ "examine": "Needs a shaft.", "wiki_name": "Iron javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_javelin_heads", - "price": 24 + "price": 27 }, "19574": { "id": 19574, @@ -199583,7 +194074,7 @@ "examine": "Needs a shaft.", "wiki_name": "Steel javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_javelin_heads", - "price": 8.5 + "price": 66 }, "19576": { "id": 19576, @@ -199600,7 +194091,7 @@ "examine": "Needs a shaft.", "wiki_name": "Mithril javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_javelin_heads", - "price": 184.5 + "price": 63 }, "19578": { "id": 19578, @@ -199634,7 +194125,7 @@ "examine": "Needs a shaft.", "wiki_name": "Rune javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_javelin_heads", - "price": 645 + "price": 557 }, "19582": { "id": 19582, @@ -199651,7 +194142,7 @@ "examine": "Needs a shaft.", "wiki_name": "Dragon javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_javelin_heads", - "price": 831.5 + "price": 916 }, "19584": { "id": 19584, @@ -199668,7 +194159,7 @@ "examine": "It's not very strong, but it could be pointy if you put a pointy tip on it.", "wiki_name": "Javelin shaft", "wiki_url": "https://oldschool.runescape.wiki/w/Javelin_shaft", - "price": 2.5 + "price": 4 }, "19586": { "id": 19586, @@ -199704,7 +194195,7 @@ "examine": "A heavy wooden frame.", "wiki_name": "Heavy frame", "wiki_url": "https://oldschool.runescape.wiki/w/Heavy_frame", - "price": 117500 + "price": 107500 }, "19592": { "id": 19592, @@ -199722,7 +194213,7 @@ "examine": "Sturdy struts.", "wiki_name": "Ballista limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Ballista_limbs", - "price": 27954.5 + "price": 31332 }, "19595": { "id": 19595, @@ -199740,7 +194231,7 @@ "examine": "The limbs have been attached to the frame.", "wiki_name": "Incomplete light ballista", "wiki_url": "https://oldschool.runescape.wiki/w/Incomplete_light_ballista", - "price": 46175 + "price": 30550 }, "19598": { "id": 19598, @@ -199758,7 +194249,7 @@ "examine": "The limbs have been attached to the frame.", "wiki_name": "Incomplete heavy ballista", "wiki_url": "https://oldschool.runescape.wiki/w/Incomplete_heavy_ballista", - "price": 122891 + "price": 129282 }, "19601": { "id": 19601, @@ -199794,7 +194285,7 @@ "examine": "Needs a suitably simian rope.", "wiki_name": "Unstrung light ballista", "wiki_url": "https://oldschool.runescape.wiki/w/Unstrung_light_ballista", - "price": 89106 + "price": 108444 }, "19607": { "id": 19607, @@ -199812,7 +194303,7 @@ "examine": "Needs a suitably simian rope.", "wiki_name": "Unstrung heavy ballista", "wiki_url": "https://oldschool.runescape.wiki/w/Unstrung_heavy_ballista", - "price": 44408.5 + "price": 185314 }, "19610": { "id": 19610, @@ -199881,7 +194372,7 @@ "examine": "A teleport to the Mind Altar.", "wiki_name": "Mind altar teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Mind_altar_teleport_(tablet)", - "price": 2751 + "price": 1912 }, "19619": { "id": 19619, @@ -199898,7 +194389,7 @@ "examine": "A teleport to the Salve graveyard.", "wiki_name": "Salve graveyard teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Salve_graveyard_teleport_(tablet)", - "price": 2652.5 + "price": 1960 }, "19621": { "id": 19621, @@ -199915,7 +194406,7 @@ "examine": "A teleport to Fenkenstrain's Castle.", "wiki_name": "Fenkenstrain's castle teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Fenkenstrain's_castle_teleport_(tablet)", - "price": 3057.5 + "price": 2340 }, "19623": { "id": 19623, @@ -199932,7 +194423,7 @@ "examine": "A teleport to West Ardougne.", "wiki_name": "West ardougne teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/West_ardougne_teleport_(tablet)", - "price": 2962 + "price": 2468 }, "19625": { "id": 19625, @@ -199966,7 +194457,7 @@ "examine": "A teleport to the Cemetery in level 31 Wilderness.", "wiki_name": "Cemetery teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Cemetery_teleport_(tablet)", - "price": 2961 + "price": 2429 }, "19629": { "id": 19629, @@ -199983,7 +194474,7 @@ "examine": "A teleport to the Barrows.", "wiki_name": "Barrows teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Barrows_teleport_(tablet)", - "price": 3456.5 + "price": 2942 }, "19631": { "id": 19631, @@ -200000,7 +194491,7 @@ "examine": "A teleport to Ape Atoll.", "wiki_name": "Ape atoll teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Ape_atoll_teleport_(tablet)", - "price": 3795 + "price": 2908 }, "19634": { "id": 19634, @@ -200290,7 +194781,7 @@ "examine": "The top of a Golovanova fruit - edible once cooked and full of Vitamin G.", "wiki_name": "Golovanova fruit top", "wiki_url": "https://oldschool.runescape.wiki/w/Golovanova_fruit_top", - "price": 825 + "price": 943 }, "19656": { "id": 19656, @@ -200308,7 +194799,7 @@ "examine": "This would be much tastier cooked.", "wiki_name": "Uncooked botanical pie", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_botanical_pie", - "price": 2553.5 + "price": 2236 }, "19659": { "id": 19659, @@ -200342,7 +194833,7 @@ "examine": "Mmm botanical pie.", "wiki_name": "Botanical pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Botanical_pie#Full", - "price": 1108.5 + "price": 1955 }, "19665": { "id": 19665, @@ -200392,7 +194883,7 @@ "examine": "Logs cut from a redwood tree.", "wiki_name": "Redwood logs", "wiki_url": "https://oldschool.runescape.wiki/w/Redwood_logs", - "price": 505.5 + "price": 505 }, "19672": { "id": 19672, @@ -200410,7 +194901,7 @@ "examine": "Redwood logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Redwood pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Redwood_pyre_logs", - "price": 3326.5 + "price": 3326 }, "19675": { "id": 19675, @@ -200804,7 +195295,7 @@ "examine": "It smells like it's been where the sun doesn't shine.", "wiki_name": "Jar of darkness", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_darkness", - "price": 480000 + "price": 397500 }, "19704": { "id": 19704, @@ -200858,7 +195349,7 @@ "slot": "neck", "requirements": null }, - "price": 75493998.5 + "price": 71750000 }, "19710": { "id": 19710, @@ -201060,7 +195551,7 @@ "slot": "head", "requirements": null }, - "price": 11219.5 + "price": 13527 }, "19727": { "id": 19727, @@ -201098,7 +195589,7 @@ "slot": "head", "requirements": null }, - "price": 36525 + "price": 25517 }, "19730": { "id": 19730, @@ -201126,711 +195617,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Lucky_impling_jar", "price": 0 }, - "19734": { - "id": 19734, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - PACINNG A TAIE", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_PACINNG_A_TAIE", - "price": 0 - }, - "19736": { - "id": 19736, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - I DOOM ICON INN", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_I_DOOM_ICON_INN", - "price": 0 - }, - "19738": { - "id": 19738, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - LOW LAG", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_LOW_LAG", - "price": 0 - }, - "19740": { - "id": 19740, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - R SLICER", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_R_SLICER", - "price": 0 - }, - "19742": { - "id": 19742, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - HIS PHOR", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_HIS_PHOR", - "price": 0 - }, - "19744": { - "id": 19744, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - TAMED ROCKS", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_TAMED_ROCKS", - "price": 0 - }, - "19746": { - "id": 19746, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - AREA CHEF TREK", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_AREA_CHEF_TREK", - "price": 0 - }, - "19748": { - "id": 19748, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - SAND NUT", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_SAND_NUT", - "price": 0 - }, - "19750": { - "id": 19750, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - ARMCHAIR THE PELT", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_ARMCHAIR_THE_PELT", - "price": 0 - }, - "19752": { - "id": 19752, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - PEAK REFLEX", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_PEAK_REFLEX", - "price": 0 - }, - "19754": { - "id": 19754, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - QUE SIR", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_QUE_SIR", - "price": 0 - }, - "19756": { - "id": 19756, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - I AM SIR", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_I_AM_SIR", - "price": 0 - }, - "19758": { - "id": 19758, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2016-07-06", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - A HEART", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_A_HEART", - "price": 0 - }, - "19760": { - "id": 19760, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - A graceful man of many colours", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_A_graceful_man_of_many_colours", - "price": 0 - }, - "19762": { - "id": 19762, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - QSPGFTTPS HSBDLMFCPOF", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_QSPGFTTPS_HSBDLMFCPOF", - "price": 0 - }, - "19764": { - "id": 19764, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2016-07-06", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - USBJCPSO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_USBJCPSO", - "price": 0 - }, - "19766": { - "id": 19766, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - ECRVCKP MJCNGF", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_ECRVCKP_MJCNGF", - "price": 0 - }, - "19768": { - "id": 19768, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - BMJ UIF LFCBC TFMMFS", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_BMJ_UIF_LFCBC_TFMMFS", - "price": 0 - }, - "19770": { - "id": 19770, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2016-07-06", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - HQNM LZM STSNQ", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_HQNM_LZM_STSNQ", - "price": 0 - }, - "19772": { - "id": 19772, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - GUHCHO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_GUHCHO", - "price": 0 - }, - "19774": { - "id": 19774, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 12.39N 30.07W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_12.39N_30.07W", - "price": 0 - }, - "19776": { - "id": 19776, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Beckon in the Shayzien Combat Ring", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Beckon_in_the_Shayzien_Combat_Ring", - "price": 0 - }, - "19778": { - "id": 19778, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Yawn in the centre of the Arceuus Library", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Yawn_in_the_centre_of_the_Arceuus_Library", - "price": 0 - }, - "19780": { - "id": 19780, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Cry in the Draynor Village jail", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Cry_in_the_Draynor_Village_jail", - "price": 0 - }, - "19782": { - "id": 19782, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - In the Mogre Camp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_In_the_Mogre_Camp", - "price": 0 - }, - "19783": { - "id": 19783, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Zul-Andra", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Zul-Andra", - "price": 0 - }, - "19784": { - "id": 19784, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - At the Soul Altar", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_At_the_Soul_Altar", - "price": 0 - }, - "19785": { - "id": 19785, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - East of Burgh de Rott", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_East_of_Burgh_de_Rott", - "price": 0 - }, - "19786": { - "id": 19786, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - The crate in south-western Ape Atoll", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_The_crate_in_south-western_Ape_Atoll", - "price": 0 - }, - "19787": { - "id": 19787, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Panic at the area flowers meet snow", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Panic_at_the_area_flowers_meet_snow", - "price": 0 - }, - "19788": { - "id": 19788, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Shrug in the Shayzien war tent", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Shrug_in_the_Shayzien_war_tent", - "price": 0 - }, - "19789": { - "id": 19789, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Bow on the ground floor of the Legends' Guild", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Bow_on_the_ground_floor_of_the_Legends'_Guild", - "price": 0 - }, - "19790": { - "id": 19790, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Laugh in front of the gem store in Ardougne market", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Laugh_in_front_of_the_gem_store_in_Ardougne_market", - "price": 0 - }, - "19791": { - "id": 19791, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Headbang in the Fight Arena pub", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Headbang_in_the_Fight_Arena_pub", - "price": 0 - }, - "19792": { - "id": 19792, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Ladder Memo Guv", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Ladder_Memo_Guv", - "price": 0 - }, - "19793": { - "id": 19793, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - At Herg", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_At_Herg", - "price": 0 - }, - "19794": { - "id": 19794, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Our Own Needs", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Our_Own_Needs", - "price": 0 - }, - "19795": { - "id": 19795, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Snakes So I Sail", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Snakes_So_I_Sail", - "price": 0 - }, - "19796": { - "id": 19796, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - You might have to turn over a few stones to progress", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_You_might_have_to_turn_over_a_few_stones_to_progress", - "price": 0 - }, - "19797": { - "id": 19797, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - A demon's best friend", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_A_demon's_best_friend", - "price": 0 - }, - "19798": { - "id": 19798, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Let's hope you don't meet a watery death when you encounter this fiend", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Let's_hope_you_don't_meet_a_watery_death_when_you_encounter_this_fiend", - "price": 0 - }, - "19799": { - "id": 19799, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Mix yellow with blue and add heat", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Mix_yellow_with_blue_and_add_heat", - "price": 0 - }, - "19800": { - "id": 19800, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Reflection is the weakness for these eyes of evil", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Reflection_is_the_weakness_for_these_eyes_of_evil", - "price": 0 - }, - "19801": { - "id": 19801, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - You'll get licked", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_You'll_get_licked", - "price": 0 - }, - "19802": { - "id": 19802, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - You'll have to plug your nose if you use this source of herbs", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_You'll_have_to_plug_your_nose_if_you_use_this_source_of_herbs", - "price": 0 - }, - "19803": { - "id": 19803, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - You will have to fly high where a sword cannot help you", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_You_will_have_to_fly_high_where_a_sword_cannot_help_you", - "price": 0 - }, - "19804": { - "id": 19804, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - In a while", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_In_a_while", - "price": 0 - }, - "19805": { - "id": 19805, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Ghostly bones", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Ghostly_bones", - "price": 0 - }, - "19806": { - "id": 19806, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Surround my bones in fire, ontop the wooden pyre", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Surround_my_bones_in_fire,_ontop_the_wooden_pyre", - "price": 0 - }, - "19807": { - "id": 19807, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Scattered coins and gems fill the floor", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Scattered_coins_and_gems_fill_the_floor", - "price": 0 - }, - "19808": { - "id": 19808, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - With a name like that, you'd expect a little more", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_With_a_name_like_that,_you'd_expect_a_little_more", - "price": 0 - }, - "19809": { - "id": 19809, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - A ring of water surrounds 4 powerful rings", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_A_ring_of_water_surrounds_4_powerful_rings", - "price": 0 - }, - "19810": { - "id": 19810, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Dig under Razorlor's toad batta", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Dig_under_Razorlor's_toad_batta", - "price": 0 - }, - "19811": { - "id": 19811, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - You must be 100 to play with me", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_You_must_be_100_to_play_with_me", - "price": 0 - }, "19812": { "id": 19812, "name": "Key (elite)", @@ -201845,240 +195631,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Key_(Treasure_Trails)#Elite", "price": 0 }, - "19813": { - "id": 19813, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 10.54N 20.50W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_10.54N_20.50W", - "price": 0 - }, - "19814": { - "id": 19814, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dig where only the skilled, wealthy, or brave can choose not to visit again", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dig_where_only_the_skilled,_wealthy,_or_brave_can_choose_not_to_visit_again", - "price": 0 - }, - "19816": { - "id": 19816, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - I wonder how many bronze swords he has handed out", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_I_wonder_how_many_bronze_swords_he_has_handed_out", - "price": 0 - }, - "19817": { - "id": 19817, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Strength potions with red spiders' eggs", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Strength_potions_with_red_spiders'_eggs", - "price": 0 - }, - "19818": { - "id": 19818, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Monk's residence in the far west See robe storage device", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Monk's_residence_in_the_far_west_See_robe_storage_device", - "price": 0 - }, - "19819": { - "id": 19819, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Surrounded by white walls and gems", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Surrounded_by_white_walls_and_gems", - "price": 0 - }, - "19820": { - "id": 19820, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - I wouldn't wear this jean on my legs", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_I_wouldn't_wear_this_jean_on_my_legs", - "price": 0 - }, - "19821": { - "id": 19821, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Thanks, Grandma!", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Thanks,_Grandma!", - "price": 0 - }, - "19822": { - "id": 19822, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - I would make a chemistry joke", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_I_would_make_a_chemistry_joke", - "price": 0 - }, - "19823": { - "id": 19823, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Belladonna, my dear If only I had gloves", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Belladonna,_my_dear_If_only_I_had_gloves", - "price": 0 - }, - "19824": { - "id": 19824, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - The hand ain't listening", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_The_hand_ain't_listening", - "price": 0 - }, - "19825": { - "id": 19825, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Salty peter", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Salty_peter", - "price": 0 - }, - "19826": { - "id": 19826, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dig in the centre of a great kingdom of 5 cities", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dig_in_the_centre_of_a_great_kingdom_of_5_cities", - "price": 0 - }, - "19828": { - "id": 19828, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Ermin", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Ermin", - "price": 0 - }, - "19829": { - "id": 19829, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the open crate found in the Hosidius kitchens", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_open_crate_found_in_the_Hosidius_kitchens", - "price": 0 - }, - "19830": { - "id": 19830, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to the Doomsayer", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_the_Doomsayer", - "price": 0 - }, - "19831": { - "id": 19831, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dance at the entrance to the Grand Exchange", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dance_at_the_entrance_to_the_Grand_Exchange", - "price": 0 - }, - "19833": { - "id": 19833, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Do a jig in Varrock's rune store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Do_a_jig_in_Varrock's_rune_store", - "price": 0 - }, "19835": { "id": 19835, "name": "Clue scroll (master)", @@ -202088,7 +195640,7 @@ "highalch": 12, "weight": 0.02, "release_date": "2016-07-06", - "examine": "Hopefully leads to treasure.", + "examine": "Perhaps someone at the observatory can teach me to navigate?", "wiki_name": "Clue scroll (master)", "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(master)", "price": 0 @@ -202149,487 +195701,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Torn_clue_scroll#Part_3", "price": 0 }, - "19840": { - "id": 19840, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.48N 30.01W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.48N_30.01W", - "price": 0 - }, - "19842": { - "id": 19842, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 19.24N 30.37W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_19.24N_30.37W", - "price": 0 - }, - "19844": { - "id": 19844, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 02.48N 34.33E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_02.48N_34.33E", - "price": 0 - }, - "19846": { - "id": 19846, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Come have a cip with this great soot covered denizen", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Come_have_a_cip_with_this_great_soot_covered_denizen", - "price": 0 - }, - "19848": { - "id": 19848, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Dig where 4 siblings and I all live with our evil overlord", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Dig_where_4_siblings_and_I_all_live_with_our_evil_overlord", - "price": 0 - }, - "19850": { - "id": 19850, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Rotting next to a ditch", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Rotting_next_to_a_ditch", - "price": 0 - }, - "19852": { - "id": 19852, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The mother of the reptilian sacrifice", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_mother_of_the_reptilian_sacrifice", - "price": 0 - }, - "19853": { - "id": 19853, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - In the city where merchants are said to have lived", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_In_the_city_where_merchants_are_said_to_have_lived", - "price": 0 - }, - "19854": { - "id": 19854, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - He knows just how easy it is to lose track of time", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_He_knows_just_how_easy_it_is_to_lose_track_of_time", - "price": 0 - }, - "19856": { - "id": 19856, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Leader of the Yak City", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Leader_of_the_Yak_City", - "price": 0 - }, - "19857": { - "id": 19857, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The magic of 4 colours, an early experience you could learn", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_magic_of_4_colours,_an_early_experience_you_could_learn", - "price": 0 - }, - "19860": { - "id": 19860, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Where the best are commemorated", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Where_the_best_are_commemorated", - "price": 0 - }, - "19862": { - "id": 19862, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - AIQ0440", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_AIQ0440", - "price": 0 - }, - "19864": { - "id": 19864, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - AIR2331", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_AIR2331", - "price": 0 - }, - "19866": { - "id": 19866, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - ALP1140", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_ALP1140", - "price": 0 - }, - "19868": { - "id": 19868, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - BIP7013", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_BIP7013", - "price": 0 - }, - "19870": { - "id": 19870, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - BJR1123", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_BJR1123", - "price": 0 - }, - "19872": { - "id": 19872, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - BLP6200", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_BLP6200", - "price": 0 - }, - "19874": { - "id": 19874, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - CKP0224", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_CKP0224", - "price": 0 - }, - "19876": { - "id": 19876, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - DIP8511", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_DIP8511", - "price": 0 - }, - "19878": { - "id": 19878, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - DKS2310", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_DKS2310", - "price": 0 - }, - "19880": { - "id": 19880, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - CIS0009", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_CIS0009", - "price": 0 - }, - "19882": { - "id": 19882, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Veil Veda", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Veil_Veda", - "price": 0 - }, - "19884": { - "id": 19884, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Woo An Egg Kiwi", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Woo_An_Egg_Kiwi", - "price": 0 - }, - "19886": { - "id": 19886, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Blue Grim Guided", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Blue_Grim_Guided", - "price": 0 - }, - "19888": { - "id": 19888, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Dekagram", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Dekagram", - "price": 0 - }, - "19890": { - "id": 19890, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Dr Warden Funk", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Dr_Warden_Funk", - "price": 0 - }, - "19892": { - "id": 19892, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Quit Horrible Tyrant", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Quit_Horrible_Tyrant", - "price": 0 - }, - "19894": { - "id": 19894, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Baker Climb", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Baker_Climb", - "price": 0 - }, - "19896": { - "id": 19896, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - My Mangle Lal", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_My_Mangle_Lal", - "price": 0 - }, - "19898": { - "id": 19898, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - OVEXON", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_OVEXON", - "price": 0 - }, - "19900": { - "id": 19900, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - UZZU MUJHRKYYKJ", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_UZZU_MUJHRKYYKJ", - "price": 0 - }, - "19902": { - "id": 19902, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - ZSBKDO ZODO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_ZSBKDO_ZODO", - "price": 0 - }, - "19904": { - "id": 19904, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - ZHLUG ROG PDQ", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_ZHLUG_ROG_PDQ", - "price": 0 - }, - "19906": { - "id": 19906, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - VTYR APCNTGLW", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_VTYR_APCNTGLW", - "price": 0 - }, - "19908": { - "id": 19908, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - HCKTA IQFHCVJGT", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_HCKTA_IQFHCVJGT", - "price": 0 - }, - "19910": { - "id": 19910, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - GBJSZ RVFFO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_GBJSZ_RVFFO", - "price": 0 - }, "19912": { "id": 19912, "name": "Zombie head", @@ -202694,7 +195765,7 @@ } ] }, - "price": 9500.5 + "price": 7877 }, "19915": { "id": 19915, @@ -202732,7 +195803,7 @@ "slot": "head", "requirements": null }, - "price": 4048 + "price": 9336 }, "19918": { "id": 19918, @@ -202880,7 +195951,7 @@ "defence": 40 } }, - "price": 706120 + "price": 500853 }, "19927": { "id": 19927, @@ -202921,7 +195992,7 @@ "defence": 40 } }, - "price": 700657.5 + "price": 615866 }, "19930": { "id": 19930, @@ -202962,7 +196033,7 @@ "defence": 40 } }, - "price": 1149504.5 + "price": 1149504 }, "19933": { "id": 19933, @@ -203003,7 +196074,7 @@ "defence": 40 } }, - "price": 794096 + "price": 699787 }, "19936": { "id": 19936, @@ -203044,7 +196115,7 @@ "defence": 40 } }, - "price": 1021725 + "price": 982494 }, "19939": { "id": 19939, @@ -203158,7 +196229,7 @@ "slot": "neck", "requirements": null }, - "price": 5331.5 + "price": 7667 }, "19946": { "id": 19946, @@ -203196,7 +196267,7 @@ "slot": "neck", "requirements": null }, - "price": 5165 + "price": 14543 }, "19949": { "id": 19949, @@ -203234,7 +196305,7 @@ "slot": "neck", "requirements": null }, - "price": 5252.5 + "price": 47500 }, "19952": { "id": 19952, @@ -203272,7 +196343,7 @@ "slot": "neck", "requirements": null }, - "price": 11443 + "price": 8038 }, "19955": { "id": 19955, @@ -203310,7 +196381,7 @@ "slot": "neck", "requirements": null }, - "price": 5711 + "price": 32501 }, "19958": { "id": 19958, @@ -203348,7 +196419,7 @@ "slot": "body", "requirements": null }, - "price": 1161722 + "price": 1235998 }, "19961": { "id": 19961, @@ -203386,7 +196457,7 @@ "slot": "hands", "requirements": null }, - "price": 856064.5 + "price": 4310214 }, "19964": { "id": 19964, @@ -203424,7 +196495,7 @@ "slot": "legs", "requirements": null }, - "price": 905051 + "price": 707482 }, "19967": { "id": 19967, @@ -203462,7 +196533,7 @@ "slot": "feet", "requirements": null }, - "price": 435500 + "price": 470500 }, "19970": { "id": 19970, @@ -203500,7 +196571,7 @@ "slot": "neck", "requirements": null }, - "price": 519278.5 + "price": 557640 }, "19973": { "id": 19973, @@ -203538,7 +196609,7 @@ "slot": "body", "requirements": null }, - "price": 1917615.5 + "price": 2178500 }, "19976": { "id": 19976, @@ -203576,7 +196647,7 @@ "slot": "hands", "requirements": null }, - "price": 445952 + "price": 295064 }, "19979": { "id": 19979, @@ -203614,7 +196685,7 @@ "slot": "legs", "requirements": null }, - "price": 203766.5 + "price": 152508 }, "19982": { "id": 19982, @@ -203652,7 +196723,7 @@ "slot": "feet", "requirements": null }, - "price": 588777 + "price": 938826 }, "19985": { "id": 19985, @@ -203690,7 +196761,7 @@ "slot": "neck", "requirements": null }, - "price": 98352.5 + "price": 248093 }, "19988": { "id": 19988, @@ -203728,7 +196799,7 @@ "slot": "head", "requirements": null }, - "price": 56000 + "price": 65500 }, "19991": { "id": 19991, @@ -203766,7 +196837,7 @@ "slot": "head", "requirements": null }, - "price": 16633 + "price": 44515 }, "19994": { "id": 19994, @@ -203806,7 +196877,7 @@ "ranged": 40 } }, - "price": 874500 + "price": 643798 }, "19997": { "id": 19997, @@ -203846,7 +196917,7 @@ "prayer": 31 } }, - "price": 1213889 + "price": 1119494 }, "20000": { "id": 20000, @@ -203935,7 +197006,7 @@ "examine": "Use on the dragon scimitar to trim it with gold.", "wiki_name": "Dragon scimitar ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_scimitar_ornament_kit", - "price": 313000 + "price": 410000 }, "20005": { "id": 20005, @@ -203972,7 +197043,7 @@ "slot": "ring", "requirements": null }, - "price": 11512100.5 + "price": 10540101 }, "20008": { "id": 20008, @@ -204010,7 +197081,7 @@ "slot": "head", "requirements": null }, - "price": 1 + "price": 21675 }, "20011": { "id": 20011, @@ -204197,7 +197268,7 @@ "slot": "ring", "requirements": null }, - "price": 20681001.5 + "price": 20681001 }, "20020": { "id": 20020, @@ -204235,7 +197306,7 @@ "slot": "head", "requirements": null }, - "price": 55500.5 + "price": 9000 }, "20023": { "id": 20023, @@ -204273,7 +197344,7 @@ "slot": "head", "requirements": null }, - "price": 7556.5 + "price": 5681 }, "20026": { "id": 20026, @@ -204311,7 +197382,7 @@ "slot": "head", "requirements": null }, - "price": 80662.5 + "price": 80662 }, "20029": { "id": 20029, @@ -204349,7 +197420,7 @@ "slot": "head", "requirements": null }, - "price": 41060 + "price": 62500 }, "20032": { "id": 20032, @@ -204387,7 +197458,7 @@ "slot": "head", "requirements": null }, - "price": 84285.5 + "price": 46893 }, "20035": { "id": 20035, @@ -204427,7 +197498,7 @@ "defence": 35 } }, - "price": 45756 + "price": 32568 }, "20038": { "id": 20038, @@ -204467,7 +197538,7 @@ "defence": 35 } }, - "price": 67216.5 + "price": 54343 }, "20041": { "id": 20041, @@ -204507,7 +197578,7 @@ "defence": 35 } }, - "price": 97222 + "price": 42750 }, "20044": { "id": 20044, @@ -204547,7 +197618,7 @@ "defence": 35 } }, - "price": 56114 + "price": 44179 }, "20047": { "id": 20047, @@ -204587,7 +197658,7 @@ "defence": 35 } }, - "price": 25741.5 + "price": 38961 }, "20050": { "id": 20050, @@ -204625,7 +197696,7 @@ "slot": "cape", "requirements": null }, - "price": 1022756 + "price": 874623 }, "20053": { "id": 20053, @@ -204663,7 +197734,7 @@ "slot": "head", "requirements": null }, - "price": 78333 + "price": 95000 }, "20056": { "id": 20056, @@ -204729,7 +197800,7 @@ } ] }, - "price": 282470 + "price": 800000 }, "20059": { "id": 20059, @@ -204767,7 +197838,7 @@ "slot": "head", "requirements": null }, - "price": 2891775.5 + "price": 4399500 }, "20062": { "id": 20062, @@ -204785,7 +197856,7 @@ "examine": "Use on an amulet of torture to make it look fancier!", "wiki_name": "Torture ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Torture_ornament_kit", - "price": 3291680 + "price": 3640974 }, "20065": { "id": 20065, @@ -204803,7 +197874,7 @@ "examine": "Use on an occult necklace to make it look fancier!", "wiki_name": "Occult ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Occult_ornament_kit", - "price": 5424416 + "price": 4643946 }, "20068": { "id": 20068, @@ -204821,7 +197892,7 @@ "examine": "Use on an Armadyl godsword to make it look fancier!", "wiki_name": "Armadyl godsword ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_godsword_ornament_kit", - "price": 194787.5 + "price": 112652 }, "20071": { "id": 20071, @@ -204839,7 +197910,7 @@ "examine": "Use on a Bandos godsword to make it look fancier!", "wiki_name": "Bandos godsword ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_godsword_ornament_kit", - "price": 6372500 + "price": 5742889 }, "20074": { "id": 20074, @@ -204857,7 +197928,7 @@ "examine": "Use on a Saradomin godsword to make it look fancier!", "wiki_name": "Saradomin godsword ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_godsword_ornament_kit", - "price": 3270500 + "price": 3655002 }, "20077": { "id": 20077, @@ -204875,7 +197946,7 @@ "examine": "Use on a Zamorak godsword to make it look fancier!", "wiki_name": "Zamorak godsword ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_godsword_ornament_kit", - "price": 240500 + "price": 213322 }, "20080": { "id": 20080, @@ -204913,7 +197984,7 @@ "slot": "head", "requirements": null }, - "price": 1824000 + "price": 3650000 }, "20083": { "id": 20083, @@ -204951,7 +198022,7 @@ "slot": "body", "requirements": null }, - "price": 1500000 + "price": 3282672 }, "20086": { "id": 20086, @@ -204989,7 +198060,7 @@ "slot": "hands", "requirements": null }, - "price": 384000.5 + "price": 889234 }, "20089": { "id": 20089, @@ -205027,7 +198098,7 @@ "slot": "legs", "requirements": null }, - "price": 1500835 + "price": 1405000 }, "20092": { "id": 20092, @@ -205065,7 +198136,7 @@ "slot": "feet", "requirements": null }, - "price": 518074 + "price": 915000 }, "20095": { "id": 20095, @@ -205103,7 +198174,7 @@ "slot": "head", "requirements": null }, - "price": 10022500 + "price": 12077654 }, "20098": { "id": 20098, @@ -205141,7 +198212,7 @@ "slot": "body", "requirements": null }, - "price": 21666618 + "price": 25081572 }, "20101": { "id": 20101, @@ -205179,7 +198250,7 @@ "slot": "hands", "requirements": null }, - "price": 3837000 + "price": 3717444 }, "20104": { "id": 20104, @@ -205255,7 +198326,7 @@ "slot": "feet", "requirements": null }, - "price": 2930497 + "price": 2298365 }, "20110": { "id": 20110, @@ -205293,7 +198364,7 @@ "slot": "head", "requirements": null }, - "price": 9378 + "price": 14730 }, "20113": { "id": 20113, @@ -205331,7 +198402,7 @@ "slot": "head", "requirements": null }, - "price": 13372.5 + "price": 27500 }, "20116": { "id": 20116, @@ -205369,7 +198440,7 @@ "slot": "head", "requirements": null }, - "price": 3942 + "price": 1737 }, "20119": { "id": 20119, @@ -205407,7 +198478,7 @@ "slot": "head", "requirements": null }, - "price": 11351 + "price": 6969 }, "20122": { "id": 20122, @@ -205445,7 +198516,7 @@ "slot": "head", "requirements": null }, - "price": 6500.5 + "price": 5008 }, "20125": { "id": 20125, @@ -205483,7 +198554,7 @@ "slot": "head", "requirements": null }, - "price": 19805 + "price": 45225 }, "20128": { "id": 20128, @@ -205524,7 +198595,7 @@ "defence": 20 } }, - "price": 14000 + "price": 35923 }, "20131": { "id": 20131, @@ -205565,7 +198636,7 @@ "defence": 20 } }, - "price": 345000 + "price": 82430 }, "20134": { "id": 20134, @@ -205606,7 +198677,7 @@ "defence": 20 } }, - "price": 13403.5 + "price": 51510 }, "20137": { "id": 20137, @@ -205647,7 +198718,7 @@ "defence": 20 } }, - "price": 52585.5 + "price": 66163 }, "20140": { "id": 20140, @@ -205688,7 +198759,7 @@ "defence": 20 } }, - "price": 29425 + "price": 35641 }, "20143": { "id": 20143, @@ -205706,7 +198777,7 @@ "examine": "Use on the dragon defender to trim it with gold.", "wiki_name": "Dragon defender ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_defender_ornament_kit", - "price": 96499 + "price": 62066 }, "20146": { "id": 20146, @@ -205745,7 +198816,7 @@ "defence": 40 } }, - "price": 2464500 + "price": 1991501 }, "20149": { "id": 20149, @@ -205784,7 +198855,7 @@ "defence": 40 } }, - "price": 3851499.5 + "price": 3851499 }, "20152": { "id": 20152, @@ -205823,7 +198894,7 @@ "defence": 40 } }, - "price": 2226642 + "price": 1801999 }, "20155": { "id": 20155, @@ -205972,7 +199043,7 @@ } ] }, - "price": 2548998.5 + "price": 5074527 }, "20161": { "id": 20161, @@ -206146,7 +199217,7 @@ "slot": "shield", "requirements": null }, - "price": 39997.5 + "price": 39997 }, "20169": { "id": 20169, @@ -206185,7 +199256,7 @@ "defence": 5 } }, - "price": 20205 + "price": 3889 }, "20172": { "id": 20172, @@ -206224,7 +199295,7 @@ "defence": 5 } }, - "price": 6766.5 + "price": 2250 }, "20175": { "id": 20175, @@ -206263,7 +199334,7 @@ "defence": 5 } }, - "price": 6000.5 + "price": 7506 }, "20178": { "id": 20178, @@ -206302,7 +199373,7 @@ "defence": 5 } }, - "price": 7416 + "price": 12254 }, "20181": { "id": 20181, @@ -206341,7 +199412,7 @@ "defence": 5 } }, - "price": 8757.5 + "price": 10681 }, "20184": { "id": 20184, @@ -206380,7 +199451,7 @@ "defence": 5 } }, - "price": 5044.5 + "price": 2848 }, "20187": { "id": 20187, @@ -206419,7 +199490,7 @@ "defence": 5 } }, - "price": 3388 + "price": 2730 }, "20190": { "id": 20190, @@ -206458,7 +199529,7 @@ "defence": 5 } }, - "price": 7824 + "price": 6068 }, "20193": { "id": 20193, @@ -206497,7 +199568,7 @@ "defence": 5 } }, - "price": 5027.5 + "price": 4130 }, "20196": { "id": 20196, @@ -206536,7 +199607,7 @@ "defence": 5 } }, - "price": 7152.5 + "price": 7152 }, "20199": { "id": 20199, @@ -206573,7 +199644,7 @@ "slot": "body", "requirements": null }, - "price": 4265000 + "price": 4574812 }, "20202": { "id": 20202, @@ -206684,7 +199755,7 @@ "slot": "body", "requirements": null }, - "price": 403500 + "price": 349627 }, "20211": { "id": 20211, @@ -206721,7 +199792,7 @@ "slot": "cape", "requirements": null }, - "price": 3385111 + "price": 3555750 }, "20214": { "id": 20214, @@ -206758,7 +199829,7 @@ "slot": "cape", "requirements": null }, - "price": 1334662 + "price": 1386500 }, "20217": { "id": 20217, @@ -206795,7 +199866,7 @@ "slot": "cape", "requirements": null }, - "price": 1140172.5 + "price": 1252117 }, "20220": { "id": 20220, @@ -206833,7 +199904,7 @@ "slot": "ammo", "requirements": null }, - "price": 27968 + "price": 20969 }, "20223": { "id": 20223, @@ -206909,7 +199980,7 @@ "slot": "ammo", "requirements": null }, - "price": 15256.5 + "price": 13525 }, "20229": { "id": 20229, @@ -206947,7 +200018,7 @@ "slot": "ammo", "requirements": null }, - "price": 11169 + "price": 27785 }, "20232": { "id": 20232, @@ -206985,7 +200056,7 @@ "slot": "ammo", "requirements": null }, - "price": 23247.5 + "price": 23247 }, "20235": { "id": 20235, @@ -207023,7 +200094,7 @@ "slot": "ammo", "requirements": null }, - "price": 15554.5 + "price": 15554 }, "20238": { "id": 20238, @@ -207144,7 +200215,7 @@ } ] }, - "price": 40729 + "price": 2569 }, "20246": { "id": 20246, @@ -207182,7 +200253,7 @@ "slot": "head", "requirements": null }, - "price": 17707.5 + "price": 7859 }, "20249": { "id": 20249, @@ -207376,7 +200447,7 @@ } ] }, - "price": 1363 + "price": 5832 }, "20257": { "id": 20257, @@ -207442,7 +200513,7 @@ } ] }, - "price": 962 + "price": 5591 }, "20260": { "id": 20260, @@ -207508,7 +200579,7 @@ } ] }, - "price": 5476 + "price": 42535 }, "20263": { "id": 20263, @@ -207574,7 +200645,7 @@ } ] }, - "price": 1344 + "price": 1007 }, "20266": { "id": 20266, @@ -207612,7 +200683,7 @@ "slot": "head", "requirements": null }, - "price": 29729 + "price": 63249 }, "20269": { "id": 20269, @@ -207650,7 +200721,7 @@ "slot": "head", "requirements": null }, - "price": 8027 + "price": 13750 }, "20272": { "id": 20272, @@ -207690,7 +200761,7 @@ "defence": 30 } }, - "price": 18249 + "price": 8142 }, "20275": { "id": 20275, @@ -207708,7 +200779,7 @@ "examine": "Fill it with firelighters to make pretty fire.", "wiki_name": "Gnomish firelighter (Uncharged)", "wiki_url": "https://oldschool.runescape.wiki/w/Gnomish_firelighter#Uncharged", - "price": 5014.5 + "price": 17136 }, "20278": { "id": 20278, @@ -208163,7 +201234,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Steel trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_trimmed_set_(lg)", - "price": 49281.5 + "price": 49281 }, "20379": { "id": 20379, @@ -208180,7 +201251,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Steel trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_trimmed_set_(sk)", - "price": 60283.5 + "price": 60283 }, "20382": { "id": 20382, @@ -208214,7 +201285,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Steel gold-trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_gold-trimmed_set_(sk)", - "price": 36775 + "price": 68784 }, "20389": { "id": 20389, @@ -208756,7 +201827,7 @@ "slot": "feet", "requirements": null }, - "price": 496932.5 + "price": 754542 }, "20436": { "id": 20436, @@ -208794,7 +201865,7 @@ "slot": "body", "requirements": null }, - "price": 187406 + "price": 295009 }, "20439": { "id": 20439, @@ -208832,7 +201903,7 @@ "slot": "head", "requirements": null }, - "price": 400000 + "price": 1114501 }, "20442": { "id": 20442, @@ -208870,7 +201941,7 @@ "slot": "legs", "requirements": null }, - "price": 291229.5 + "price": 262229 }, "20445": { "id": 20445, @@ -209408,7 +202479,7 @@ "magic": 40 } }, - "price": 352891 + "price": 579687 }, "20520": { "id": 20520, @@ -209448,7 +202519,7 @@ "magic": 40 } }, - "price": 156112.5 + "price": 340256 }, "20523": { "id": 20523, @@ -209973,7 +203044,7 @@ } ] }, - "price": 628431.5 + "price": 712555 }, "20593": { "id": 20593, @@ -210091,7 +203162,7 @@ "magic": 40 } }, - "price": 260944.5 + "price": 392568 }, "20598": { "id": 20598, @@ -211284,7 +204355,7 @@ "magic": 50 } }, - "price": 807049 + "price": 998473 }, "20718": { "id": 20718, @@ -211301,7 +204372,7 @@ "examine": "It's still warm to the touch.", "wiki_name": "Burnt page", "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_page", - "price": 2718.5 + "price": 2718 }, "20720": { "id": 20720, @@ -211395,7 +204466,7 @@ "examine": "This heart holds a magical power within.", "wiki_name": "Imbued heart", "wiki_url": "https://oldschool.runescape.wiki/w/Imbued_heart", - "price": 104628883.5 + "price": 111866451 }, "20727": { "id": 20727, @@ -211554,7 +204625,7 @@ } ] }, - "price": 92774.5 + "price": 92774 }, "20733": { "id": 20733, @@ -211637,7 +204708,7 @@ } ] }, - "price": 100000.5 + "price": 128118 }, "20736": { "id": 20736, @@ -211720,7 +204791,7 @@ } ] }, - "price": 20551 + "price": 25906 }, "20739": { "id": 20739, @@ -211803,7 +204874,7 @@ } ] }, - "price": 47316 + "price": 63250 }, "20742": { "id": 20742, @@ -211868,7 +204939,7 @@ "examine": "The Grapes of Wrath.", "wiki_name": "Zamorak's grapes", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak's_grapes", - "price": 1206.5 + "price": 1206 }, "20752": { "id": 20752, @@ -211962,7 +205033,7 @@ } ] }, - "price": 975248 + "price": 1288259 }, "20760": { "id": 20760, @@ -213148,7 +206219,7 @@ } ] }, - "price": 396 + "price": 331 }, "20851": { "id": 20851, @@ -215276,7 +208347,7 @@ } ] }, - "price": 1649756620.5 + "price": 1649756620 }, "21000": { "id": 21000, @@ -215317,7 +208388,7 @@ "ranged": 75 } }, - "price": 19780465 + "price": 18649158 }, "21003": { "id": 21003, @@ -215386,7 +208457,7 @@ } ] }, - "price": 42000000 + "price": 164749997 }, "21006": { "id": 21006, @@ -215468,7 +208539,7 @@ } ] }, - "price": 125169734.5 + "price": 121356663 }, "21009": { "id": 21009, @@ -215611,7 +208682,7 @@ } ] }, - "price": 58418244 + "price": 67021008 }, "21015": { "id": 21015, @@ -215673,7 +208744,7 @@ } ] }, - "price": 21246448 + "price": 19851555 }, "21018": { "id": 21018, @@ -215714,7 +208785,7 @@ "magic": 75 } }, - "price": 56600000 + "price": 65346386 }, "21021": { "id": 21021, @@ -215755,7 +208826,7 @@ "magic": 75 } }, - "price": 173915243.5 + "price": 186391784 }, "21024": { "id": 21024, @@ -215796,7 +208867,7 @@ "magic": 75 } }, - "price": 135630105 + "price": 143733516 }, "21027": { "id": 21027, @@ -215885,7 +208956,7 @@ } ] }, - "price": 2053733 + "price": 1975480 }, "21031": { "id": 21031, @@ -216045,7 +209116,7 @@ "examine": "Scrawled words that can invoke the power of the gods.", "wiki_name": "Dexterous prayer scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Dexterous_prayer_scroll", - "price": 22936605 + "price": 17174098 }, "21036": { "id": 21036, @@ -216153,7 +209224,7 @@ "examine": "A set containing an Ancestral hat, robe top and robe bottom.", "wiki_name": "Ancestral robes set", "wiki_url": "https://oldschool.runescape.wiki/w/Ancestral_robes_set", - "price": 367167000 + "price": 395121063 }, "21052": { "id": 21052, @@ -216547,7 +209618,7 @@ "examine": "Scrawled words that can invoke the power of the gods.", "wiki_name": "Arcane prayer scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Arcane_prayer_scroll", - "price": 6028693 + "price": 6347459 }, "21081": { "id": 21081, @@ -216585,7 +209656,7 @@ "slot": "ring", "requirements": null }, - "price": 1651 + "price": 2000 }, "21084": { "id": 21084, @@ -216623,7 +209694,7 @@ "slot": "ring", "requirements": null }, - "price": 448 + "price": 2571 }, "21087": { "id": 21087, @@ -216661,7 +209732,7 @@ "slot": "ring", "requirements": null }, - "price": 2868.5 + "price": 6009 }, "21090": { "id": 21090, @@ -216699,7 +209770,7 @@ "slot": "neck", "requirements": null }, - "price": 2646.5 + "price": 1986 }, "21093": { "id": 21093, @@ -216737,7 +209808,7 @@ "slot": "neck", "requirements": null }, - "price": 682.5 + "price": 876 }, "21096": { "id": 21096, @@ -216775,7 +209846,7 @@ "slot": "neck", "requirements": null }, - "price": 697.5 + "price": 1277 }, "21099": { "id": 21099, @@ -216793,7 +209864,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Opal amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Opal_amulet_(u)", - "price": 72.5 + "price": 239 }, "21102": { "id": 21102, @@ -216811,7 +209882,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Jade amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Jade_amulet_(u)", - "price": 708 + "price": 885 }, "21105": { "id": 21105, @@ -216829,7 +209900,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Topaz amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Topaz_amulet_(u)", - "price": 2801.5 + "price": 2256 }, "21108": { "id": 21108, @@ -216867,7 +209938,7 @@ "slot": "neck", "requirements": null }, - "price": 350 + "price": 2550 }, "21111": { "id": 21111, @@ -216943,7 +210014,7 @@ "slot": "neck", "requirements": null }, - "price": 3337 + "price": 2401 }, "21117": { "id": 21117, @@ -217019,7 +210090,7 @@ "slot": "hands", "requirements": null }, - "price": 527.5 + "price": 793 }, "21123": { "id": 21123, @@ -217057,7 +210128,7 @@ "slot": "hands", "requirements": null }, - "price": 2249.5 + "price": 2503 }, "21126": { "id": 21126, @@ -217095,7 +210166,7 @@ "slot": "ring", "requirements": null }, - "price": 2290.5 + "price": 3600 }, "21129": { "id": 21129, @@ -217133,7 +210204,7 @@ "slot": "ring", "requirements": null }, - "price": 651.5 + "price": 2923 }, "21132": { "id": 21132, @@ -217315,7 +210386,7 @@ "slot": "ring", "requirements": null }, - "price": 2508 + "price": 1650 }, "21143": { "id": 21143, @@ -217353,7 +210424,7 @@ "slot": "neck", "requirements": null }, - "price": 3791.5 + "price": 2237 }, "21146": { "id": 21146, @@ -217391,7 +210462,7 @@ "slot": "neck", "requirements": null }, - "price": 1164 + "price": 2101 }, "21149": { "id": 21149, @@ -217573,7 +210644,7 @@ "slot": "neck", "requirements": null }, - "price": 697 + "price": 607 }, "21160": { "id": 21160, @@ -217611,7 +210682,7 @@ "slot": "neck", "requirements": null }, - "price": 1234.5 + "price": 710 }, "21163": { "id": 21163, @@ -217687,7 +210758,7 @@ "slot": "neck", "requirements": null }, - "price": 3300 + "price": 2923 }, "21169": { "id": 21169, @@ -217869,7 +210940,7 @@ "slot": "hands", "requirements": null }, - "price": 3240 + "price": 2267 }, "21180": { "id": 21180, @@ -217907,7 +210978,7 @@ "slot": "hands", "requirements": null }, - "price": 888.5 + "price": 492 }, "21183": { "id": 21183, @@ -218289,7 +211360,7 @@ "examine": "Makes a lava battlestaff or mystic lava staff more beautiful.", "wiki_name": "Lava staff upgrade kit", "wiki_url": "https://oldschool.runescape.wiki/w/Lava_staff_upgrade_kit", - "price": 369999 + "price": 303391 }, "21205": { "id": 21205, @@ -219031,7 +212102,7 @@ "examine": "The parchment contains a spell invented by Slayer Masters in ancient times.", "wiki_name": "Slayer's enchantment", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer's_enchantment", - "price": 1206.5 + "price": 1680 }, "21259": { "id": 21259, @@ -219225,7 +212296,7 @@ "examine": "Like the enchanted gem sold by Slayer Masters, only with an eternal charge.", "wiki_name": "Eternal gem", "wiki_url": "https://oldschool.runescape.wiki/w/Eternal_gem", - "price": 9087499.5 + "price": 9087499 }, "21273": { "id": 21273, @@ -219244,14 +212315,14 @@ "name": "Dark claw", "members": true, "cost": 2500, - "lowalch": 1000, - "highalch": 1500, "weight": 0.02, "release_date": "2017-05-04", "examine": "More menacing when attached to the owner. Emanates a dark energy.", "wiki_name": "Dark claw", "wiki_url": "https://oldschool.runescape.wiki/w/Dark_claw", - "price": 0 + "price": 0, + "lowalch": 1000, + "highalch": 1500 }, "21276": { "id": 21276, @@ -219353,7 +212424,7 @@ "examine": "A set containing an Obsidian helmet, platebody and platelegs.", "wiki_name": "Obsidian armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Obsidian_armour_set", - "price": 3000000 + "price": 1865531 }, "21282": { "id": 21282, @@ -219613,7 +212684,7 @@ "defence": 60 } }, - "price": 788301.5 + "price": 511081 }, "21301": { "id": 21301, @@ -219653,7 +212724,7 @@ "defence": 60 } }, - "price": 1163067 + "price": 750684 }, "21304": { "id": 21304, @@ -219693,7 +212764,7 @@ "defence": 60 } }, - "price": 973253.5 + "price": 615423 }, "21307": { "id": 21307, @@ -219857,7 +212928,7 @@ "slayer": 65 } }, - "price": 283.5 + "price": 283 }, "21318": { "id": 21318, @@ -219896,7 +212967,7 @@ "ranged": 65 } }, - "price": 375 + "price": 320 }, "21320": { "id": 21320, @@ -219974,7 +213045,7 @@ "ranged": 65 } }, - "price": 937 + "price": 308 }, "21324": { "id": 21324, @@ -220013,7 +213084,7 @@ "ranged": 65 } }, - "price": 1462.5 + "price": 843 }, "21326": { "id": 21326, @@ -220052,7 +213123,7 @@ "ranged": 50 } }, - "price": 282.5 + "price": 219 }, "21328": { "id": 21328, @@ -220165,7 +213236,7 @@ "ranged": 50 } }, - "price": 474.5 + "price": 401 }, "21334": { "id": 21334, @@ -220204,7 +213275,7 @@ "ranged": 50 } }, - "price": 646.5 + "price": 646 }, "21336": { "id": 21336, @@ -220260,7 +213331,7 @@ "examine": "Amethyst bolt tips.", "wiki_name": "Amethyst bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Amethyst_bolt_tips", - "price": 292 + "price": 185 }, "21340": { "id": 21340, @@ -220301,7 +213372,7 @@ "highalch": 36, "weight": 0.226, "release_date": "2017-06-22", - "examine": "These will help me mine Silver, Coal and Gold.", + "examine": "These will help me mine Iron, Silver, Coal and Gold.", "wiki_name": "Mining gloves", "wiki_url": "https://oldschool.runescape.wiki/w/Mining_gloves", "equipment": { @@ -220335,7 +213406,7 @@ "highalch": 72, "weight": 0.226, "release_date": "2017-06-22", - "examine": "These will help me mine Mithril, Adamantite and Runite.", + "examine": "These will help me mine Sandstone, Granite, Mithril and Adamantite. As well as improve mining Iron, Silver, Coal and Gold.", "wiki_name": "Superior mining gloves", "wiki_url": "https://oldschool.runescape.wiki/w/Superior_mining_gloves", "equipment": { @@ -220374,7 +213445,7 @@ "examine": "Maybe I can make something with this.", "wiki_name": "Amethyst", "wiki_url": "https://oldschool.runescape.wiki/w/Amethyst", - "price": 4581.5 + "price": 3515 }, "21350": { "id": 21350, @@ -220391,7 +213462,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Amethyst arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Amethyst_arrowtips", - "price": 309 + "price": 246 }, "21352": { "id": 21352, @@ -220408,7 +213479,7 @@ "examine": "Needs a shaft.", "wiki_name": "Amethyst javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Amethyst_javelin_heads", - "price": 807 + "price": 709 }, "21354": { "id": 21354, @@ -220495,7 +213566,7 @@ "examine": "I can store my teleport scrolls in this.", "wiki_name": "Master scroll book (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Master_scroll_book#Empty", - "price": 152103.5 + "price": 152103 }, "21389": { "id": 21389, @@ -220531,7 +213602,7 @@ "highalch": 72, "weight": 0.226, "release_date": "2017-07-20", - "examine": "These will help me mine Silver, Coal, Gold, Mithril, Adamantite, Runite and Amethyst.", + "examine": "These will help me mine Runite and Amethyst. As well as improve mining for Iron, Silver, Coal, Gold, Sandstone, Granite, Mithril, Adamantite.", "wiki_name": "Expert mining gloves", "wiki_url": "https://oldschool.runescape.wiki/w/Expert_mining_gloves", "equipment": { @@ -221009,7 +214080,7 @@ "examine": "This sapling is ready to be replanted in a hardwood tree patch.", "wiki_name": "Teak sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_sapling", - "price": 485.5 + "price": 298 }, "21480": { "id": 21480, @@ -221045,7 +214116,7 @@ "examine": "Ultra-good for the smallest or largest of plants.", "wiki_name": "Ultracompost", "wiki_url": "https://oldschool.runescape.wiki/w/Ultracompost", - "price": 318.5 + "price": 678 }, "21486": { "id": 21486, @@ -221062,7 +214133,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Teak seed", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_seed", - "price": 41.5 + "price": 15 }, "21488": { "id": 21488, @@ -221079,7 +214150,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Mahogany seed", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_seed", - "price": 1346 + "price": 868 }, "21490": { "id": 21490, @@ -221096,7 +214167,7 @@ "examine": "A seaweed spore - plant in a seaweed patch.", "wiki_name": "Seaweed spore", "wiki_url": "https://oldschool.runescape.wiki/w/Seaweed_spore", - "price": 46.5 + "price": 98 }, "21504": { "id": 21504, @@ -221114,7 +214185,7 @@ "examine": "Seaweed of large size.", "wiki_name": "Giant seaweed", "wiki_url": "https://oldschool.runescape.wiki/w/Giant_seaweed", - "price": 244.5 + "price": 177 }, "21507": { "id": 21507, @@ -221162,7 +214233,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Bird house (item)", "wiki_url": "https://oldschool.runescape.wiki/w/Bird_house_(item)", - "price": 1247 + "price": 988 }, "21515": { "id": 21515, @@ -221180,7 +214251,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Oak bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_bird_house", - "price": 600.5 + "price": 1084 }, "21518": { "id": 21518, @@ -221198,7 +214269,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Willow bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_bird_house", - "price": 1314.5 + "price": 1314 }, "21521": { "id": 21521, @@ -221216,60 +214287,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Teak bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_bird_house", - "price": 1257 - }, - "21524": { - "id": 21524, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite, anagram 12)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite,_anagram_12)", - "price": 0, - "release_date": "2017-09-07" - }, - "21525": { - "id": 21525, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Does one really need a fire to stay warm here", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Does_one_really_need_a_fire_to_stay_warm_here", - "price": 0 - }, - "21526": { - "id": 21526, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 20.45N 41.35E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_20.45N_41.35E", - "price": 0 - }, - "21527": { - "id": 21527, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 23.00N 41.33E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_23.00N_41.33E", - "price": 0 + "price": 1700 }, "21528": { "id": 21528, @@ -221512,7 +214530,7 @@ "examine": "A large crystal of calcium carbonate.", "wiki_name": "Calcite", "wiki_url": "https://oldschool.runescape.wiki/w/Calcite", - "price": 34 + "price": 66 }, "21545": { "id": 21545, @@ -221529,7 +214547,7 @@ "examine": "A phosphate rich mineral dust.", "wiki_name": "Pyrophosphite", "wiki_url": "https://oldschool.runescape.wiki/w/Pyrophosphite", - "price": 59.5 + "price": 40 }, "21547": { "id": 21547, @@ -221602,7 +214620,7 @@ "examine": "A form of currency on Fossil Island.", "wiki_name": "Numulite", "wiki_url": "https://oldschool.runescape.wiki/w/Numulite", - "price": 26 + "price": 33 }, "21562": { "id": 21562, @@ -222176,7 +215194,7 @@ "defence": 75 } }, - "price": 18704732 + "price": 23100000 }, "21637": { "id": 21637, @@ -222194,7 +215212,7 @@ "examine": "It looks like this could be attached to a shield somehow.", "wiki_name": "Wyvern visage", "wiki_url": "https://oldschool.runescape.wiki/w/Wyvern_visage", - "price": 18366588 + "price": 22150002 }, "21640": { "id": 21640, @@ -222276,7 +215294,7 @@ "defence": 50 } }, - "price": 202078 + "price": 227013 }, "21646": { "id": 21646, @@ -222425,7 +215443,7 @@ } ] }, - "price": 962767.5 + "price": 1600002 }, "21652": { "id": 21652, @@ -222443,7 +215461,7 @@ "examine": "A very large net, too big to be used by hand.", "wiki_name": "Drift net", "wiki_url": "https://oldschool.runescape.wiki/w/Drift_net", - "price": 4200.5 + "price": 4200 }, "21655": { "id": 21655, @@ -222643,7 +215661,7 @@ "examine": "This would be much tastier cooked.", "wiki_name": "Uncooked mushroom pie", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_mushroom_pie", - "price": 7001 + "price": 5200 }, "21687": { "id": 21687, @@ -222677,7 +215695,7 @@ "examine": "Mmm mushroom pie.", "wiki_name": "Mushroom pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom_pie#Full", - "price": 1989 + "price": 2458 }, "21693": { "id": 21693, @@ -223049,7 +216067,7 @@ "examine": "The blackened heart of the Grotesque Guardians.", "wiki_name": "Black tourmaline core", "wiki_url": "https://oldschool.runescape.wiki/w/Black_tourmaline_core", - "price": 5454750 + "price": 7656600 }, "21733": { "id": 21733, @@ -223089,7 +216107,7 @@ "defence": 75 } }, - "price": 5775003.5 + "price": 7933584 }, "21736": { "id": 21736, @@ -223130,7 +216148,7 @@ "strength": 50 } }, - "price": 46812 + "price": 71764 }, "21739": { "id": 21739, @@ -223171,7 +216189,7 @@ "defence": 50 } }, - "price": 23685 + "price": 29950 }, "21742": { "id": 21742, @@ -223240,7 +216258,7 @@ } ] }, - "price": 715867.5 + "price": 529228 }, "21745": { "id": 21745, @@ -224056,7 +217074,7 @@ "examine": "Teleports you to the Revenant cave in the Wilderness.", "wiki_name": "Revenant cave teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Revenant_cave_teleport", - "price": 272.5 + "price": 272 }, "21804": { "id": 21804, @@ -224074,7 +217092,7 @@ "examine": "An ancient crystal containing magical energy.", "wiki_name": "Ancient crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_crystal", - "price": 168444.5 + "price": 149868 }, "21807": { "id": 21807, @@ -224110,7 +217128,7 @@ "examine": "A mysterious artifact of ancient times, of reasonable value to emblem traders.", "wiki_name": "Ancient totem", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_totem", - "price": 997993.5 + "price": 997993 }, "21813": { "id": 21813, @@ -224200,7 +217218,7 @@ "slot": "hands", "requirements": null }, - "price": 43021.5 + "price": 43021 }, "21820": { "id": 21820, @@ -224217,7 +217235,7 @@ "examine": "Ethereal essence of the revenants.", "wiki_name": "Revenant ether", "wiki_url": "https://oldschool.runescape.wiki/w/Revenant_ether", - "price": 173.5 + "price": 173 }, "21837": { "id": 21837, @@ -224267,7 +217285,7 @@ "slot": "head", "requirements": null }, - "price": 8095.5 + "price": 23000 }, "21841": { "id": 21841, @@ -224776,7 +217794,7 @@ "examine": "Used for very high level missile spells.", "wiki_name": "Wrath rune", "wiki_url": "https://oldschool.runescape.wiki/w/Wrath_rune", - "price": 259.5 + "price": 259 }, "21882": { "id": 21882, @@ -224794,7 +217812,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Dragon armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_armour_set_(lg)", - "price": 165442000 + "price": 174499998 }, "21885": { "id": 21885, @@ -224812,7 +217830,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Dragon armour set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_armour_set_(sk)", - "price": 122190944 + "price": 114640944 }, "21888": { "id": 21888, @@ -224924,7 +217942,7 @@ "defence": 60 } }, - "price": 4270000 + "price": 3116501 }, "21895": { "id": 21895, @@ -224964,7 +217982,7 @@ "defence": 60 } }, - "price": 72445989.5 + "price": 72445989 }, "21898": { "id": 21898, @@ -225148,7 +218166,7 @@ } ] }, - "price": 1949940.5 + "price": 1698183 }, "21905": { "id": 21905, @@ -225187,7 +218205,7 @@ "ranged": 64 } }, - "price": 735 + "price": 624 }, "21907": { "id": 21907, @@ -225268,7 +218286,7 @@ "examine": "A pair of dragon crossbow limbs.", "wiki_name": "Dragon limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_limbs", - "price": 1785207 + "price": 1670348 }, "21921": { "id": 21921, @@ -225286,7 +218304,7 @@ "examine": "An unstrung dragon crossbow.", "wiki_name": "Dragon crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_crossbow_(u)", - "price": 1754389.5 + "price": 1411083 }, "21924": { "id": 21924, @@ -225325,7 +218343,7 @@ "ranged": 64 } }, - "price": 1217.5 + "price": 1539 }, "21926": { "id": 21926, @@ -225364,7 +218382,7 @@ "ranged": 64 } }, - "price": 1046.5 + "price": 1406 }, "21928": { "id": 21928, @@ -225403,7 +218421,7 @@ "ranged": 64 } }, - "price": 1714.5 + "price": 1714 }, "21930": { "id": 21930, @@ -225420,7 +218438,7 @@ "examine": "Unfeathered dragon crossbow bolts.", "wiki_name": "Dragon bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bolts_(unf)", - "price": 764.5 + "price": 632 }, "21932": { "id": 21932, @@ -225459,7 +218477,7 @@ "ranged": 64 } }, - "price": 1121 + "price": 896 }, "21934": { "id": 21934, @@ -225498,7 +218516,7 @@ "ranged": 64 } }, - "price": 601.5 + "price": 677 }, "21936": { "id": 21936, @@ -225537,7 +218555,7 @@ "ranged": 64 } }, - "price": 591 + "price": 776 }, "21938": { "id": 21938, @@ -225576,7 +218594,7 @@ "ranged": 64 } }, - "price": 725 + "price": 544 }, "21940": { "id": 21940, @@ -225615,7 +218633,7 @@ "ranged": 64 } }, - "price": 872 + "price": 683 }, "21942": { "id": 21942, @@ -225654,7 +218672,7 @@ "ranged": 64 } }, - "price": 742.5 + "price": 911 }, "21944": { "id": 21944, @@ -225693,7 +218711,7 @@ "ranged": 64 } }, - "price": 951 + "price": 824 }, "21946": { "id": 21946, @@ -225828,7 +218846,7 @@ "examine": "A magic crossbow stock.", "wiki_name": "Magic stock", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_stock", - "price": 30 + "price": 491 }, "21955": { "id": 21955, @@ -225906,7 +218924,7 @@ "ranged": 64 } }, - "price": 500.5 + "price": 650 }, "21959": { "id": 21959, @@ -225984,7 +219002,7 @@ "ranged": 64 } }, - "price": 1058.5 + "price": 670 }, "21963": { "id": 21963, @@ -226023,7 +219041,7 @@ "ranged": 64 } }, - "price": 807.5 + "price": 807 }, "21965": { "id": 21965, @@ -226101,7 +219119,7 @@ "ranged": 64 } }, - "price": 897 + "price": 762 }, "21969": { "id": 21969, @@ -226140,7 +219158,7 @@ "ranged": 64 } }, - "price": 922.5 + "price": 821 }, "21971": { "id": 21971, @@ -226179,7 +219197,7 @@ "ranged": 64 } }, - "price": 1378.5 + "price": 1121 }, "21973": { "id": 21973, @@ -226236,7 +219254,7 @@ "examine": "Ground up superior dragon bones.", "wiki_name": "Crushed superior dragon bones", "wiki_url": "https://oldschool.runescape.wiki/w/Crushed_superior_dragon_bones", - "price": 12292.5 + "price": 9258 }, "21978": { "id": 21978, @@ -226254,7 +219272,7 @@ "examine": "4 doses of super anti-firebreath potion.", "wiki_name": "Super antifire potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_antifire_potion#4_dose", - "price": 14036.5 + "price": 11516 }, "21981": { "id": 21981, @@ -226272,7 +219290,7 @@ "examine": "3 doses of super anti-firebreath potion.", "wiki_name": "Super antifire potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_antifire_potion#3_dose", - "price": 4627.5 + "price": 9200 }, "21984": { "id": 21984, @@ -226308,7 +219326,7 @@ "examine": "1 dose of super anti-firebreath potion.", "wiki_name": "Super antifire potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_antifire_potion#1_dose", - "price": 3000 + "price": 2587 }, "21990": { "id": 21990, @@ -226352,7 +219370,7 @@ "examine": "Two doses of fishy super anti-firebreath potion.", "wiki_name": "Super antifire mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_antifire_mix#2_dose", - "price": 19049.5 + "price": 41320 }, "21997": { "id": 21997, @@ -226370,33 +219388,7 @@ "examine": "One dose of fishy super anti-firebreath potion.", "wiki_name": "Super antifire mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_antifire_mix#1_dose", - "price": 1.5 - }, - "22000": { - "id": 22000, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 25.48N 35.00E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_25.48N_35.00E", - "price": 0 - }, - "22001": { - "id": 22001, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dig under Ithoi's cabin", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dig_under_Ithoi's_cabin", - "price": 0 + "price": 1 }, "22002": { "id": 22002, @@ -226474,7 +219466,7 @@ "defence": 75 } }, - "price": 7797724 + "price": 6283826 }, "22006": { "id": 22006, @@ -226492,7 +219484,7 @@ "examine": "It looks like this could be attached to a shield somehow.", "wiki_name": "Skeletal visage", "wiki_url": "https://oldschool.runescape.wiki/w/Skeletal_visage", - "price": 7600000 + "price": 6283500 }, "22009": { "id": 22009, @@ -227372,7 +220364,7 @@ "examine": "A badly damaged shard of dragon metal.", "wiki_name": "Dragon metal shard", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_metal_shard", - "price": 1863205 + "price": 1670141 }, "22100": { "id": 22100, @@ -227390,7 +220382,7 @@ "examine": "A badly damaged slice of dragon metal.", "wiki_name": "Dragon metal slice", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_metal_slice", - "price": 63000000 + "price": 65300000 }, "22103": { "id": 22103, @@ -227408,7 +220400,7 @@ "examine": "A badly damaged lump of dragon metal.", "wiki_name": "Dragon metal lump", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_metal_lump", - "price": 2135959 + "price": 827500 }, "22106": { "id": 22106, @@ -227426,7 +220418,7 @@ "examine": "Very healthy.", "wiki_name": "Jar of decay", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_decay", - "price": 16893.5 + "price": 20000 }, "22109": { "id": 22109, @@ -227568,7 +220560,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Wrath talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Wrath_talisman", - "price": 125 + "price": 305 }, "22121": { "id": 22121, @@ -227606,7 +220598,7 @@ "slot": "head", "requirements": null }, - "price": 208 + "price": 45 }, "22124": { "id": 22124, @@ -227624,7 +220616,7 @@ "examine": "There's something unnatural about these bones.", "wiki_name": "Superior dragon bones", "wiki_url": "https://oldschool.runescape.wiki/w/Superior_dragon_bones", - "price": 13174.5 + "price": 9040 }, "22127": { "id": 22127, @@ -228808,7 +221800,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Maple bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_bird_house", - "price": 914.5 + "price": 914 }, "22195": { "id": 22195, @@ -228826,7 +221818,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Mahogany bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_bird_house", - "price": 1314 + "price": 1735 }, "22198": { "id": 22198, @@ -228844,7 +221836,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Yew bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_bird_house", - "price": 1209.5 + "price": 1337 }, "22201": { "id": 22201, @@ -228862,7 +221854,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Magic bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_bird_house", - "price": 1993 + "price": 2346 }, "22204": { "id": 22204, @@ -228925,7 +221917,7 @@ "examine": "4 doses of extended super anti-firebreath potion.", "wiki_name": "Extended super antifire (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_super_antifire#4_dose", - "price": 12232.5 + "price": 10776 }, "22212": { "id": 22212, @@ -228943,7 +221935,7 @@ "examine": "3 doses of extended super anti-firebreath potion.", "wiki_name": "Extended super antifire (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_super_antifire#3_dose", - "price": 10724 + "price": 8868 }, "22215": { "id": 22215, @@ -228961,7 +221953,7 @@ "examine": "2 doses of extended super anti-firebreath potion.", "wiki_name": "Extended super antifire (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_super_antifire#2_dose", - "price": 5369.5 + "price": 5369 }, "22218": { "id": 22218, @@ -228979,7 +221971,7 @@ "examine": "1 dose of extended super anti-firebreath potion.", "wiki_name": "Extended super antifire (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_super_antifire#1_dose", - "price": 3049 + "price": 2596 }, "22221": { "id": 22221, @@ -228997,7 +221989,7 @@ "examine": "Two doses of fishy extended super anti-firebreath potion.", "wiki_name": "Extended super antifire mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_super_antifire_mix#2_dose", - "price": 6388 + "price": 10403 }, "22224": { "id": 22224, @@ -229169,7 +222161,7 @@ "examine": "Use on some dragon boots to make them look fancier!", "wiki_name": "Dragon boots ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_boots_ornament_kit", - "price": 62676 + "price": 36452 }, "22234": { "id": 22234, @@ -229223,7 +222215,7 @@ "examine": "Use on a dragon platebody to make it look fancier!", "wiki_name": "Dragon platebody ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_platebody_ornament_kit", - "price": 10483100.5 + "price": 11762525 }, "22239": { "id": 22239, @@ -229241,7 +222233,7 @@ "examine": "Use on a dragon kiteshield to make it look fancier!", "wiki_name": "Dragon kiteshield ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_kiteshield_ornament_kit", - "price": 6227500 + "price": 4275504 }, "22242": { "id": 22242, @@ -229331,7 +222323,7 @@ "examine": "Use on a necklace of anguish to make it look fancier!", "wiki_name": "Anguish ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Anguish_ornament_kit", - "price": 8412600.5 + "price": 7760184 }, "22249": { "id": 22249, @@ -229407,7 +222399,7 @@ "defence": 10 } }, - "price": 2.5 + "price": 1 }, "22254": { "id": 22254, @@ -229487,7 +222479,7 @@ "defence": 40 } }, - "price": 6.5 + "price": 55 }, "22260": { "id": 22260, @@ -229527,7 +222519,7 @@ "defence": 40 } }, - "price": 134 + "price": 119 }, "22263": { "id": 22263, @@ -229567,7 +222559,7 @@ "defence": 40 } }, - "price": 561.5 + "price": 794 }, "22266": { "id": 22266, @@ -229607,7 +222599,7 @@ "defence": 40 } }, - "price": 292 + "price": 465 }, "22269": { "id": 22269, @@ -229648,7 +222640,7 @@ "defence": 10 } }, - "price": 90.5 + "price": 90 }, "22272": { "id": 22272, @@ -229689,7 +222681,7 @@ "defence": 30 } }, - "price": 206.5 + "price": 268 }, "22275": { "id": 22275, @@ -229730,7 +222722,7 @@ "defence": 40 } }, - "price": 2913.5 + "price": 2913 }, "22278": { "id": 22278, @@ -229771,7 +222763,7 @@ "defence": 40 } }, - "price": 4371.5 + "price": 5630 }, "22281": { "id": 22281, @@ -229812,7 +222804,7 @@ "defence": 40 } }, - "price": 6590 + "price": 8107 }, "22284": { "id": 22284, @@ -229999,7 +222991,7 @@ } ] }, - "price": 7686686 + "price": 8477778 }, "22292": { "id": 22292, @@ -230131,7 +223123,7 @@ } ] }, - "price": 9810595.5 + "price": 10749588 }, "22296": { "id": 22296, @@ -230214,7 +223206,7 @@ } ] }, - "price": 10316005.5 + "price": 12580144 }, "22299": { "id": 22299, @@ -230232,7 +223224,7 @@ "examine": "A mysterious artifact of ancient times, precious to emblem traders.", "wiki_name": "Ancient medallion", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_medallion", - "price": 3996020.5 + "price": 3996020 }, "22302": { "id": 22302, @@ -230268,7 +223260,7 @@ "examine": "A mysterious artifact of ancient times, emblem traders will pay you extremely handsomely for this.", "wiki_name": "Ancient relic", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_relic", - "price": 15985195.5 + "price": 15985195 }, "22308": { "id": 22308, @@ -230660,7 +223652,7 @@ } ] }, - "price": 57995990.5 + "price": 62750701 }, "22325": { "id": 22325, @@ -230772,7 +223764,7 @@ "defence": 75 } }, - "price": 18192306 + "price": 15294469 }, "22327": { "id": 22327, @@ -230812,7 +223804,7 @@ "defence": 75 } }, - "price": 16950000 + "price": 16041963 }, "22328": { "id": 22328, @@ -230852,7 +223844,7 @@ "defence": 75 } }, - "price": 11994556 + "price": 10860002 }, "22330": { "id": 22330, @@ -231446,7 +224438,7 @@ } ] }, - "price": 8997752 + "price": 10105815 }, "22370": { "id": 22370, @@ -231541,7 +224533,7 @@ "examine": "Ready to infuse a Battlestaff with the power of Nature.", "wiki_name": "Bryophyta's essence", "wiki_url": "https://oldschool.runescape.wiki/w/Bryophyta's_essence", - "price": 9000000 + "price": 10225000 }, "22374": { "id": 22374, @@ -232184,7 +225176,7 @@ "examine": "A coagulated concoction.", "wiki_name": "Bloody bracer", "wiki_url": "https://oldschool.runescape.wiki/w/Bloody_bracer", - "price": 3001 + "price": 901 }, "22433": { "id": 22433, @@ -232351,7 +225343,7 @@ "examine": "A set containing a Justiciar faceguard, Justiciar chestguard and Justiciar legguards.", "wiki_name": "Justiciar armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Justiciar_armour_set", - "price": 47712500.5 + "price": 42482558 }, "22441": { "id": 22441, @@ -232383,7 +225375,7 @@ "examine": "I need another ingredient to finish this blood potion.", "wiki_name": "Cadantine blood potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Cadantine_blood_potion_(unf)", - "price": 22015.5 + "price": 19313 }, "22446": { "id": 22446, @@ -232401,7 +225393,7 @@ "examine": "A glass vial containing blood.", "wiki_name": "Vial of blood", "wiki_url": "https://oldschool.runescape.wiki/w/Vial_of_blood", - "price": 18648.5 + "price": 13416 }, "22449": { "id": 22449, @@ -232419,7 +225411,7 @@ "examine": "4 doses of battlemage potion.", "wiki_name": "Battlemage potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Battlemage_potion#4_dose", - "price": 24234.5 + "price": 21392 }, "22452": { "id": 22452, @@ -232437,7 +225429,7 @@ "examine": "3 doses of battlemage potion.", "wiki_name": "Battlemage potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Battlemage_potion#3_dose", - "price": 18157 + "price": 16045 }, "22455": { "id": 22455, @@ -232473,7 +225465,7 @@ "examine": "1 dose of battlemage potion.", "wiki_name": "Battlemage potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Battlemage_potion#1_dose", - "price": 3465.5 + "price": 4545 }, "22461": { "id": 22461, @@ -232491,7 +225483,7 @@ "examine": "4 doses of bastion potion.", "wiki_name": "Bastion potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Bastion_potion#4_dose", - "price": 29708.5 + "price": 25749 }, "22464": { "id": 22464, @@ -232509,7 +225501,7 @@ "examine": "3 doses of bastion potion.", "wiki_name": "Bastion potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Bastion_potion#3_dose", - "price": 21182.5 + "price": 18614 }, "22467": { "id": 22467, @@ -232591,7 +225583,7 @@ "examine": "Perhaps this could be used to create a defensive weapon.", "wiki_name": "Avernic defender hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Avernic_defender_hilt", - "price": 63557729 + "price": 55843635 }, "22481": { "id": 22481, @@ -232659,7 +225651,7 @@ } ] }, - "price": 88517552.5 + "price": 83860954 }, "22486": { "id": 22486, @@ -232735,7 +225727,7 @@ } ] }, - "price": 1199809502.5 + "price": 1199809502 }, "22494": { "id": 22494, @@ -233444,7 +226436,7 @@ } ] }, - "price": 3310730.5 + "price": 3174297 }, "22545": { "id": 22545, @@ -233583,7 +226575,7 @@ } ] }, - "price": 13400436 + "price": 16700265 }, "22550": { "id": 22550, @@ -233817,7 +226809,7 @@ "slot": "neck", "requirements": null }, - "price": 644647.5 + "price": 550266 }, "22586": { "id": 22586, @@ -233902,7 +226894,7 @@ "examine": "A red salt, that when burned with other salts provides various benefits.", "wiki_name": "Te salt", "wiki_url": "https://oldschool.runescape.wiki/w/Te_salt", - "price": 128.5 + "price": 128 }, "22595": { "id": 22595, @@ -233919,7 +226911,7 @@ "examine": "A blue salt, that when burned with other salts provides various benefits.", "wiki_name": "Efh salt", "wiki_url": "https://oldschool.runescape.wiki/w/Efh_salt", - "price": 96.5 + "price": 135 }, "22597": { "id": 22597, @@ -233953,7 +226945,7 @@ "examine": "The crushed rock seems to glow and is cold to the touch.", "wiki_name": "Icy basalt", "wiki_url": "https://oldschool.runescape.wiki/w/Icy_basalt", - "price": 1071 + "price": 1717 }, "22601": { "id": 22601, @@ -233970,7 +226962,7 @@ "examine": "The crushed rock seems to glow and is warm to the touch.", "wiki_name": "Stony basalt", "wiki_url": "https://oldschool.runescape.wiki/w/Stony_basalt", - "price": 1212.5 + "price": 1212 }, "22603": { "id": 22603, @@ -233987,7 +226979,7 @@ "examine": "The crushed rock looks like it may react to other materials.", "wiki_name": "Basalt", "wiki_url": "https://oldschool.runescape.wiki/w/Basalt", - "price": 848.5 + "price": 997 }, "22606": { "id": 22606, @@ -235623,7 +228615,7 @@ } ] }, - "price": 46059 + "price": 37809 }, "22734": { "id": 22734, @@ -235698,7 +228690,7 @@ } ] }, - "price": 43504 + "price": 51004 }, "22737": { "id": 22737, @@ -235848,7 +228840,7 @@ } ] }, - "price": 40225 + "price": 44530 }, "22743": { "id": 22743, @@ -236271,7 +229263,7 @@ "examine": "I wonder how Wyrms have bones...", "wiki_name": "Wyrm bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wyrm_bones", - "price": 2214 + "price": 1561 }, "22783": { "id": 22783, @@ -236289,7 +229281,7 @@ "examine": "The bones of a ferocious Drake.", "wiki_name": "Drake bones", "wiki_url": "https://oldschool.runescape.wiki/w/Drake_bones", - "price": 4558 + "price": 4000 }, "22786": { "id": 22786, @@ -236307,7 +229299,7 @@ "examine": "The bones of a hydra.", "wiki_name": "Hydra bones", "wiki_url": "https://oldschool.runescape.wiki/w/Hydra_bones", - "price": 7751 + "price": 6047 }, "22789": { "id": 22789, @@ -236325,7 +229317,7 @@ "examine": "This would be much tastier cooked.", "wiki_name": "Uncooked dragonfruit pie", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_dragonfruit_pie", - "price": 1870.5 + "price": 1870 }, "22792": { "id": 22792, @@ -236359,7 +229351,7 @@ "examine": "Mmm dragonfruit pie.", "wiki_name": "Dragonfruit pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonfruit_pie#Full", - "price": 300 + "price": 523 }, "22798": { "id": 22798, @@ -236463,7 +229455,7 @@ } ] }, - "price": 5703 + "price": 6370 }, "22806": { "id": 22806, @@ -236530,7 +229522,7 @@ } ] }, - "price": 4192.5 + "price": 5963 }, "22808": { "id": 22808, @@ -236597,7 +229589,7 @@ } ] }, - "price": 4862.5 + "price": 6399 }, "22810": { "id": 22810, @@ -236664,7 +229656,7 @@ } ] }, - "price": 7067.5 + "price": 7067 }, "22812": { "id": 22812, @@ -236839,7 +229831,7 @@ "examine": "Apparently Cormorants like to eat this stuff...", "wiki_name": "Fish chunks", "wiki_url": "https://oldschool.runescape.wiki/w/Fish_chunks", - "price": 8.5 + "price": 12 }, "22820": { "id": 22820, @@ -236871,7 +229863,7 @@ "examine": "A large Bluegill.", "wiki_name": "Bluegill", "wiki_url": "https://oldschool.runescape.wiki/w/Bluegill", - "price": 37.5 + "price": 10 }, "22829": { "id": 22829, @@ -236889,7 +229881,7 @@ "examine": "The most common of the tench.", "wiki_name": "Common tench", "wiki_url": "https://oldschool.runescape.wiki/w/Common_tench", - "price": 751 + "price": 629 }, "22832": { "id": 22832, @@ -236925,7 +229917,7 @@ "examine": "A descendant of the salamander family.", "wiki_name": "Greater siren", "wiki_url": "https://oldschool.runescape.wiki/w/Greater_siren", - "price": 82.5 + "price": 136 }, "22838": { "id": 22838, @@ -237278,7 +230270,7 @@ "examine": "This sapling is ready to be replanted in a Celastrus patch.", "wiki_name": "Celastrus sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Celastrus_sapling", - "price": 75547 + "price": 65531 }, "22859": { "id": 22859, @@ -237296,7 +230288,7 @@ "examine": "This sapling is ready to be replanted in a Redwood patch.", "wiki_name": "Redwood sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Redwood_sapling", - "price": 24102 + "price": 16074 }, "22862": { "id": 22862, @@ -237342,7 +230334,7 @@ "examine": "This sapling is ready to be replanted in a fruit tree patch.", "wiki_name": "Dragonfruit sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonfruit_sapling", - "price": 192139.5 + "price": 168655 }, "22869": { "id": 22869, @@ -237359,7 +230351,7 @@ "examine": "For growing a Celastrus tree.", "wiki_name": "Celastrus seed", "wiki_url": "https://oldschool.runescape.wiki/w/Celastrus_seed", - "price": 74998.5 + "price": 63526 }, "22871": { "id": 22871, @@ -237376,7 +230368,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Redwood tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Redwood_tree_seed", - "price": 25199.5 + "price": 15040 }, "22873": { "id": 22873, @@ -237393,7 +230385,7 @@ "examine": "A Potato cactus seed - plant in a cactus patch.", "wiki_name": "Potato cactus seed", "wiki_url": "https://oldschool.runescape.wiki/w/Potato_cactus_seed", - "price": 1.5 + "price": 58 }, "22875": { "id": 22875, @@ -237424,7 +230416,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Dragonfruit tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonfruit_tree_seed", - "price": 192358 + "price": 164591 }, "22879": { "id": 22879, @@ -237441,7 +230433,7 @@ "examine": "A snape grass seed - plant in an allotment.", "wiki_name": "Snape grass seed", "wiki_url": "https://oldschool.runescape.wiki/w/Snape_grass_seed", - "price": 7079 + "price": 4300 }, "22881": { "id": 22881, @@ -237500,7 +230492,7 @@ "examine": "A white lily seed - plant in a flower patch.", "wiki_name": "White lily seed", "wiki_url": "https://oldschool.runescape.wiki/w/White_lily_seed", - "price": 7031.5 + "price": 5282 }, "22929": { "id": 22929, @@ -237707,7 +230699,7 @@ "examine": "A teleport to the Kebos Battlefront.", "wiki_name": "Battlefront teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Battlefront_teleport_(tablet)", - "price": 3005.5 + "price": 1827 }, "22951": { "id": 22951, @@ -237750,7 +230742,7 @@ "ranged": 70 } }, - "price": 511352.5 + "price": 615307 }, "22954": { "id": 22954, @@ -237790,7 +230782,7 @@ "prayer": 60 } }, - "price": 2241778 + "price": 2762362 }, "22957": { "id": 22957, @@ -237808,7 +230800,7 @@ "examine": "The claw of a ferocious drake. They could be combined with the boots of stone.", "wiki_name": "Drake's claw", "wiki_url": "https://oldschool.runescape.wiki/w/Drake's_claw", - "price": 505703 + "price": 586757 }, "22960": { "id": 22960, @@ -237862,7 +230854,7 @@ "examine": "The claw of a ferocious hydra.", "wiki_name": "Hydra's claw", "wiki_url": "https://oldschool.runescape.wiki/w/Hydra's_claw", - "price": 42798692 + "price": 63000000 }, "22969": { "id": 22969, @@ -237942,7 +230934,7 @@ "slot": "ring", "requirements": null }, - "price": 4186170 + "price": 4418419 }, "22978": { "id": 22978, @@ -238017,7 +231009,7 @@ } ] }, - "price": 48739681 + "price": 68882376 }, "22981": { "id": 22981, @@ -238072,7 +231064,7 @@ "examine": "Hide from a ferocious Hydra. It looks pretty tough.", "wiki_name": "Hydra leather", "wiki_url": "https://oldschool.runescape.wiki/w/Hydra_leather", - "price": 12064593 + "price": 9598864 }, "22986": { "id": 22986, @@ -238126,7 +231118,7 @@ "examine": "Tail of a hydra, can be attached to a bonecrusher.", "wiki_name": "Hydra tail", "wiki_url": "https://oldschool.runescape.wiki/w/Hydra_tail", - "price": 115203 + "price": 119197 }, "22991": { "id": 22991, @@ -238172,7 +231164,7 @@ "examine": "It's a bucket that can hold a lot of compost at once.", "wiki_name": "Bottomless compost bucket (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Bottomless_compost_bucket#Empty", - "price": 1069298.5 + "price": 1156547 }, "22997": { "id": 22997, @@ -238204,7 +231196,7 @@ "examine": "Several dragonfruit were squeezed into this vial.", "wiki_name": "Bottled dragonbreath (Unpowered)", "wiki_url": "https://oldschool.runescape.wiki/w/Bottled_dragonbreath#Unpowered", - "price": 13012.5 + "price": 10683 }, "23002": { "id": 23002, @@ -238222,7 +231214,7 @@ "examine": "Several dragonfruit were squeezed into this vial and it has been powered by the fires of Mount Karuulm.", "wiki_name": "Bottled dragonbreath (Powered)", "wiki_url": "https://oldschool.runescape.wiki/w/Bottled_dragonbreath#Powered", - "price": 13619.5 + "price": 13619 }, "23007": { "id": 23007, @@ -238472,7 +231464,7 @@ "slayer": 44 } }, - "price": 172.5 + "price": 835 }, "23040": { "id": 23040, @@ -238510,32 +231502,6 @@ "highalch": 0, "price": 0 }, - "23045": { - "id": 23045, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The effects of this fire are magnified", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_effects_of_this_fire_are_magnified", - "price": 0 - }, - "23046": { - "id": 23046, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Clap your hands north of Mount Karuulm", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Clap_your_hands_north_of_Mount_Karuulm", - "price": 0 - }, "23047": { "id": 23047, "name": "Mystic hat (dusk)", @@ -238575,7 +231541,7 @@ "defence": 20 } }, - "price": 16940.5 + "price": 32431 }, "23050": { "id": 23050, @@ -238616,7 +231582,7 @@ "defence": 20 } }, - "price": 75766.5 + "price": 75766 }, "23053": { "id": 23053, @@ -238657,7 +231623,7 @@ "defence": 20 } }, - "price": 130619.5 + "price": 84745 }, "23056": { "id": 23056, @@ -238698,7 +231664,7 @@ "defence": 20 } }, - "price": 11237 + "price": 20231 }, "23059": { "id": 23059, @@ -238739,7 +231705,7 @@ "defence": 20 } }, - "price": 24250 + "price": 27374 }, "23062": { "id": 23062, @@ -238771,7 +231737,7 @@ "examine": "Looks unstable.", "wiki_name": "Jar of chemicals", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_chemicals", - "price": 45389 + "price": 89313 }, "23067": { "id": 23067, @@ -239209,7 +232175,7 @@ "examine": "A set containing light mystic hat, robe top and bottom, gloves and boots.", "wiki_name": "Mystic set (light)", "wiki_url": "https://oldschool.runescape.wiki/w/Mystic_set_(light)", - "price": 156390 + "price": 178599 }, "23113": { "id": 23113, @@ -239263,7 +232229,7 @@ "examine": "A set containing dusk mystic hat, robe top and bottom, gloves and boots.", "wiki_name": "Mystic set (dusk)", "wiki_url": "https://oldschool.runescape.wiki/w/Mystic_set_(dusk)", - "price": 257733 + "price": 302754 }, "23122": { "id": 23122, @@ -239370,357 +232336,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Clue_bottle_(beginner)", "price": 0 }, - "23131": { - "id": 23131, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - CLASH ION", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_CLASH_ION", - "price": 0 - }, - "23133": { - "id": 23133, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - CALAMARI MADE MUD", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_CALAMARI_MADE_MUD", - "price": 0 - }, - "23135": { - "id": 23135, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 17.39N 37.16W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_17.39N_37.16W", - "price": 0 - }, - "23136": { - "id": 23136, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 02.16N 12.07E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_02.16N_12.07E", - "price": 0 - }, - "23137": { - "id": 23137, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 23.01N 41.33E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_23.01N_41.33E", - "price": 0 - }, - "23144": { - "id": 23144, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - More resources than I can handle", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_More_resources_than_I_can_handle", - "price": 0 - }, - "23145": { - "id": 23145, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Observing someone in a swamp", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Observing_someone_in_a_swamp", - "price": 0 - }, - "23146": { - "id": 23146, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 17.58N 19.05E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_17.58N_19.05E", - "price": 0 - }, - "23147": { - "id": 23147, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 24.15N 13.30E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_24.15N_13.30E", - "price": 0 - }, - "23148": { - "id": 23148, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 20.24N 03.52W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_20.24N_03.52W", - "price": 0 - }, - "23149": { - "id": 23149, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the boxes next to a chest that needs a crystal key", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_boxes_next_to_a_chest_that_needs_a_crystal_key", - "price": 0 - }, - "23150": { - "id": 23150, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the eastern bookcase in Father Urhney's house", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_eastern_bookcase_in_Father_Urhney's_house", - "price": 0 - }, - "23151": { - "id": 23151, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the chest in Fred the Farmer's bedroom", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_chest_in_Fred_the_Farmer's_bedroom", - "price": 0 - }, - "23152": { - "id": 23152, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the single crate in Horvik's smithy in Varrock", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_single_crate_in_Horvik's_smithy_in_Varrock", - "price": 0 - }, - "23153": { - "id": 23153, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crate in Rommiks crafting shop in Rimmington", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crate_in_Rommiks_crafting_shop_in_Rimmington", - "price": 0 - }, - "23154": { - "id": 23154, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in Falador General store", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_Falador_General_store", - "price": 0 - }, - "23161": { - "id": 23161, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Charles at Port Piscarilius", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Charles_at_Port_Piscarilius", - "price": 0 - }, - "23162": { - "id": 23162, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Morgan in his house at Draynor Village", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Morgan_in_his_house_at_Draynor_Village", - "price": 0 - }, - "23163": { - "id": 23163, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Wayne at Wayne's Chains in Falador", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Wayne_at_Wayne's_Chains_in_Falador", - "price": 0 - }, - "23164": { - "id": 23164, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Ali the Leaflet Dropper", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Ali_the_Leaflet_Dropper", - "price": 0 - }, - "23165": { - "id": 23165, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to Turael in Burthorpe", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_Turael_in_Burthorpe", - "price": 0 - }, - "23166": { - "id": 23166, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Talk to the cook in the Blue Moon Inn", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Talk_to_the_cook_in_the_Blue_Moon_Inn", - "price": 0 - }, - "23167": { - "id": 23167, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 16.45N 03.05W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_16.45N_03.05W", - "price": 0 - }, - "23168": { - "id": 23168, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 19.09N 21.58E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_19.09N_21.58E", - "price": 0 - }, - "23169": { - "id": 23169, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 24.22N 17.15E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_24.22N_17.15E", - "price": 0 - }, - "23170": { - "id": 23170, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - BSOPME MZETQPS", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_BSOPME_MZETQPS", - "price": 0 - }, - "23172": { - "id": 23172, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - IWPPLQTP", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_IWPPLQTP", - "price": 0 - }, "23182": { "id": 23182, "name": "Clue scroll (beginner)", @@ -239796,7 +232411,7 @@ "slot": "ring", "requirements": null }, - "price": 3637000 + "price": 5165356 }, "23188": { "id": 23188, @@ -239837,7 +232452,7 @@ "ranged": 70 } }, - "price": 341949.5 + "price": 321502 }, "23191": { "id": 23191, @@ -239878,7 +232493,7 @@ "ranged": 70 } }, - "price": 351358.5 + "price": 264569 }, "23194": { "id": 23194, @@ -239919,7 +232534,7 @@ "ranged": 70 } }, - "price": 400388.5 + "price": 328335 }, "23197": { "id": 23197, @@ -240001,7 +232616,7 @@ "ranged": 70 } }, - "price": 408337.5 + "price": 345250 }, "23203": { "id": 23203, @@ -240042,7 +232657,7 @@ "ranged": 70 } }, - "price": 244494.5 + "price": 244494 }, "23206": { "id": 23206, @@ -240115,7 +232730,7 @@ } ] }, - "price": 6612 + "price": 16030 }, "23209": { "id": 23209, @@ -240154,7 +232769,7 @@ "defence": 40 } }, - "price": 50020 + "price": 38979 }, "23212": { "id": 23212, @@ -240193,7 +232808,7 @@ "defence": 40 } }, - "price": 37963.5 + "price": 37963 }, "23215": { "id": 23215, @@ -240271,7 +232886,7 @@ "defence": 40 } }, - "price": 36758 + "price": 43154 }, "23221": { "id": 23221, @@ -240348,7 +232963,7 @@ "slot": "cape", "requirements": null }, - "price": 4222 + "price": 43309 }, "23227": { "id": 23227, @@ -240366,7 +232981,7 @@ "examine": "Use on the rune defender to trim it with gold.", "wiki_name": "Rune defender ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_defender_ornament_kit", - "price": 8698 + "price": 10686 }, "23230": { "id": 23230, @@ -240421,7 +233036,7 @@ "examine": "Use on the TzHaar-ket-om to trim and spike it.", "wiki_name": "Tzhaar-ket-om ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Tzhaar-ket-om_ornament_kit", - "price": 8837 + "price": 5189 }, "23235": { "id": 23235, @@ -240503,7 +233118,7 @@ "examine": "Use on the Berserker necklace to make it look fancier!", "wiki_name": "Berserker necklace ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Berserker_necklace_ornament_kit", - "price": 14571.5 + "price": 10388 }, "23240": { "id": 23240, @@ -240577,7 +233192,7 @@ "defence": 65 } }, - "price": 65823231.5 + "price": 90500000 }, "23245": { "id": 23245, @@ -240628,7 +233243,7 @@ "slot": "legs", "requirements": null }, - "price": 2615175.5 + "price": 3313967 }, "23249": { "id": 23249, @@ -240668,7 +233283,7 @@ "ranged": 40 } }, - "price": 182499.5 + "price": 233133 }, "23252": { "id": 23252, @@ -240706,7 +233321,7 @@ "slot": "head", "requirements": null }, - "price": 87767 + "price": 97673 }, "23255": { "id": 23255, @@ -240744,7 +233359,7 @@ "slot": "head", "requirements": null }, - "price": 32533.5 + "price": 32533 }, "23258": { "id": 23258, @@ -240782,7 +233397,7 @@ "slot": "head", "requirements": null }, - "price": 649555.5 + "price": 724551 }, "23261": { "id": 23261, @@ -240821,7 +233436,7 @@ "ranged": 40 } }, - "price": 6445333 + "price": 6944999 }, "23264": { "id": 23264, @@ -240861,7 +233476,7 @@ "defence": 40 } }, - "price": 2823376.5 + "price": 3480001 }, "23267": { "id": 23267, @@ -240900,7 +233515,7 @@ "ranged": 40 } }, - "price": 12589999.5 + "price": 12589999 }, "23270": { "id": 23270, @@ -240938,7 +233553,7 @@ "slot": "head", "requirements": null }, - "price": 7295 + "price": 5934 }, "23273": { "id": 23273, @@ -240976,7 +233591,7 @@ "slot": "head", "requirements": null }, - "price": 23327.5 + "price": 23327 }, "23276": { "id": 23276, @@ -241051,7 +233666,7 @@ } ] }, - "price": 6770500 + "price": 6337043 }, "23279": { "id": 23279, @@ -241126,7 +233741,7 @@ } ] }, - "price": 6515000 + "price": 7101109 }, "23282": { "id": 23282, @@ -241191,7 +233806,7 @@ } ] }, - "price": 5359000.5 + "price": 5550000 }, "23285": { "id": 23285, @@ -241228,7 +233843,7 @@ "slot": "feet", "requirements": null }, - "price": 1172867 + "price": 940000 }, "23288": { "id": 23288, @@ -241265,7 +233880,7 @@ "slot": "feet", "requirements": null }, - "price": 73810 + "price": 83892 }, "23291": { "id": 23291, @@ -241302,7 +233917,7 @@ "slot": "feet", "requirements": null }, - "price": 43811.5 + "price": 36820 }, "23294": { "id": 23294, @@ -241339,7 +233954,7 @@ "slot": "feet", "requirements": null }, - "price": 29079.5 + "price": 33821 }, "23297": { "id": 23297, @@ -241413,7 +234028,7 @@ "slot": "cape", "requirements": null }, - "price": 262425 + "price": 392500 }, "23303": { "id": 23303, @@ -241487,7 +234102,7 @@ "slot": "legs", "requirements": null }, - "price": 17181.5 + "price": 14750 }, "23309": { "id": 23309, @@ -241598,7 +234213,7 @@ "slot": "body", "requirements": null }, - "price": 6428 + "price": 4940 }, "23318": { "id": 23318, @@ -241635,7 +234250,7 @@ "slot": "legs", "requirements": null }, - "price": 13288.5 + "price": 13288 }, "23321": { "id": 23321, @@ -241652,7 +234267,7 @@ "examine": "Use on a rune scimitar to make it look fancier!", "wiki_name": "Rune scimitar ornament kit (guthix)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_scimitar_ornament_kit_(guthix)", - "price": 5172 + "price": 3322 }, "23324": { "id": 23324, @@ -241669,7 +234284,7 @@ "examine": "Use on a rune scimitar to make it look fancier!", "wiki_name": "Rune scimitar ornament kit (saradomin)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_scimitar_ornament_kit_(saradomin)", - "price": 32522 + "price": 15798 }, "23327": { "id": 23327, @@ -241686,7 +234301,7 @@ "examine": "Use on a rune scimitar to make it look fancier!", "wiki_name": "Rune scimitar ornament kit (zamorak)", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_scimitar_ornament_kit_(zamorak)", - "price": 16661.5 + "price": 12941 }, "23330": { "id": 23330, @@ -241937,7 +234552,7 @@ "defence": 65 } }, - "price": 50000.5 + "price": 2147483647 }, "23339": { "id": 23339, @@ -241978,7 +234593,7 @@ "defence": 65 } }, - "price": 1073741824 + "price": 2147483647 }, "23342": { "id": 23342, @@ -242061,7 +234676,7 @@ } ] }, - "price": 1145000000 + "price": 1540833500 }, "23345": { "id": 23345, @@ -242102,7 +234717,7 @@ "defence": 65 } }, - "price": 1499743166.5 + "price": 1998000944 }, "23348": { "id": 23348, @@ -242120,7 +234735,7 @@ "examine": "Use on a tormented bracelet to make it look fancier!", "wiki_name": "Tormented ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Tormented_ornament_kit", - "price": 3793414 + "price": 3129634 }, "23351": { "id": 23351, @@ -242158,7 +234773,7 @@ "slot": "cape", "requirements": null }, - "price": 4169234.5 + "price": 4449951 }, "23354": { "id": 23354, @@ -242195,7 +234810,7 @@ "slot": "neck", "requirements": null }, - "price": 364035.5 + "price": 455867 }, "23357": { "id": 23357, @@ -242261,7 +234876,7 @@ } ] }, - "price": 86871.5 + "price": 143000 }, "23360": { "id": 23360, @@ -242326,7 +234941,7 @@ } ] }, - "price": 2104339.5 + "price": 3428574 }, "23363": { "id": 23363, @@ -242406,7 +235021,7 @@ } ] }, - "price": 97551.5 + "price": 145862 }, "23366": { "id": 23366, @@ -242445,7 +235060,7 @@ "defence": 10 } }, - "price": 2097 + "price": 3644 }, "23369": { "id": 23369, @@ -242484,7 +235099,7 @@ "defence": 10 } }, - "price": 2149.5 + "price": 2190 }, "23372": { "id": 23372, @@ -242562,7 +235177,7 @@ "defence": 10 } }, - "price": 2100.5 + "price": 2122 }, "23378": { "id": 23378, @@ -242601,7 +235216,7 @@ "defence": 10 } }, - "price": 3582 + "price": 15063 }, "23381": { "id": 23381, @@ -242640,7 +235255,7 @@ "ranged": 1 } }, - "price": 78839.5 + "price": 129834 }, "23384": { "id": 23384, @@ -242677,7 +235292,7 @@ "slot": "legs", "requirements": null }, - "price": 7964.5 + "price": 27055 }, "23387": { "id": 23387, @@ -242694,7 +235309,7 @@ "examine": "Teleports you to Watson's house in Great Kourend.", "wiki_name": "Watson teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Watson_teleport", - "price": 11454.5 + "price": 10786 }, "23389": { "id": 23389, @@ -242732,7 +235347,7 @@ "slot": "feet", "requirements": null }, - "price": 765188.5 + "price": 900546 }, "23392": { "id": 23392, @@ -242810,7 +235425,7 @@ "defence": 30 } }, - "price": 9081.5 + "price": 9082 }, "23398": { "id": 23398, @@ -242888,7 +235503,7 @@ "defence": 30 } }, - "price": 9258 + "price": 10733 }, "23404": { "id": 23404, @@ -242965,7 +235580,7 @@ "slot": "head", "requirements": null }, - "price": 3106 + "price": 58500 }, "23410": { "id": 23410, @@ -243002,7 +235617,7 @@ "slot": "cape", "requirements": null }, - "price": 22245.5 + "price": 34000 }, "23413": { "id": 23413, @@ -243659,7 +236274,7 @@ "examine": "Opens Larran's chests in the Wilderness.", "wiki_name": "Larran's key", "wiki_url": "https://oldschool.runescape.wiki/w/Larran's_key", - "price": 136532 + "price": 110910 }, "23495": { "id": 23495, @@ -243705,7 +236320,7 @@ "examine": "It looks like the key to a chest.", "wiki_name": "Grubby key", "wiki_url": "https://oldschool.runescape.wiki/w/Grubby_key", - "price": 41410 + "price": 35668 }, "23502": { "id": 23502, @@ -243885,7 +236500,7 @@ "slot": "head", "requirements": null }, - "price": 16454.5 + "price": 23000 }, "23525": { "id": 23525, @@ -243903,7 +236518,7 @@ "examine": "Stop staring!", "wiki_name": "Jar of eyes", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_eyes", - "price": 252325.5 + "price": 463635 }, "23528": { "id": 23528, @@ -243978,7 +236593,7 @@ } ] }, - "price": 235289 + "price": 249939 }, "23533": { "id": 23533, @@ -246050,7 +238665,7 @@ "examine": "A set containing dragonstone helmet, platebody, platelegs, boots and gauntlets.", "wiki_name": "Dragonstone armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonstone_armour_set", - "price": 10972500 + "price": 9515062 }, "23670": { "id": 23670, @@ -246447,7 +239062,7 @@ "examine": "4 doses of divine super combat potion.", "wiki_name": "Divine super combat potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_combat_potion#4_dose", - "price": 20459.5 + "price": 27628 }, "23688": { "id": 23688, @@ -246465,7 +239080,7 @@ "examine": "3 doses of divine super combat potion.", "wiki_name": "Divine super combat potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_combat_potion#3_dose", - "price": 15497.5 + "price": 19431 }, "23691": { "id": 23691, @@ -246483,7 +239098,7 @@ "examine": "2 doses of divine super combat potion.", "wiki_name": "Divine super combat potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_combat_potion#2_dose", - "price": 10520.5 + "price": 14068 }, "23694": { "id": 23694, @@ -246501,7 +239116,7 @@ "examine": "1 dose of divine super combat potion.", "wiki_name": "Divine super combat potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_combat_potion#1_dose", - "price": 5015.5 + "price": 6707 }, "23697": { "id": 23697, @@ -246519,7 +239134,7 @@ "examine": "4 doses of divine super attack potion.", "wiki_name": "Divine super attack potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_attack_potion#4_dose", - "price": 2218.5 + "price": 2469 }, "23700": { "id": 23700, @@ -246537,7 +239152,7 @@ "examine": "3 doses of divine super attack potion.", "wiki_name": "Divine super attack potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_attack_potion#3_dose", - "price": 227.5 + "price": 1409 }, "23703": { "id": 23703, @@ -246555,7 +239170,7 @@ "examine": "2 doses of divine super attack potion.", "wiki_name": "Divine super attack potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_attack_potion#2_dose", - "price": 632.5 + "price": 633 }, "23706": { "id": 23706, @@ -246573,7 +239188,7 @@ "examine": "1 dose of divine super attack potion.", "wiki_name": "Divine super attack potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_attack_potion#1_dose", - "price": 492 + "price": 302 }, "23709": { "id": 23709, @@ -246609,7 +239224,7 @@ "examine": "3 doses of divine super strength potion.", "wiki_name": "Divine super strength potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_strength_potion#3_dose", - "price": 5295.5 + "price": 4103 }, "23715": { "id": 23715, @@ -246627,7 +239242,7 @@ "examine": "2 doses of divine super strength potion.", "wiki_name": "Divine super strength potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_strength_potion#2_dose", - "price": 2475 + "price": 6204 }, "23718": { "id": 23718, @@ -246645,7 +239260,7 @@ "examine": "1 dose of divine super strength potion.", "wiki_name": "Divine super strength potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_strength_potion#1_dose", - "price": 2225 + "price": 24777 }, "23721": { "id": 23721, @@ -246663,7 +239278,7 @@ "examine": "4 doses of divine super defence potion.", "wiki_name": "Divine super defence potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_defence_potion#4_dose", - "price": 5478 + "price": 7815 }, "23724": { "id": 23724, @@ -246681,7 +239296,7 @@ "examine": "3 doses of divine super defence potion.", "wiki_name": "Divine super defence potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_defence_potion#3_dose", - "price": 4082.5 + "price": 2626 }, "23727": { "id": 23727, @@ -246699,7 +239314,7 @@ "examine": "2 doses of divine super defence potion.", "wiki_name": "Divine super defence potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_defence_potion#2_dose", - "price": 7675.5 + "price": 5750 }, "23730": { "id": 23730, @@ -246735,7 +239350,7 @@ "examine": "4 doses of divine ranging potion.", "wiki_name": "Divine ranging potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_ranging_potion#4_dose", - "price": 4580.5 + "price": 6349 }, "23736": { "id": 23736, @@ -246753,7 +239368,7 @@ "examine": "3 doses of divine ranging potion.", "wiki_name": "Divine ranging potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_ranging_potion#3_dose", - "price": 3403 + "price": 5001 }, "23739": { "id": 23739, @@ -246771,7 +239386,7 @@ "examine": "2 doses of divine ranging potion.", "wiki_name": "Divine ranging potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_ranging_potion#2_dose", - "price": 2113.5 + "price": 3463 }, "23742": { "id": 23742, @@ -246789,7 +239404,7 @@ "examine": "1 dose of divine ranging potion.", "wiki_name": "Divine ranging potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_ranging_potion#1_dose", - "price": 1132 + "price": 1820 }, "23745": { "id": 23745, @@ -246807,7 +239422,7 @@ "examine": "4 doses of divine magic potion.", "wiki_name": "Divine magic potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_magic_potion#4_dose", - "price": 1777 + "price": 962 }, "23748": { "id": 23748, @@ -246825,7 +239440,7 @@ "examine": "3 doses of divine magic potion.", "wiki_name": "Divine magic potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_magic_potion#3_dose", - "price": 906 + "price": 342 }, "23751": { "id": 23751, @@ -246843,7 +239458,7 @@ "examine": "2 doses of divine magic potion.", "wiki_name": "Divine magic potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_magic_potion#2_dose", - "price": 863.5 + "price": 322 }, "23754": { "id": 23754, @@ -247061,19 +239676,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_impling_jar", "price": 0 }, - "23770": { - "id": 23770, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 05.18N 06.48W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_05.18N_06.48W", - "price": 0 - }, "23771": { "id": 23771, "name": "Prifddinas teleport", @@ -247512,58 +240114,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Orb_of_light_(Song_of_the_Elves)", "price": 0 }, - "23814": { - "id": 23814, - "name": "Clue scroll", - "cost": 30, - "lowalch": 12, - "highalch": 18, - "weight": 0.02, - "release_date": "2019-07-25", - "examine": "A scroll that Baxtorian gave to me. It should lead me to Lady Meilyr.", - "wiki_name": "Clue scroll (Song of the Elves) (1)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(Song_of_the_Elves)#1", - "price": 0 - }, - "23815": { - "id": 23815, - "name": "Clue scroll", - "cost": 30, - "lowalch": 12, - "highalch": 18, - "weight": 0.02, - "release_date": "2019-07-25", - "examine": "A scroll that I found while searching for Lady Meilyr.", - "wiki_name": "Clue scroll (Song of the Elves) (2)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(Song_of_the_Elves)#2", - "price": 0 - }, - "23816": { - "id": 23816, - "name": "Clue scroll", - "cost": 30, - "lowalch": 12, - "highalch": 18, - "weight": 0.02, - "release_date": "2019-07-25", - "examine": "A scroll that I found while searching for Lady Meilyr.", - "wiki_name": "Clue scroll (Song of the Elves) (3)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(Song_of_the_Elves)#3", - "price": 0 - }, - "23817": { - "id": 23817, - "name": "Clue scroll", - "cost": 30, - "lowalch": 12, - "highalch": 18, - "weight": 0.02, - "release_date": "2019-07-25", - "examine": "A scroll that I found while searching for Lady Meilyr.", - "wiki_name": "Clue scroll (Song of the Elves) (4)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(Song_of_the_Elves)#4", - "price": 0 - }, "23818": { "id": 23818, "name": "Explosive potion", @@ -250316,7 +242866,7 @@ "examine": "Makes a dragon pickaxe more beautiful.", "wiki_name": "Zalcano shard", "wiki_url": "https://oldschool.runescape.wiki/w/Zalcano_shard", - "price": 55576.5 + "price": 56376 }, "23911": { "id": 23911, @@ -250722,7 +243272,7 @@ "slot": "ring", "requirements": null }, - "price": 4576736.5 + "price": 6031366 }, "23946": { "id": 23946, @@ -250753,7 +243303,7 @@ "examine": "It seems to have a little sparkle to it.", "wiki_name": "Elven dawn", "wiki_url": "https://oldschool.runescape.wiki/w/Elven_dawn", - "price": 50254.5 + "price": 6000 }, "23951": { "id": 23951, @@ -250784,7 +243334,7 @@ "examine": "A seed to be sung into the best tools of the craft.", "wiki_name": "Crystal tool seed", "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_tool_seed", - "price": 13682281 + "price": 14772535 }, "23956": { "id": 23956, @@ -250801,7 +243351,7 @@ "examine": "A seed to be sung into the finest crystal armour.", "wiki_name": "Crystal armour seed", "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_armour_seed", - "price": 4858187 + "price": 5325391 }, "23959": { "id": 23959, @@ -250818,7 +243368,7 @@ "examine": "A seed to be sung into an infinite teleport crystal.", "wiki_name": "Enhanced crystal teleport seed", "wiki_url": "https://oldschool.runescape.wiki/w/Enhanced_crystal_teleport_seed", - "price": 1836919 + "price": 1713279 }, "23962": { "id": 23962, @@ -251530,7 +244080,7 @@ } ] }, - "price": 145750000 + "price": 129175500 }, "24000": { "id": 24000, @@ -251595,7 +244145,7 @@ } ] }, - "price": 332500 + "price": 310000 }, "24003": { "id": 24003, @@ -251633,7 +244183,7 @@ "slot": "feet", "requirements": null }, - "price": 14940.5 + "price": 7342 }, "24006": { "id": 24006, @@ -251670,7 +244220,7 @@ "slot": "hands", "requirements": null }, - "price": 13583 + "price": 9606 }, "24009": { "id": 24009, @@ -251706,7 +244256,7 @@ "slot": "body", "requirements": null }, - "price": 3250.5 + "price": 6387 }, "24012": { "id": 24012, @@ -251742,7 +244292,7 @@ "slot": "legs", "requirements": null }, - "price": 5503.5 + "price": 4083 }, "24015": { "id": 24015, @@ -251778,7 +244328,7 @@ "slot": "body", "requirements": null }, - "price": 3884.5 + "price": 6637 }, "24018": { "id": 24018, @@ -251814,7 +244364,7 @@ "slot": "legs", "requirements": null }, - "price": 3845 + "price": 22859 }, "24021": { "id": 24021, @@ -251850,7 +244400,7 @@ "slot": "body", "requirements": null }, - "price": 3274.5 + "price": 3463 }, "24024": { "id": 24024, @@ -251886,7 +244436,7 @@ "slot": "legs", "requirements": null }, - "price": 4233 + "price": 2776 }, "24027": { "id": 24027, @@ -251922,7 +244472,7 @@ "slot": "body", "requirements": null }, - "price": 11987 + "price": 4006 }, "24030": { "id": 24030, @@ -252012,7 +244562,7 @@ "defence": 40 } }, - "price": 2535073 + "price": 2292438 }, "24037": { "id": 24037, @@ -252050,7 +244600,7 @@ "defence": 40 } }, - "price": 2918500 + "price": 2577500 }, "24040": { "id": 24040, @@ -252088,7 +244638,7 @@ "defence": 40 } }, - "price": 3432500 + "price": 2751035 }, "24043": { "id": 24043, @@ -252127,7 +244677,7 @@ "defence": 40 } }, - "price": 713000 + "price": 332278 }, "24046": { "id": 24046, @@ -252166,7 +244716,7 @@ "defence": 40 } }, - "price": 876249.5 + "price": 460000 }, "24049": { "id": 24049, @@ -253117,7 +245667,7 @@ } ] }, - "price": 24100000 + "price": 25900000 }, "24147": { "id": 24147, @@ -254404,7 +246954,7 @@ "examine": "Take it to Perdu to help you avoid losing certain items.", "wiki_name": "Trouver parchment", "wiki_url": "https://oldschool.runescape.wiki/w/Trouver_parchment", - "price": 551328 + "price": 468023 }, "24189": { "id": 24189, @@ -255093,7 +247643,7 @@ } ] }, - "price": 10862320 + "price": 9553000 }, "24222": { "id": 24222, @@ -255343,7 +247893,7 @@ "examine": "This handle can be applied to the granite maul.", "wiki_name": "Ornate maul handle", "wiki_url": "https://oldschool.runescape.wiki/w/Ornate_maul_handle", - "price": 584911.5 + "price": 400000 }, "24232": { "id": 24232, @@ -255734,20 +248284,7 @@ "examine": "A teleport to near the dark crab fishing spots, in level 33 Wilderness.", "wiki_name": "Wilderness crabs teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Wilderness_crabs_teleport", - "price": 31083 - }, - "24253": { - "id": 24253, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 26.43N 01.22E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_26.43N_01.22E", - "price": 0 + "price": 26739 }, "24254": { "id": 24254, @@ -255791,6 +248328,20 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Unsealed_letter", "price": 0 }, + "24257": { + "id": 24257, + "name": "Unsealed letter", + "members": true, + "cost": 100, + "lowalch": 40, + "highalch": 60, + "weight": 0.005, + "release_date": "2019-09-26", + "examine": "A letter which has had its seal opened.", + "wiki_name": "Unsealed letter (Brundt)", + "wiki_url": "https://oldschool.runescape.wiki/w/Unsealed_letter#Brundt", + "price": 0 + }, "24258": { "id": 24258, "name": "V sigil", @@ -255932,7 +248483,7 @@ "examine": "The jaw of a Basilisk Knight.", "wiki_name": "Basilisk jaw", "wiki_url": "https://oldschool.runescape.wiki/w/Basilisk_jaw", - "price": 26650621 + "price": 22731969 }, "24271": { "id": 24271, @@ -256104,7 +248655,7 @@ "defence": 40 } }, - "price": 891505.5 + "price": 673674 }, "24291": { "id": 24291, @@ -256144,7 +248695,7 @@ "defence": 40 } }, - "price": 1989744 + "price": 1552349 }, "24294": { "id": 24294, @@ -256184,7 +248735,7 @@ "defence": 40 } }, - "price": 1038881.5 + "price": 1123093 }, "24297": { "id": 24297, @@ -256757,7 +249308,7 @@ "examine": "A set containing a Dagon'hai hat, robe top and robe bottom.", "wiki_name": "Dagon'hai robes set", "wiki_url": "https://oldschool.runescape.wiki/w/Dagon'hai_robes_set", - "price": 3895647 + "price": 3484568 }, "24336": { "id": 24336, @@ -256773,7 +249324,7 @@ "examine": "A teleport to your target.", "wiki_name": "Target teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Target_teleport", - "price": 8054.5 + "price": 5406 }, "24338": { "id": 24338, @@ -257471,7 +250022,7 @@ "slot": "head", "requirements": null }, - "price": 1411601.5 + "price": 1507542 }, "24389": { "id": 24389, @@ -257509,7 +250060,7 @@ "slot": "body", "requirements": null }, - "price": 3164100.5 + "price": 3998733 }, "24391": { "id": 24391, @@ -257547,7 +250098,7 @@ "slot": "legs", "requirements": null }, - "price": 587550 + "price": 423392 }, "24393": { "id": 24393, @@ -257585,7 +250136,7 @@ "slot": "feet", "requirements": null }, - "price": 857500 + "price": 752501 }, "24395": { "id": 24395, @@ -257658,7 +250209,7 @@ } ] }, - "price": 826567.5 + "price": 1232998 }, "24397": { "id": 24397, @@ -257696,7 +250247,7 @@ "slot": "head", "requirements": null }, - "price": 145321.5 + "price": 350128 }, "24399": { "id": 24399, @@ -257734,7 +250285,7 @@ "slot": "body", "requirements": null }, - "price": 824748 + "price": 683000 }, "24401": { "id": 24401, @@ -257772,7 +250323,7 @@ "slot": "legs", "requirements": null }, - "price": 207593 + "price": 145677 }, "24403": { "id": 24403, @@ -257810,7 +250361,7 @@ "slot": "feet", "requirements": null }, - "price": 116333 + "price": 306667 }, "24405": { "id": 24405, @@ -257848,7 +250399,7 @@ "slot": "head", "requirements": null }, - "price": 124083.5 + "price": 415500 }, "24407": { "id": 24407, @@ -257886,7 +250437,7 @@ "slot": "body", "requirements": null }, - "price": 450627.5 + "price": 496560 }, "24409": { "id": 24409, @@ -257924,7 +250475,7 @@ "slot": "legs", "requirements": null }, - "price": 73583.5 + "price": 65556 }, "24411": { "id": 24411, @@ -257962,7 +250513,7 @@ "slot": "feet", "requirements": null }, - "price": 105000 + "price": 58207 }, "24413": { "id": 24413, @@ -258035,7 +250586,7 @@ } ] }, - "price": 111503 + "price": 257000 }, "24416": { "id": 24416, @@ -258124,7 +250675,7 @@ } ] }, - "price": 273304330 + "price": 307539339 }, "24418": { "id": 24418, @@ -258178,7 +250729,7 @@ "defence": 30 } }, - "price": 60511236.5 + "price": 58593012 }, "24420": { "id": 24420, @@ -258219,7 +250770,7 @@ "defence": 30 } }, - "price": 50910803 + "price": 45778172 }, "24421": { "id": 24421, @@ -258343,7 +250894,7 @@ } ] }, - "price": 50550059.5 + "price": 57427843 }, "24423": { "id": 24423, @@ -258878,7 +251429,7 @@ "examine": "A scroll which unlocks the twisted home teleport animation.", "wiki_name": "Twisted teleport scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Twisted_teleport_scroll", - "price": 421285 + "price": 570000 }, "24463": { "id": 24463, @@ -258896,7 +251447,7 @@ "examine": "A scroll which unlocks the twisted player-owned house wall-kit.", "wiki_name": "Twisted blueprints", "wiki_url": "https://oldschool.runescape.wiki/w/Twisted_blueprints", - "price": 2859167 + "price": 4219997 }, "24466": { "id": 24466, @@ -258914,7 +251465,7 @@ "examine": "These look like they can be attached to a slayer helmet.", "wiki_name": "Twisted horns", "wiki_url": "https://oldschool.runescape.wiki/w/Twisted_horns", - "price": 2022624 + "price": 2097000 }, "24469": { "id": 24469, @@ -258932,7 +251483,7 @@ "examine": "A set containing Twisted boots, Twisted trousers, Twisted coat and Twisted hat.", "wiki_name": "Twisted relic hunter (t1) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Twisted_relic_hunter_(t1)_armour_set", - "price": 775000 + "price": 1088856 }, "24472": { "id": 24472, @@ -258950,7 +251501,7 @@ "examine": "A set containing Twisted boots, Twisted trousers, Twisted coat and Twisted hat.", "wiki_name": "Twisted relic hunter (t2) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Twisted_relic_hunter_(t2)_armour_set", - "price": 1762460 + "price": 1988000 }, "24475": { "id": 24475, @@ -258968,7 +251519,7 @@ "examine": "A set containing Twisted boots, Twisted trousers, Twisted coat and Twisted hat.", "wiki_name": "Twisted relic hunter (t3) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Twisted_relic_hunter_(t3)_armour_set", - "price": 6570937.5 + "price": 6718593 }, "24478": { "id": 24478, @@ -259104,7 +251655,7 @@ "examine": "A set containing an Inquisitor's great helm, Inquisitor's hauberk and Inquisitor's plateskirt.", "wiki_name": "Inquisitor's armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Inquisitor's_armour_set", - "price": 171613734 + "price": 164049014 }, "24491": { "id": 24491, @@ -259120,19 +251671,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Little_nightmare#Nightmare", "price": 0 }, - "24493": { - "id": 24493, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Darn Drake", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Darn_Drake", - "price": 0 - }, "24495": { "id": 24495, "name": "Jar of dreams", @@ -259149,7 +251687,7 @@ "examine": "With this jar, your dreams can come true!", "wiki_name": "Jar of dreams", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_dreams", - "price": 962500 + "price": 4772468 }, "24511": { "id": 24511, @@ -259167,7 +251705,7 @@ "examine": "An ancient magical orb, corrupted by darkness.", "wiki_name": "Harmonised orb", "wiki_url": "https://oldschool.runescape.wiki/w/Harmonised_orb", - "price": 439575000 + "price": 545142500 }, "24514": { "id": 24514, @@ -259185,7 +251723,7 @@ "examine": "An ancient magical orb, corrupted by darkness.", "wiki_name": "Volatile orb", "wiki_url": "https://oldschool.runescape.wiki/w/Volatile_orb", - "price": 125351825.5 + "price": 117641446 }, "24517": { "id": 24517, @@ -259203,7 +251741,7 @@ "examine": "An ancient magical orb, corrupted by darkness.", "wiki_name": "Eldritch orb", "wiki_url": "https://oldschool.runescape.wiki/w/Eldritch_orb", - "price": 372244825.5 + "price": 359522557 }, "24520": { "id": 24520, @@ -259952,7 +252490,7 @@ "examine": "A note that may be exchanged at a bank for a Looting Bag.", "wiki_name": "Looting bag note", "wiki_url": "https://oldschool.runescape.wiki/w/Looting_bag_note", - "price": 42750 + "price": 28673 }, "24587": { "id": 24587, @@ -259969,7 +252507,7 @@ "examine": "A note that may be exchanged at a bank for a Rune Pouch.", "wiki_name": "Rune pouch note", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_pouch_note", - "price": 2699066.5 + "price": 2000000 }, "24589": { "id": 24589, @@ -259987,7 +252525,7 @@ "examine": "A rare catch, now blighted so it can be eaten only in the Wilderness.", "wiki_name": "Blighted manta ray", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_manta_ray", - "price": 858.5 + "price": 331 }, "24592": { "id": 24592, @@ -260005,7 +252543,7 @@ "examine": "An unappetising fish, now blighted so it can be eaten only in the Wilderness.", "wiki_name": "Blighted anglerfish", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_anglerfish", - "price": 954 + "price": 358 }, "24595": { "id": 24595, @@ -260018,11 +252556,12 @@ "lowalch": 24, "highalch": 36, "weight": 0.65, + "buy_limit": 10000, "release_date": "2020-04-23", "examine": "A nutritious octopus, now blighted so it can be eaten only in the Wilderness.", "wiki_name": "Blighted karambwan", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_karambwan", - "price": 578 + "price": 165 }, "24598": { "id": 24598, @@ -260040,7 +252579,7 @@ "examine": "4 doses of super restore potion, blighted so it can be used only in the Wilderness.", "wiki_name": "Blighted super restore (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_super_restore#4_dose", - "price": 5306.5 + "price": 4528 }, "24601": { "id": 24601, @@ -260097,12 +252636,12 @@ "cost": 35, "lowalch": 14, "highalch": 21, - "buy_limit": 10000, + "buy_limit": 15000, "release_date": "2020-04-23", "examine": "Enough power for any Ice spell, blighted so it can be used only in the Wilderness.", "wiki_name": "Blighted ancient ice sack", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_ancient_ice_sack", - "price": 697 + "price": 264 }, "24613": { "id": 24613, @@ -260119,7 +252658,7 @@ "examine": "Enough power for an Entangle, blighted so it can be used only in the Wilderness.", "wiki_name": "Blighted entangle sack", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_entangle_sack", - "price": 100.5 + "price": 69 }, "24615": { "id": 24615, @@ -260136,7 +252675,7 @@ "examine": "Enough power for a Teleblock or a Teleport to Target, blighted so it can be used only in the Wilderness.", "wiki_name": "Blighted teleport spell sack", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_teleport_spell_sack", - "price": 105.5 + "price": 76 }, "24617": { "id": 24617, @@ -260238,7 +252777,7 @@ "examine": "Enough power for a Vengeance, blighted so it can be used only in the Wilderness.", "wiki_name": "Blighted vengeance sack", "wiki_url": "https://oldschool.runescape.wiki/w/Blighted_vengeance_sack", - "price": 96.5 + "price": 87 }, "24623": { "id": 24623, @@ -260256,7 +252795,7 @@ "examine": "4 doses of divine battlemage potion.", "wiki_name": "Divine battlemage potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_battlemage_potion#4_dose", - "price": 27728 + "price": 20300 }, "24626": { "id": 24626, @@ -260274,7 +252813,7 @@ "examine": "3 doses of divine battlemage potion.", "wiki_name": "Divine battlemage potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_battlemage_potion#3_dose", - "price": 16011 + "price": 13515 }, "24629": { "id": 24629, @@ -260292,7 +252831,7 @@ "examine": "2 doses of divine battlemage potion.", "wiki_name": "Divine battlemage potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_battlemage_potion#2_dose", - "price": 9664.5 + "price": 20000 }, "24632": { "id": 24632, @@ -260310,7 +252849,7 @@ "examine": "1 dose of divine battlemage potion.", "wiki_name": "Divine battlemage potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_battlemage_potion#1_dose", - "price": 77321.5 + "price": 4441 }, "24635": { "id": 24635, @@ -260328,7 +252867,7 @@ "examine": "4 doses of divine bastion potion.", "wiki_name": "Divine bastion potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_bastion_potion#4_dose", - "price": 32949.5 + "price": 28930 }, "24638": { "id": 24638, @@ -260346,7 +252885,7 @@ "examine": "3 doses of divine bastion potion.", "wiki_name": "Divine bastion potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_bastion_potion#3_dose", - "price": 24037 + "price": 20359 }, "24641": { "id": 24641, @@ -260364,7 +252903,7 @@ "examine": "2 doses of divine bastion potion.", "wiki_name": "Divine bastion potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_bastion_potion#2_dose", - "price": 15558 + "price": 13753 }, "24644": { "id": 24644, @@ -260382,7 +252921,7 @@ "examine": "1 dose of divine bastion potion.", "wiki_name": "Divine bastion potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_bastion_potion#1_dose", - "price": 8027.5 + "price": 6920 }, "24650": { "id": 24650, @@ -261494,7 +254033,7 @@ "examine": "A pristine set of lockpicks engraved with six names.", "wiki_name": "Strange old lockpick (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Strange_old_lockpick#Full", - "price": 61309 + "price": 45359 }, "24743": { "id": 24743, @@ -261800,7 +254339,7 @@ "examine": "It's literally a pint of blood.", "wiki_name": "Blood pint", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_pint", - "price": 111 + "price": 46 }, "24777": { "id": 24777, @@ -261818,7 +254357,7 @@ "examine": "A magical shard filled with a dark power.", "wiki_name": "Blood shard", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_shard", - "price": 7275500 + "price": 7878543 }, "24780": { "id": 24780, @@ -261869,7 +254408,7 @@ "examine": "I need to cook this, though I don't know if I want to.", "wiki_name": "Raw mystery meat", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_mystery_meat", - "price": 500.5 + "price": 500 }, "24785": { "id": 24785, @@ -261886,7 +254425,7 @@ "examine": "I don't want to think about what kind of meat it is.", "wiki_name": "Cooked mystery meat", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_mystery_meat", - "price": 40 + "price": 101 }, "24788": { "id": 24788, @@ -262844,7 +255383,7 @@ "agility": 70 } }, - "price": 31769251.5 + "price": 22363124 }, "24847": { "id": 24847, @@ -263854,7 +256393,7 @@ "examine": "A teleport to Lunar Isle.", "wiki_name": "Moonclan teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Moonclan_teleport_(tablet)", - "price": 1387 + "price": 1030 }, "24951": { "id": 24951, @@ -263871,7 +256410,7 @@ "examine": "A teleport to the Ourania cave.", "wiki_name": "Ourania teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Ourania_teleport_(tablet)", - "price": 1292.5 + "price": 1099 }, "24953": { "id": 24953, @@ -263888,7 +256427,7 @@ "examine": "A teleport to Waterbirth Island.", "wiki_name": "Waterbirth teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Waterbirth_teleport_(tablet)", - "price": 1235 + "price": 1000 }, "24955": { "id": 24955, @@ -263905,7 +256444,7 @@ "examine": "A teleport to Barbarian Outpost.", "wiki_name": "Barbarian teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Barbarian_teleport_(tablet)", - "price": 1530.5 + "price": 561 }, "24957": { "id": 24957, @@ -263922,7 +256461,7 @@ "examine": "A teleport to Port Khazard.", "wiki_name": "Khazard teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Khazard_teleport_(tablet)", - "price": 1907.5 + "price": 1306 }, "24959": { "id": 24959, @@ -263939,7 +256478,7 @@ "examine": "A teleport to the Fishing Guild.", "wiki_name": "Fishing guild teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_guild_teleport_(tablet)", - "price": 1460.5 + "price": 856 }, "24961": { "id": 24961, @@ -263956,7 +256495,7 @@ "examine": "A teleport to Catherby.", "wiki_name": "Catherby teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Catherby_teleport_(tablet)", - "price": 2430 + "price": 1321 }, "24963": { "id": 24963, @@ -263973,7 +256512,7 @@ "examine": "A teleport to the Ice Plateau in level 53 Wilderness.", "wiki_name": "Ice plateau teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Ice_plateau_teleport_(tablet)", - "price": 1691 + "price": 1205 }, "24971": { "id": 24971, @@ -264285,7 +256824,7 @@ "slot": "head", "requirements": null }, - "price": 1915000 + "price": 1025500 }, "25004": { "id": 25004, @@ -264323,7 +256862,7 @@ "slot": "body", "requirements": null }, - "price": 1300750 + "price": 1878500 }, "25007": { "id": 25007, @@ -264361,7 +256900,7 @@ "slot": "legs", "requirements": null }, - "price": 1850000 + "price": 899500 }, "25010": { "id": 25010, @@ -264399,7 +256938,7 @@ "slot": "feet", "requirements": null }, - "price": 2155000 + "price": 4195000 }, "25013": { "id": 25013, @@ -264472,7 +257011,7 @@ } ] }, - "price": 1700044 + "price": 6250000 }, "25016": { "id": 25016, @@ -264510,7 +257049,7 @@ "slot": "head", "requirements": null }, - "price": 100000.5 + "price": 188725 }, "25019": { "id": 25019, @@ -264548,7 +257087,7 @@ "slot": "body", "requirements": null }, - "price": 131763 + "price": 518936 }, "25022": { "id": 25022, @@ -264586,7 +257125,7 @@ "slot": "legs", "requirements": null }, - "price": 289000 + "price": 86549 }, "25025": { "id": 25025, @@ -264624,7 +257163,7 @@ "slot": "feet", "requirements": null }, - "price": 420000 + "price": 599870 }, "25028": { "id": 25028, @@ -264662,7 +257201,7 @@ "slot": "head", "requirements": null }, - "price": 168750 + "price": 182178 }, "25031": { "id": 25031, @@ -264700,7 +257239,7 @@ "slot": "body", "requirements": null }, - "price": 95000 + "price": 430000 }, "25034": { "id": 25034, @@ -264738,7 +257277,7 @@ "slot": "legs", "requirements": null }, - "price": 40500 + "price": 14066 }, "25037": { "id": 25037, @@ -264776,7 +257315,7 @@ "slot": "feet", "requirements": null }, - "price": 20400.5 + "price": 6926 }, "25042": { "id": 25042, @@ -265600,7 +258139,7 @@ "examine": "A scroll which unlocks the Leagues II - Trailblazer home teleport animation.", "wiki_name": "Trailblazer teleport scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_teleport_scroll", - "price": 687464 + "price": 764961 }, "25090": { "id": 25090, @@ -265618,7 +258157,7 @@ "examine": "A kit which can be attached to any Dragon or Infernal axe, pickaxe or harpoon to recolour it.", "wiki_name": "Trailblazer tool ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_tool_ornament_kit", - "price": 635750 + "price": 554717 }, "25093": { "id": 25093, @@ -265654,7 +258193,7 @@ "examine": "A rug which can be built into a rug hotspot in your PoH League Trophy Room.", "wiki_name": "Trailblazer rug", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_rug", - "price": 2021070 + "price": 2348603 }, "25099": { "id": 25099, @@ -265672,7 +258211,7 @@ "examine": "An ornament kit which can be used to recolour a piece of graceful clothing.", "wiki_name": "Trailblazer graceful ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_graceful_ornament_kit", - "price": 354121 + "price": 432177 }, "25102": { "id": 25102, @@ -269034,7 +261573,7 @@ "examine": "A set containing Trailblazer boots, Trailblazer trousers, Trailblazer top and Trailblazer hood.", "wiki_name": "Trailblazer relic hunter (t1) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_relic_hunter_(t1)_armour_set", - "price": 411696 + "price": 770000 }, "25383": { "id": 25383, @@ -269051,7 +261590,7 @@ "examine": "A set containing Trailblazer boots, Trailblazer trousers, Trailblazer top and Trailblazer hood.", "wiki_name": "Trailblazer relic hunter (t2) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_relic_hunter_(t2)_armour_set", - "price": 1519500 + "price": 2404681 }, "25386": { "id": 25386, @@ -269108,7 +261647,7 @@ "defence": 50 } }, - "price": 87561.5 + "price": 87758 }, "25392": { "id": 25392, @@ -269148,7 +261687,7 @@ "defence": 50 } }, - "price": 22021.5 + "price": 5211 }, "25395": { "id": 25395, @@ -269188,7 +261727,7 @@ "defence": 50 } }, - "price": 20988.5 + "price": 23526 }, "25398": { "id": 25398, @@ -269228,7 +261767,7 @@ "defence": 50 } }, - "price": 27287.5 + "price": 38799 }, "25401": { "id": 25401, @@ -269268,7 +261807,7 @@ "defence": 50 } }, - "price": 63334.5 + "price": 82628 }, "25404": { "id": 25404, @@ -269308,7 +261847,7 @@ "defence": 60 } }, - "price": 155079.5 + "price": 161500 }, "25407": { "id": 25407, @@ -269348,7 +261887,7 @@ "defence": 60 } }, - "price": 31238.5 + "price": 44992 }, "25410": { "id": 25410, @@ -269388,7 +261927,7 @@ "defence": 60 } }, - "price": 42069.5 + "price": 44000 }, "25413": { "id": 25413, @@ -269428,7 +261967,7 @@ "defence": 60 } }, - "price": 67878.5 + "price": 89970 }, "25416": { "id": 25416, @@ -269469,7 +262008,7 @@ "defence": 60 } }, - "price": 167728.5 + "price": 142625 }, "25419": { "id": 25419, @@ -269725,7 +262264,7 @@ "examine": "Perhaps someone can do something with this.", "wiki_name": "Bronze locks", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_locks", - "price": 533 + "price": 977 }, "25445": { "id": 25445, @@ -269743,7 +262282,7 @@ "examine": "Perhaps someone can do something with this.", "wiki_name": "Steel locks", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_locks", - "price": 689 + "price": 225 }, "25448": { "id": 25448, @@ -269761,7 +262300,7 @@ "examine": "Perhaps someone can do something with this.", "wiki_name": "Black locks", "wiki_url": "https://oldschool.runescape.wiki/w/Black_locks", - "price": 2274 + "price": 958 }, "25451": { "id": 25451, @@ -269779,7 +262318,7 @@ "examine": "Perhaps someone can do something with this.", "wiki_name": "Silver locks", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_locks", - "price": 10275 + "price": 11403 }, "25454": { "id": 25454, @@ -269797,7 +262336,7 @@ "examine": "Perhaps someone can do something with this.", "wiki_name": "Gold locks", "wiki_url": "https://oldschool.runescape.wiki/w/Gold_locks", - "price": 19000 + "price": 25000 }, "25457": { "id": 25457, @@ -270195,7 +262734,7 @@ "examine": "A rough scroll with faint writing, on a deep green parchment.", "wiki_name": "Runescroll of swampbark", "wiki_url": "https://oldschool.runescape.wiki/w/Runescroll_of_swampbark", - "price": 2878.5 + "price": 2828 }, "25481": { "id": 25481, @@ -270213,7 +262752,7 @@ "examine": "A rough scroll with faint writing, on a malevolent dark red parchment.", "wiki_name": "Runescroll of bloodbark", "wiki_url": "https://oldschool.runescape.wiki/w/Runescroll_of_bloodbark", - "price": 4654 + "price": 8000 }, "25484": { "id": 25484, @@ -270667,108 +263206,82 @@ }, "price": 0 }, - "25492": { - "id": 25492, - "name": "Shadow ancient sceptre", - "members": true, - "equipable": true, - "equipable_by_player": true, - "equipable_weapon": true, - "cost": 120000, - "lowalch": 48000, - "highalch": 72000, - "weight": 2.267, - "release_date": "2023-07-26", - "examine": "A very old and powerful stick, enhanced with the power of shadow magic.", - "wiki_name": "Accursed sceptre (a) (Charged)", - "wiki_url": "https://oldschool.runescape.wiki/w/Accursed_sceptre_(a)#Charged", - "equipment": { - "attack_stab": 20, - "attack_slash": -1, - "attack_crush": 50, - "attack_magic": 20, - "attack_ranged": 0, - "defence_stab": 2, - "defence_slash": 3, - "defence_crush": 1, - "defence_magic": 15, - "defence_ranged": 0, - "melee_strength": 60, - "ranged_strength": 0, - "magic_damage": 5, - "prayer": -1, - "slot": "weapon", - "requirements": { - "magic": 70 - } - }, - "weapon": { - "attack_speed": 4, - "weapon_type": "staff", - "stances": [ - { - "combat_style": "bash", - "attack_type": "crush", - "attack_style": "accurate", - "experience": "attack", - "boosts": null - }, - { - "combat_style": "pound", - "attack_type": "crush", - "attack_style": "aggressive", - "experience": "strength", - "boosts": null - }, - { - "combat_style": "focus", - "attack_type": "crush", - "attack_style": "defensive", - "experience": "defence", - "boosts": null - }, - { - "combat_style": "spell", - "attack_type": "spellcasting", - "attack_style": "magic", - "experience": "magic", - "boosts": null - }, - { - "combat_style": "spell (defensive)", - "attack_type": "defensive casting", - "attack_style": "magic", - "experience": "magic and defence", - "boosts": null - } - ] - }, - "price": 0 - }, - "25498": { - "id": 25498, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 08.30S 10.48W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_08.30S_10.48W", - "price": 0 - }, - "25499": { - "id": 25499, - "name": "Clue scroll (elite)", + "25492": { + "id": 25492, + "name": "Shadow ancient sceptre", "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 06.28S 03.48W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_06.28S_03.48W", + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 120000, + "lowalch": 48000, + "highalch": 72000, + "weight": 2.267, + "release_date": "2023-07-26", + "examine": "A very old and powerful stick, enhanced with the power of shadow magic.", + "wiki_name": "Accursed sceptre (a) (Charged)", + "wiki_url": "https://oldschool.runescape.wiki/w/Accursed_sceptre_(a)#Charged", + "equipment": { + "attack_stab": 20, + "attack_slash": -1, + "attack_crush": 50, + "attack_magic": 20, + "attack_ranged": 0, + "defence_stab": 2, + "defence_slash": 3, + "defence_crush": 1, + "defence_magic": 15, + "defence_ranged": 0, + "melee_strength": 60, + "ranged_strength": 0, + "magic_damage": 5, + "prayer": -1, + "slot": "weapon", + "requirements": { + "magic": 70 + } + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "staff", + "stances": [ + { + "combat_style": "bash", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "focus", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + }, + { + "combat_style": "spell", + "attack_type": "spellcasting", + "attack_style": "magic", + "experience": "magic", + "boosts": null + }, + { + "combat_style": "spell (defensive)", + "attack_type": "defensive casting", + "attack_style": "magic", + "experience": "magic and defence", + "boosts": null + } + ] + }, "price": 0 }, "25500": { @@ -271101,7 +263614,7 @@ "examine": "How does someone jar this?", "wiki_name": "Jar of spirits", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_spirits", - "price": 89214 + "price": 36896 }, "25524": { "id": 25524, @@ -271119,7 +263632,7 @@ "examine": "Don't breathe in.", "wiki_name": "Jar of smoke", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_smoke", - "price": 51506.5 + "price": 21067 }, "25527": { "id": 25527, @@ -271676,7 +264189,7 @@ "slot": "shield", "requirements": null }, - "price": 676117.5 + "price": 913224 }, "25578": { "id": 25578, @@ -271693,7 +264206,7 @@ "examine": "It feels clammy, like second-hand toilet paper.", "wiki_name": "Soaked page", "wiki_url": "https://oldschool.runescape.wiki/w/Soaked_page", - "price": 1613.5 + "price": 1734 }, "25580": { "id": 25580, @@ -274473,7 +266986,7 @@ "examine": "A heap of ashes.", "wiki_name": "Fiendish ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Fiendish_ashes", - "price": 121.5 + "price": 104 }, "25769": { "id": 25769, @@ -274490,7 +267003,7 @@ "examine": "A heap of ashes.", "wiki_name": "Vile ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Vile_ashes", - "price": 327.5 + "price": 204 }, "25772": { "id": 25772, @@ -274507,7 +267020,7 @@ "examine": "A heap of ashes.", "wiki_name": "Malicious ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Malicious_ashes", - "price": 1870 + "price": 1503 }, "25775": { "id": 25775, @@ -274525,7 +267038,7 @@ "examine": "A heap of ashes.", "wiki_name": "Abyssal ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Abyssal_ashes", - "price": 2718 + "price": 2300 }, "25778": { "id": 25778, @@ -274543,7 +267056,7 @@ "examine": "A heap of ashes.", "wiki_name": "Infernal ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Infernal_ashes", - "price": 4195 + "price": 3571 }, "25781": { "id": 25781, @@ -274559,110 +267072,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Ash_sanctifier", "price": 0 }, - "25783": { - "id": 25783, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Search the basket of apples in an orchard", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Search_the_basket_of_apples_in_an_orchard", - "price": 0 - }, - "25784": { - "id": 25784, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - UESNKRL NRIEDDO", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_UESNKRL_NRIEDDO", - "price": 0 - }, - "25786": { - "id": 25786, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Salute by the Charcoal Burners", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Salute_by_the_Charcoal_Burners", - "price": 0 - }, - "25787": { - "id": 25787, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 10.52N 30.54W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_10.52N_30.54W", - "price": 0 - }, - "25788": { - "id": 25788, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Dig by the Giant's Den entrance", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Dig_by_the_Giant's_Den_entrance", - "price": 0 - }, - "25789": { - "id": 25789, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the crates in the fruit store east of Hosidius", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_crates_in_the_fruit_store_east_of_Hosidius", - "price": 0 - }, - "25790": { - "id": 25790, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - 10.03N 32.13W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_10.03N_32.13W", - "price": 0 - }, - "25791": { - "id": 25791, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - Dig in the lair of red wings", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_Dig_in_the_lair_of_red_wings", - "price": 0 - }, "25793": { "id": 25793, "name": "Receipt", @@ -275109,7 +267518,7 @@ "examine": "A viscous bright-green ale. Smells like a herpetarium.", "wiki_name": "Lizardkicker", "wiki_url": "https://oldschool.runescape.wiki/w/Lizardkicker", - "price": 247 + "price": 466 }, "25829": { "id": 25829, @@ -275349,7 +267758,7 @@ } ] }, - "price": 371 + "price": 268 }, "25851": { "id": 25851, @@ -275414,7 +267823,7 @@ } ] }, - "price": 394 + "price": 211 }, "25853": { "id": 25853, @@ -275431,7 +267840,7 @@ "examine": "A deadly-looking dart tip made of amethyst - needs feathers for flight.", "wiki_name": "Amethyst dart tip", "wiki_url": "https://oldschool.runescape.wiki/w/Amethyst_dart_tip", - "price": 568.5 + "price": 460 }, "25855": { "id": 25855, @@ -275496,7 +267905,7 @@ } ] }, - "price": 571.5 + "price": 663 }, "25857": { "id": 25857, @@ -275561,7 +267970,7 @@ } ] }, - "price": 1940.5 + "price": 1304 }, "25859": { "id": 25859, @@ -275577,7 +267986,7 @@ "examine": "A seed to be sung into the most powerful crystal weaponry.", "wiki_name": "Enhanced crystal weapon seed", "wiki_url": "https://oldschool.runescape.wiki/w/Enhanced_crystal_weapon_seed", - "price": 141297061.5 + "price": 135339078 }, "25862": { "id": 25862, @@ -275645,7 +268054,7 @@ } ] }, - "price": 140281875 + "price": 134105582 }, "25865": { "id": 25865, @@ -277649,7 +270058,7 @@ "slot": "ring", "requirements": null }, - "price": 2418705 + "price": 1858971 }, "25979": { "id": 25979, @@ -277830,7 +270239,7 @@ "prayer": 80 } }, - "price": 6504931.5 + "price": 4723201 }, "25990": { "id": 25990, @@ -280147,7 +272556,7 @@ } ] }, - "price": 22157898 + "price": 15217501 }, "26221": { "id": 26221, @@ -280185,7 +272594,7 @@ "slot": "body", "requirements": null }, - "price": 60417.5 + "price": 58260 }, "26223": { "id": 26223, @@ -280223,7 +272632,7 @@ "slot": "legs", "requirements": null }, - "price": 46362.5 + "price": 53226 }, "26225": { "id": 26225, @@ -280261,7 +272670,7 @@ "slot": "head", "requirements": null }, - "price": 29265.5 + "price": 29266 }, "26227": { "id": 26227, @@ -280299,7 +272708,7 @@ "slot": "hands", "requirements": null }, - "price": 23827 + "price": 28800 }, "26229": { "id": 26229, @@ -280354,7 +272763,7 @@ "examine": "An ancient magical shard.", "wiki_name": "Nihil shard", "wiki_url": "https://oldschool.runescape.wiki/w/Nihil_shard", - "price": 3645.5 + "price": 5249 }, "26233": { "id": 26233, @@ -280426,7 +272835,7 @@ } ] }, - "price": 41332003.5 + "price": 36833293 }, "26235": { "id": 26235, @@ -280464,7 +272873,7 @@ "slot": "hands", "requirements": null }, - "price": 131039215.5 + "price": 115250000 }, "26237": { "id": 26237, @@ -280530,7 +272939,7 @@ "slot": "head", "requirements": null }, - "price": 3720331.5 + "price": 4576624 }, "26243": { "id": 26243, @@ -280567,7 +272976,7 @@ "slot": "body", "requirements": null }, - "price": 54449498.5 + "price": 58002121 }, "26245": { "id": 26245, @@ -280604,7 +273013,7 @@ "slot": "legs", "requirements": null }, - "price": 31075000 + "price": 29132804 }, "26247": { "id": 26247, @@ -280836,7 +273245,7 @@ "examine": "The gold standard of gold.", "wiki_name": "Condensed gold", "wiki_url": "https://oldschool.runescape.wiki/w/Condensed_gold", - "price": 10794724.5 + "price": 9769405 }, "26269": { "id": 26269, @@ -281492,7 +273901,7 @@ "examine": "4 doses of ancient brew.", "wiki_name": "Ancient brew (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_brew#4_dose", - "price": 3370 + "price": 7235 }, "26342": { "id": 26342, @@ -281510,7 +273919,7 @@ "examine": "3 doses of ancient brew.", "wiki_name": "Ancient brew (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_brew#3_dose", - "price": 2399 + "price": 4815 }, "26344": { "id": 26344, @@ -281528,7 +273937,7 @@ "examine": "2 doses of ancient brew.", "wiki_name": "Ancient brew (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_brew#2_dose", - "price": 1226.5 + "price": 4256 }, "26346": { "id": 26346, @@ -281546,7 +273955,7 @@ "examine": "1 dose of ancient brew.", "wiki_name": "Ancient brew (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_brew#1_dose", - "price": 612.5 + "price": 5000 }, "26348": { "id": 26348, @@ -281575,7 +273984,7 @@ "examine": "Two doses of fishy ancient brew.", "wiki_name": "Ancient mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_mix#2_dose", - "price": 1153 + "price": 728 }, "26353": { "id": 26353, @@ -281592,7 +274001,7 @@ "examine": "One dose of fishy ancient brew.", "wiki_name": "Ancient mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_mix#1_dose", - "price": 767 + "price": 5161 }, "26356": { "id": 26356, @@ -281680,7 +274089,7 @@ "examine": "Dust from a crushed magical shard.", "wiki_name": "Nihil dust", "wiki_url": "https://oldschool.runescape.wiki/w/Nihil_dust", - "price": 3925.5 + "price": 5324 }, "26370": { "id": 26370, @@ -281697,7 +274106,7 @@ "examine": "Brimming with potential.", "wiki_name": "Ancient hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_hilt", - "price": 40075000 + "price": 36205749 }, "26372": { "id": 26372, @@ -281714,7 +274123,7 @@ "examine": "The horn of a proud nihil.", "wiki_name": "Nihil horn", "wiki_url": "https://oldschool.runescape.wiki/w/Nihil_horn", - "price": 356777277.5 + "price": 333283330 }, "26374": { "id": 26374, @@ -281779,7 +274188,7 @@ } ] }, - "price": 414580477.5 + "price": 394445746 }, "26376": { "id": 26376, @@ -281816,7 +274225,7 @@ "slot": "head", "requirements": null }, - "price": 263166061.5 + "price": 230683000 }, "26378": { "id": 26378, @@ -281853,7 +274262,7 @@ "slot": "body", "requirements": null }, - "price": 388656061.5 + "price": 372334710 }, "26380": { "id": 26380, @@ -281890,7 +274299,7 @@ "slot": "legs", "requirements": null }, - "price": 306901500 + "price": 292857161 }, "26382": { "id": 26382, @@ -281927,7 +274336,7 @@ "slot": "head", "requirements": null }, - "price": 276377478 + "price": 241606961 }, "26384": { "id": 26384, @@ -281964,7 +274373,7 @@ "slot": "body", "requirements": null }, - "price": 410244839 + "price": 393763035 }, "26386": { "id": 26386, @@ -282001,7 +274410,7 @@ "slot": "legs", "requirements": null }, - "price": 328677750 + "price": 304875000 }, "26388": { "id": 26388, @@ -282032,7 +274441,7 @@ "examine": "A blood-filled essence with magical properties.", "wiki_name": "Blood essence (Inactive)", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_essence#Inactive", - "price": 59624.5 + "price": 59625 }, "26392": { "id": 26392, @@ -282063,7 +274472,7 @@ "examine": "High grade material.", "wiki_name": "Bandosian components", "wiki_url": "https://oldschool.runescape.wiki/w/Bandosian_components", - "price": 10237499.5 + "price": 8730611 }, "26417": { "id": 26417, @@ -282094,7 +274503,7 @@ "examine": "A kit that can be used to apply a Leagues III - Shattered Relics theme to an Abyssal whip or Tentacle, Rune crossbow or God book piece.", "wiki_name": "Shattered relics variety ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_relics_variety_ornament_kit", - "price": 1032229 + "price": 1365444 }, "26424": { "id": 26424, @@ -282166,7 +274575,7 @@ } ] }, - "price": 605000 + "price": 110282 }, "26427": { "id": 26427, @@ -282203,7 +274612,7 @@ "slot": "head", "requirements": null }, - "price": 278208 + "price": 291679 }, "26430": { "id": 26430, @@ -282240,7 +274649,7 @@ "slot": "body", "requirements": null }, - "price": 54999 + "price": 78984 }, "26433": { "id": 26433, @@ -282277,7 +274686,7 @@ "slot": "legs", "requirements": null }, - "price": 64771.5 + "price": 64771 }, "26436": { "id": 26436, @@ -282351,7 +274760,7 @@ "slot": "head", "requirements": null }, - "price": 617500 + "price": 682250 }, "26442": { "id": 26442, @@ -282388,7 +274797,7 @@ "slot": "body", "requirements": null }, - "price": 166515.5 + "price": 475000 }, "26445": { "id": 26445, @@ -282425,7 +274834,7 @@ "slot": "legs", "requirements": null }, - "price": 175555.5 + "price": 98857 }, "26448": { "id": 26448, @@ -282462,7 +274871,7 @@ "slot": "feet", "requirements": null }, - "price": 292801 + "price": 197947 }, "26451": { "id": 26451, @@ -282499,7 +274908,7 @@ "slot": "head", "requirements": null }, - "price": 3995500 + "price": 5295375 }, "26454": { "id": 26454, @@ -282536,7 +274945,7 @@ "slot": "body", "requirements": null }, - "price": 1350500 + "price": 1900000 }, "26457": { "id": 26457, @@ -282610,7 +275019,7 @@ "slot": "feet", "requirements": null }, - "price": 999500 + "price": 857661 }, "26463": { "id": 26463, @@ -282900,7 +275309,7 @@ "examine": "A kit that can be used on void armour to theme it to Leagues III - Shattered Relics.", "wiki_name": "Shattered relics void ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_relics_void_ornament_kit", - "price": 486365.5 + "price": 876381 }, "26482": { "id": 26482, @@ -283307,7 +275716,7 @@ "examine": "A scroll which unlocks the Shattered Relics home teleport animation.", "wiki_name": "Shattered teleport scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_teleport_scroll", - "price": 790132 + "price": 750795 }, "26503": { "id": 26503, @@ -283701,7 +276110,7 @@ } ] }, - "price": 1755188 + "price": 2119998 }, "26520": { "id": 26520, @@ -283775,7 +276184,7 @@ "examine": "An ornamental kit for the Dwarf multicannon in the style of Leagues III - Shattered Relics.", "wiki_name": "Shattered cannon ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_cannon_ornament_kit", - "price": 841460 + "price": 1139315 }, "26531": { "id": 26531, @@ -283963,7 +276372,7 @@ "examine": "A kit that can be used to apply a Leagues III - Shattered Relics theme to a blue Mystic robe piece.", "wiki_name": "Shattered relics mystic ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_relics_mystic_ornament_kit", - "price": 55779.5 + "price": 55779 }, "26544": { "id": 26544, @@ -284103,7 +276512,7 @@ "examine": "A set containing Shattered boots, Shattered trousers, Shattered top and Shattered hood.", "wiki_name": "Shattered relic hunter (t1) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_relic_hunter_(t1)_armour_set", - "price": 531997.5 + "price": 531997 }, "26557": { "id": 26557, @@ -284120,7 +276529,7 @@ "examine": "A set containing Shattered boots, Shattered trousers, Shattered top and Shattered hood.", "wiki_name": "Shattered relic hunter (t2) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_relic_hunter_(t2)_armour_set", - "price": 1777494.5 + "price": 4449998 }, "26560": { "id": 26560, @@ -284137,20 +276546,7 @@ "examine": "A set containing Shattered boots, Shattered trousers, Shattered top and Shattered hood.", "wiki_name": "Shattered relic hunter (t3) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Shattered_relic_hunter_(t3)_armour_set", - "price": 9094000 - }, - "26566": { - "id": 26566, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The Big High War God left his mark on this place", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_Big_High_War_God_left_his_mark_on_this_place", - "price": 0 + "price": 11005061 }, "26567": { "id": 26567, @@ -287982,7 +280378,7 @@ "slot": "head", "requirements": null }, - "price": 60.5 + "price": 60 }, "26792": { "id": 26792, @@ -288052,7 +280448,7 @@ "slot": "head", "requirements": null }, - "price": 176.5 + "price": 1000 }, "26804": { "id": 26804, @@ -288089,7 +280485,7 @@ "slot": "head", "requirements": null }, - "price": 1005.5 + "price": 1225 }, "26807": { "id": 26807, @@ -288174,7 +280570,7 @@ "slot": "ring", "requirements": null }, - "price": 858376 + "price": 808389 }, "26818": { "id": 26818, @@ -289887,19 +282283,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Message_(Beneath_Cursed_Sands)", "price": 0 }, - "26944": { - "id": 26944, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 14.13S 27.26E", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_14.13S_27.26E", - "price": 0 - }, "26952": { "id": 26952, "name": "Scarab mould", @@ -290388,7 +282771,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Expert Reanimation.", "wiki_name": "Ensouled hellhound head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_hellhound_head#Item", - "price": 5398.5 + "price": 4657 }, "27000": { "id": 27000, @@ -292273,7 +284656,7 @@ "examine": "4 doses of Menaphite remedy.", "wiki_name": "Menaphite remedy (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Menaphite_remedy#4_dose", - "price": 2194.5 + "price": 2194 }, "27205": { "id": 27205, @@ -292307,7 +284690,7 @@ "examine": "2 doses of Menaphite remedy.", "wiki_name": "Menaphite remedy (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Menaphite_remedy#2_dose", - "price": 576 + "price": 956 }, "27211": { "id": 27211, @@ -292324,7 +284707,7 @@ "examine": "1 dose of Menaphite remedy.", "wiki_name": "Menaphite remedy (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Menaphite_remedy#1_dose", - "price": 500 + "price": 716 }, "27214": { "id": 27214, @@ -292440,7 +284823,7 @@ "defence": 30 } }, - "price": 9425466.5 + "price": 7442503 }, "27229": { "id": 27229, @@ -292480,7 +284863,7 @@ "defence": 30 } }, - "price": 68623611 + "price": 56199489 }, "27232": { "id": 27232, @@ -292520,7 +284903,7 @@ "defence": 30 } }, - "price": 45097000.5 + "price": 39971701 }, "27235": { "id": 27235, @@ -292560,7 +284943,7 @@ "defence": 80 } }, - "price": 20888888.5 + "price": 19512332 }, "27238": { "id": 27238, @@ -292600,7 +284983,7 @@ "defence": 80 } }, - "price": 113673698 + "price": 105124309 }, "27241": { "id": 27241, @@ -292640,7 +285023,7 @@ "defence": 80 } }, - "price": 78527665.5 + "price": 78527665 }, "27246": { "id": 27246, @@ -293034,7 +285417,7 @@ "examine": "High grade material.", "wiki_name": "Armadylean plate", "wiki_url": "https://oldschool.runescape.wiki/w/Armadylean_plate", - "price": 11058206 + "price": 11843835 }, "27272": { "id": 27272, @@ -293052,7 +285435,7 @@ "examine": "A beautiful lily.", "wiki_name": "Lily of the sands", "wiki_url": "https://oldschool.runescape.wiki/w/Lily_of_the_sands", - "price": 2491 + "price": 2023 }, "27275": { "id": 27275, @@ -293183,7 +285566,7 @@ } ] }, - "price": 1507500000 + "price": 1403630163 }, "27279": { "id": 27279, @@ -293910,7 +286293,7 @@ "examine": "A set containing a Masori mask, Masori body, Masori chaps", "wiki_name": "Masori armour set (f)", "wiki_url": "https://oldschool.runescape.wiki/w/Masori_armour_set_(f)", - "price": 215832058 + "price": 199972500 }, "27358": { "id": 27358, @@ -296089,7 +288472,7 @@ "cost": 0, "lowalch": 0, "highalch": 0, - "weight": 0.02, + "weight": 0.012, "release_date": "2022-10-26", "examine": "An old and frayed ball of wool.", "wiki_name": "Old wool", @@ -297906,7 +290289,7 @@ "examine": "Pure magical energy filled with a dark power.", "wiki_name": "Ancient essence", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_essence", - "price": 10.5 + "price": 9 }, "27622": { "id": 27622, @@ -298106,7 +290489,7 @@ "examine": "4 doses of forgotten brew.", "wiki_name": "Forgotten brew (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Forgotten_brew#4_dose", - "price": 2943.5 + "price": 7400 }, "27632": { "id": 27632, @@ -298123,7 +290506,7 @@ "examine": "3 doses of forgotten brew.", "wiki_name": "Forgotten brew (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Forgotten_brew#3_dose", - "price": 1668.5 + "price": 3247 }, "27635": { "id": 27635, @@ -298140,7 +290523,7 @@ "examine": "2 doses of forgotten brew.", "wiki_name": "Forgotten brew (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Forgotten_brew#2_dose", - "price": 1509.5 + "price": 2370 }, "27638": { "id": 27638, @@ -298157,7 +290540,7 @@ "examine": "1 dose of forgotten brew.", "wiki_name": "Forgotten brew (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Forgotten_brew#1_dose", - "price": 665 + "price": 1820 }, "27641": { "id": 27641, @@ -298175,7 +290558,7 @@ "examine": "This heart holds an ancient magical power within.", "wiki_name": "Saturated heart", "wiki_url": "https://oldschool.runescape.wiki/w/Saturated_heart", - "price": 107055316.5 + "price": 113983888 }, "27643": { "id": 27643, @@ -298370,7 +290753,7 @@ } ] }, - "price": 14124590.5 + "price": 16952500 }, "27655": { "id": 27655, @@ -298641,7 +291024,7 @@ } ] }, - "price": 2306655.5 + "price": 2396477 }, "27665": { "id": 27665, @@ -298740,7 +291123,7 @@ "examine": "The fangs of a matriarch spider. They seem to maintain a sense of her power.", "wiki_name": "Fangs of venenatis", "wiki_url": "https://oldschool.runescape.wiki/w/Fangs_of_venenatis", - "price": 111564.5 + "price": 91891 }, "27673": { "id": 27673, @@ -298758,7 +291141,7 @@ "examine": "The skull of an oathbound warrior. Severed from its body, it still maintains some power.", "wiki_name": "Skull of vet'ion", "wiki_url": "https://oldschool.runescape.wiki/w/Skull_of_vet'ion", - "price": 106819 + "price": 121830 }, "27676": { "id": 27676, @@ -298837,7 +291220,7 @@ } ] }, - "price": 2231950.5 + "price": 2471822 }, "27679": { "id": 27679, @@ -298930,7 +291313,7 @@ "examine": "The hilt of a broken sword.", "wiki_name": "Voidwaker hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Voidwaker_hilt", - "price": 36194499.5 + "price": 32967801 }, "27684": { "id": 27684, @@ -298947,7 +291330,7 @@ "examine": "The blade of a broken sword.", "wiki_name": "Voidwaker blade", "wiki_url": "https://oldschool.runescape.wiki/w/Voidwaker_blade", - "price": 7696843.5 + "price": 24555389 }, "27687": { "id": 27687, @@ -298964,7 +291347,7 @@ "examine": "The gem of a broken sword.", "wiki_name": "Voidwaker gem", "wiki_url": "https://oldschool.runescape.wiki/w/Voidwaker_gem", - "price": 41028791 + "price": 30009755 }, "27690": { "id": 27690, @@ -298980,6 +291363,7 @@ "lowalch": 800000, "highalch": 1200000, "weight": 1.814, + "buy_limit": 70, "release_date": "2023-01-25", "examine": "A truly fearsome weapon.", "wiki_name": "Voidwaker", @@ -299038,7 +291422,7 @@ } ] }, - "price": 86408037.5 + "price": 86408037 }, "27693": { "id": 27693, @@ -300632,7 +293016,7 @@ } ] }, - "price": 2178497.5 + "price": 2251499 }, "27788": { "id": 27788, @@ -306334,7 +298718,7 @@ "examine": "With some rope, adamantite bars and steel nails, I can create a sturdy harness.", "wiki_name": "Log brace", "wiki_url": "https://oldschool.runescape.wiki/w/Log_brace", - "price": 1000000 + "price": 446000 }, "28149": { "id": 28149, @@ -306351,7 +298735,7 @@ "examine": "I can use this to combine the forestry kit and log basket into one tool.", "wiki_name": "Sturdy harness", "wiki_url": "https://oldschool.runescape.wiki/w/Sturdy_harness", - "price": 1099000 + "price": 595475 }, "28152": { "id": 28152, @@ -306367,7 +298751,7 @@ "examine": "A sacrifice to nature in the hope of an increase of yield in logs.", "wiki_name": "Nature offerings", "wiki_url": "https://oldschool.runescape.wiki/w/Nature_offerings", - "price": 873.5 + "price": 1100 }, "28154": { "id": 28154, @@ -306384,7 +298768,7 @@ "examine": "I can use items with this for nature offerings.", "wiki_name": "Ritual mulch", "wiki_url": "https://oldschool.runescape.wiki/w/Ritual_mulch", - "price": 27150 + "price": 30000 }, "28157": { "id": 28157, @@ -306417,7 +298801,7 @@ "examine": "An ingredient for the secateurs attachment.", "wiki_name": "Secateurs blade", "wiki_url": "https://oldschool.runescape.wiki/w/Secateurs_blade", - "price": 4030.5 + "price": 3540 }, "28161": { "id": 28161, @@ -306433,7 +298817,7 @@ "examine": "Collects leaves when chopping trees.", "wiki_name": "Secateurs attachment", "wiki_url": "https://oldschool.runescape.wiki/w/Secateurs_attachment", - "price": 183 + "price": 87 }, "28163": { "id": 28163, @@ -306450,7 +298834,7 @@ "examine": "A pouch for your dirty work clothes!", "wiki_name": "Clothes pouch", "wiki_url": "https://oldschool.runescape.wiki/w/Clothes_pouch", - "price": 2800000 + "price": 2474996 }, "28166": { "id": 28166, @@ -306478,7 +298862,7 @@ "cost": 50, "lowalch": 20, "highalch": 30, - "weight": 0.136, + "weight": 1.36, "release_date": "2023-06-28", "examine": "You'll certainly be alright wearing this.", "wiki_name": "Forestry top", @@ -306619,7 +299003,7 @@ "examine": "A large handle for turning an axe into a felling axe.", "wiki_name": "Axe handle", "wiki_url": "https://oldschool.runescape.wiki/w/Axe_handle", - "price": 2721596.5 + "price": 2104901 }, "28179": { "id": 28179, @@ -306633,7 +299017,7 @@ "examine": "They're magicly expeditious.", "wiki_name": "Leprechaun charm", "wiki_url": "https://oldschool.runescape.wiki/w/Leprechaun_charm", - "price": 4523.5 + "price": 4523 }, "28181": { "id": 28181, @@ -306715,7 +299099,7 @@ "examine": "I need to put this in a pottery oven.", "wiki_name": "Unfired cup", "wiki_url": "https://oldschool.runescape.wiki/w/Unfired_cup", - "price": 90 + "price": 32 }, "28196": { "id": 28196, @@ -306787,7 +299171,7 @@ } ] }, - "price": 1100500 + "price": 1325000 }, "28199": { "id": 28199, @@ -306859,7 +299243,7 @@ } ] }, - "price": 1300000 + "price": 1005500 }, "28202": { "id": 28202, @@ -306931,7 +299315,7 @@ } ] }, - "price": 975000 + "price": 1025504 }, "28205": { "id": 28205, @@ -307003,7 +299387,7 @@ } ] }, - "price": 1450005.5 + "price": 1450005 }, "28208": { "id": 28208, @@ -307075,7 +299459,7 @@ } ] }, - "price": 1325001.5 + "price": 1375000 }, "28211": { "id": 28211, @@ -307147,7 +299531,7 @@ } ] }, - "price": 1239999.5 + "price": 1405000 }, "28214": { "id": 28214, @@ -307219,7 +299603,7 @@ } ] }, - "price": 3000000 + "price": 2275500 }, "28217": { "id": 28217, @@ -307291,7 +299675,7 @@ } ] }, - "price": 2875944 + "price": 2367440 }, "28220": { "id": 28220, @@ -307450,9 +299834,9 @@ "wiki_name": "3rd age 2h axe", "wiki_url": "https://oldschool.runescape.wiki/w/3rd_age_2h_axe", "equipment": { - "attack_stab": -2, - "attack_slash": 38, - "attack_crush": 32, + "attack_stab": -3, + "attack_slash": 60, + "attack_crush": 51, "attack_magic": 0, "attack_ranged": 0, "defence_stab": 0, @@ -307460,7 +299844,7 @@ "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, - "melee_strength": 42, + "melee_strength": 67, "ranged_strength": 0, "magic_damage": 0, "prayer": 0, @@ -307468,7 +299852,7 @@ "requirements": null }, "weapon": { - "attack_speed": 5, + "attack_speed": 7, "weapon_type": "axe", "stances": [ { @@ -307810,7 +300194,7 @@ "cost": 400000, "lowalch": 160000, "highalch": 240000, - "weight": 9.979, + "weight": 9.071, "release_date": "2023-07-28", "examine": "An ancient warrior's platelegs.", "wiki_name": "Sanguine torva platelegs", @@ -307903,7 +300287,7 @@ "examine": "A dense clump of corroded metal.", "wiki_name": "Chromium ingot", "wiki_url": "https://oldschool.runescape.wiki/w/Chromium_ingot", - "price": 114007 + "price": 99905 }, "28279": { "id": 28279, @@ -308032,7 +300416,7 @@ "examine": "The icon of a berserker.", "wiki_name": "Berserker icon", "wiki_url": "https://oldschool.runescape.wiki/w/Berserker_icon", - "price": 4962500 + "price": 4690250 }, "28298": { "id": 28298, @@ -308049,7 +300433,7 @@ "examine": "The icon of an archer.", "wiki_name": "Archer icon", "wiki_url": "https://oldschool.runescape.wiki/w/Archer_icon", - "price": 4425185 + "price": 2070000 }, "28301": { "id": 28301, @@ -308066,7 +300450,7 @@ "examine": "The icon of a warrior.", "wiki_name": "Warrior icon", "wiki_url": "https://oldschool.runescape.wiki/w/Warrior_icon", - "price": 82053.5 + "price": 82053 }, "28304": { "id": 28304, @@ -308083,7 +300467,7 @@ "examine": "The icon of an archer.", "wiki_name": "Seers icon", "wiki_url": "https://oldschool.runescape.wiki/w/Seers_icon", - "price": 599500 + "price": 560000 }, "28307": { "id": 28307, @@ -308157,7 +300541,7 @@ "slot": "ring", "requirements": null }, - "price": 52648880.5 + "price": 45800501 }, "28313": { "id": 28313, @@ -308194,7 +300578,7 @@ "slot": "ring", "requirements": null }, - "price": 67769344 + "price": 61400598 }, "28316": { "id": 28316, @@ -308231,7 +300615,7 @@ "slot": "ring", "requirements": null }, - "price": 41371421 + "price": 38399500 }, "28319": { "id": 28319, @@ -308429,7 +300813,7 @@ "examine": "A mysterious orb of unknown power. What could it do?", "wiki_name": "Awakener's orb", "wiki_url": "https://oldschool.runescape.wiki/w/Awakener's_orb", - "price": 905722 + "price": 700000 }, "28336": { "id": 28336, @@ -309170,7 +301554,7 @@ "cost": 30, "lowalch": 12, "highalch": 18, - "weight": 0.003, + "weight": 0.028, "release_date": "2023-07-26", "examine": "It's covered in dirt.", "wiki_name": "Mucky note", @@ -309940,7 +302324,7 @@ "name": "Abyssal observations", "members": true, "cost": 30, - "weight": 0.001, + "weight": 0.226, "release_date": "2023-07-26", "examine": "A book of notes and observations.", "wiki_name": "Abyssal observations", @@ -311719,7 +304103,7 @@ } ] }, - "price": 182000 + "price": 166310 }, "28585": { "id": 28585, @@ -312297,7 +304681,7 @@ "examine": "Used to provide additional planks at the sawmill.", "wiki_name": "Sawmill voucher", "wiki_url": "https://oldschool.runescape.wiki/w/Sawmill_voucher", - "price": 2052.5 + "price": 1700 }, "28630": { "id": 28630, @@ -312358,7 +304742,7 @@ "examine": "If used correctly, smoker canisters can pacify wild bees.", "wiki_name": "Smoker canister", "wiki_url": "https://oldschool.runescape.wiki/w/Smoker_canister", - "price": 10415.5 + "price": 10415 }, "28649": { "id": 28649, @@ -312514,7 +304898,7 @@ "examine": "Used to safely disarm fox poacher traps.", "wiki_name": "Trap disarmer", "wiki_url": "https://oldschool.runescape.wiki/w/Trap_disarmer", - "price": 9981.5 + "price": 9981 }, "28667": { "id": 28667, @@ -312716,7 +305100,7 @@ "examine": "Used on the Dinh's Bulwark to give it a theme from Leagues IV: Trailblazer Reloaded.", "wiki_name": "Trailblazer reloaded bulwark ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_bulwark_ornament_kit", - "price": 6756654 + "price": 7431999 }, "28687": { "id": 28687, @@ -312809,7 +305193,7 @@ "examine": "Used on an uncharged Toxic Blowpipe to give it the a theme from Leagues IV: Trailblazer Reloaded.", "wiki_name": "Trailblazer reloaded blowpipe ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_blowpipe_ornament_kit", - "price": 4185000 + "price": 5031868 }, "28693": { "id": 28693, @@ -312826,7 +305210,7 @@ "examine": "A scroll which unlocks the Trailblazer Reloaded Alchemy animation.", "wiki_name": "Trailblazer reloaded alchemy scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_alchemy_scroll", - "price": 1700000 + "price": 1515253 }, "28696": { "id": 28696, @@ -312843,7 +305227,7 @@ "examine": "A scroll which unlocks the Trailblazer Reloaded Vengeance animation.", "wiki_name": "Trailblazer reloaded vengeance scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_vengeance_scroll", - "price": 5503282 + "price": 6056988 }, "28699": { "id": 28699, @@ -312861,7 +305245,7 @@ "examine": "A scroll which unlocks the Trailblazer Reloaded death and respawn animation.", "wiki_name": "Trailblazer reloaded death scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_death_scroll", - "price": 2348048.5 + "price": 2970342 }, "28702": { "id": 28702, @@ -312933,7 +305317,7 @@ } ] }, - "price": 150500 + "price": 300000 }, "28705": { "id": 28705, @@ -312951,7 +305335,7 @@ "examine": "A scroll which unlocks the Trailblazer Reloaded Home Teleport animation.", "wiki_name": "Trailblazer reloaded home teleport scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_home_teleport_scroll", - "price": 601373 + "price": 881999 }, "28708": { "id": 28708, @@ -312968,7 +305352,7 @@ "examine": "Used on an Ornate rejuvination pool inside your Player owned house to give it a theme from Leagues IV: Trailblazer Reloaded.", "wiki_name": "Trailblazer reloaded rejuvenation pool scroll", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_rejuvenation_pool_scroll", - "price": 5765071.5 + "price": 8143173 }, "28711": { "id": 28711, @@ -313014,7 +305398,7 @@ "slot": "head", "requirements": null }, - "price": 67221.5 + "price": 67221 }, "28715": { "id": 28715, @@ -313051,7 +305435,7 @@ "slot": "body", "requirements": null }, - "price": 51250 + "price": 35500 }, "28718": { "id": 28718, @@ -313125,7 +305509,7 @@ "slot": "feet", "requirements": null }, - "price": 52500 + "price": 35000 }, "28724": { "id": 28724, @@ -313162,7 +305546,7 @@ "slot": "head", "requirements": null }, - "price": 222989.5 + "price": 441520 }, "28727": { "id": 28727, @@ -313199,7 +305583,7 @@ "slot": "body", "requirements": null }, - "price": 117555.5 + "price": 67326 }, "28730": { "id": 28730, @@ -313236,7 +305620,7 @@ "slot": "legs", "requirements": null }, - "price": 219583 + "price": 191176 }, "28733": { "id": 28733, @@ -313273,7 +305657,7 @@ "slot": "feet", "requirements": null }, - "price": 209352.5 + "price": 195055 }, "28736": { "id": 28736, @@ -313310,7 +305694,7 @@ "slot": "head", "requirements": null }, - "price": 1500000 + "price": 8727000 }, "28739": { "id": 28739, @@ -313347,7 +305731,7 @@ "slot": "body", "requirements": null }, - "price": 2524999.5 + "price": 2524999 }, "28742": { "id": 28742, @@ -313384,7 +305768,7 @@ "slot": "legs", "requirements": null }, - "price": 1150500 + "price": 1632000 }, "28745": { "id": 28745, @@ -313421,7 +305805,7 @@ "slot": "feet", "requirements": null }, - "price": 1462500 + "price": 1738856 }, "28748": { "id": 28748, @@ -313493,7 +305877,7 @@ } ] }, - "price": 4650000 + "price": 3343212 }, "28751": { "id": 28751, @@ -314023,7 +306407,7 @@ "examine": "A set containing Trailblazer Reloaded boots, Trailblazer Reloaded trousers, Trailblazer Reloaded top and Trailblazer Reloaded hood.", "wiki_name": "Trailblazer reloaded relic hunter (t1) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_relic_hunter_(t1)_armour_set", - "price": 195175.5 + "price": 116767 }, "28780": { "id": 28780, @@ -314040,7 +306424,7 @@ "examine": "A set containing Trailblazer Reloaded boots, Trailblazer Reloaded trousers, Trailblazer Reloaded top and Trailblazer Reloaded hood.", "wiki_name": "Trailblazer reloaded relic hunter (t2) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_relic_hunter_(t2)_armour_set", - "price": 2000000 + "price": 1615356 }, "28783": { "id": 28783, @@ -314057,7 +306441,7 @@ "examine": "A set containing Trailblazer Reloaded boots, Trailblazer Reloaded trousers, Trailblazer Reloaded top and Trailblazer Reloaded hood.", "wiki_name": "Trailblazer reloaded relic hunter (t3) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_relic_hunter_(t3)_armour_set", - "price": 6451000 + "price": 8947500 }, "28786": { "id": 28786, @@ -314135,7 +306519,7 @@ "examine": "A teleport to Kourend Castle.", "wiki_name": "Kourend castle teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Kourend_castle_teleport_(tablet)", - "price": 2279.5 + "price": 758 }, "28792": { "id": 28792, @@ -314520,7 +306904,7 @@ } ] }, - "price": 2230029 + "price": 1772500 }, "28813": { "id": 28813, @@ -314537,7 +306921,7 @@ "examine": "An old rusty axe. It needs repairing before it can be used.", "wiki_name": "Broken zombie axe", "wiki_url": "https://oldschool.runescape.wiki/w/Broken_zombie_axe", - "price": 2170000 + "price": 1743006 }, "28816": { "id": 28816, @@ -314606,6 +306990,20 @@ "highalch": 0, "price": 0 }, + "28822": { + "id": 28822, + "name": "Coin pouch", + "members": true, + "stackable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2024-03-20", + "examine": "A pouch full of coins taken from the pockets of a wealthy citizen.", + "wiki_name": "Coin pouch (Wealthy citizen)", + "wiki_url": "https://oldschool.runescape.wiki/w/Coin_pouch#Wealthy_citizen", + "price": 0 + }, "28823": { "id": 28823, "name": "Lesser nagua", @@ -314629,7 +307027,7 @@ "examine": "A teleport to Civitas illa Fortis.", "wiki_name": "Civitas illa fortis teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Civitas_illa_fortis_teleport_(tablet)", - "price": 721 + "price": 951 }, "28826": { "id": 28826, @@ -314688,7 +307086,7 @@ "examine": "A little too small to stuff full of tar.", "wiki_name": "Immature tecu salamander", "wiki_url": "https://oldschool.runescape.wiki/w/Immature_tecu_salamander", - "price": 191 + "price": 171 }, "28834": { "id": 28834, @@ -314753,7 +307151,7 @@ } ] }, - "price": 488500 + "price": 831475 }, "28837": { "id": 28837, @@ -314767,7 +307165,6 @@ "cost": 1, "lowalch": 0, "highalch": 0, - "weight": 0.453, "release_date": "2024-03-20", "examine": "A dark, thick, foul-smelling, tar-like substance.", "wiki_name": "Irit tar", @@ -314784,13 +307181,13 @@ "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 49, + "ranged_strength": 60, "magic_damage": 0, "prayer": 0, "slot": "ammo", "requirements": null }, - "price": 9.5 + "price": 9 }, "28863": { "id": 28863, @@ -314860,6 +307257,7 @@ "lowalch": 520, "highalch": 780, "weight": 6, + "buy_limit": 70, "release_date": "2024-03-20", "examine": "A weapon made of horn and bone.", "wiki_name": "Hunters' sunlight crossbow", @@ -314909,7 +307307,7 @@ } ] }, - "price": 4104.5 + "price": 2973 }, "28872": { "id": 28872, @@ -314945,7 +307343,7 @@ "slot": "ammo", "requirements": null }, - "price": 73.5 + "price": 91 }, "28878": { "id": 28878, @@ -314959,6 +307357,7 @@ "cost": 31, "lowalch": 12, "highalch": 18, + "buy_limit": 11000, "release_date": "2024-03-20", "examine": "Bolts made from the antlers of a moonlight antelope.", "wiki_name": "Moonlight antler bolts", @@ -314981,7 +307380,7 @@ "slot": "ammo", "requirements": null }, - "price": 315 + "price": 221 }, "28884": { "id": 28884, @@ -315019,11 +307418,12 @@ "cost": 1, "lowalch": 0, "highalch": 0, + "weight": 0.02, "release_date": "2024-03-20", "examine": "There's a sunlight moth in here.", "wiki_name": "Sunlight moth (item)", "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_moth_(item)", - "price": 334 + "price": 474 }, "28893": { "id": 28893, @@ -315035,6 +307435,8 @@ "cost": 1, "lowalch": 0, "highalch": 0, + "weight": 0.02, + "buy_limit": 125, "release_date": "2024-03-20", "examine": "There's a moonlight moth in here.", "wiki_name": "Moonlight moth (item)", @@ -315056,7 +307458,7 @@ "examine": "A strong spirit with a bold flavour.", "wiki_name": "Rum", "wiki_url": "https://oldschool.runescape.wiki/w/Rum", - "price": 1048 + "price": 5050 }, "28899": { "id": 28899, @@ -315074,7 +307476,7 @@ "examine": "Ew it's a pile of bones.", "wiki_name": "Wyrmling bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wyrmling_bones", - "price": 506 + "price": 304 }, "28902": { "id": 28902, @@ -315095,14 +307497,14 @@ "attack_slash": 0, "attack_crush": 0, "attack_magic": 0, - "attack_ranged": 28, + "attack_ranged": 18, "defence_stab": 0, "defence_slash": 0, "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 4, + "ranged_strength": 3, "magic_damage": 0, "prayer": 0, "slot": "cape", @@ -315163,14 +307565,14 @@ "attack_slash": 0, "attack_crush": 0, "attack_magic": 0, - "attack_ranged": 28, + "attack_ranged": 18, "defence_stab": 0, "defence_slash": 0, "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 4, + "ranged_strength": 3, "magic_damage": 0, "prayer": 0, "slot": "cape", @@ -315178,146 +307580,6 @@ }, "price": 0 }, - "28908": { - "id": 28908, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - Are you somewhat entertained", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Are_you_somewhat_entertained", - "price": 0 - }, - "28909": { - "id": 28909, - "name": "Clue scroll (medium)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (medium) - 1.33S 24.24W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_1.33S_24.24W", - "price": 0 - }, - "28910": { - "id": 28910, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - Bow within the temple in Civitas illa Fortis", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_Bow_within_the_temple_in_Civitas_illa_Fortis", - "price": 0 - }, - "28911": { - "id": 28911, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - With drinks and dwarves I make my way", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_With_drinks_and_dwarves_I_make_my_way", - "price": 0 - }, - "28912": { - "id": 28912, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (elite) - 0.42N 27.35W", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite)_-_0.42N_27.35W", - "price": 0 - }, - "28913": { - "id": 28913, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Search the bookshelf with a skull on it inside the Burrow", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Search_the_bookshelf_with_a_skull_on_it_inside_the_Burrow", - "price": 0 - }, - "28914": { - "id": 28914, - "name": "Clue scroll (easy)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (easy) - Yawn in the Fortis Grand Museum", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Yawn_in_the_Fortis_Grand_Museum", - "price": 0 - }, - "28915": { - "id": 28915, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - A J P 3 0 1 5", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_A_J_P_3_0_1_5", - "price": 0 - }, - "28916": { - "id": 28916, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - BXJA UNJMNA YRCAR", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_BXJA_UNJMNA_YRCAR", - "price": 0 - }, - "28918": { - "id": 28918, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2024-03-20", - "examine": "A clue!", - "wiki_name": "Clue scroll (hard) - The Moons of Ruin", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)_-_The_Moons_of_Ruin", - "price": 0 - }, "28919": { "id": 28919, "name": "Tonalztics of ralos (uncharged)", @@ -315381,7 +307643,7 @@ } ] }, - "price": 88550029 + "price": 91779315 }, "28922": { "id": 28922, @@ -315455,11 +307717,12 @@ "cost": 100, "lowalch": 40, "highalch": 60, + "buy_limit": 30000, "release_date": "2024-03-20", "examine": "Vaporised material from the sun.", "wiki_name": "Sunfire splinters", "wiki_url": "https://oldschool.runescape.wiki/w/Sunfire_splinters", - "price": 931 + "price": 489 }, "28929": { "id": 28929, @@ -315471,27 +307734,28 @@ "cost": 20, "lowalch": 8, "highalch": 12, + "buy_limit": 18000, "release_date": "2024-03-20", "examine": "A fire rune empowered by the sun.", "wiki_name": "Sunfire rune", "wiki_url": "https://oldschool.runescape.wiki/w/Sunfire_rune", - "price": 93.5 + "price": 113 }, "28931": { "id": 28931, "name": "Searing page", "members": true, + "tradeable": true, "tradeable_on_ge": true, "stackable": true, "cost": 200, "lowalch": 80, "highalch": 120, - "weight": 0.005, "release_date": "2024-03-20", "examine": "It's still warm to the touch.", "wiki_name": "Searing page", "wiki_url": "https://oldschool.runescape.wiki/w/Searing_page", - "price": 0 + "price": 14798 }, "28933": { "id": 28933, @@ -315528,7 +307792,7 @@ "slot": "head", "requirements": null }, - "price": 10434710 + "price": 1761000 }, "28936": { "id": 28936, @@ -315565,7 +307829,7 @@ "slot": "body", "requirements": null }, - "price": 9933047.5 + "price": 7489178 }, "28939": { "id": 28939, @@ -315588,7 +307852,7 @@ "attack_stab": 0, "attack_slash": 0, "attack_crush": 0, - "attack_magic": -21, + "attack_magic": -4, "attack_ranged": -11, "defence_stab": 51, "defence_slash": 49, @@ -315602,7 +307866,7 @@ "slot": "legs", "requirements": null }, - "price": 17585500 + "price": 10688820 }, "28942": { "id": 28942, @@ -315619,7 +307883,7 @@ "examine": "A crystal of rebounding potential.", "wiki_name": "Echo crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Echo_crystal", - "price": 12747504.5 + "price": 5451844 }, "28945": { "id": 28945, @@ -315674,14 +307938,14 @@ "attack_slash": 0, "attack_crush": 0, "attack_magic": 0, - "attack_ranged": 28, + "attack_ranged": 0, "defence_stab": 0, "defence_slash": 0, "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 4, + "ranged_strength": 0, "magic_damage": 0, "prayer": 0, "slot": "cape", @@ -315692,7 +307956,6 @@ "28949": { "id": 28949, "name": "Dizana's quiver (uncharged) (l)", - "incomplete": true, "members": true, "equipable": true, "equipable_by_player": true, @@ -315743,14 +308006,14 @@ "attack_slash": 0, "attack_crush": 0, "attack_magic": 0, - "attack_ranged": 18, + "attack_ranged": 0, "defence_stab": 0, "defence_slash": 0, "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 3, + "ranged_strength": 0, "magic_damage": 0, "prayer": 0, "slot": "cape", @@ -315761,7 +308024,6 @@ "28953": { "id": 28953, "name": "Dizana's quiver (l)", - "incomplete": true, "members": true, "equipable": true, "equipable_by_player": true, @@ -315812,14 +308074,14 @@ "attack_slash": 0, "attack_crush": 0, "attack_magic": 0, - "attack_ranged": 28, + "attack_ranged": 18, "defence_stab": 0, "defence_slash": 0, "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 4, + "ranged_strength": 3, "magic_damage": 0, "prayer": 0, "slot": "cape", @@ -315846,14 +308108,14 @@ "attack_slash": 0, "attack_crush": 0, "attack_magic": 0, - "attack_ranged": 28, + "attack_ranged": 18, "defence_stab": 0, "defence_slash": 0, "defence_crush": 0, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, - "ranged_strength": 4, + "ranged_strength": 3, "magic_damage": 0, "prayer": 0, "slot": "cape", @@ -316186,7 +308448,7 @@ "cost": 100000, "lowalch": 40000, "highalch": 60000, - "weight": 2.267, + "weight": 3, "release_date": "2024-03-20", "examine": "A magical staff of ancient origin...", "wiki_name": "Blue moon spear", @@ -316250,7 +308512,7 @@ } ] }, - "price": 736829.5 + "price": 404952 }, "28991": { "id": 28991, @@ -316264,7 +308526,7 @@ "cost": 490, "lowalch": 196, "highalch": 294, - "buy_limit": 100, + "buy_limit": 11000, "release_date": "2024-03-20", "examine": "Quite big for a dart.", "wiki_name": "Atlatl dart", @@ -316287,7 +308549,7 @@ "slot": "ammo", "requirements": null }, - "price": 69.5 + "price": 69 }, "28997": { "id": 28997, @@ -316327,7 +308589,7 @@ }, "weapon": { "attack_speed": 4, - "weapon_type": "blunt", + "weapon_type": "spiked", "stances": [ { "combat_style": "pound", @@ -316343,6 +308605,13 @@ "experience": "strength", "boosts": null }, + { + "combat_style": "spike", + "attack_type": "stab", + "attack_style": "controlled", + "experience": "shared", + "boosts": null + }, { "combat_style": "block", "attack_type": "crush", @@ -316352,7 +308621,7 @@ } ] }, - "price": 2085630.5 + "price": 1693789 }, "29000": { "id": 29000, @@ -316417,7 +308686,7 @@ } ] }, - "price": 2900658.5 + "price": 2126906 }, "29004": { "id": 29004, @@ -316431,7 +308700,7 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 3, "release_date": "2024-03-20", "examine": "The chestplate of the Eclipse Moon.", "wiki_name": "Eclipse moon chestplate (New)", @@ -316454,7 +308723,7 @@ "slot": "body", "requirements": null }, - "price": 1602283.5 + "price": 888553 }, "29007": { "id": 29007, @@ -316468,7 +308737,7 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 1, "release_date": "2024-03-20", "examine": "The tassets of the Eclipse Moon.", "wiki_name": "Eclipse moon tassets (New)", @@ -316491,7 +308760,7 @@ "slot": "legs", "requirements": null }, - "price": 1777199.5 + "price": 951033 }, "29010": { "id": 29010, @@ -316505,7 +308774,7 @@ "cost": 103000, "lowalch": 41200, "highalch": 61800, - "weight": 1, + "weight": 0.907, "release_date": "2024-03-20", "examine": "The helm of the Eclipse Moon.", "wiki_name": "Eclipse moon helm (New)", @@ -316528,7 +308797,7 @@ "slot": "head", "requirements": null }, - "price": 1135733.5 + "price": 843207 }, "29013": { "id": 29013, @@ -316542,7 +308811,7 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 3.175, "release_date": "2024-03-20", "examine": "The chestplate of the Blue Moon.", "wiki_name": "Blue moon chestplate (New)", @@ -316565,7 +308834,7 @@ "slot": "body", "requirements": null }, - "price": 1996702.5 + "price": 1736763 }, "29016": { "id": 29016, @@ -316579,7 +308848,7 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 1.36, "release_date": "2024-03-20", "examine": "The tassets of the Blue Moon.", "wiki_name": "Blue moon tassets (New)", @@ -316593,7 +308862,7 @@ "defence_stab": 0, "defence_slash": 0, "defence_crush": 23, - "defence_magic": 22, + "defence_magic": 32, "defence_ranged": 0, "melee_strength": 1, "ranged_strength": 0, @@ -316602,7 +308871,7 @@ "slot": "legs", "requirements": null }, - "price": 5207000 + "price": 2219975 }, "29019": { "id": 29019, @@ -316616,7 +308885,7 @@ "cost": 103000, "lowalch": 41200, "highalch": 61800, - "weight": 1, + "weight": 0.453, "release_date": "2024-03-20", "examine": "The helm of the Blue Moon.", "wiki_name": "Blue moon helm (New)", @@ -316632,14 +308901,14 @@ "defence_crush": 10, "defence_magic": 6, "defence_ranged": 0, - "melee_strength": 2, + "melee_strength": 3, "ranged_strength": 0, "magic_damage": 0, "prayer": 0, "slot": "head", "requirements": null }, - "price": 1109528.5 + "price": 693128 }, "29022": { "id": 29022, @@ -316653,7 +308922,7 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 5.443, "release_date": "2024-03-20", "examine": "The chestplate of the Blood Moon.", "wiki_name": "Blood moon chestplate (New)", @@ -316676,7 +308945,7 @@ "slot": "body", "requirements": null }, - "price": 1951820 + "price": 1414261 }, "29025": { "id": 29025, @@ -316690,7 +308959,7 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 4.082, "release_date": "2024-03-20", "examine": "The tassets of the Blood Moon.", "wiki_name": "Blood moon tassets (New)", @@ -316713,7 +308982,7 @@ "slot": "legs", "requirements": null }, - "price": 5564095 + "price": 3626898 }, "29028": { "id": 29028, @@ -316750,7 +309019,7 @@ "slot": "head", "requirements": null }, - "price": 692955 + "price": 650937 }, "29031": { "id": 29031, @@ -316761,7 +309030,7 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 3, "release_date": "2024-03-20", "examine": "The chestplate of the Eclipse Moon.", "wiki_name": "Eclipse moon chestplate (Used)", @@ -316795,7 +309064,7 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 1, "release_date": "2024-03-20", "examine": "The tassets of the Eclipse Moon.", "wiki_name": "Eclipse moon tassets (Used)", @@ -316863,7 +309132,7 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 3.175, "release_date": "2024-03-20", "examine": "The chestplate of the Blue Moon.", "wiki_name": "Blue moon chestplate (Used)", @@ -316897,7 +309166,7 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 1.36, "release_date": "2024-03-20", "examine": "The tassets of the Blue Moon.", "wiki_name": "Blue moon tassets (Used)", @@ -316911,7 +309180,7 @@ "defence_stab": 0, "defence_slash": 0, "defence_crush": 23, - "defence_magic": 22, + "defence_magic": 32, "defence_ranged": 0, "melee_strength": 1, "ranged_strength": 0, @@ -316931,7 +309200,7 @@ "cost": 103000, "lowalch": 41200, "highalch": 61800, - "weight": 0.907, + "weight": 0.453, "release_date": "2024-03-20", "examine": "The helm of the Blue Moon.", "wiki_name": "Blue moon helm (Used)", @@ -316947,7 +309216,7 @@ "defence_crush": 10, "defence_magic": 6, "defence_ranged": 0, - "melee_strength": 2, + "melee_strength": 3, "ranged_strength": 0, "magic_damage": 0, "prayer": 0, @@ -316965,7 +309234,7 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 5.443, "release_date": "2024-03-20", "examine": "The chestplate of the Blood Moon.", "wiki_name": "Blood moon chestplate (Used)", @@ -316999,7 +309268,7 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 4.082, "release_date": "2024-03-20", "examine": "The tassets of the Blood Moon.", "wiki_name": "Blood moon tassets (Used)", @@ -317068,12 +309337,12 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 3, "release_date": "2024-03-20", "examine": "The chestplate of the Eclipse Moon.", "wiki_name": "Eclipse moon chestplate (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_chestplate#Broken", - "price": 717500 + "price": 242148 }, "29052": { "id": 29052, @@ -317085,12 +309354,12 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 1, "release_date": "2024-03-20", "examine": "The tassets of the Eclipse Moon.", "wiki_name": "Eclipse moon tassets (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_tassets#Broken", - "price": 895007.5 + "price": 204027 }, "29055": { "id": 29055, @@ -317107,7 +309376,7 @@ "examine": "The helm of the Eclipse Moon.", "wiki_name": "Eclipse moon helm (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_helm#Broken", - "price": 275000.5 + "price": 105205 }, "29058": { "id": 29058, @@ -317119,12 +309388,12 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 3.175, "release_date": "2024-03-20", "examine": "The chestplate of the Blue Moon.", "wiki_name": "Blue moon chestplate (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_chestplate#Broken", - "price": 1071383.5 + "price": 898606 }, "29061": { "id": 29061, @@ -317136,12 +309405,12 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 1.36, "release_date": "2024-03-20", "examine": "The tassets of the Blue Moon.", "wiki_name": "Blue moon tassets (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_tassets#Broken", - "price": 3996000 + "price": 1568456 }, "29064": { "id": 29064, @@ -317153,12 +309422,12 @@ "cost": 103000, "lowalch": 41200, "highalch": 61800, - "weight": 0.907, + "weight": 0.453, "release_date": "2024-03-20", "examine": "The helm of the Blue Moon.", "wiki_name": "Blue moon helm (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_helm#Broken", - "price": 355540 + "price": 195000 }, "29067": { "id": 29067, @@ -317170,12 +309439,12 @@ "cost": 290010, "lowalch": 116004, "highalch": 174006, - "weight": 12, + "weight": 5.443, "release_date": "2024-03-20", "examine": "The chestplate of the Blood Moon.", "wiki_name": "Blood moon chestplate (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_chestplate#Broken", - "price": 1058288.5 + "price": 925750 }, "29070": { "id": 29070, @@ -317187,12 +309456,12 @@ "cost": 289910, "lowalch": 115964, "highalch": 173946, - "weight": 8, + "weight": 4.082, "release_date": "2024-03-20", "examine": "The tassets of the Blood Moon.", "wiki_name": "Blood moon tassets (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_tassets#Broken", - "price": 4045575 + "price": 2997796 }, "29073": { "id": 29073, @@ -317209,63 +309478,63 @@ "examine": "The helm of the Blood Moon.", "wiki_name": "Blood moon helm (Broken)", "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_helm#Broken", - "price": 342999.5 + "price": 178968 }, "29076": { "id": 29076, "name": "Raw moss lizard", "members": true, "cost": 20, - "lowalch": 8, - "highalch": 12, "weight": 0.17, "release_date": "2024-03-20", "examine": "Might taste better cooked.", "wiki_name": "Raw moss lizard", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_moss_lizard", - "price": 0 + "price": 0, + "lowalch": 8, + "highalch": 12 }, "29077": { "id": 29077, "name": "Cooked moss lizard", "members": true, "cost": 50, - "lowalch": 20, - "highalch": 30, "weight": 0.141, "release_date": "2024-03-20", "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked moss lizard", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_moss_lizard", - "price": 0 + "price": 0, + "lowalch": 20, + "highalch": 30 }, "29078": { "id": 29078, "name": "Moonlight grub", "members": true, "cost": 50, - "lowalch": 20, - "highalch": 30, "weight": 0.001, "release_date": "2024-03-20", "examine": "Squirms and glitters.", "wiki_name": "Moonlight grub", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_grub", - "price": 0 + "price": 0, + "lowalch": 20, + "highalch": 30 }, "29079": { "id": 29079, "name": "Moonlight grub paste", "members": true, "cost": 50, - "lowalch": 20, - "highalch": 30, "weight": 0.002, "release_date": "2024-03-20", "examine": "A gooey, sparkling, grub-based paste.", "wiki_name": "Moonlight grub paste", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_grub_paste", - "price": 0 + "price": 0, + "lowalch": 20, + "highalch": 30 }, "29080": { "id": 29080, @@ -317393,7 +309662,7 @@ } ] }, - "price": 234750 + "price": 30000 }, "29087": { "id": 29087, @@ -317401,14 +309670,13 @@ "members": true, "stackable": true, "cost": 10, - "lowalch": 4, - "highalch": 6, - "weight": 0.056, "release_date": "2024-03-20", "examine": "Brimming with unstable magic. It stings when it touches skin.", "wiki_name": "Sulphurous essence", "wiki_url": "https://oldschool.runescape.wiki/w/Sulphurous_essence", - "price": 0 + "price": 0, + "lowalch": 4, + "highalch": 6 }, "29088": { "id": 29088, @@ -317432,20 +309700,20 @@ "tradeable_on_ge": true, "stackable": true, "cost": 10000, - "lowalch": 4000, - "highalch": 6000, + "buy_limit": 100, "release_date": "2024-03-20", "examine": "A fossilised moth infused with dwarven magic.", "wiki_name": "Calcified moth", "wiki_url": "https://oldschool.runescape.wiki/w/Calcified_moth", - "price": 6250 + "price": 5075, + "lowalch": 4000, + "highalch": 6000 }, "29098": { "id": 29098, "name": "Not meat", "members": true, "tradeable": true, - "tradeable_on_ge": true, "noteable": true, "cost": 1, "lowalch": 0, @@ -317455,7 +309723,7 @@ "examine": "Don't eat this.", "wiki_name": "Not meat", "wiki_url": "https://oldschool.runescape.wiki/w/Not_meat", - "price": 176.5 + "price": 176 }, "29101": { "id": 29101, @@ -317472,7 +309740,7 @@ "examine": "Ouch!", "wiki_name": "Raw barb-tailed kebbit", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_barb-tailed_kebbit", - "price": 444.5 + "price": 205 }, "29104": { "id": 29104, @@ -317523,7 +309791,7 @@ "examine": "I should probably cook this first.", "wiki_name": "Raw pyre fox", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_pyre_fox", - "price": 123.5 + "price": 255 }, "29113": { "id": 29113, @@ -317540,7 +309808,7 @@ "examine": "I should probably cook this first.", "wiki_name": "Raw moonlight antelope", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_moonlight_antelope", - "price": 1864 + "price": 2384 }, "29116": { "id": 29116, @@ -317557,7 +309825,7 @@ "examine": "I should probably cook this first.", "wiki_name": "Raw sunlight antelope", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_sunlight_antelope", - "price": 434.5 + "price": 522 }, "29119": { "id": 29119, @@ -317574,7 +309842,7 @@ "examine": "I should probably cook this first.", "wiki_name": "Raw graahk", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_graahk", - "price": 50.5 + "price": 270 }, "29122": { "id": 29122, @@ -317591,7 +309859,7 @@ "examine": "I should probably cook this first.", "wiki_name": "Raw larupia", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_larupia", - "price": 441.5 + "price": 371 }, "29125": { "id": 29125, @@ -317608,7 +309876,7 @@ "examine": "I should probably cook this first.", "wiki_name": "Raw kyatt", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_kyatt", - "price": 80 + "price": 129 }, "29128": { "id": 29128, @@ -317625,7 +309893,7 @@ "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked wild kebbit", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_wild_kebbit", - "price": 127.5 + "price": 65 }, "29131": { "id": 29131, @@ -317639,7 +309907,7 @@ "highalch": 2, "weight": 0.283, "release_date": "2024-03-20", - "examine": "Mmm this looks tasty.", + "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked barb-tailed kebbit", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_barb-tailed_kebbit", "price": 240 @@ -317659,7 +309927,7 @@ "examine": "I should eat this quickly.", "wiki_name": "Cooked dashing kebbit", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_dashing_kebbit", - "price": 1328.5 + "price": 1328 }, "29137": { "id": 29137, @@ -317676,7 +309944,7 @@ "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked pyre fox", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_pyre_fox", - "price": 430 + "price": 500 }, "29140": { "id": 29140, @@ -317693,7 +309961,7 @@ "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked sunlight antelope", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_sunlight_antelope", - "price": 693 + "price": 846 }, "29143": { "id": 29143, @@ -317710,7 +309978,7 @@ "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked moonlight antelope", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_moonlight_antelope", - "price": 2214.5 + "price": 2974 }, "29146": { "id": 29146, @@ -317727,7 +309995,7 @@ "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked larupia", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_larupia", - "price": 536 + "price": 330 }, "29149": { "id": 29149, @@ -317744,7 +310012,7 @@ "examine": "Mmm, this looks tasty.", "wiki_name": "Cooked graahk", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_graahk", - "price": 312 + "price": 105 }, "29152": { "id": 29152, @@ -317767,13 +310035,14 @@ "id": 29155, "name": "Burnt kebbit", "members": true, + "tradeable": true, "noteable": true, "cost": 1, "lowalch": 0, "highalch": 0, "weight": 0.226, "release_date": "2024-03-20", - "examine": "\"Oh dear, it's totally burnt!\"", + "examine": "Oh dear, it's totally burnt!", "wiki_name": "Burnt kebbit", "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_kebbit", "price": 0 @@ -317782,13 +310051,14 @@ "id": 29157, "name": "Burnt large beast", "members": true, + "tradeable": true, "noteable": true, "cost": 1, "lowalch": 0, "highalch": 0, "weight": 0.226, "release_date": "2024-03-20", - "examine": "\"Oh dear, it's totally burnt!\"", + "examine": "Oh dear, it's totally burnt!", "wiki_name": "Burnt large beast", "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_large_beast", "price": 0 @@ -317804,7 +310074,7 @@ "highalch": 0, "weight": 0.226, "release_date": "2024-03-20", - "examine": "\"Oh dear, it's totally burnt!\"", + "examine": "Oh dear, it's totally burnt!", "wiki_name": "Burnt antelope", "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_antelope", "price": 0 @@ -317813,13 +310083,14 @@ "id": 29161, "name": "Burnt fox meat", "members": true, + "tradeable": true, "noteable": true, "cost": 1, "lowalch": 0, "highalch": 0, "weight": 0.226, "release_date": "2024-03-20", - "examine": "\"Oh dear, it's totally burnt!\"", + "examine": "Oh dear, it's totally burnt!", "wiki_name": "Burnt fox meat", "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_fox_meat", "price": 0 @@ -317839,7 +310110,7 @@ "examine": "This would make warm clothing.", "wiki_name": "Fox fur", "wiki_url": "https://oldschool.runescape.wiki/w/Fox_fur", - "price": 612 + "price": 358 }, "29166": { "id": 29166, @@ -317851,12 +310122,11 @@ "cost": 1, "lowalch": 0, "highalch": 0, - "weight": 0.3, "release_date": "2024-03-20", "examine": "The long tail of an embertailed jerboa.", "wiki_name": "Jerboa tail", "wiki_url": "https://oldschool.runescape.wiki/w/Jerboa_tail", - "price": 391 + "price": 121 }, "29168": { "id": 29168, @@ -317890,7 +310160,7 @@ "examine": "I don't think I can stick it back on.", "wiki_name": "Moonlight antelope antler", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_antelope_antler", - "price": 3143 + "price": 2136 }, "29174": { "id": 29174, @@ -317907,7 +310177,7 @@ "examine": "I can make something out of this.", "wiki_name": "Moonlight antelope fur", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_antelope_fur", - "price": 1516 + "price": 803 }, "29177": { "id": 29177, @@ -317924,7 +310194,7 @@ "examine": "I can make something out of this.", "wiki_name": "Sunlight antelope fur", "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_antelope_fur", - "price": 110.5 + "price": 110 }, "29180": { "id": 29180, @@ -317941,7 +310211,7 @@ "examine": "There's a sapphire glacialis butterfly in here.", "wiki_name": "Sapphire glacialis mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sapphire_glacialis_mix#2_dose", - "price": 455.5 + "price": 800 }, "29183": { "id": 29183, @@ -317958,7 +310228,7 @@ "examine": "There's a snowy knight butterfly in here.", "wiki_name": "Snowy knight mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Snowy_knight_mix#2_dose", - "price": 2469 + "price": 3000 }, "29186": { "id": 29186, @@ -317975,7 +310245,7 @@ "examine": "There's a ruby harvest butterfly in here.", "wiki_name": "Ruby harvest mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ruby_harvest_mix#2_dose", - "price": 350.5 + "price": 718 }, "29189": { "id": 29189, @@ -317992,7 +310262,7 @@ "examine": "There's a black warlock butterfly in here.", "wiki_name": "Black warlock mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_warlock_mix#2_dose", - "price": 785.5 + "price": 785 }, "29192": { "id": 29192, @@ -318009,7 +310279,7 @@ "examine": "There's a sunlight moth in here.", "wiki_name": "Sunlight moth mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_moth_mix#2_dose", - "price": 1450 + "price": 1916 }, "29195": { "id": 29195, @@ -318022,11 +310292,12 @@ "lowalch": 12, "highalch": 18, "weight": 0.02, + "buy_limit": 125, "release_date": "2024-03-20", "examine": "There's a moonlight moth in here.", "wiki_name": "Moonlight moth mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_moth_mix#2_dose", - "price": 2312.5 + "price": 2312 }, "29198": { "id": 29198, @@ -318060,7 +310331,7 @@ "examine": "There's a snowy knight butterfly in here.", "wiki_name": "Snowy knight mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Snowy_knight_mix#1_dose", - "price": 545 + "price": 95 }, "29204": { "id": 29204, @@ -318077,7 +310348,7 @@ "examine": "There's a ruby harvest butterfly in here.", "wiki_name": "Ruby harvest mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ruby_harvest_mix#1_dose", - "price": 0.5 + "price": 0 }, "29207": { "id": 29207, @@ -318094,7 +310365,7 @@ "examine": "There's a black warlock butterfly in here.", "wiki_name": "Black warlock mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_warlock_mix#1_dose", - "price": 0.5 + "price": 0 }, "29210": { "id": 29210, @@ -318111,7 +310382,7 @@ "examine": "There's a sunlight moth in here.", "wiki_name": "Sunlight moth mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_moth_mix#1_dose", - "price": 850.5 + "price": 754 }, "29213": { "id": 29213, @@ -318128,35 +310399,35 @@ "examine": "There's a moonlight moth in here.", "wiki_name": "Moonlight moth mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_moth_mix#1_dose", - "price": 1093 + "price": 1336 }, "29216": { "id": 29216, "name": "Raw bream", "members": true, "cost": 1, - "lowalch": 0, - "highalch": 0, "weight": 0.45, "release_date": "2024-03-20", "examine": "Fresh from the stream.", "wiki_name": "Raw bream", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_bream", - "price": 0 + "price": 0, + "lowalch": 0, + "highalch": 0 }, "29217": { "id": 29217, "name": "Cooked bream", "members": true, "cost": 1, - "lowalch": 0, - "highalch": 0, "weight": 0.35, "release_date": "2024-03-20", "examine": "Crispy.", "wiki_name": "Cooked bream", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_bream", - "price": 0 + "price": 0, + "lowalch": 0, + "highalch": 0 }, "29218": { "id": 29218, @@ -318173,7 +310444,7 @@ "examine": "This would make nice clothing.", "wiki_name": "Jaguar fur", "wiki_url": "https://oldschool.runescape.wiki/w/Jaguar_fur", - "price": 2005 + "price": 2804 }, "29221": { "id": 29221, @@ -318296,7 +310567,7 @@ "highalch": 6, "weight": 1, "release_date": "2024-03-20", - "examine": "I wouldn’t want to get caught on that.", + "examine": "I wouldn't want to get caught on that.", "wiki_name": "Graahk horn spur", "wiki_url": "https://oldschool.runescape.wiki/w/Graahk_horn_spur", "price": 0 @@ -318475,52 +310746,48 @@ "members": true, "stackable": true, "cost": 1, - "lowalch": 0, - "highalch": 0, - "weight": 1, "release_date": "2024-03-20", "examine": "I wonder what might be caught in this.", "wiki_name": "Hunters' loot sack (basic)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunters'_loot_sack_(basic)", - "price": 0 + "price": 0, + "lowalch": 0, + "highalch": 0 }, "29244": { "id": 29244, - "name": "Hunters' loot sack (tier 1)", + "name": "Hunters' loot sack (adept)", "members": true, "stackable": true, "cost": 1, - "lowalch": 0, - "highalch": 0, - "weight": 1, "release_date": "2024-03-20", "examine": "I wonder what might be caught in this.", "wiki_name": "Hunters' loot sack (tier 1)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunters'_loot_sack_(tier_1)", - "price": 0 + "price": 0, + "lowalch": 0, + "highalch": 0 }, "29246": { "id": 29246, - "name": "Hunters' loot sack (tier 2)", + "name": "Hunters' loot sack (expert)", "members": true, "stackable": true, "cost": 1, - "lowalch": 0, - "highalch": 0, - "weight": 1, "release_date": "2024-03-20", "examine": "I wonder what might be caught in this.", "wiki_name": "Hunters' loot sack (tier 2)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunters'_loot_sack_(tier_2)", - "price": 0 + "price": 0, + "lowalch": 0, + "highalch": 0 }, "29248": { "id": 29248, - "name": "Hunters' loot sack (tier 3)", + "name": "Hunters' loot sack (master)", "members": true, "stackable": true, "cost": 1, - "weight": 1, "release_date": "2024-03-20", "examine": "I wonder what might be caught in this.", "wiki_name": "Hunters' loot sack (tier 3)", @@ -318583,7 +310850,7 @@ "examine": "A perfected blueprint for a quetzal whistle.", "wiki_name": "Perfected quetzal whistle blueprint", "wiki_url": "https://oldschool.runescape.wiki/w/Perfected_quetzal_whistle_blueprint", - "price": 16505.5 + "price": 6755 }, "29259": { "id": 29259, @@ -318620,8 +310887,6 @@ "equipable": true, "equipable_by_player": true, "cost": 500, - "lowalch": 200, - "highalch": 300, "weight": 1.36, "release_date": "2024-03-20", "examine": "The hat of the Hunters.", @@ -318645,7 +310910,9 @@ "slot": "head", "requirements": null }, - "price": 0 + "price": 0, + "lowalch": 200, + "highalch": 300 }, "29265": { "id": 29265, @@ -318654,8 +310921,6 @@ "equipable": true, "equipable_by_player": true, "cost": 800, - "lowalch": 320, - "highalch": 480, "weight": 1.36, "release_date": "2024-03-20", "examine": "The top of the Hunters.", @@ -318676,10 +310941,12 @@ "ranged_strength": 0, "magic_damage": 0, "prayer": 0, - "slot": "head", + "slot": "body", "requirements": null }, - "price": 0 + "price": 0, + "lowalch": 320, + "highalch": 480 }, "29267": { "id": 29267, @@ -318688,8 +310955,6 @@ "equipable": true, "equipable_by_player": true, "cost": 700, - "lowalch": 280, - "highalch": 420, "weight": 1.36, "release_date": "2024-03-20", "examine": "The legs of the Hunters.", @@ -318710,10 +310975,12 @@ "ranged_strength": 0, "magic_damage": 0, "prayer": 0, - "slot": "head", + "slot": "legs", "requirements": null }, - "price": 0 + "price": 0, + "lowalch": 280, + "highalch": 420 }, "29269": { "id": 29269, @@ -318722,8 +310989,6 @@ "equipable": true, "equipable_by_player": true, "cost": 200, - "lowalch": 80, - "highalch": 120, "weight": 1.36, "release_date": "2024-03-20", "examine": "The boots of the Hunters.", @@ -318744,10 +311009,12 @@ "ranged_strength": 0, "magic_damage": 0, "prayer": 0, - "slot": "head", + "slot": "feet", "requirements": null }, - "price": 0 + "price": 0, + "lowalch": 80, + "highalch": 120 }, "29271": { "id": 29271, @@ -318772,7 +311039,7 @@ "highalch": 6, "weight": 0.004, "release_date": "2024-03-20", - "examine": "An enchanted quetzal whistle crafted from yew logs.", + "examine": "An enhanced quetzal whistle crafted from yew logs.", "wiki_name": "Enhanced quetzal whistle", "wiki_url": "https://oldschool.runescape.wiki/w/Enhanced_quetzal_whistle", "price": 0 @@ -318806,7 +311073,7 @@ "examine": "A glass of frothy ale.", "wiki_name": "Trapper's tipple", "wiki_url": "https://oldschool.runescape.wiki/w/Trapper's_tipple", - "price": 122 + "price": 190 }, "29280": { "id": 29280, @@ -318843,7 +311110,7 @@ "slot": "body", "requirements": null }, - "price": 19950 + "price": 15860 }, "29283": { "id": 29283, @@ -318880,7 +311147,7 @@ "slot": "legs", "requirements": null }, - "price": 15252.5 + "price": 15252 }, "29286": { "id": 29286, @@ -318971,7 +311238,7 @@ "examine": "I need this to make mixed hide armour.", "wiki_name": "Mixed hide base", "wiki_url": "https://oldschool.runescape.wiki/w/Mixed_hide_base", - "price": 16750 + "price": 14367 }, "29295": { "id": 29295, @@ -319105,7 +311372,7 @@ } ] }, - "price": 707.5 + "price": 274 }, "29307": { "id": 29307, @@ -319117,27 +311384,26 @@ "cost": 50, "lowalch": 20, "highalch": 30, - "weight": 1, "buy_limit": 100, "release_date": "2024-03-20", "examine": "A sack of quetzal feed.", "wiki_name": "Quetzal feed", "wiki_url": "https://oldschool.runescape.wiki/w/Quetzal_feed", - "price": 2832.5 + "price": 2528 }, "29309": { "id": 29309, "name": "Huntsman's kit", "members": true, "cost": 850, - "lowalch": 340, - "highalch": 510, "weight": 0.95, "release_date": "2024-03-20", - "examine": "Holds assorted hunting equipment", + "examine": "Holds assorted hunting equipment.", "wiki_name": "Huntsman's kit", "wiki_url": "https://oldschool.runescape.wiki/w/Huntsman's_kit", - "price": 0 + "price": 0, + "lowalch": 340, + "highalch": 510 }, "29311": { "id": 29311, @@ -319149,11 +311415,12 @@ "cost": 6, "lowalch": 2, "highalch": 3, + "buy_limit": 10000, "release_date": "2024-03-20", "examine": "I can make some spears with these.", "wiki_name": "Hunter spear tips", "wiki_url": "https://oldschool.runescape.wiki/w/Hunter_spear_tips", - "price": 7 + "price": 5 }, "29317": { "id": 29317, @@ -319217,13 +311484,13 @@ "members": true, "stackable": true, "cost": 500, - "lowalch": 200, - "highalch": 300, "release_date": "2024-03-20", "examine": "Spare keys to wealthy households in Civitas illa Fortis.", "wiki_name": "House keys", "wiki_url": "https://oldschool.runescape.wiki/w/House_keys", - "price": 0 + "price": 0, + "lowalch": 200, + "highalch": 300 }, "29332": { "id": 29332, @@ -319231,13 +311498,13 @@ "members": true, "stackable": true, "cost": 45, - "lowalch": 18, - "highalch": 27, "release_date": "2024-03-20", "examine": "Some valuable bits and bobs from wealthy houses.", "wiki_name": "Valuables", "wiki_url": "https://oldschool.runescape.wiki/w/Valuables", - "price": 0 + "price": 0, + "lowalch": 18, + "highalch": 27 }, "29338": { "id": 29338, @@ -319297,7 +311564,7 @@ }, "29346": { "id": 29346, - "name": "Blessd bat bones", + "name": "Blessed bat bones", "members": true, "cost": 1, "lowalch": 0, @@ -319595,6 +311862,7 @@ "cost": 123, "lowalch": 49, "highalch": 73, + "weight": 0.123, "release_date": "2024-03-20", "examine": "A small token.", "wiki_name": "Token (Moons of Peril)", @@ -319606,14 +311874,14 @@ "name": "A nice key", "members": true, "cost": 123, - "lowalch": 49, - "highalch": 73, "weight": 0.011, "release_date": "2024-03-20", "examine": "Wow, this is a really nice key.", "wiki_name": "A nice key", "wiki_url": "https://oldschool.runescape.wiki/w/A_nice_key", - "price": 0 + "price": 0, + "lowalch": 49, + "highalch": 73 }, "29409": { "id": 29409, @@ -319630,7 +311898,7 @@ "examine": "Just the thing you need for a day in the sun.", "wiki_name": "Sunbeam ale", "wiki_url": "https://oldschool.runescape.wiki/w/Sunbeam_ale", - "price": 1135.5 + "price": 390 }, "29412": { "id": 29412, @@ -319644,10 +311912,10 @@ "highalch": 4, "weight": 0.55, "release_date": "2024-03-20", - "examine": "A dwarven delight from Cam Tourum.", + "examine": "A dwarven delight from Cam Torum.", "wiki_name": "Steamforge brew", "wiki_url": "https://oldschool.runescape.wiki/w/Steamforge_brew", - "price": 290 + "price": 18 }, "29415": { "id": 29415, @@ -319664,7 +311932,7 @@ "examine": "The finest Aldarin Red available.", "wiki_name": "Eclipse wine", "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_wine", - "price": 1000 + "price": 1300 }, "29418": { "id": 29418, @@ -319681,7 +311949,7 @@ "examine": "A popular spirit all across Varlamore.", "wiki_name": "Moon-lite", "wiki_url": "https://oldschool.runescape.wiki/w/Moon-lite", - "price": 301 + "price": 175 }, "29421": { "id": 29421, @@ -319698,7 +311966,7 @@ "examine": "A highly desirable liquor.", "wiki_name": "Sun-shine", "wiki_url": "https://oldschool.runescape.wiki/w/Sun-shine", - "price": 2600 + "price": 138 }, "29424": { "id": 29424, @@ -319715,7 +311983,7 @@ "examine": "A set containing a Sunfire Fanatic Helm, Sunfire Fanatic Platebody and Sunfire Fanatic Platelegs.", "wiki_name": "Sunfire fanatic armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Sunfire_fanatic_armour_set", - "price": 40950000 + "price": 20895000 }, "29427": { "id": 29427, @@ -319740,5 +312008,351 @@ "wiki_name": "Chef's notes", "wiki_url": "https://oldschool.runescape.wiki/w/Chef's_notes", "price": 0 + }, + "29433": { + "id": 29433, + "name": "Book of egg", + "equipable": true, + "equipable_by_player": true, + "cost": 200, + "weight": 1, + "release_date": "2024-03-27", + "examine": "An eggsquisite tome.", + "wiki_name": "Book of egg", + "wiki_url": "https://oldschool.runescape.wiki/w/Book_of_egg", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "shield", + "requirements": null + }, + "price": 0 + }, + "29437": { + "id": 29437, + "name": "Egg priest robe", + "equipable": true, + "equipable_by_player": true, + "cost": 30, + "weight": 0.907, + "release_date": "2024-03-27", + "examine": "Keeps an egg priest's knees nice and warm.", + "wiki_name": "Egg priest robe", + "wiki_url": "https://oldschool.runescape.wiki/w/Egg_priest_robe", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 0 + }, + "29439": { + "id": 29439, + "name": "Egg priest robe top", + "equipable": true, + "equipable_by_player": true, + "cost": 40, + "weight": 0.907, + "release_date": "2024-03-27", + "examine": "I feel closer to the eggs when I am wearing this.", + "wiki_name": "Egg priest robe top", + "wiki_url": "https://oldschool.runescape.wiki/w/Egg_priest_robe_top", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 0 + }, + "29441": { + "id": 29441, + "name": "Egg priest necklace", + "equipable": true, + "equipable_by_player": true, + "cost": 40, + "weight": 0.907, + "release_date": "2024-03-27", + "examine": "I feel closer to the eggs when I am wearing this.", + "wiki_name": "Egg priest necklace", + "wiki_url": "https://oldschool.runescape.wiki/w/Egg_priest_necklace", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "neck", + "requirements": null + }, + "price": 0 + }, + "29443": { + "id": 29443, + "name": "Egg priest mitre", + "equipable": true, + "equipable_by_player": true, + "cost": 200, + "weight": 0.3, + "release_date": "2024-03-27", + "examine": "An egg mitre.", + "wiki_name": "Egg priest mitre", + "wiki_url": "https://oldschool.runescape.wiki/w/Egg_priest_mitre", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 0 + }, + "29448": { + "id": 29448, + "name": "Imbued mage arena cape", + "incomplete": true, + "cost": 0, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "29449": { + "id": 29449, + "name": "Zombie pirate key", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 90, + "lowalch": 36, + "highalch": 54, + "buy_limit": 250, + "release_date": "2024-04-10", + "examine": "The key to a zombie pirate's locker.", + "wiki_name": "Zombie pirate key", + "wiki_url": "https://oldschool.runescape.wiki/w/Zombie_pirate_key", + "price": 16546 + }, + "29455": { + "id": 29455, + "name": "Teleport anchoring scroll", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 50000, + "lowalch": 20000, + "highalch": 30000, + "weight": 0.015, + "release_date": "2024-04-10", + "examine": "A formidable magic spell which prevents unwanted teleportation.", + "wiki_name": "Teleport anchoring scroll", + "wiki_url": "https://oldschool.runescape.wiki/w/Teleport_anchoring_scroll", + "price": 852500 + }, + "29458": { + "id": 29458, + "name": "Adamant seeds", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 300, + "lowalch": 120, + "highalch": 180, + "release_date": "2024-04-10", + "examine": "Magical seeds in an adamant case.", + "wiki_name": "Adamant seeds", + "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_seeds", + "price": 143 + }, + "29460": { + "id": 29460, + "name": "Wilderness agility ticket", + "members": true, + "stackable": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "release_date": "2024-04-10", + "examine": "Redeemable for agility training.", + "wiki_name": "Wilderness agility ticket", + "wiki_url": "https://oldschool.runescape.wiki/w/Wilderness_agility_ticket", + "price": 0 + }, + "29462": { + "id": 29462, + "name": "Small meat pouch (open)", + "members": true, + "cost": 3000, + "lowalch": 1200, + "highalch": 1800, + "weight": 1, + "release_date": "2024-04-24", + "examine": "A small pouch for carrying raw meat.", + "wiki_name": "Small meat pouch (Open)", + "wiki_url": "https://oldschool.runescape.wiki/w/Small_meat_pouch#Open", + "price": 0 + }, + "29464": { + "id": 29464, + "name": "Large meat pouch (open)", + "members": true, + "cost": 7500, + "lowalch": 3000, + "highalch": 4500, + "weight": 1, + "release_date": "2024-04-24", + "examine": "A large pouch for carrying raw meat.", + "wiki_name": "Large meat pouch (Open)", + "wiki_url": "https://oldschool.runescape.wiki/w/Large_meat_pouch#Open", + "price": 0 + }, + "29466": { + "id": 29466, + "name": "Small fur pouch (open)", + "members": true, + "cost": 3000, + "lowalch": 1200, + "highalch": 1800, + "weight": 1, + "release_date": "2024-04-24", + "examine": "A small pouch for carrying animal furs.", + "wiki_name": "Small fur pouch (Open)", + "wiki_url": "https://oldschool.runescape.wiki/w/Small_fur_pouch#Open", + "price": 0 + }, + "29468": { + "id": 29468, + "name": "Medium fur pouch (open)", + "members": true, + "cost": 4500, + "lowalch": 1800, + "highalch": 2700, + "weight": 1, + "release_date": "2024-04-24", + "examine": "A medium-sized pouch for carrying animal furs.", + "wiki_name": "Medium fur pouch (Open)", + "wiki_url": "https://oldschool.runescape.wiki/w/Medium_fur_pouch#Open", + "price": 0 + }, + "29470": { + "id": 29470, + "name": "Large fur pouch (open)", + "members": true, + "cost": 7500, + "lowalch": 3000, + "highalch": 4500, + "weight": 1, + "release_date": "2024-04-24", + "examine": "A large pouch for carrying animal furs.", + "wiki_name": "Large fur pouch (Open)", + "wiki_url": "https://oldschool.runescape.wiki/w/Large_fur_pouch#Open", + "price": 0 + }, + "29480": { + "id": 29480, + "name": "Agility arena ticket", + "members": true, + "stackable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2024-05-08", + "examine": "I can exchange these for further experience.", + "wiki_name": "Agility arena ticket", + "wiki_url": "https://oldschool.runescape.wiki/w/Agility_arena_ticket", + "price": 0 + }, + "29482": { + "id": 29482, + "name": "Brimhaven voucher", + "members": true, + "stackable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2024-05-08", + "examine": "I can exchange these for items.", + "wiki_name": "Brimhaven voucher", + "wiki_url": "https://oldschool.runescape.wiki/w/Brimhaven_voucher", + "price": 0 + }, + "29484": { + "id": 29484, + "name": "Agility xp", + "incomplete": true, + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "29485": { + "id": 29485, + "name": "Graceful recolour", + "incomplete": true, + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 } } diff --git a/src/structures/Items.ts b/src/structures/Items.ts index 1666eda6e..fb2b2f368 100644 --- a/src/structures/Items.ts +++ b/src/structures/Items.ts @@ -13,6 +13,20 @@ export interface ItemCollection { [index: string]: Item; } +export const CLUE_SCROLLS = [ + // Clue scrolls + 2677, 2801, 2722, 12_073, 19_835, 23_182, +]; + +export const CLUE_SCROLL_NAMES: string[] = [ + "Clue scroll (beginner)", + "Clue scroll (easy)", + "Clue scroll (medium)", + "Clue scroll (hard)", + "Clue scroll (elite)", + "Clue scroll (master)", +]; + export const USELESS_ITEMS = [ 617, 8890, 6964, 2513, 19_492, 11_071, 11_068, 21_284, 24_735, 21_913, 4703, 4561, 2425, 4692, 3741, @@ -26,6 +40,12 @@ export const USELESS_ITEMS = [ // Removed items 10_639, 10_641, 10_644, 10_646, 10_647, 10_648, 10_649, 10_651, 10_652, 10_654, 10_657, 10_658, 10_659, 10_661, 27_794, 27_795, 27_796, 27_797, 27_798, 27_799, 27_800, 27_801, + + // Clue scrolls - Duplicate or individual step clues that don't match filter + 3550, 3577, 2793, 12_113, 10_184, 12_027, + + // SOTE Quest Clues + 23_814, 23_815, 23_816, 23_817, ]; class Items extends Collection {