diff --git a/package.json b/package.json index 718e2a14b..efb1c74e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oldschooljs", - "version": "2.4.0", + "version": "2.5.4", "description": "Allows you to interact with the OSRS Hiscores, Wiki, Items, & more.", "main": "dist/index.js", "types": "dist/index.d.ts", 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/constants.ts b/src/constants.ts index 6b0e737e1..56027edf1 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -38,6 +38,7 @@ export const MINIGAMES = [ "pvpArena", "soulWars", "riftsClosed", + "colosseumGlory", ] as const; export const CLUES = ["all", "beginner", "easy", "medium", "hard", "elite", "master"] as const; @@ -72,6 +73,7 @@ export const mappedBossNames: [keyof BossRecords, string][] = [ ["kraken", "Kraken"], ["kreeArra", "Kree'Arra"], ["krilTsutsaroth", "K'ril Tsutsaroth"], + ["lunarChests", "Lunar Chests"], ["mimic", "Mimic"], ["nex", "Nex"], ["nightmare", "The Nightmare"], @@ -82,6 +84,7 @@ export const mappedBossNames: [keyof BossRecords, string][] = [ ["scorpia", "Scorpia"], ["scurrius", "Scurrius"], ["skotizo", "Skotizo"], + ["solHeredit", "Sol Heredit"], ["spindel", "Spindel"], ["tempoross", "Tempoross"], ["theGauntlet", "The Gauntlet"], diff --git a/src/data/items/item_data.json b/src/data/items/item_data.json index 09fe3bd87..735d869cc 100644 --- a/src/data/items/item_data.json +++ b/src/data/items/item_data.json @@ -40,7 +40,7 @@ "examine": "Ammo for the Dwarf Cannon.", "wiki_name": "Cannonball", "wiki_url": "https://oldschool.runescape.wiki/w/Cannonball", - "price": 163.5 + "price": 194 }, "3": { "id": 3, @@ -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": 185991.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": 185901 + "price": 180237 }, "12": { "id": 12, @@ -152,7 +152,7 @@ "examine": "This powers the multicannon.", "wiki_name": "Cannon furnace", "wiki_url": "https://oldschool.runescape.wiki/w/Cannon_furnace", - "price": 186501.5 + "price": 188954 }, "14": { "id": 14, @@ -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": 694.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": 162.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": 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": 13 + "price": 9 }, "41": { "id": 41, @@ -564,7 +564,7 @@ "examine": "I can make some arrows with these.", "wiki_name": "Steel arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_arrowtips", - "price": 25 + "price": 36 }, "42": { "id": 42, @@ -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": 37.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": 92 + "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": 75 + "price": 154 }, "46": { "id": 46, @@ -649,7 +649,7 @@ "examine": "Pearl bolt tips.", "wiki_name": "Pearl bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Pearl_bolt_tips", - "price": 38 + "price": 91 }, "47": { "id": 47, @@ -666,7 +666,7 @@ "examine": "I can make bolts with these.", "wiki_name": "Barb bolttips", "wiki_url": "https://oldschool.runescape.wiki/w/Barb_bolttips", - "price": 61 + "price": 77 }, "48": { "id": 48, @@ -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": 10.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": 2 + "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": 10 + "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": 35.5 + "price": 39 }, "56": { "id": 56, @@ -772,7 +772,7 @@ "examine": "An unstrung oak longbow; I need a bowstring for this.", "wiki_name": "Oak longbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_longbow_(u)", - "price": 21 + "price": 18 }, "58": { "id": 58, @@ -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": 57 + "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": 44.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": 87 + "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": 91 + "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": 389.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": 199.5 + "price": 277 }, "70": { "id": 70, @@ -991,14 +991,14 @@ "name": "Khazard cell keys", "members": true, "cost": 1, - "lowalch": 0, - "highalch": 0, "weight": 0.01, "release_date": "2002-07-23", "examine": "These keys open the cells at the Khazard fight arena.", "wiki_name": "Khazard cell keys", "wiki_url": "https://oldschool.runescape.wiki/w/Khazard_cell_keys", - "price": 0 + "price": 0, + "lowalch": 0, + "highalch": 0 }, "77": { "id": 77, @@ -1067,14 +1067,14 @@ "name": "Staff of armadyl", "members": true, "cost": 15, - "lowalch": 6, - "highalch": 9, "weight": 1.814, "release_date": "2002-06-17", "examine": "The power in this staff causes it to vibrate gently.", "wiki_name": "Staff of armadyl", "wiki_url": "https://oldschool.runescape.wiki/w/Staff_of_armadyl", - "price": 0 + "price": 0, + "lowalch": 6, + "highalch": 9 }, "85": { "id": 85, @@ -1222,7 +1222,7 @@ "examine": "I need another ingredient to finish this Guam potion.", "wiki_name": "Guam potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Guam_potion_(unf)", - "price": 185 + "price": 313 }, "93": { "id": 93, @@ -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": 116 + "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": 221 + "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": 702 + "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": 1639 + "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": 4319.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": 3881 + "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, @@ -1384,7 +1384,7 @@ "examine": "I need another ingredient to finish this Dwarf Weed potion.", "wiki_name": "Dwarf weed potion (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarf_weed_potion_(unf)", - "price": 2800 + "price": 2473 }, "111": { "id": 111, @@ -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": 3384.5 + "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": 177 + "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": 72 + "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": 57 + "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": 3 + "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": 6.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": 1 + "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": 47 + "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": 14 + "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": 19 + "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": 2649 + "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": 142 + "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": 34 + "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": 6009.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": 3969 + "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": 2007 + "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": 1176 + "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": 610.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": 417.5 + "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": 50 + "price": 46 }, "153": { "id": 153, @@ -1776,7 +1776,7 @@ "examine": "2 doses of Fishing potion.", "wiki_name": "Fishing potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishing_potion#2_dose", - "price": 47.5 + "price": 5 }, "155": { "id": 155, @@ -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": 1 + "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": 2266 + "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": 2420 + "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": 1215.5 + "price": 1978 }, "169": { "id": 169, @@ -1938,7 +1938,7 @@ "examine": "2 doses of ranging potion.", "wiki_name": "Ranging potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Ranging_potion#2_dose", - "price": 1798.5 + "price": 1503 }, "173": { "id": 173, @@ -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": 81 + "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": 342 + "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": 108 + "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": 601 + "price": 986 }, "183": { "id": 183, @@ -2043,7 +2043,7 @@ "examine": "2 doses of super antipoison potion.", "wiki_name": "Superantipoison (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Superantipoison#2_dose", - "price": 394 + "price": 554 }, "185": { "id": 185, @@ -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": 140.5 + "price": 369 }, "189": { "id": 189, @@ -2097,7 +2097,7 @@ "examine": "3 doses of Zamorak brew.", "wiki_name": "Zamorak brew (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_brew#3_dose", - "price": 514.5 + "price": 1638 }, "191": { "id": 191, @@ -2115,7 +2115,7 @@ "examine": "2 doses of Zamorak brew.", "wiki_name": "Zamorak brew (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_brew#2_dose", - "price": 54.5 + "price": 910 }, "193": { "id": 193, @@ -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": 187.5 + "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": 1873 + "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": 169 + "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": 76 + "price": 77 }, "203": { "id": 203, @@ -2238,7 +2238,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy harralander", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_harralander", - "price": 741 + "price": 407 }, "207": { "id": 207, @@ -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": 1532 + "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": 4197 + "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": 3662.5 + "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, @@ -2346,7 +2346,7 @@ "examine": "It needs cleaning.", "wiki_name": "Grimy dwarf weed", "wiki_url": "https://oldschool.runescape.wiki/w/Grimy_dwarf_weed", - "price": 2708.5 + "price": 2254 }, "219": { "id": 219, @@ -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, @@ -2398,7 +2398,7 @@ "examine": "Ewww!", "wiki_name": "Red spiders' eggs", "wiki_url": "https://oldschool.runescape.wiki/w/Red_spiders'_eggs", - "price": 632 + "price": 446 }, "225": { "id": 225, @@ -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": 284.5 + "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": 3.5 + "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": 2 + "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": 241.5 + "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": 198.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": 139 + "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": 84 + "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": 304 + "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": 66 + "price": 36 }, "243": { "id": 243, @@ -2575,7 +2575,7 @@ "examine": "A large shiny scale.", "wiki_name": "Blue dragon scale", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_dragon_scale", - "price": 18 + "price": 13 }, "245": { "id": 245, @@ -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": 845 + "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": 261 + "price": 385 }, "249": { "id": 249, @@ -2628,7 +2628,7 @@ "examine": "A bitter green herb.", "wiki_name": "Guam leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Guam_leaf", - "price": 110.5 + "price": 245 }, "251": { "id": 251, @@ -2646,7 +2646,7 @@ "examine": "A herb used in poison cures.", "wiki_name": "Marrentill", "wiki_url": "https://oldschool.runescape.wiki/w/Marrentill", - "price": 100.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": 133 + "price": 209 }, "255": { "id": 255, @@ -2682,7 +2682,7 @@ "examine": "A useful herb.", "wiki_name": "Harralander", "wiki_url": "https://oldschool.runescape.wiki/w/Harralander", - "price": 546 + "price": 438 }, "257": { "id": 257, @@ -2700,7 +2700,7 @@ "examine": "A useful herb.", "wiki_name": "Ranarr weed", "wiki_url": "https://oldschool.runescape.wiki/w/Ranarr_weed", - "price": 5852.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": 1442.5 + "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": 4210.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": 2682.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": 3323 + "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": 575.5 + "price": 756 }, "274": { "id": 274, @@ -3157,33 +3157,33 @@ "examine": "Some brown armour designed to fit goblins.", "wiki_name": "Goblin mail", "wiki_url": "https://oldschool.runescape.wiki/w/Goblin_mail", - "price": 336 + "price": 821 }, "290": { "id": 290, "name": "Research package", "cost": 30, - "lowalch": 12, - "highalch": 18, "weight": 0.907, "release_date": "2004-03-29", "examine": "This contains some vital research.", "wiki_name": "Research package", "wiki_url": "https://oldschool.runescape.wiki/w/Research_package", - "price": 0 + "price": 0, + "lowalch": 12, + "highalch": 18 }, "291": { "id": 291, "name": "Research notes", "cost": 30, - "lowalch": 12, - "highalch": 18, "weight": 0.028, "release_date": "2004-03-29", "examine": "They seem to be written in some kind of code.", "wiki_name": "Research notes (Rune Mysteries)", "wiki_url": "https://oldschool.runescape.wiki/w/Research_notes_(Rune_Mysteries)", - "price": 0 + "price": 0, + "lowalch": 12, + "highalch": 18 }, "292": { "id": 292, @@ -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": 697.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": 55.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": 800 + "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": 81.5 + "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": 65 + "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": 27.5 + "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": 3.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": 24.5 + "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": 96.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": 59 + "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": 75 + "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": 23.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": 67.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": 99 + "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": 55 + "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": 57.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": 88 + "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": 12 + "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": 19.5 + "price": 67 }, "343": { "id": 343, @@ -3747,7 +3747,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw herring", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_herring", - "price": 160 + "price": 144 }, "347": { "id": 347, @@ -3764,7 +3764,7 @@ "examine": "Some nicely cooked herring.", "wiki_name": "Herring", "wiki_url": "https://oldschool.runescape.wiki/w/Herring", - "price": 18 + "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": 66.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": 54 + "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": 20 + "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": 13.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": 123.5 + "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": 171 + "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": 9 + "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, @@ -3966,7 +3966,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw swordfish", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_swordfish", - "price": 140 + "price": 118 }, "373": { "id": 373, @@ -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": 109 + "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": 311.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": 544 + "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": 676 + "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": 884.5 + "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": 331.5 + "price": 1015 }, "397": { "id": 397, @@ -4187,7 +4187,7 @@ "examine": "Tasty!", "wiki_name": "Sea turtle", "wiki_url": "https://oldschool.runescape.wiki/w/Sea_turtle", - "price": 556 + "price": 1150 }, "399": { "id": 399, @@ -4221,7 +4221,7 @@ "examine": "Slightly damp seaweed.", "wiki_name": "Seaweed", "wiki_url": "https://oldschool.runescape.wiki/w/Seaweed", - "price": 19 + "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": 75.5 + "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": 722.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": 59 + "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": 100.5 + "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": 1060 + "price": 932 }, "415": { "id": 415, @@ -4536,7 +4536,7 @@ "slot": "body", "requirements": null }, - "price": 27.5 + "price": 233 }, "428": { "id": 428, @@ -4573,7 +4573,7 @@ "slot": "legs", "requirements": null }, - "price": 112.5 + "price": 94 }, "430": { "id": 430, @@ -4617,7 +4617,7 @@ "highalch": 18, "weight": 0.907, "release_date": "2001-06-11", - "examine": "A very strong spirit brewed in Karamja.", + "examine": "A very strong spirit brewed on Karamja.", "wiki_name": "Karamjan rum", "wiki_url": "https://oldschool.runescape.wiki/w/Karamjan_rum", "price": 0 @@ -4663,7 +4663,7 @@ "examine": "Some hard dry clay.", "wiki_name": "Clay", "wiki_url": "https://oldschool.runescape.wiki/w/Clay", - "price": 84.5 + "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": 99.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": 99 + "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": 62 + "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": 137 + "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": 915.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": 186.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": 531 + "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": 70 + "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": 400 + "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": 464 + "price": 622 }, "532": { "id": 532, @@ -5517,7 +5517,7 @@ "examine": "Ew it's a pile of bones.", "wiki_name": "Big bones", "wiki_url": "https://oldschool.runescape.wiki/w/Big_bones", - "price": 264 + "price": 276 }, "534": { "id": 534, @@ -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": 938.5 + "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": 2762 + "price": 2860 }, "538": { "id": 538, @@ -5666,7 +5666,7 @@ "slot": "legs", "requirements": null }, - "price": 293 + "price": 801 }, "544": { "id": 544, @@ -5703,7 +5703,7 @@ "slot": "body", "requirements": null }, - "price": 487.5 + "price": 840 }, "546": { "id": 546, @@ -5740,7 +5740,7 @@ "slot": "body", "requirements": null }, - "price": 1850 + "price": 745 }, "548": { "id": 548, @@ -5777,7 +5777,7 @@ "slot": "legs", "requirements": null }, - "price": 557 + "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": 5.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": 5.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 + "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": 4.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": 156 + "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": 119 + "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": 91.5 + "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": 84.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": 197 + "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": 228.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": 94.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": 2471.5 + "price": 1458 }, "579": { "id": 579, @@ -6210,7 +6210,7 @@ "slot": "head", "requirements": null }, - "price": 619.5 + "price": 454 }, "581": { "id": 581, @@ -6247,7 +6247,7 @@ "slot": "body", "requirements": null }, - "price": 552 + "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": 52.5 + "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": 102.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": 1 + "price": 3 }, "598": { "id": 598, @@ -6777,7 +6777,7 @@ "examine": "Allows you passage on the 'Lady of the waves' ship.", "wiki_name": "Ship ticket", "wiki_url": "https://oldschool.runescape.wiki/w/Ship_ticket", - "price": 725 + "price": 1 }, "623": { "id": 623, @@ -6857,7 +6857,7 @@ "slot": "feet", "requirements": null }, - "price": 297 + "price": 945 }, "628": { "id": 628, @@ -6895,7 +6895,7 @@ "slot": "feet", "requirements": null }, - "price": 206.5 + "price": 606 }, "630": { "id": 630, @@ -6933,7 +6933,7 @@ "slot": "feet", "requirements": null }, - "price": 3456.5 + "price": 943 }, "632": { "id": 632, @@ -7009,7 +7009,7 @@ "slot": "feet", "requirements": null }, - "price": 112.5 + "price": 171 }, "636": { "id": 636, @@ -7047,7 +7047,7 @@ "slot": "body", "requirements": null }, - "price": 829 + "price": 452 }, "638": { "id": 638, @@ -7085,7 +7085,7 @@ "slot": "body", "requirements": null }, - "price": 962 + "price": 1700 }, "640": { "id": 640, @@ -7123,7 +7123,7 @@ "slot": "body", "requirements": null }, - "price": 1424.5 + "price": 298 }, "642": { "id": 642, @@ -7161,7 +7161,7 @@ "slot": "body", "requirements": null }, - "price": 955 + "price": 806 }, "644": { "id": 644, @@ -7199,7 +7199,7 @@ "slot": "body", "requirements": null }, - "price": 111.5 + "price": 2000 }, "646": { "id": 646, @@ -7237,7 +7237,7 @@ "slot": "legs", "requirements": null }, - "price": 2614.5 + "price": 163 }, "648": { "id": 648, @@ -7275,7 +7275,7 @@ "slot": "legs", "requirements": null }, - "price": 725 + "price": 32 }, "650": { "id": 650, @@ -7313,7 +7313,7 @@ "slot": "legs", "requirements": null }, - "price": 218.5 + "price": 100 }, "652": { "id": 652, @@ -7351,7 +7351,7 @@ "slot": "legs", "requirements": null }, - "price": 82 + "price": 361 }, "654": { "id": 654, @@ -7389,7 +7389,7 @@ "slot": "legs", "requirements": null }, - "price": 2351.5 + "price": 754 }, "656": { "id": 656, @@ -7427,7 +7427,7 @@ "slot": "head", "requirements": null }, - "price": 1216 + "price": 425 }, "658": { "id": 658, @@ -7465,7 +7465,7 @@ "slot": "head", "requirements": null }, - "price": 1348 + "price": 1169 }, "660": { "id": 660, @@ -7503,7 +7503,7 @@ "slot": "head", "requirements": null }, - "price": 1556.5 + "price": 512 }, "662": { "id": 662, @@ -7541,7 +7541,7 @@ "slot": "head", "requirements": null }, - "price": 536 + "price": 1143 }, "664": { "id": 664, @@ -7579,7 +7579,7 @@ "slot": "head", "requirements": null }, - "price": 171 + "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": 12156 + "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": 76.5 + "price": 169 }, "755": { "id": 755, @@ -9866,7 +9866,7 @@ } ] }, - "price": 17 + "price": 11 }, "802": { "id": 802, @@ -10000,7 +10000,7 @@ } ] }, - "price": 143.5 + "price": 61 }, "804": { "id": 804, @@ -10067,7 +10067,7 @@ } ] }, - "price": 410.5 + "price": 326 }, "805": { "id": 805, @@ -10134,7 +10134,7 @@ } ] }, - "price": 221 + "price": 132 }, "806": { "id": 806, @@ -10201,7 +10201,7 @@ } ] }, - "price": 28 + "price": 15 }, "807": { "id": 807, @@ -10268,7 +10268,7 @@ } ] }, - "price": 23 + "price": 77 }, "808": { "id": 808, @@ -10335,7 +10335,7 @@ } ] }, - "price": 4.5 + "price": 3 }, "809": { "id": 809, @@ -10402,7 +10402,7 @@ } ] }, - "price": 6 + "price": 8 }, "810": { "id": 810, @@ -10469,7 +10469,7 @@ } ] }, - "price": 18.5 + "price": 27 }, "811": { "id": 811, @@ -10536,7 +10536,7 @@ } ] }, - "price": 172 + "price": 106 }, "812": { "id": 812, @@ -10603,7 +10603,7 @@ } ] }, - "price": 5014.5 + "price": 2400 }, "813": { "id": 813, @@ -10670,7 +10670,7 @@ } ] }, - "price": 39.5 + "price": 300 }, "814": { "id": 814, @@ -10737,7 +10737,7 @@ } ] }, - "price": 98.5 + "price": 226 }, "815": { "id": 815, @@ -10804,7 +10804,7 @@ } ] }, - "price": 77.5 + "price": 140 }, "816": { "id": 816, @@ -10871,7 +10871,7 @@ } ] }, - "price": 22 + "price": 26 }, "817": { "id": 817, @@ -10938,7 +10938,7 @@ } ] }, - "price": 166 + "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": 38 + "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": 34.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": 47.5 + "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": 82.5 + "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": 821.5 + "price": 391 }, "825": { "id": 825, @@ -11093,7 +11093,7 @@ "ranged": 1 } }, - "price": 5 + "price": 66 }, "826": { "id": 826, @@ -11171,7 +11171,7 @@ "ranged": 5 } }, - "price": 52.5 + "price": 2 }, "828": { "id": 828, @@ -11210,7 +11210,7 @@ "ranged": 20 } }, - "price": 9 + "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, @@ -11405,7 +11405,7 @@ "ranged": 5 } }, - "price": 712.5 + "price": 90 }, "834": { "id": 834, @@ -11444,7 +11444,7 @@ "ranged": 20 } }, - "price": 669 + "price": 698 }, "835": { "id": 835, @@ -11483,7 +11483,7 @@ "ranged": 30 } }, - "price": 98 + "price": 198 }, "836": { "id": 836, @@ -11522,7 +11522,7 @@ "ranged": 40 } }, - "price": 436 + "price": 443 }, "837": { "id": 837, @@ -11589,7 +11589,7 @@ } ] }, - "price": 55 + "price": 775 }, "839": { "id": 839, @@ -11656,7 +11656,7 @@ } ] }, - "price": 33.5 + "price": 21 }, "841": { "id": 841, @@ -11723,7 +11723,7 @@ } ] }, - "price": 25 + "price": 60 }, "843": { "id": 843, @@ -11790,7 +11790,7 @@ } ] }, - "price": 27.5 + "price": 53 }, "845": { "id": 845, @@ -11857,7 +11857,7 @@ } ] }, - "price": 51.5 + "price": 80 }, "847": { "id": 847, @@ -11991,7 +11991,7 @@ } ] }, - "price": 68 + "price": 78 }, "851": { "id": 851, @@ -12058,7 +12058,7 @@ } ] }, - "price": 291.5 + "price": 276 }, "853": { "id": 853, @@ -12125,7 +12125,7 @@ } ] }, - "price": 213 + "price": 153 }, "855": { "id": 855, @@ -12193,7 +12193,7 @@ } ] }, - "price": 649.5 + "price": 525 }, "857": { "id": 857, @@ -12261,7 +12261,7 @@ } ] }, - "price": 423.5 + "price": 364 }, "859": { "id": 859, @@ -12329,7 +12329,7 @@ } ] }, - "price": 1294 + "price": 1157 }, "861": { "id": 861, @@ -12464,7 +12464,7 @@ } ] }, - "price": 48.5 + "price": 55 }, "864": { "id": 864, @@ -12531,7 +12531,7 @@ } ] }, - "price": 42 + "price": 54 }, "865": { "id": 865, @@ -12598,7 +12598,7 @@ } ] }, - "price": 56.5 + "price": 44 }, "866": { "id": 866, @@ -12732,7 +12732,7 @@ } ] }, - "price": 314 + "price": 286 }, "868": { "id": 868, @@ -12799,7 +12799,7 @@ } ] }, - "price": 142.5 + "price": 142 }, "869": { "id": 869, @@ -12866,7 +12866,7 @@ } ] }, - "price": 63 + "price": 55 }, "870": { "id": 870, @@ -12933,7 +12933,7 @@ } ] }, - "price": 28 + "price": 2 }, "871": { "id": 871, @@ -13000,7 +13000,7 @@ } ] }, - "price": 212 + "price": 242 }, "872": { "id": 872, @@ -13067,7 +13067,7 @@ } ] }, - "price": 3414 + "price": 144 }, "873": { "id": 873, @@ -13134,7 +13134,7 @@ } ] }, - "price": 311.5 + "price": 99 }, "874": { "id": 874, @@ -13201,7 +13201,7 @@ } ] }, - "price": 578.5 + "price": 285 }, "875": { "id": 875, @@ -13268,7 +13268,7 @@ } ] }, - "price": 2800 + "price": 422 }, "876": { "id": 876, @@ -13335,7 +13335,7 @@ } ] }, - "price": 228.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": 51 + "price": 74 }, "879": { "id": 879, @@ -13451,7 +13451,7 @@ "ranged": 1 } }, - "price": 68 + "price": 200 }, "880": { "id": 880, @@ -13490,7 +13490,7 @@ "ranged": 1 } }, - "price": 1.5 + "price": 1 }, "881": { "id": 881, @@ -13529,7 +13529,7 @@ "ranged": 1 } }, - "price": 65 + "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": 33 + "price": 142 }, "884": { "id": 884, @@ -13644,7 +13644,7 @@ "ranged": 1 } }, - "price": 6 + "price": 8 }, "885": { "id": 885, @@ -13683,7 +13683,7 @@ "ranged": 1 } }, - "price": 279.5 + "price": 75 }, "886": { "id": 886, @@ -13721,7 +13721,7 @@ "ranged": 5 } }, - "price": 27.5 + "price": 27 }, "887": { "id": 887, @@ -13760,7 +13760,7 @@ "ranged": 5 } }, - "price": 100.5 + "price": 69 }, "888": { "id": 888, @@ -13837,7 +13837,7 @@ "ranged": 20 } }, - "price": 49.5 + "price": 164 }, "890": { "id": 890, @@ -13875,7 +13875,7 @@ "ranged": 30 } }, - "price": 15.5 + "price": 11 }, "891": { "id": 891, @@ -13914,7 +13914,7 @@ "ranged": 30 } }, - "price": 166 + "price": 144 }, "892": { "id": 892, @@ -13953,7 +13953,7 @@ "ranged": 40 } }, - "price": 97 + "price": 81 }, "893": { "id": 893, @@ -13992,7 +13992,7 @@ "ranged": 40 } }, - "price": 213.5 + "price": 232 }, "942": { "id": 942, @@ -14091,7 +14091,7 @@ "examine": "This would make warm clothing.", "wiki_name": "Bear fur", "wiki_url": "https://oldschool.runescape.wiki/w/Bear_fur", - "price": 144 + "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": 139 + "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": 162.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": 62.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": 103 + "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": 336.5 + "price": 326 }, "962": { "id": 962, @@ -14204,12 +14204,12 @@ "lowalch": 0, "highalch": 0, "weight": 0.2, - "buy_limit": 50, + "buy_limit": 4, "release_date": "2001-12-25", "examine": "I need to pull this.", "wiki_name": "Christmas cracker", "wiki_url": "https://oldschool.runescape.wiki/w/Christmas_cracker", - "price": 171211 + "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": 221 + "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": 429.5 + "price": 227 }, "975": { "id": 975, @@ -14388,7 +14388,7 @@ } ] }, - "price": 586.5 + "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": 16775 + "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": 278 + "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": 18753.5 + "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": 102.5 + "price": 68 }, "1007": { "id": 1007, @@ -14611,7 +14611,7 @@ "slot": "cape", "requirements": null }, - "price": 135.5 + "price": 65 }, "1009": { "id": 1009, @@ -14648,7 +14648,7 @@ "slot": "neck", "requirements": null }, - "price": 245 + "price": 222 }, "1011": { "id": 1011, @@ -14685,7 +14685,7 @@ "slot": "legs", "requirements": null }, - "price": 87 + "price": 81 }, "1013": { "id": 1013, @@ -14722,7 +14722,7 @@ "slot": "legs", "requirements": null }, - "price": 85 + "price": 63 }, "1015": { "id": 1015, @@ -14796,7 +14796,7 @@ "slot": "head", "requirements": null }, - "price": 321 + "price": 760 }, "1019": { "id": 1019, @@ -14833,7 +14833,7 @@ "slot": "cape", "requirements": null }, - "price": 441.5 + "price": 621 }, "1021": { "id": 1021, @@ -14870,7 +14870,7 @@ "slot": "cape", "requirements": null }, - "price": 210 + "price": 169 }, "1023": { "id": 1023, @@ -14945,7 +14945,7 @@ "slot": "head", "requirements": null }, - "price": 200 + "price": 188 }, "1027": { "id": 1027, @@ -14982,7 +14982,7 @@ "slot": "cape", "requirements": null }, - "price": 550 + "price": 738 }, "1029": { "id": 1029, @@ -15019,7 +15019,7 @@ "slot": "cape", "requirements": null }, - "price": 801 + "price": 1648 }, "1031": { "id": 1031, @@ -15056,7 +15056,7 @@ "slot": "cape", "requirements": null }, - "price": 1500 + "price": 1293 }, "1033": { "id": 1033, @@ -15093,7 +15093,7 @@ "slot": "legs", "requirements": null }, - "price": 3584 + "price": 14500 }, "1035": { "id": 1035, @@ -15130,7 +15130,7 @@ "slot": "body", "requirements": null }, - "price": 545.5 + "price": 1934 }, "1037": { "id": 1037, @@ -15200,7 +15200,7 @@ "slot": "head", "requirements": null }, - "price": 3140.5 + "price": 7719 }, "1040": { "id": 1040, @@ -15237,7 +15237,7 @@ "slot": "head", "requirements": null }, - "price": 2397.5 + "price": 6766 }, "1042": { "id": 1042, @@ -15274,7 +15274,7 @@ "slot": "head", "requirements": null }, - "price": 8574.5 + "price": 29750 }, "1044": { "id": 1044, @@ -15311,7 +15311,7 @@ "slot": "head", "requirements": null }, - "price": 4061.5 + "price": 10125 }, "1046": { "id": 1046, @@ -15348,7 +15348,7 @@ "slot": "head", "requirements": null }, - "price": 4139.5 + "price": 10148 }, "1048": { "id": 1048, @@ -15385,7 +15385,7 @@ "slot": "head", "requirements": null }, - "price": 4577.5 + "price": 7258 }, "1050": { "id": 1050, @@ -15422,7 +15422,7 @@ "slot": "head", "requirements": null }, - "price": 9443.5 + "price": 14512 }, "1052": { "id": 1052, @@ -15493,7 +15493,7 @@ "slot": "head", "requirements": null }, - "price": 8172 + "price": 17774 }, "1055": { "id": 1055, @@ -15530,7 +15530,7 @@ "slot": "head", "requirements": null }, - "price": 5805.5 + "price": 10359 }, "1057": { "id": 1057, @@ -15567,7 +15567,7 @@ "slot": "head", "requirements": null }, - "price": 8228 + "price": 16987 }, "1059": { "id": 1059, @@ -15606,7 +15606,7 @@ "defence": 1 } }, - "price": 17.5 + "price": 34 }, "1061": { "id": 1061, @@ -15645,7 +15645,7 @@ "defence": 1 } }, - "price": 58.5 + "price": 50 }, "1063": { "id": 1063, @@ -15684,7 +15684,7 @@ "defence": 1 } }, - "price": 22.5 + "price": 130 }, "1065": { "id": 1065, @@ -15723,7 +15723,7 @@ "ranged": 40 } }, - "price": 1395.5 + "price": 1539 }, "1067": { "id": 1067, @@ -15762,7 +15762,7 @@ "defence": 1 } }, - "price": 47 + "price": 78 }, "1069": { "id": 1069, @@ -15801,7 +15801,7 @@ "defence": 5 } }, - "price": 517 + "price": 635 }, "1071": { "id": 1071, @@ -15840,7 +15840,7 @@ "defence": 20 } }, - "price": 1180.5 + "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": 127 + "price": 101 }, "1077": { "id": 1077, @@ -15957,7 +15957,7 @@ "defence": 10 } }, - "price": 1017.5 + "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": 91 + "price": 44 }, "1083": { "id": 1083, @@ -16074,7 +16074,7 @@ "defence": 5 } }, - "price": 331.5 + "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": 101 + "price": 5 }, "1089": { "id": 1089, @@ -16191,7 +16191,7 @@ "defence": 10 } }, - "price": 2266.5 + "price": 987 }, "1091": { "id": 1091, @@ -16230,7 +16230,7 @@ "defence": 30 } }, - "price": 3752.5 + "price": 3600 }, "1093": { "id": 1093, @@ -16309,7 +16309,7 @@ "defence": 1 } }, - "price": 32 + "price": 2 }, "1097": { "id": 1097, @@ -16349,7 +16349,7 @@ "defence": 1 } }, - "price": 370 + "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": 125 + "price": 100 }, "1103": { "id": 1103, @@ -16466,7 +16466,7 @@ "defence": 1 } }, - "price": 91.5 + "price": 65 }, "1105": { "id": 1105, @@ -16505,7 +16505,7 @@ "defence": 5 } }, - "price": 395.5 + "price": 296 }, "1107": { "id": 1107, @@ -16544,7 +16544,7 @@ "defence": 10 } }, - "price": 1665 + "price": 19999 }, "1109": { "id": 1109, @@ -16583,7 +16583,7 @@ "defence": 20 } }, - "price": 1077.5 + "price": 921 }, "1111": { "id": 1111, @@ -16622,7 +16622,7 @@ "defence": 30 } }, - "price": 2534.5 + "price": 2375 }, "1113": { "id": 1113, @@ -16700,7 +16700,7 @@ "defence": 1 } }, - "price": 166 + "price": 110 }, "1117": { "id": 1117, @@ -16739,7 +16739,7 @@ "defence": 1 } }, - "price": 42.5 + "price": 91 }, "1119": { "id": 1119, @@ -16778,7 +16778,7 @@ "defence": 5 } }, - "price": 902.5 + "price": 844 }, "1121": { "id": 1121, @@ -16817,7 +16817,7 @@ "defence": 20 } }, - "price": 1934 + "price": 2516 }, "1123": { "id": 1123, @@ -16895,7 +16895,7 @@ "defence": 10 } }, - "price": 2512 + "price": 2204 }, "1127": { "id": 1127, @@ -16974,7 +16974,7 @@ "defence": 1 } }, - "price": 14 + "price": 40 }, "1131": { "id": 1131, @@ -17014,7 +17014,7 @@ "defence": 10 } }, - "price": 52 + "price": 30 }, "1133": { "id": 1133, @@ -17054,7 +17054,7 @@ "defence": 20 } }, - "price": 224.5 + "price": 1315 }, "1135": { "id": 1135, @@ -17133,7 +17133,7 @@ "defence": 1 } }, - "price": 19.5 + "price": 21 }, "1139": { "id": 1139, @@ -17162,7 +17162,7 @@ "defence_slash": 4, "defence_crush": 2, "defence_magic": -1, - "defence_ranged": 4, + "defence_ranged": 3, "melee_strength": 0, "ranged_strength": 0, "magic_damage": 0, @@ -17172,7 +17172,7 @@ "defence": 1 } }, - "price": 225 + "price": 290 }, "1141": { "id": 1141, @@ -17211,7 +17211,7 @@ "defence": 5 } }, - "price": 51 + "price": 49 }, "1143": { "id": 1143, @@ -17250,7 +17250,7 @@ "defence": 20 } }, - "price": 232 + "price": 218 }, "1145": { "id": 1145, @@ -17289,7 +17289,7 @@ "defence": 30 } }, - "price": 997.5 + "price": 768 }, "1147": { "id": 1147, @@ -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": 88 + "price": 252 }, "1153": { "id": 1153, @@ -17446,7 +17446,7 @@ "defence": 1 } }, - "price": 100 + "price": 61 }, "1155": { "id": 1155, @@ -17485,7 +17485,7 @@ "defence": 1 } }, - "price": 56.5 + "price": 53 }, "1157": { "id": 1157, @@ -17524,7 +17524,7 @@ "defence": 5 } }, - "price": 146 + "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": 495.5 + "price": 526 }, "1167": { "id": 1167, @@ -17720,7 +17720,7 @@ "defence": 1 } }, - "price": 82 + "price": 36 }, "1169": { "id": 1169, @@ -17760,7 +17760,7 @@ "defence": 1 } }, - "price": 51.5 + "price": 41 }, "1171": { "id": 1171, @@ -17797,7 +17797,7 @@ "slot": "shield", "requirements": null }, - "price": 133 + "price": 128 }, "1173": { "id": 1173, @@ -17836,7 +17836,7 @@ "defence": 1 } }, - "price": 33.5 + "price": 238 }, "1175": { "id": 1175, @@ -17875,7 +17875,7 @@ "defence": 1 } }, - "price": 13 + "price": 250 }, "1177": { "id": 1177, @@ -17914,7 +17914,7 @@ "defence": 5 } }, - "price": 184.5 + "price": 174 }, "1179": { "id": 1179, @@ -17953,7 +17953,7 @@ "defence": 10 } }, - "price": 455 + "price": 475 }, "1181": { "id": 1181, @@ -18031,7 +18031,7 @@ "defence": 30 } }, - "price": 2037.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": 98.5 + "price": 20 }, "1191": { "id": 1191, @@ -18188,7 +18188,7 @@ "defence": 1 } }, - "price": 54.5 + "price": 11 }, "1193": { "id": 1193, @@ -18227,7 +18227,7 @@ "defence": 5 } }, - "price": 230 + "price": 262 }, "1195": { "id": 1195, @@ -18266,7 +18266,7 @@ "defence": 10 } }, - "price": 2522 + "price": 1708 }, "1197": { "id": 1197, @@ -18305,7 +18305,7 @@ "defence": 20 } }, - "price": 1127 + "price": 1078 }, "1199": { "id": 1199, @@ -18344,7 +18344,7 @@ "defence": 30 } }, - "price": 2900.5 + "price": 2900 }, "1201": { "id": 1201, @@ -18457,7 +18457,7 @@ } ] }, - "price": 49.5 + "price": 101 }, "1205": { "id": 1205, @@ -18531,7 +18531,7 @@ } ] }, - "price": 55 + "price": 63 }, "1207": { "id": 1207, @@ -18605,7 +18605,7 @@ } ] }, - "price": 62.5 + "price": 151 }, "1209": { "id": 1209, @@ -18679,7 +18679,7 @@ } ] }, - "price": 38 + "price": 136 }, "1211": { "id": 1211, @@ -18753,7 +18753,7 @@ } ] }, - "price": 251 + "price": 254 }, "1213": { "id": 1213, @@ -18827,7 +18827,7 @@ } ] }, - "price": 4434.5 + "price": 4434 }, "1215": { "id": 1215, @@ -18976,7 +18976,7 @@ } ] }, - "price": 182.5 + "price": 440 }, "1219": { "id": 1219, @@ -19051,7 +19051,7 @@ } ] }, - "price": 106 + "price": 110 }, "1221": { "id": 1221, @@ -19126,7 +19126,7 @@ } ] }, - "price": 5123.5 + "price": 248 }, "1223": { "id": 1223, @@ -19351,7 +19351,7 @@ } ] }, - "price": 252.5 + "price": 26 }, "1229": { "id": 1229, @@ -19426,7 +19426,7 @@ } ] }, - "price": 5068 + "price": 6263 }, "1231": { "id": 1231, @@ -19501,7 +19501,7 @@ } ] }, - "price": 13235.5 + "price": 17016 }, "1233": { "id": 1233, @@ -19576,7 +19576,7 @@ } ] }, - "price": 10 + "price": 1 }, "1235": { "id": 1235, @@ -19666,7 +19666,7 @@ } ] }, - "price": 1095 + "price": 464 }, "1239": { "id": 1239, @@ -19741,7 +19741,7 @@ } ] }, - "price": 630 + "price": 834 }, "1241": { "id": 1241, @@ -19816,7 +19816,7 @@ } ] }, - "price": 286.5 + "price": 66 }, "1243": { "id": 1243, @@ -19891,7 +19891,7 @@ } ] }, - "price": 290.5 + "price": 625 }, "1245": { "id": 1245, @@ -19966,7 +19966,7 @@ } ] }, - "price": 878 + "price": 944 }, "1247": { "id": 1247, @@ -20191,7 +20191,7 @@ } ] }, - "price": 866 + "price": 1 }, "1253": { "id": 1253, @@ -20266,7 +20266,7 @@ } ] }, - "price": 1091.5 + "price": 1732 }, "1255": { "id": 1255, @@ -20341,7 +20341,7 @@ } ] }, - "price": 17.5 + "price": 36 }, "1257": { "id": 1257, @@ -20416,7 +20416,7 @@ } ] }, - "price": 287 + "price": 1 }, "1259": { "id": 1259, @@ -20491,7 +20491,7 @@ } ] }, - "price": 867 + "price": 724 }, "1261": { "id": 1261, @@ -20566,7 +20566,7 @@ } ] }, - "price": 13406.5 + "price": 12057 }, "1263": { "id": 1263, @@ -20641,7 +20641,7 @@ } ] }, - "price": 37822 + "price": 37816 }, "1265": { "id": 1265, @@ -20716,7 +20716,7 @@ } ] }, - "price": 51 + "price": 96 }, "1267": { "id": 1267, @@ -20791,7 +20791,7 @@ } ] }, - "price": 93.5 + "price": 255 }, "1269": { "id": 1269, @@ -20866,7 +20866,7 @@ } ] }, - "price": 570.5 + "price": 262 }, "1271": { "id": 1271, @@ -20941,7 +20941,7 @@ } ] }, - "price": 1594 + "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": 85 + "price": 51 }, "1279": { "id": 1279, @@ -21239,7 +21239,7 @@ } ] }, - "price": 8 + "price": 38 }, "1281": { "id": 1281, @@ -21313,7 +21313,7 @@ } ] }, - "price": 200 + "price": 250 }, "1283": { "id": 1283, @@ -21387,7 +21387,7 @@ } ] }, - "price": 166.5 + "price": 218 }, "1285": { "id": 1285, @@ -21461,7 +21461,7 @@ } ] }, - "price": 347.5 + "price": 276 }, "1287": { "id": 1287, @@ -21535,7 +21535,7 @@ } ] }, - "price": 924.5 + "price": 1191 }, "1289": { "id": 1289, @@ -21609,7 +21609,7 @@ } ] }, - "price": 11914.5 + "price": 11914 }, "1291": { "id": 1291, @@ -21683,7 +21683,7 @@ } ] }, - "price": 31.5 + "price": 86 }, "1293": { "id": 1293, @@ -21757,7 +21757,7 @@ } ] }, - "price": 1 + "price": 17 }, "1295": { "id": 1295, @@ -21831,7 +21831,7 @@ } ] }, - "price": 103.5 + "price": 101 }, "1297": { "id": 1297, @@ -21979,7 +21979,7 @@ } ] }, - "price": 501 + "price": 698 }, "1301": { "id": 1301, @@ -22053,7 +22053,7 @@ } ] }, - "price": 1700.5 + "price": 1725 }, "1303": { "id": 1303, @@ -22202,7 +22202,7 @@ } ] }, - "price": 59209.5 + "price": 59209 }, "1307": { "id": 1307, @@ -22276,7 +22276,7 @@ } ] }, - "price": 127 + "price": 220 }, "1309": { "id": 1309, @@ -22350,7 +22350,7 @@ } ] }, - "price": 15 + "price": 44 }, "1311": { "id": 1311, @@ -22424,7 +22424,7 @@ } ] }, - "price": 350.5 + "price": 225 }, "1313": { "id": 1313, @@ -22572,7 +22572,7 @@ } ] }, - "price": 1349 + "price": 1024 }, "1317": { "id": 1317, @@ -22646,7 +22646,7 @@ } ] }, - "price": 3569.5 + "price": 3569 }, "1319": { "id": 1319, @@ -22794,7 +22794,7 @@ } ] }, - "price": 35.5 + "price": 57 }, "1323": { "id": 1323, @@ -22868,7 +22868,7 @@ } ] }, - "price": 40 + "price": 46 }, "1325": { "id": 1325, @@ -22942,7 +22942,7 @@ } ] }, - "price": 176 + "price": 140 }, "1327": { "id": 1327, @@ -23016,7 +23016,7 @@ } ] }, - "price": 1664 + "price": 1512 }, "1329": { "id": 1329, @@ -23090,7 +23090,7 @@ } ] }, - "price": 461 + "price": 509 }, "1331": { "id": 1331, @@ -23164,7 +23164,7 @@ } ] }, - "price": 1357 + "price": 1551 }, "1333": { "id": 1333, @@ -23305,7 +23305,7 @@ } ] }, - "price": 136 + "price": 64 }, "1337": { "id": 1337, @@ -23372,7 +23372,7 @@ } ] }, - "price": 10 + "price": 72 }, "1339": { "id": 1339, @@ -23439,7 +23439,7 @@ } ] }, - "price": 382.5 + "price": 81 }, "1341": { "id": 1341, @@ -23506,7 +23506,7 @@ } ] }, - "price": 305.5 + "price": 381 }, "1343": { "id": 1343, @@ -23573,7 +23573,7 @@ } ] }, - "price": 749.5 + "price": 817 }, "1345": { "id": 1345, @@ -23640,7 +23640,7 @@ } ] }, - "price": 2841 + "price": 3247 }, "1347": { "id": 1347, @@ -23707,7 +23707,7 @@ } ] }, - "price": 24414.5 + "price": 24414 }, "1349": { "id": 1349, @@ -23781,7 +23781,7 @@ } ] }, - "price": 17.5 + "price": 600 }, "1351": { "id": 1351, @@ -23855,7 +23855,7 @@ } ] }, - "price": 37 + "price": 99 }, "1353": { "id": 1353, @@ -23929,7 +23929,7 @@ } ] }, - "price": 35 + "price": 149 }, "1355": { "id": 1355, @@ -24003,7 +24003,7 @@ } ] }, - "price": 98 + "price": 397 }, "1357": { "id": 1357, @@ -24077,7 +24077,7 @@ } ] }, - "price": 465 + "price": 420 }, "1359": { "id": 1359, @@ -24151,7 +24151,7 @@ } ] }, - "price": 7179.5 + "price": 7179 }, "1361": { "id": 1361, @@ -24225,7 +24225,7 @@ } ] }, - "price": 186 + "price": 627 }, "1363": { "id": 1363, @@ -24373,7 +24373,7 @@ } ] }, - "price": 206 + "price": 133 }, "1367": { "id": 1367, @@ -24447,7 +24447,7 @@ } ] }, - "price": 463.5 + "price": 757 }, "1369": { "id": 1369, @@ -24521,7 +24521,7 @@ } ] }, - "price": 1058.5 + "price": 835 }, "1371": { "id": 1371, @@ -24595,7 +24595,7 @@ } ] }, - "price": 2445 + "price": 1908 }, "1373": { "id": 1373, @@ -24669,7 +24669,7 @@ } ] }, - "price": 24444.5 + "price": 24444 }, "1375": { "id": 1375, @@ -24743,7 +24743,7 @@ } ] }, - "price": 37.5 + "price": 54 }, "1377": { "id": 1377, @@ -24818,7 +24818,7 @@ } ] }, - "price": 119738.5 + "price": 119738 }, "1379": { "id": 1379, @@ -24897,7 +24897,7 @@ } ] }, - "price": 459 + "price": 55 }, "1381": { "id": 1381, @@ -25059,7 +25059,7 @@ } ] }, - "price": 2111.5 + "price": 2301 }, "1385": { "id": 1385, @@ -25140,7 +25140,7 @@ } ] }, - "price": 878 + "price": 1158 }, "1387": { "id": 1387, @@ -25221,7 +25221,7 @@ } ] }, - "price": 1731 + "price": 1818 }, "1389": { "id": 1389, @@ -25300,7 +25300,7 @@ } ] }, - "price": 132.5 + "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, @@ -26405,7 +26405,7 @@ } ] }, - "price": 119 + "price": 125 }, "1424": { "id": 1424, @@ -26479,7 +26479,7 @@ } ] }, - "price": 10 + "price": 40 }, "1426": { "id": 1426, @@ -26553,7 +26553,7 @@ } ] }, - "price": 577.5 + "price": 805 }, "1428": { "id": 1428, @@ -26627,7 +26627,7 @@ } ] }, - "price": 113.5 + "price": 117 }, "1430": { "id": 1430, @@ -26701,7 +26701,7 @@ } ] }, - "price": 631 + "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": 50 + "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": 162 + "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": 1380 + "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": 120.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": 1153.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": 71000 + "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": 219 + "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": 165 + "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": 993.5 + "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": 154.5 + "price": 1062 }, "1464": { "id": 1464, @@ -27089,7 +27089,7 @@ "examine": "I can exchange this for equipment.", "wiki_name": "Archery ticket", "wiki_url": "https://oldschool.runescape.wiki/w/Archery_ticket", - "price": 6.5 + "price": 14 }, "1465": { "id": 1465, @@ -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": 1770 + "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": 3180 + "price": 3761 }, "1478": { "id": 1478, @@ -27262,7 +27262,7 @@ "slot": "neck", "requirements": null }, - "price": 689 + "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": 74 + "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": 299 + "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": 16 + "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": 36 + "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": 179 + "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": 18.5 + "price": 21 }, "1540": { "id": 1540, @@ -28094,7 +28094,7 @@ "slot": "shield", "requirements": null }, - "price": 35 + "price": 160 }, "1542": { "id": 1542, @@ -28215,7 +28215,7 @@ "examine": "A clove of garlic.", "wiki_name": "Garlic", "wiki_url": "https://oldschool.runescape.wiki/w/Garlic", - "price": 52.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": 852.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": 400.5 + "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": 235 + "price": 427 }, "1597": { "id": 1597, @@ -28804,7 +28804,7 @@ "examine": "Used to make necklaces.", "wiki_name": "Necklace mould", "wiki_url": "https://oldschool.runescape.wiki/w/Necklace_mould", - "price": 593 + "price": 322 }, "1599": { "id": 1599, @@ -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, @@ -28838,7 +28838,7 @@ "examine": "This looks valuable.", "wiki_name": "Diamond", "wiki_url": "https://oldschool.runescape.wiki/w/Diamond", - "price": 1838.5 + "price": 1632 }, "1603": { "id": 1603, @@ -28855,7 +28855,7 @@ "examine": "This looks valuable.", "wiki_name": "Ruby", "wiki_url": "https://oldschool.runescape.wiki/w/Ruby", - "price": 905.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": 467 + "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": 247.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": 911 + "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": 270.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": 1771 + "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": 2250 + "price": 1957 }, "1619": { "id": 1619, @@ -28995,7 +28995,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut ruby", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_ruby", - "price": 1040 + "price": 872 }, "1621": { "id": 1621, @@ -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": 687.5 + "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": 142.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": 1289.5 + "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": 508 + "price": 421 }, "1639": { "id": 1639, @@ -29265,7 +29265,7 @@ "slot": "ring", "requirements": null }, - "price": 1116.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": 513 + "price": 446 }, "1658": { "id": 1658, @@ -29525,7 +29525,7 @@ "slot": "neck", "requirements": null }, - "price": 2012.5 + "price": 2012 }, "1664": { "id": 1664, @@ -29597,7 +29597,7 @@ "examine": "It needs a string so I can wear it.", "wiki_name": "Sapphire amulet (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Sapphire_amulet_(u)", - "price": 467 + "price": 400 }, "1677": { "id": 1677, @@ -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": 632.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": 1121 + "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": 71.5 + "price": 50 }, "1718": { "id": 1718, @@ -30173,7 +30173,7 @@ "slot": "neck", "requirements": null }, - "price": 450 + "price": 585 }, "1720": { "id": 1720, @@ -30229,7 +30229,7 @@ "slot": "neck", "requirements": null }, - "price": 1.5 + "price": 6 }, "1724": { "id": 1724, @@ -30267,7 +30267,7 @@ "slot": "neck", "requirements": null }, - "price": 367.5 + "price": 304 }, "1725": { "id": 1725, @@ -30304,7 +30304,7 @@ "slot": "neck", "requirements": null }, - "price": 1176.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": 982 + "price": 962 }, "1731": { "id": 1731, @@ -30415,7 +30415,7 @@ "slot": "neck", "requirements": null }, - "price": 2056 + "price": 2319 }, "1733": { "id": 1733, @@ -30431,7 +30431,7 @@ "examine": "Used with a thread to make clothes.", "wiki_name": "Needle", "wiki_url": "https://oldschool.runescape.wiki/w/Needle", - "price": 96 + "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": 11 + "price": 17 }, "1735": { "id": 1735, @@ -30478,10 +30478,10 @@ "weight": 0.003, "buy_limit": 13000, "release_date": "2001-01-04", - "examine": "I think this came from a sheep.", + "examine": "Nice and fluffy.", "wiki_name": "Wool", "wiki_url": "https://oldschool.runescape.wiki/w/Wool", - "price": 142.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": 143.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": 166 + "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": 190 + "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": 3496.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, @@ -30622,7 +30622,7 @@ "examine": "The scaly rough hide from a Green Dragon.", "wiki_name": "Green dragonhide", "wiki_url": "https://oldschool.runescape.wiki/w/Green_dragonhide", - "price": 1392.5 + "price": 1221 }, "1755": { "id": 1755, @@ -30639,7 +30639,7 @@ "examine": "Good for detailed crafting.", "wiki_name": "Chisel", "wiki_url": "https://oldschool.runescape.wiki/w/Chisel", - "price": 88.5 + "price": 55 }, "1757": { "id": 1757, @@ -30676,7 +30676,7 @@ "slot": "body", "requirements": null }, - "price": 77.5 + "price": 59 }, "1759": { "id": 1759, @@ -30690,10 +30690,10 @@ "weight": 0.012, "buy_limit": 13000, "release_date": "2001-01-04", - "examine": "Spun from sheeps' wool.", + "examine": "Spun from wool.", "wiki_name": "Ball of wool", "wiki_url": "https://oldschool.runescape.wiki/w/Ball_of_wool", - "price": 88.5 + "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": 367 + "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": 191.5 + "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": 215 + "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": 947 + "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": 851 + "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": 751.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": 89 + "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": 136.5 + "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": 49 + "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": 23 + "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": 76.5 + "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": 366.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": 350 + "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": 212 + "price": 258 }, "1793": { "id": 1793, @@ -30987,7 +30987,7 @@ "examine": "A slightly bluish leaf.", "wiki_name": "Woad leaf", "wiki_url": "https://oldschool.runescape.wiki/w/Woad_leaf", - "price": 45 + "price": 37 }, "1794": { "id": 1794, @@ -31005,7 +31005,7 @@ "examine": "Useful for Crafting items.", "wiki_name": "Bronze wire", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_wire", - "price": 224.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": 318 + "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": 82 + "price": 46 }, "1833": { "id": 1833, @@ -31543,7 +31543,7 @@ "slot": "body", "requirements": null }, - "price": 252 + "price": 130 }, "1835": { "id": 1835, @@ -31581,7 +31581,7 @@ "slot": "legs", "requirements": null }, - "price": 500 + "price": 85 }, "1837": { "id": 1837, @@ -31619,7 +31619,7 @@ "slot": "feet", "requirements": null }, - "price": 339.5 + "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": 26.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": 498 + "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": 669 + "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": 36 + "price": 54 }, "1871": { "id": 1871, @@ -32078,7 +32078,7 @@ "examine": "A mixture of onions in a bowl.", "wiki_name": "Chopped onion", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_onion", - "price": 175.5 + "price": 52 }, "1873": { "id": 1873, @@ -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": 5500.5 + "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": 405.5 + "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": 325 + "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": 112.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": 141 + "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": 100 + "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": 82 + "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": 1189 + "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": 612.5 + "price": 542 }, "1913": { "id": 1913, @@ -32430,7 +32430,7 @@ "examine": "A pint of thick dark beer.", "wiki_name": "Dwarven stout", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarven_stout", - "price": 93.5 + "price": 186 }, "1915": { "id": 1915, @@ -32448,7 +32448,7 @@ "examine": "A murky glass of some sort of drink.", "wiki_name": "Grog", "wiki_url": "https://oldschool.runescape.wiki/w/Grog", - "price": 287.5 + "price": 2689 }, "1917": { "id": 1917, @@ -32465,7 +32465,7 @@ "examine": "A glass of frothy ale.", "wiki_name": "Beer", "wiki_url": "https://oldschool.runescape.wiki/w/Beer", - "price": 90 + "price": 103 }, "1919": { "id": 1919, @@ -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": 192.5 + "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": 62 + "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": 25.5 + "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": 58.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": 35.5 + "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": 190 + "price": 160 }, "1935": { "id": 1935, @@ -32618,7 +32618,7 @@ "examine": "This jug is empty.", "wiki_name": "Jug", "wiki_url": "https://oldschool.runescape.wiki/w/Jug", - "price": 3.5 + "price": 3 }, "1937": { "id": 1937, @@ -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": 26.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": 4.5 + "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": 13.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": 106 + "price": 34 }, "1949": { "id": 1949, @@ -32785,7 +32785,7 @@ "slot": "head", "requirements": null }, - "price": 478.5 + "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": 70.5 + "price": 78 }, "1953": { "id": 1953, @@ -32819,7 +32819,7 @@ "examine": "Potentially pastry.", "wiki_name": "Pastry dough", "wiki_url": "https://oldschool.runescape.wiki/w/Pastry_dough", - "price": 245 + "price": 215 }, "1955": { "id": 1955, @@ -32836,7 +32836,7 @@ "examine": "Keeps the doctor away.", "wiki_name": "Cooking apple", "wiki_url": "https://oldschool.runescape.wiki/w/Cooking_apple", - "price": 52.5 + "price": 64 }, "1957": { "id": 1957, @@ -32853,7 +32853,7 @@ "examine": "A strong smelling onion.", "wiki_name": "Onion", "wiki_url": "https://oldschool.runescape.wiki/w/Onion", - "price": 40 + "price": 67 }, "1959": { "id": 1959, @@ -32870,7 +32870,7 @@ "examine": "Happy Halloween.", "wiki_name": "Pumpkin", "wiki_url": "https://oldschool.runescape.wiki/w/Pumpkin", - "price": 8708.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": 10529 + "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": 85 + "price": 96 }, "1965": { "id": 1965, @@ -32953,7 +32953,7 @@ "examine": "A home made spinach thing.", "wiki_name": "Spinach roll", "wiki_url": "https://oldschool.runescape.wiki/w/Spinach_roll", - "price": 155.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": 46 + "price": 51 }, "1973": { "id": 1973, @@ -32987,7 +32987,7 @@ "examine": "Mmmmmmm chocolate.", "wiki_name": "Chocolate bar", "wiki_url": "https://oldschool.runescape.wiki/w/Chocolate_bar", - "price": 16 + "price": 74 }, "1975": { "id": 1975, @@ -33004,7 +33004,7 @@ "examine": "It's ground up chocolate.", "wiki_name": "Chocolate dust", "wiki_url": "https://oldschool.runescape.wiki/w/Chocolate_dust", - "price": 46 + "price": 92 }, "1977": { "id": 1977, @@ -33036,7 +33036,7 @@ "examine": "A nice cup of tea.", "wiki_name": "Cup of tea", "wiki_url": "https://oldschool.runescape.wiki/w/Cup_of_tea", - "price": 61 + "price": 97 }, "1980": { "id": 1980, @@ -33054,7 +33054,7 @@ "examine": "An empty cup.", "wiki_name": "Empty cup", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_cup", - "price": 3 + "price": 6 }, "1982": { "id": 1982, @@ -33071,7 +33071,7 @@ "examine": "This would make good ketchup.", "wiki_name": "Tomato", "wiki_url": "https://oldschool.runescape.wiki/w/Tomato", - "price": 23.5 + "price": 26 }, "1984": { "id": 1984, @@ -33102,7 +33102,7 @@ "examine": "It's got holes in it.", "wiki_name": "Cheese", "wiki_url": "https://oldschool.runescape.wiki/w/Cheese", - "price": 35 + "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": 13.5 + "price": 7 }, "1989": { "id": 1989, @@ -33136,7 +33136,7 @@ "examine": "An optimist would say it's half full.", "wiki_name": "Half full wine jug", "wiki_url": "https://oldschool.runescape.wiki/w/Half_full_wine_jug", - "price": 6925 + "price": 14009 }, "1991": { "id": 1991, @@ -33179,7 +33179,7 @@ "examine": "It's full of wine.", "wiki_name": "Jug of wine", "wiki_url": "https://oldschool.runescape.wiki/w/Jug_of_wine", - "price": 4.5 + "price": 5 }, "1995": { "id": 1995, @@ -33267,7 +33267,7 @@ "examine": "It's a meat and potato stew.", "wiki_name": "Stew", "wiki_url": "https://oldschool.runescape.wiki/w/Stew", - "price": 109 + "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": 75 + "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": 117 + "price": 551 }, "2013": { "id": 2013, @@ -33368,7 +33368,7 @@ "examine": "An absolutely clear spirit.", "wiki_name": "Vodka", "wiki_url": "https://oldschool.runescape.wiki/w/Vodka", - "price": 433.5 + "price": 246 }, "2017": { "id": 2017, @@ -33386,7 +33386,7 @@ "examine": "A bottle of Draynor Malt.", "wiki_name": "Whisky", "wiki_url": "https://oldschool.runescape.wiki/w/Whisky", - "price": 661.5 + "price": 444 }, "2019": { "id": 2019, @@ -33404,7 +33404,7 @@ "examine": "A strong spirit that tastes of Juniper.", "wiki_name": "Gin", "wiki_url": "https://oldschool.runescape.wiki/w/Gin", - "price": 931.5 + "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": 61.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": 30 + "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": 135 + "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": 653 + "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": 57 + "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": 247.5 + "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": 265 + "price": 8 }, "2036": { "id": 2036, @@ -33566,7 +33566,7 @@ "examine": "A premade Pineapple punch.", "wiki_name": "Premade p' punch", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_p'_punch", - "price": 513 + "price": 26 }, "2038": { "id": 2038, @@ -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": 9.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": 26050 + "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": 5929.5 + "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": 3800 + "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": 4477.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": 2827 + "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": 1910.5 + "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": 3495 + "price": 2779 }, "2094": { "id": 2094, @@ -34113,7 +34113,7 @@ "examine": "Fresh chunks of lemon.", "wiki_name": "Lemon chunks", "wiki_url": "https://oldschool.runescape.wiki/w/Lemon_chunks", - "price": 77 + "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": 126 + "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": 99.5 + "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": 13.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": 240 + "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": 289.5 + "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": 557 + "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": 80 + "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": 160 + "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": 88 + "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": 100.5 + "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": 123.5 + "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": 230 + "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": 5 + "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": 57.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": 170 + "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": 517 + "price": 142 }, "2138": { "id": 2138, @@ -34432,7 +34432,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Cooked chicken", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_chicken", - "price": 57 + "price": 92 }, "2142": { "id": 2142, @@ -34449,7 +34449,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Cooked meat", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_meat", - "price": 125 + "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": 243 + "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": 358.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": 453 + "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": 1 + "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": 254 + "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": 500 + "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": 45 + "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": 122.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": 37.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": 457.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": 954.5 + "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": 1466.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": 1022 + "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": 1745.5 + "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": 3776 + "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": 2679.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": 10027 + "price": 215 }, "2221": { "id": 2221, @@ -35183,7 +35183,7 @@ "examine": "A Premade Cheese and Tomato Batta.", "wiki_name": "Premade c+t batta", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_c+t_batta", - "price": 73.5 + "price": 198 }, "2225": { "id": 2225, @@ -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": 71.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": 777.5 + "price": 1185 }, "2231": { "id": 2231, @@ -35255,7 +35255,7 @@ "examine": "A premade Tangled Toads Legs.", "wiki_name": "Premade ttl", "wiki_url": "https://oldschool.runescape.wiki/w/Premade_ttl", - "price": 333 + "price": 322 }, "2233": { "id": 2233, @@ -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": 93 + "price": 275 }, "2235": { "id": 2235, @@ -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": 73 + "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": 760 + "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": 262.5 + "price": 8000 }, "2255": { "id": 2255, @@ -35473,7 +35473,7 @@ "examine": "It actually smells quite good.", "wiki_name": "Toad batta", "wiki_url": "https://oldschool.runescape.wiki/w/Toad_batta", - "price": 2500 + "price": 1100 }, "2257": { "id": 2257, @@ -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": 2498.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": 3010 + "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": 4150.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": 247.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, @@ -35837,7 +35837,7 @@ "examine": "A tropicana pizza.", "wiki_name": "Pineapple pizza (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Pineapple_pizza#Full", - "price": 820.5 + "price": 925 }, "2303": { "id": 2303, @@ -35885,7 +35885,7 @@ "examine": "Some uncooked dough.", "wiki_name": "Bread dough", "wiki_url": "https://oldschool.runescape.wiki/w/Bread_dough", - "price": 202 + "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": 182.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": 89.5 + "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": 470 + "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, @@ -35985,7 +35985,7 @@ "examine": "This would be much healthier cooked.", "wiki_name": "Uncooked meat pie", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_meat_pie", - "price": 542 + "price": 625 }, "2321": { "id": 2321, @@ -36002,7 +36002,7 @@ "examine": "This would be much more appetising cooked.", "wiki_name": "Uncooked berry pie", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_berry_pie", - "price": 631 + "price": 550 }, "2323": { "id": 2323, @@ -36019,7 +36019,7 @@ "examine": "Mmm Apple pie.", "wiki_name": "Apple pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Apple_pie#Full", - "price": 61 + "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": 57.5 + "price": 68 }, "2329": { "id": 2329, @@ -36131,7 +36131,7 @@ "examine": "Raw meat from the oomlie bird.", "wiki_name": "Raw oomlie", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_oomlie", - "price": 776.5 + "price": 1315 }, "2339": { "id": 2339, @@ -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": 1379 + "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": 2339.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": 26.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": 207 + "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": 194 + "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": 429 + "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, @@ -36347,7 +36347,7 @@ "examine": "It's a bar of adamantite.", "wiki_name": "Adamantite bar", "wiki_url": "https://oldschool.runescape.wiki/w/Adamantite_bar", - "price": 2060.5 + "price": 1780 }, "2363": { "id": 2363, @@ -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": 318 + "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": 11 + "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": 72 + "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": 515.5 + "price": 417 }, "2434": { "id": 2434, @@ -37573,7 +37573,7 @@ "examine": "4 doses of Prayer restore potion.", "wiki_name": "Prayer potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Prayer_potion#4_dose", - "price": 8300 + "price": 9854 }, "2436": { "id": 2436, @@ -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": 1668 + "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": 72.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": 236 + "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": 840 + "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": 712 + "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": 1132.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": 796.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": 359.5 + "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": 290 + "price": 286 }, "2460": { "id": 2460, @@ -37920,7 +37920,7 @@ } ] }, - "price": 141 + "price": 275 }, "2464": { "id": 2464, @@ -37986,7 +37986,7 @@ } ] }, - "price": 332.5 + "price": 175 }, "2466": { "id": 2466, @@ -38052,7 +38052,7 @@ } ] }, - "price": 153.5 + "price": 176 }, "2468": { "id": 2468, @@ -38118,7 +38118,7 @@ } ] }, - "price": 1149.5 + "price": 1464 }, "2470": { "id": 2470, @@ -38184,7 +38184,7 @@ } ] }, - "price": 495 + "price": 95 }, "2472": { "id": 2472, @@ -38250,7 +38250,7 @@ } ] }, - "price": 299 + "price": 75 }, "2474": { "id": 2474, @@ -38316,7 +38316,7 @@ } ] }, - "price": 573000 + "price": 380000 }, "2476": { "id": 2476, @@ -38382,7 +38382,7 @@ } ] }, - "price": 77501.5 + "price": 59044 }, "2481": { "id": 2481, @@ -38400,7 +38400,7 @@ "examine": "A powerful herb.", "wiki_name": "Lantadyme", "wiki_url": "https://oldschool.runescape.wiki/w/Lantadyme", - "price": 1893 + "price": 1328 }, "2483": { "id": 2483, @@ -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": 2084.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": 1968 + "price": 1403 }, "2487": { "id": 2487, @@ -38476,7 +38476,7 @@ "ranged": 50 } }, - "price": 1850 + "price": 1551 }, "2489": { "id": 2489, @@ -38516,7 +38516,7 @@ "ranged": 60 } }, - "price": 1894 + "price": 1663 }, "2491": { "id": 2491, @@ -38556,7 +38556,7 @@ "ranged": 70 } }, - "price": 1832 + "price": 2341 }, "2493": { "id": 2493, @@ -38596,7 +38596,7 @@ "ranged": 50 } }, - "price": 2150.5 + "price": 2018 }, "2495": { "id": 2495, @@ -38676,7 +38676,7 @@ "ranged": 70 } }, - "price": 6700 + "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": 1992.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": 3618 + "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": 264.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": 309.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": 227 + "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": 629.5 + "price": 691 }, "2552": { "id": 2552, @@ -39467,7 +39467,7 @@ "slot": "ring", "requirements": null }, - "price": 788 + "price": 701 }, "2554": { "id": 2554, @@ -39915,7 +39915,7 @@ "defence": 1 } }, - "price": 31855537 + "price": 32459676 }, "2579": { "id": 2579, @@ -39956,7 +39956,7 @@ "defence": 1 } }, - "price": 164397.5 + "price": 228892 }, "2581": { "id": 2581, @@ -39997,7 +39997,7 @@ "defence": 1 } }, - "price": 1113654.5 + "price": 1375673 }, "2583": { "id": 2583, @@ -40036,7 +40036,7 @@ "defence": 10 } }, - "price": 19673 + "price": 21156 }, "2585": { "id": 2585, @@ -40075,7 +40075,7 @@ "defence": 10 } }, - "price": 7290 + "price": 21214 }, "2587": { "id": 2587, @@ -40114,7 +40114,7 @@ "defence": 10 } }, - "price": 18685.5 + "price": 16879 }, "2589": { "id": 2589, @@ -40153,7 +40153,7 @@ "defence": 10 } }, - "price": 10914 + "price": 10133 }, "2591": { "id": 2591, @@ -40192,7 +40192,7 @@ "defence": 10 } }, - "price": 118499.5 + "price": 128278 }, "2593": { "id": 2593, @@ -40231,7 +40231,7 @@ "defence": 10 } }, - "price": 55513.5 + "price": 36412 }, "2595": { "id": 2595, @@ -40270,7 +40270,7 @@ "defence": 10 } }, - "price": 113240 + "price": 110395 }, "2597": { "id": 2597, @@ -40309,7 +40309,7 @@ "defence": 10 } }, - "price": 131227.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": 5069.5 + "price": 5031 }, "2603": { "id": 2603, @@ -40426,7 +40426,7 @@ "defence": 30 } }, - "price": 2576 + "price": 3469 }, "2605": { "id": 2605, @@ -40465,7 +40465,7 @@ "defence": 30 } }, - "price": 5555 + "price": 2687 }, "2607": { "id": 2607, @@ -40504,7 +40504,7 @@ "defence": 30 } }, - "price": 7176.5 + "price": 20671 }, "2609": { "id": 2609, @@ -40543,7 +40543,7 @@ "defence": 30 } }, - "price": 8522.5 + "price": 7556 }, "2611": { "id": 2611, @@ -40582,7 +40582,7 @@ "defence": 30 } }, - "price": 13174.5 + "price": 10437 }, "2613": { "id": 2613, @@ -40621,7 +40621,7 @@ "defence": 30 } }, - "price": 8851 + "price": 11489 }, "2615": { "id": 2615, @@ -40660,7 +40660,7 @@ "defence": 40 } }, - "price": 70996.5 + "price": 78982 }, "2617": { "id": 2617, @@ -40699,7 +40699,7 @@ "defence": 40 } }, - "price": 55345 + "price": 41397 }, "2619": { "id": 2619, @@ -40738,7 +40738,7 @@ "defence": 40 } }, - "price": 103327.5 + "price": 97243 }, "2621": { "id": 2621, @@ -40777,7 +40777,7 @@ "defence": 40 } }, - "price": 117663.5 + "price": 142659 }, "2623": { "id": 2623, @@ -40816,7 +40816,7 @@ "defence": 40 } }, - "price": 38856 + "price": 38913 }, "2625": { "id": 2625, @@ -40855,7 +40855,7 @@ "defence": 40 } }, - "price": 41175 + "price": 39698 }, "2627": { "id": 2627, @@ -40894,7 +40894,7 @@ "defence": 40 } }, - "price": 24328.5 + "price": 30272 }, "2629": { "id": 2629, @@ -40933,7 +40933,7 @@ "defence": 40 } }, - "price": 34295 + "price": 36267 }, "2631": { "id": 2631, @@ -40971,7 +40971,7 @@ "slot": "head", "requirements": null }, - "price": 26345.5 + "price": 32597 }, "2633": { "id": 2633, @@ -41009,7 +41009,7 @@ "slot": "head", "requirements": null }, - "price": 10003 + "price": 19643 }, "2635": { "id": 2635, @@ -41047,7 +41047,7 @@ "slot": "head", "requirements": null }, - "price": 30168.5 + "price": 36045 }, "2637": { "id": 2637, @@ -41085,7 +41085,7 @@ "slot": "head", "requirements": null }, - "price": 29013.5 + "price": 19173 }, "2639": { "id": 2639, @@ -41123,7 +41123,7 @@ "slot": "head", "requirements": null }, - "price": 2274.5 + "price": 53250 }, "2641": { "id": 2641, @@ -41161,7 +41161,7 @@ "slot": "head", "requirements": null }, - "price": 7005.5 + "price": 9741 }, "2643": { "id": 2643, @@ -41199,7 +41199,7 @@ "slot": "head", "requirements": null }, - "price": 45039.5 + "price": 21992 }, "2645": { "id": 2645, @@ -41237,7 +41237,7 @@ "slot": "head", "requirements": null }, - "price": 580 + "price": 4656 }, "2647": { "id": 2647, @@ -41275,7 +41275,7 @@ "slot": "head", "requirements": null }, - "price": 2141 + "price": 6525 }, "2649": { "id": 2649, @@ -41313,7 +41313,7 @@ "slot": "head", "requirements": null }, - "price": 789 + "price": 3951 }, "2651": { "id": 2651, @@ -41351,7 +41351,7 @@ "slot": "head", "requirements": null }, - "price": 138999.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": 38551.5 + "price": 43853 }, "2657": { "id": 2657, @@ -41468,7 +41468,7 @@ "defence": 40 } }, - "price": 703368 + "price": 900001 }, "2659": { "id": 2659, @@ -41507,7 +41507,7 @@ "defence": 40 } }, - "price": 37677 + "price": 42900 }, "2661": { "id": 2661, @@ -41546,7 +41546,7 @@ "defence": 40 } }, - "price": 59504 + "price": 51769 }, "2663": { "id": 2663, @@ -41585,7 +41585,7 @@ "defence": 40 } }, - "price": 60795 + "price": 89456 }, "2665": { "id": 2665, @@ -41624,7 +41624,7 @@ "defence": 40 } }, - "price": 77733.5 + "price": 106871 }, "2667": { "id": 2667, @@ -41663,7 +41663,7 @@ "defence": 40 } }, - "price": 60659 + "price": 82942 }, "2669": { "id": 2669, @@ -41702,7 +41702,7 @@ "defence": 40 } }, - "price": 42266 + "price": 54190 }, "2671": { "id": 2671, @@ -41741,7 +41741,7 @@ "defence": 40 } }, - "price": 41442 + "price": 41996 }, "2673": { "id": 2673, @@ -41780,7 +41780,7 @@ "defence": 40 } }, - "price": 21403.5 + "price": 35649 }, "2675": { "id": 2675, @@ -41819,7 +41819,7 @@ "defence": 40 } }, - "price": 33524.5 + "price": 44680 }, "2677": { "id": 2677, @@ -41961,20 +41961,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Casket_(discontinued)#Medium", "price": 0 }, - "2829": { - "id": 2829, - "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, map 2)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium,_map_2)", - "price": 0 - }, "2832": { "id": 2832, "name": "Key (medium)", @@ -41989,20 +41975,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Key_(Treasure_Trails)#Medium", "price": 0 }, - "2841": { - "id": 2841, - "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) - Speak to Hazelmere.", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)_-_Speak_to_Hazelmere.", - "price": 0 - }, "2842": { "id": 2842, "name": "Challenge scroll (medium)", @@ -42033,7 +42005,7 @@ "examine": "Bones of a recently slain wolf.", "wiki_name": "Wolf bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wolf_bones", - "price": 489.5 + "price": 688 }, "2861": { "id": 2861, @@ -42050,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": 84 + "price": 39 }, "2862": { "id": 2862, @@ -42068,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": 708.5 + "price": 369 }, "2864": { "id": 2864, @@ -42085,7 +42057,7 @@ "examine": "A wooden arrow shaft.", "wiki_name": "Ogre arrow shaft", "wiki_url": "https://oldschool.runescape.wiki/w/Ogre_arrow_shaft", - "price": 28 + "price": 93 }, "2865": { "id": 2865, @@ -42102,7 +42074,7 @@ "examine": "A wooden arrow shaft with four flights attached.", "wiki_name": "Flighted ogre arrow", "wiki_url": "https://oldschool.runescape.wiki/w/Flighted_ogre_arrow", - "price": 89 + "price": 145 }, "2866": { "id": 2866, @@ -42141,7 +42113,7 @@ "ranged": 30 } }, - "price": 233.5 + "price": 171 }, "2871": { "id": 2871, @@ -42229,7 +42201,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw chompy", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_chompy", - "price": 1500.5 + "price": 2582 }, "2878": { "id": 2878, @@ -42247,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": 100 + "price": 111 }, "2880": { "id": 2880, @@ -42431,7 +42403,7 @@ "slot": "shield", "requirements": null }, - "price": 1751 + "price": 924 }, "2892": { "id": 2892, @@ -42496,7 +42468,7 @@ "slot": "feet", "requirements": null }, - "price": 662 + "price": 2322 }, "2896": { "id": 2896, @@ -42534,7 +42506,7 @@ "slot": "body", "requirements": null }, - "price": 1125 + "price": 321 }, "2898": { "id": 2898, @@ -42572,7 +42544,7 @@ "slot": "legs", "requirements": null }, - "price": 979 + "price": 213 }, "2900": { "id": 2900, @@ -42610,7 +42582,7 @@ "slot": "head", "requirements": null }, - "price": 1457 + "price": 527 }, "2902": { "id": 2902, @@ -42647,7 +42619,7 @@ "slot": "hands", "requirements": null }, - "price": 1316 + "price": 2035 }, "2904": { "id": 2904, @@ -42760,7 +42732,7 @@ "slot": "legs", "requirements": null }, - "price": 3156 + "price": 2569 }, "2910": { "id": 2910, @@ -42798,7 +42770,7 @@ "slot": "head", "requirements": null }, - "price": 2016.5 + "price": 833 }, "2912": { "id": 2912, @@ -42835,7 +42807,7 @@ "slot": "hands", "requirements": null }, - "price": 508.5 + "price": 1013 }, "2914": { "id": 2914, @@ -42872,7 +42844,7 @@ "slot": "feet", "requirements": null }, - "price": 10299 + "price": 1465 }, "2916": { "id": 2916, @@ -42910,7 +42882,7 @@ "slot": "body", "requirements": null }, - "price": 838 + "price": 1 }, "2918": { "id": 2918, @@ -42948,7 +42920,7 @@ "slot": "legs", "requirements": null }, - "price": 712.5 + "price": 357 }, "2920": { "id": 2920, @@ -42986,7 +42958,7 @@ "slot": "head", "requirements": null }, - "price": 1801.5 + "price": 704 }, "2922": { "id": 2922, @@ -43023,7 +42995,7 @@ "slot": "hands", "requirements": null }, - "price": 1516.5 + "price": 1805 }, "2924": { "id": 2924, @@ -43060,7 +43032,7 @@ "slot": "feet", "requirements": null }, - "price": 870 + "price": 565 }, "2926": { "id": 2926, @@ -43098,7 +43070,7 @@ "slot": "body", "requirements": null }, - "price": 5301.5 + "price": 211 }, "2928": { "id": 2928, @@ -43136,7 +43108,7 @@ "slot": "legs", "requirements": null }, - "price": 5196.5 + "price": 188 }, "2930": { "id": 2930, @@ -43174,7 +43146,7 @@ "slot": "head", "requirements": null }, - "price": 737 + "price": 1976 }, "2932": { "id": 2932, @@ -43211,7 +43183,7 @@ "slot": "hands", "requirements": null }, - "price": 178 + "price": 279 }, "2934": { "id": 2934, @@ -43286,7 +43258,7 @@ "slot": "body", "requirements": null }, - "price": 209 + "price": 294 }, "2938": { "id": 2938, @@ -43324,7 +43296,7 @@ "slot": "legs", "requirements": null }, - "price": 5652.5 + "price": 8690 }, "2940": { "id": 2940, @@ -43399,7 +43371,7 @@ "slot": "hands", "requirements": null }, - "price": 1478 + "price": 1450 }, "2944": { "id": 2944, @@ -43626,7 +43598,7 @@ "examine": "A foul smelling brew.", "wiki_name": "Moonlight mead", "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_mead", - "price": 187.5 + "price": 351 }, "2957": { "id": 2957, @@ -43743,7 +43715,7 @@ } ] }, - "price": 533 + "price": 500 }, "2963": { "id": 2963, @@ -43902,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": 283.5 + "price": 409 }, "2972": { "id": 2972, @@ -43920,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": 778 + "price": 725 }, "2974": { "id": 2974, @@ -43938,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": 3449 + "price": 3850 }, "2976": { "id": 2976, @@ -43956,7 +43928,7 @@ "examine": "Used to make sickles.", "wiki_name": "Sickle mould", "wiki_url": "https://oldschool.runescape.wiki/w/Sickle_mould", - "price": 355 + "price": 117 }, "2978": { "id": 2978, @@ -44620,7 +44592,7 @@ "slot": "hands", "requirements": null }, - "price": 9044172 + "price": 4749501 }, "2998": { "id": 2998, @@ -44638,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, @@ -44656,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, @@ -44674,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": 2850.5 + "price": 4022 }, "3004": { "id": 3004, @@ -44692,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, @@ -44724,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": 581 + "price": 714 }, "3010": { "id": 3010, @@ -44741,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": 396 + "price": 409 }, "3012": { "id": 3012, @@ -44758,7 +44730,7 @@ "examine": "2 doses of energy potion.", "wiki_name": "Energy potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Energy_potion#2_dose", - "price": 242.5 + "price": 207 }, "3014": { "id": 3014, @@ -44775,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": 125 + "price": 92 }, "3016": { "id": 3016, @@ -44793,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, @@ -44811,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, @@ -44847,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, @@ -44865,7 +44837,7 @@ "examine": "4 doses of super restore potion.", "wiki_name": "Super restore (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_restore#4_dose", - "price": 9282.5 + "price": 10389 }, "3026": { "id": 3026, @@ -44883,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": 6775 + "price": 7678 }, "3028": { "id": 3028, @@ -44901,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, @@ -44919,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, @@ -44937,7 +44909,7 @@ "examine": "4 doses of Agility potion.", "wiki_name": "Agility potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Agility_potion#4_dose", - "price": 417.5 + "price": 475 }, "3034": { "id": 3034, @@ -44955,7 +44927,7 @@ "examine": "3 doses of Agility potion.", "wiki_name": "Agility potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Agility_potion#3_dose", - "price": 398 + "price": 300 }, "3036": { "id": 3036, @@ -44973,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": 100 + "price": 131 }, "3038": { "id": 3038, @@ -44991,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": 139.5 + "price": 74 }, "3040": { "id": 3040, @@ -45009,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": 174.5 + "price": 145 }, "3042": { "id": 3042, @@ -45027,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": 111.5 + "price": 68 }, "3044": { "id": 3044, @@ -45045,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": 69.5 + "price": 22 }, "3046": { "id": 3046, @@ -45081,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, @@ -45099,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, @@ -45508,7 +45480,7 @@ } ] }, - "price": 2187.5 + "price": 2369 }, "3094": { "id": 3094, @@ -45575,7 +45547,7 @@ } ] }, - "price": 37536 + "price": 20049 }, "3095": { "id": 3095, @@ -45650,7 +45622,7 @@ } ] }, - "price": 547 + "price": 37 }, "3096": { "id": 3096, @@ -45725,7 +45697,7 @@ } ] }, - "price": 106.5 + "price": 313 }, "3097": { "id": 3097, @@ -45800,7 +45772,7 @@ } ] }, - "price": 375 + "price": 50 }, "3098": { "id": 3098, @@ -45875,7 +45847,7 @@ } ] }, - "price": 5838 + "price": 6513 }, "3099": { "id": 3099, @@ -45950,7 +45922,7 @@ } ] }, - "price": 1033 + "price": 456 }, "3100": { "id": 3100, @@ -46025,7 +45997,7 @@ } ] }, - "price": 1538.5 + "price": 463 }, "3101": { "id": 3101, @@ -46100,7 +46072,7 @@ } ] }, - "price": 7563 + "price": 10650 }, "3102": { "id": 3102, @@ -46174,7 +46146,7 @@ "slot": "feet", "requirements": null }, - "price": 320 + "price": 736 }, "3107": { "id": 3107, @@ -46212,7 +46184,7 @@ "slot": "feet", "requirements": null }, - "price": 2865 + "price": 4732 }, "3109": { "id": 3109, @@ -46353,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": 3601.5 + "price": 23350 }, "3125": { "id": 3125, @@ -46371,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": 1554.5 + "price": 2625 }, "3127": { "id": 3127, @@ -46525,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": 28 + "price": 32 }, "3140": { "id": 3140, @@ -46565,7 +46537,7 @@ "defence": 60 } }, - "price": 150726 + "price": 200723 }, "3142": { "id": 3142, @@ -46583,7 +46555,7 @@ "examine": "A raw green octopus.", "wiki_name": "Raw karambwan", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_karambwan", - "price": 353.5 + "price": 399 }, "3144": { "id": 3144, @@ -46601,7 +46573,7 @@ "examine": "Cooked octopus. It looks very nutritious.", "wiki_name": "Cooked karambwan", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_karambwan", - "price": 432 + "price": 566 }, "3146": { "id": 3146, @@ -46747,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": 1444 + "price": 1185 }, "3159": { "id": 3159, @@ -46765,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": 1569.5 + "price": 1597 }, "3161": { "id": 3161, @@ -46796,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": 113 + "price": 14 }, "3164": { "id": 3164, @@ -47462,7 +47434,7 @@ "examine": "These are small monkey bones.", "wiki_name": "Monkey bones", "wiki_url": "https://oldschool.runescape.wiki/w/Monkey_bones", - "price": 437 + "price": 504 }, "3185": { "id": 3185, @@ -47522,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": 366 + "price": 197 }, "3190": { "id": 3190, @@ -47590,7 +47562,7 @@ } ] }, - "price": 27500 + "price": 4003 }, "3192": { "id": 3192, @@ -47658,7 +47630,7 @@ } ] }, - "price": 804.5 + "price": 105 }, "3194": { "id": 3194, @@ -47726,7 +47698,7 @@ } ] }, - "price": 201 + "price": 1434 }, "3196": { "id": 3196, @@ -47795,7 +47767,7 @@ } ] }, - "price": 9000 + "price": 2057 }, "3198": { "id": 3198, @@ -47864,7 +47836,7 @@ } ] }, - "price": 5638 + "price": 11740 }, "3200": { "id": 3200, @@ -47933,7 +47905,7 @@ } ] }, - "price": 45693 + "price": 10709 }, "3202": { "id": 3202, @@ -48002,7 +47974,7 @@ } ] }, - "price": 38511.5 + "price": 38511 }, "3204": { "id": 3204, @@ -48071,7 +48043,7 @@ } ] }, - "price": 150078.5 + "price": 150078 }, "3206": { "id": 3206, @@ -48166,7 +48138,7 @@ "examine": "Some limestone.", "wiki_name": "Limestone", "wiki_url": "https://oldschool.runescape.wiki/w/Limestone", - "price": 119 + "price": 143 }, "3213": { "id": 3213, @@ -48226,7 +48198,7 @@ "examine": "An empty barrel.", "wiki_name": "Barrel", "wiki_url": "https://oldschool.runescape.wiki/w/Barrel", - "price": 80 + "price": 1476 }, "3218": { "id": 3218, @@ -48361,7 +48333,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Cooked rabbit", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_rabbit", - "price": 345 + "price": 1000 }, "3230": { "id": 3230, @@ -48453,7 +48425,7 @@ "examine": "Bark from a hollow tree.", "wiki_name": "Bark", "wiki_url": "https://oldschool.runescape.wiki/w/Bark", - "price": 69.5 + "price": 80 }, "3241": { "id": 3241, @@ -48502,7 +48474,7 @@ }, "3251": { "id": 3251, - "name": "Knight of ardougne", + "name": "Knight", "incomplete": true, "cost": 1, "lowalch": 0, @@ -48716,7 +48688,7 @@ "examine": "That used to be a vampyre!", "wiki_name": "Vampyre dust", "wiki_url": "https://oldschool.runescape.wiki/w/Vampyre_dust", - "price": 993.5 + "price": 1431 }, "3327": { "id": 3327, @@ -48754,7 +48726,7 @@ "slot": "head", "requirements": null }, - "price": 30 + "price": 25 }, "3329": { "id": 3329, @@ -48830,7 +48802,7 @@ "slot": "head", "requirements": null }, - "price": 19.5 + "price": 33 }, "3333": { "id": 3333, @@ -48906,7 +48878,7 @@ "slot": "head", "requirements": null }, - "price": 186 + "price": 5 }, "3337": { "id": 3337, @@ -48982,7 +48954,7 @@ "slot": "head", "requirements": null }, - "price": 924.5 + "price": 301 }, "3341": { "id": 3341, @@ -49020,7 +48992,7 @@ "slot": "head", "requirements": null }, - "price": 859 + "price": 491 }, "3343": { "id": 3343, @@ -49058,7 +49030,7 @@ "slot": "head", "requirements": null }, - "price": 3728.5 + "price": 6062 }, "3345": { "id": 3345, @@ -49076,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": 10275 + "price": 582 }, "3347": { "id": 3347, @@ -49094,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": 142.5 + "price": 347 }, "3349": { "id": 3349, @@ -49112,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": 132.5 + "price": 84 }, "3351": { "id": 3351, @@ -49130,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": 827 + "price": 10000 }, "3353": { "id": 3353, @@ -49148,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": 5500 + "price": 4582 }, "3355": { "id": 3355, @@ -49166,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": 6500.5 + "price": 3750 }, "3357": { "id": 3357, @@ -49184,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": 816 + "price": 691 }, "3359": { "id": 3359, @@ -49202,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": 313 + "price": 5144 }, "3361": { "id": 3361, @@ -49220,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": 2930 + "price": 3765 }, "3363": { "id": 3363, @@ -49238,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": 1428 + "price": 663 }, "3365": { "id": 3365, @@ -49256,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": 2052 + "price": 3044 }, "3367": { "id": 3367, @@ -49274,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": 1526 + "price": 3388 }, "3369": { "id": 3369, @@ -49292,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": 1914.5 + "price": 1132 }, "3371": { "id": 3371, @@ -49310,7 +49282,7 @@ "examine": "A succulently slimy slice of sumptuous snail.", "wiki_name": "Lean snail meat", "wiki_url": "https://oldschool.runescape.wiki/w/Lean_snail_meat", - "price": 2189 + "price": 4000 }, "3373": { "id": 3373, @@ -49328,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": 1952 + "price": 2536 }, "3375": { "id": 3375, @@ -49378,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": 613 + "price": 1039 }, "3381": { "id": 3381, @@ -49396,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": 136.5 + "price": 69 }, "3383": { "id": 3383, @@ -49453,7 +49425,7 @@ "defence": 40 } }, - "price": 8050 + "price": 9396 }, "3387": { "id": 3387, @@ -49494,7 +49466,7 @@ "defence": 40 } }, - "price": 27918.5 + "price": 47500 }, "3389": { "id": 3389, @@ -49535,7 +49507,7 @@ "defence": 40 } }, - "price": 23460 + "price": 32383 }, "3391": { "id": 3391, @@ -49576,7 +49548,7 @@ "defence": 40 } }, - "price": 2206 + "price": 2278 }, "3393": { "id": 3393, @@ -49617,7 +49589,7 @@ "defence": 40 } }, - "price": 7650 + "price": 13796 }, "3395": { "id": 3395, @@ -49649,7 +49621,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Loar remains", "wiki_url": "https://oldschool.runescape.wiki/w/Loar_remains", - "price": 76 + "price": 25 }, "3398": { "id": 3398, @@ -49667,7 +49639,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Phrin remains", "wiki_url": "https://oldschool.runescape.wiki/w/Phrin_remains", - "price": 1684.5 + "price": 6104 }, "3400": { "id": 3400, @@ -49685,7 +49657,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Riyl remains", "wiki_url": "https://oldschool.runescape.wiki/w/Riyl_remains", - "price": 1720.5 + "price": 2070 }, "3402": { "id": 3402, @@ -49703,7 +49675,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Asyn remains", "wiki_url": "https://oldschool.runescape.wiki/w/Asyn_remains", - "price": 1874 + "price": 4986 }, "3404": { "id": 3404, @@ -49721,7 +49693,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Fiyr remains", "wiki_url": "https://oldschool.runescape.wiki/w/Fiyr_remains", - "price": 4502 + "price": 5571 }, "3406": { "id": 3406, @@ -49739,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": 381 + "price": 274 }, "3408": { "id": 3408, @@ -49757,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": 15.5 + "price": 7 }, "3410": { "id": 3410, @@ -49775,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": 16 + "price": 10 }, "3412": { "id": 3412, @@ -49811,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": 7 + "price": 10 }, "3416": { "id": 3416, @@ -49885,7 +49857,7 @@ "examine": "A well carved limestone brick.", "wiki_name": "Limestone brick", "wiki_url": "https://oldschool.runescape.wiki/w/Limestone_brick", - "price": 142.5 + "price": 170 }, "3422": { "id": 3422, @@ -49903,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": 52.5 + "price": 201 }, "3424": { "id": 3424, @@ -49921,7 +49893,7 @@ "examine": "3 doses of olive oil.", "wiki_name": "Olive oil (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Olive_oil#3_dose", - "price": 38 + "price": 45 }, "3426": { "id": 3426, @@ -49939,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": 2900 + "price": 35 }, "3428": { "id": 3428, @@ -49957,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": 11 + "price": 22 }, "3430": { "id": 3430, @@ -49975,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": 3500 + "price": 2352 }, "3432": { "id": 3432, @@ -49993,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": 3370.5 + "price": 1682 }, "3434": { "id": 3434, @@ -50011,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": 1409 + "price": 801 }, "3436": { "id": 3436, @@ -50029,7 +50001,7 @@ "examine": "1 dose of sacred Oil.", "wiki_name": "Sacred oil (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Sacred_oil#1_dose", - "price": 706 + "price": 621 }, "3438": { "id": 3438, @@ -50047,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": 1267 + "price": 1732 }, "3440": { "id": 3440, @@ -50065,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": 2500 + "price": 2100 }, "3442": { "id": 3442, @@ -50083,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": 3000 + "price": 5727 }, "3444": { "id": 3444, @@ -50101,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": 2450.5 + "price": 1460 }, "3446": { "id": 3446, @@ -50119,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": 3650.5 + "price": 1056 }, "3448": { "id": 3448, @@ -50137,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": 4655 + "price": 3083 }, "3450": { "id": 3450, @@ -50435,7 +50407,7 @@ "examine": "Amazingly untouched by time.", "wiki_name": "Fine cloth", "wiki_url": "https://oldschool.runescape.wiki/w/Fine_cloth", - "price": 8001 + "price": 11500 }, "3472": { "id": 3472, @@ -50474,7 +50446,7 @@ "defence": 10 } }, - "price": 3250.5 + "price": 3250 }, "3473": { "id": 3473, @@ -50513,7 +50485,7 @@ "defence": 10 } }, - "price": 3378.5 + "price": 6914 }, "3474": { "id": 3474, @@ -50552,7 +50524,7 @@ "defence": 30 } }, - "price": 3318 + "price": 4757 }, "3475": { "id": 3475, @@ -50591,7 +50563,7 @@ "defence": 30 } }, - "price": 5155 + "price": 5892 }, "3476": { "id": 3476, @@ -50747,7 +50719,7 @@ "defence": 40 } }, - "price": 37823.5 + "price": 37303 }, "3480": { "id": 3480, @@ -50825,7 +50797,7 @@ "defence": 40 } }, - "price": 6497750.5 + "price": 6991650 }, "3483": { "id": 3483, @@ -50864,7 +50836,7 @@ "defence": 40 } }, - "price": 6321288 + "price": 7365628 }, "3485": { "id": 3485, @@ -50903,7 +50875,7 @@ "defence": 40 } }, - "price": 1060050 + "price": 1870001 }, "3486": { "id": 3486, @@ -50942,7 +50914,7 @@ "defence": 40 } }, - "price": 5988502.5 + "price": 6300001 }, "3488": { "id": 3488, @@ -50981,21 +50953,7 @@ "defence": 40 } }, - "price": 4425373.5 - }, - "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 + "price": 6083984 }, "3565": { "id": 3565, @@ -51054,7 +51012,7 @@ "examine": "An exquisitely shaped tool specially designed for fixing temples.", "wiki_name": "Flamtaer hammer", "wiki_url": "https://oldschool.runescape.wiki/w/Flamtaer_hammer", - "price": 6447 + "price": 5338 }, "3680": { "id": 3680, @@ -52091,7 +52049,7 @@ "defence": 45 } }, - "price": 43797 + "price": 49095 }, "3751": { "id": 3751, @@ -52131,7 +52089,7 @@ "defence": 45 } }, - "price": 80699.5 + "price": 80699 }, "3753": { "id": 3753, @@ -52171,7 +52129,7 @@ "defence": 45 } }, - "price": 46038 + "price": 56987 }, "3755": { "id": 3755, @@ -52211,7 +52169,7 @@ "defence": 45 } }, - "price": 37440 + "price": 43093 }, "3757": { "id": 3757, @@ -52356,7 +52314,7 @@ "slot": "cape", "requirements": null }, - "price": 450.5 + "price": 769 }, "3761": { "id": 3761, @@ -52432,7 +52390,7 @@ "slot": "cape", "requirements": null }, - "price": 417 + "price": 1638 }, "3765": { "id": 3765, @@ -52470,7 +52428,7 @@ "slot": "cape", "requirements": null }, - "price": 1096 + "price": 879 }, "3767": { "id": 3767, @@ -52546,7 +52504,7 @@ "slot": "body", "requirements": null }, - "price": 563.5 + "price": 589 }, "3771": { "id": 3771, @@ -52584,7 +52542,7 @@ "slot": "body", "requirements": null }, - "price": 4.5 + "price": 4 }, "3773": { "id": 3773, @@ -52660,7 +52618,7 @@ "slot": "body", "requirements": null }, - "price": 267.5 + "price": 389 }, "3777": { "id": 3777, @@ -52698,7 +52656,7 @@ "slot": "cape", "requirements": null }, - "price": 701 + "price": 501 }, "3779": { "id": 3779, @@ -52736,7 +52694,7 @@ "slot": "cape", "requirements": null }, - "price": 998.5 + "price": 670 }, "3781": { "id": 3781, @@ -52774,7 +52732,7 @@ "slot": "cape", "requirements": null }, - "price": 1269 + "price": 1581 }, "3783": { "id": 3783, @@ -52812,7 +52770,7 @@ "slot": "cape", "requirements": null }, - "price": 1845 + "price": 298 }, "3785": { "id": 3785, @@ -52850,7 +52808,7 @@ "slot": "cape", "requirements": null }, - "price": 28.5 + "price": 24 }, "3787": { "id": 3787, @@ -52888,7 +52846,7 @@ "slot": "cape", "requirements": null }, - "price": 449.5 + "price": 960 }, "3789": { "id": 3789, @@ -52926,7 +52884,7 @@ "slot": "cape", "requirements": null }, - "price": 935.5 + "price": 1981 }, "3791": { "id": 3791, @@ -52964,7 +52922,7 @@ "slot": "feet", "requirements": null }, - "price": 2459.5 + "price": 412 }, "3793": { "id": 3793, @@ -53002,7 +52960,7 @@ "slot": "body", "requirements": null }, - "price": 877.5 + "price": 1849 }, "3795": { "id": 3795, @@ -53040,7 +52998,7 @@ "slot": "legs", "requirements": null }, - "price": 370.5 + "price": 322 }, "3797": { "id": 3797, @@ -53078,7 +53036,7 @@ "slot": "head", "requirements": null }, - "price": 3277 + "price": 334 }, "3799": { "id": 3799, @@ -53116,7 +53074,7 @@ "slot": "hands", "requirements": null }, - "price": 304 + "price": 1118 }, "3801": { "id": 3801, @@ -53134,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": 856.5 + "price": 933 }, "3803": { "id": 3803, @@ -53152,7 +53110,7 @@ "examine": "Frothy and alcoholic.", "wiki_name": "Beer tankard", "wiki_url": "https://oldschool.runescape.wiki/w/Beer_tankard", - "price": 86.5 + "price": 338 }, "3805": { "id": 3805, @@ -53185,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": 1519 + "price": 2530 }, "3828": { "id": 3828, @@ -53202,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": 1616.5 + "price": 3139 }, "3829": { "id": 3829, @@ -53219,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": 2361 + "price": 2332 }, "3830": { "id": 3830, @@ -53236,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": 3106 + "price": 4549 }, "3831": { "id": 3831, @@ -53253,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": 1390 + "price": 8502 }, "3832": { "id": 3832, @@ -53270,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": 4058 + "price": 6712 }, "3833": { "id": 3833, @@ -53287,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": 1395 + "price": 5904 }, "3834": { "id": 3834, @@ -53304,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": 1504 + "price": 6613 }, "3835": { "id": 3835, @@ -53321,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": 200 + "price": 2029 }, "3836": { "id": 3836, @@ -53338,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": 300 + "price": 1907 }, "3837": { "id": 3837, @@ -53355,7 +53313,7 @@ "examine": "This seems to have been torn from a book...", "wiki_name": "Guthix page 3", "wiki_url": "https://oldschool.runescape.wiki/w/Guthix_page_3", - "price": 532.5 + "price": 2256 }, "3838": { "id": 3838, @@ -53372,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": 1197 + "price": 3395 }, "3839": { "id": 3839, @@ -53684,7 +53642,7 @@ "slot": "neck", "requirements": null }, - "price": 811.5 + "price": 726 }, "3855": { "id": 3855, @@ -54272,7 +54230,7 @@ "examine": "These are monkey nuts. Yummy.", "wiki_name": "Monkey nuts", "wiki_url": "https://oldschool.runescape.wiki/w/Monkey_nuts", - "price": 164.5 + "price": 164 }, "4014": { "id": 4014, @@ -54290,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": 612 + "price": 28 }, "4016": { "id": 4016, @@ -54308,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": 1958 + "price": 625 }, "4018": { "id": 4018, @@ -55381,7 +55339,7 @@ "defence": 20 } }, - "price": 15309 + "price": 13567 }, "4091": { "id": 4091, @@ -55504,7 +55462,7 @@ "defence": 20 } }, - "price": 7075 + "price": 5404 }, "4097": { "id": 4097, @@ -55545,7 +55503,7 @@ "defence": 20 } }, - "price": 5546.5 + "price": 9022 }, "4099": { "id": 4099, @@ -55586,7 +55544,7 @@ "defence": 20 } }, - "price": 78628 + "price": 73888 }, "4101": { "id": 4101, @@ -55627,7 +55585,7 @@ "defence": 20 } }, - "price": 71734.5 + "price": 71734 }, "4103": { "id": 4103, @@ -55709,7 +55667,7 @@ "defence": 20 } }, - "price": 6583 + "price": 17500 }, "4107": { "id": 4107, @@ -55750,7 +55708,7 @@ "defence": 20 } }, - "price": 88389.5 + "price": 104564 }, "4109": { "id": 4109, @@ -55791,7 +55749,7 @@ "defence": 20 } }, - "price": 8193.5 + "price": 8925 }, "4111": { "id": 4111, @@ -55832,7 +55790,7 @@ "defence": 20 } }, - "price": 71134.5 + "price": 71134 }, "4113": { "id": 4113, @@ -55873,7 +55831,7 @@ "defence": 20 } }, - "price": 48749.5 + "price": 48749 }, "4115": { "id": 4115, @@ -55914,7 +55872,7 @@ "defence": 20 } }, - "price": 5542 + "price": 8151 }, "4117": { "id": 4117, @@ -55955,7 +55913,7 @@ "defence": 20 } }, - "price": 13543 + "price": 17040 }, "4119": { "id": 4119, @@ -55995,7 +55953,7 @@ "defence": 1 } }, - "price": 462.5 + "price": 2728 }, "4121": { "id": 4121, @@ -56035,7 +55993,7 @@ "defence": 1 } }, - "price": 4631 + "price": 11285 }, "4123": { "id": 4123, @@ -56075,7 +56033,7 @@ "defence": 5 } }, - "price": 1566 + "price": 81 }, "4125": { "id": 4125, @@ -56115,7 +56073,7 @@ "defence": 10 } }, - "price": 237 + "price": 379 }, "4127": { "id": 4127, @@ -56155,7 +56113,7 @@ "defence": 20 } }, - "price": 1885.5 + "price": 1030 }, "4129": { "id": 4129, @@ -56195,7 +56153,7 @@ "defence": 30 } }, - "price": 1056.5 + "price": 2322 }, "4131": { "id": 4131, @@ -56235,7 +56193,7 @@ "defence": 40 } }, - "price": 7695.5 + "price": 7695 }, "4133": { "id": 4133, @@ -56456,7 +56414,7 @@ } ] }, - "price": 1328355.5 + "price": 1688658 }, "4153": { "id": 4153, @@ -56524,7 +56482,7 @@ } ] }, - "price": 200369 + "price": 181539 }, "4155": { "id": 4155, @@ -56579,7 +56537,7 @@ "defence": 20 } }, - "price": 5062.5 + "price": 6616 }, "4158": { "id": 4158, @@ -56720,7 +56678,7 @@ "examine": "A bag of salt.", "wiki_name": "Bag of salt", "wiki_url": "https://oldschool.runescape.wiki/w/Bag_of_salt", - "price": 45.5 + "price": 40 }, "4162": { "id": 4162, @@ -56738,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": 1365.5 + "price": 238 }, "4164": { "id": 4164, @@ -56778,7 +56736,7 @@ "slayer": 10 } }, - "price": 617 + "price": 357 }, "4166": { "id": 4166, @@ -56818,7 +56776,7 @@ "slayer": 15 } }, - "price": 564 + "price": 99 }, "4168": { "id": 4168, @@ -56858,7 +56816,7 @@ "slayer": 60 } }, - "price": 654.5 + "price": 663 }, "4170": { "id": 4170, @@ -56941,7 +56899,7 @@ } ] }, - "price": 23296.5 + "price": 20117 }, "4178": { "id": 4178, @@ -57372,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": 199998.5 + "price": 206945 }, "4209": { "id": 4209, @@ -59410,7 +59368,7 @@ "slot": "body", "requirements": null }, - "price": 115 + "price": 1399 }, "4300": { "id": 4300, @@ -59448,7 +59406,7 @@ "slot": "legs", "requirements": null }, - "price": 491.5 + "price": 5390 }, "4302": { "id": 4302, @@ -59486,7 +59444,7 @@ "slot": "head", "requirements": null }, - "price": 308 + "price": 1050 }, "4304": { "id": 4304, @@ -59524,7 +59482,7 @@ "slot": "cape", "requirements": null }, - "price": 180 + "price": 2525 }, "4306": { "id": 4306, @@ -59562,7 +59520,7 @@ "slot": "neck", "requirements": null }, - "price": 1702.5 + "price": 3000 }, "4308": { "id": 4308, @@ -59600,7 +59558,7 @@ "slot": "hands", "requirements": null }, - "price": 547 + "price": 3281 }, "4310": { "id": 4310, @@ -59638,7 +59596,7 @@ "slot": "feet", "requirements": null }, - "price": 3183.5 + "price": 9007 }, "4313": { "id": 4313, @@ -59691,7 +59649,7 @@ "slot": "cape", "requirements": null }, - "price": 426 + "price": 858 }, "4317": { "id": 4317, @@ -59728,7 +59686,7 @@ "slot": "cape", "requirements": null }, - "price": 1500 + "price": 612 }, "4319": { "id": 4319, @@ -59765,7 +59723,7 @@ "slot": "cape", "requirements": null }, - "price": 182.5 + "price": 209 }, "4321": { "id": 4321, @@ -59802,7 +59760,7 @@ "slot": "cape", "requirements": null }, - "price": 1049.5 + "price": 449 }, "4323": { "id": 4323, @@ -59839,7 +59797,7 @@ "slot": "cape", "requirements": null }, - "price": 10256 + "price": 584 }, "4325": { "id": 4325, @@ -59876,7 +59834,7 @@ "slot": "cape", "requirements": null }, - "price": 111.5 + "price": 143 }, "4327": { "id": 4327, @@ -59913,7 +59871,7 @@ "slot": "cape", "requirements": null }, - "price": 900 + "price": 667 }, "4329": { "id": 4329, @@ -59950,7 +59908,7 @@ "slot": "cape", "requirements": null }, - "price": 68 + "price": 262 }, "4331": { "id": 4331, @@ -59987,7 +59945,7 @@ "slot": "cape", "requirements": null }, - "price": 64 + "price": 55 }, "4333": { "id": 4333, @@ -60024,7 +59982,7 @@ "slot": "cape", "requirements": null }, - "price": 450.5 + "price": 166 }, "4335": { "id": 4335, @@ -60061,7 +60019,7 @@ "slot": "cape", "requirements": null }, - "price": 478.5 + "price": 362 }, "4337": { "id": 4337, @@ -60098,7 +60056,7 @@ "slot": "cape", "requirements": null }, - "price": 607 + "price": 500 }, "4339": { "id": 4339, @@ -60135,7 +60093,7 @@ "slot": "cape", "requirements": null }, - "price": 349 + "price": 303 }, "4341": { "id": 4341, @@ -60172,7 +60130,7 @@ "slot": "cape", "requirements": null }, - "price": 538.5 + "price": 5933 }, "4343": { "id": 4343, @@ -60209,7 +60167,7 @@ "slot": "cape", "requirements": null }, - "price": 4773 + "price": 1825 }, "4345": { "id": 4345, @@ -60246,7 +60204,7 @@ "slot": "cape", "requirements": null }, - "price": 131 + "price": 172 }, "4347": { "id": 4347, @@ -60283,7 +60241,7 @@ "slot": "cape", "requirements": null }, - "price": 154.5 + "price": 396 }, "4349": { "id": 4349, @@ -60320,7 +60278,7 @@ "slot": "cape", "requirements": null }, - "price": 654.5 + "price": 584 }, "4351": { "id": 4351, @@ -60357,7 +60315,7 @@ "slot": "cape", "requirements": null }, - "price": 5062 + "price": 272 }, "4353": { "id": 4353, @@ -60394,7 +60352,7 @@ "slot": "cape", "requirements": null }, - "price": 658 + "price": 739 }, "4355": { "id": 4355, @@ -60431,7 +60389,7 @@ "slot": "cape", "requirements": null }, - "price": 267 + "price": 361 }, "4357": { "id": 4357, @@ -60468,7 +60426,7 @@ "slot": "cape", "requirements": null }, - "price": 2886 + "price": 233 }, "4359": { "id": 4359, @@ -60505,7 +60463,7 @@ "slot": "cape", "requirements": null }, - "price": 256 + "price": 631 }, "4361": { "id": 4361, @@ -60542,7 +60500,7 @@ "slot": "cape", "requirements": null }, - "price": 5000 + "price": 1761 }, "4363": { "id": 4363, @@ -60579,7 +60537,7 @@ "slot": "cape", "requirements": null }, - "price": 3150 + "price": 20000 }, "4365": { "id": 4365, @@ -60616,7 +60574,7 @@ "slot": "cape", "requirements": null }, - "price": 249 + "price": 18 }, "4367": { "id": 4367, @@ -60653,7 +60611,7 @@ "slot": "cape", "requirements": null }, - "price": 183.5 + "price": 1142 }, "4369": { "id": 4369, @@ -60690,7 +60648,7 @@ "slot": "cape", "requirements": null }, - "price": 1645 + "price": 2170 }, "4371": { "id": 4371, @@ -60727,7 +60685,7 @@ "slot": "cape", "requirements": null }, - "price": 39 + "price": 200 }, "4373": { "id": 4373, @@ -60764,7 +60722,7 @@ "slot": "cape", "requirements": null }, - "price": 335 + "price": 202 }, "4375": { "id": 4375, @@ -60801,7 +60759,7 @@ "slot": "cape", "requirements": null }, - "price": 658 + "price": 1 }, "4377": { "id": 4377, @@ -60838,7 +60796,7 @@ "slot": "cape", "requirements": null }, - "price": 1519.5 + "price": 418 }, "4379": { "id": 4379, @@ -60875,7 +60833,7 @@ "slot": "cape", "requirements": null }, - "price": 765 + "price": 706 }, "4381": { "id": 4381, @@ -60912,7 +60870,7 @@ "slot": "cape", "requirements": null }, - "price": 1872 + "price": 568 }, "4383": { "id": 4383, @@ -60949,7 +60907,7 @@ "slot": "cape", "requirements": null }, - "price": 1863.5 + "price": 512 }, "4385": { "id": 4385, @@ -60986,7 +60944,7 @@ "slot": "cape", "requirements": null }, - "price": 17 + "price": 30 }, "4387": { "id": 4387, @@ -61023,7 +60981,7 @@ "slot": "cape", "requirements": null }, - "price": 13 + "price": 3 }, "4389": { "id": 4389, @@ -61060,7 +61018,7 @@ "slot": "cape", "requirements": null }, - "price": 2633.5 + "price": 202 }, "4391": { "id": 4391, @@ -61097,7 +61055,7 @@ "slot": "cape", "requirements": null }, - "price": 88 + "price": 800 }, "4393": { "id": 4393, @@ -61134,7 +61092,7 @@ "slot": "cape", "requirements": null }, - "price": 204.5 + "price": 1640 }, "4395": { "id": 4395, @@ -61171,7 +61129,7 @@ "slot": "cape", "requirements": null }, - "price": 47.5 + "price": 251 }, "4397": { "id": 4397, @@ -61208,7 +61166,7 @@ "slot": "cape", "requirements": null }, - "price": 209.5 + "price": 116 }, "4399": { "id": 4399, @@ -61245,7 +61203,7 @@ "slot": "cape", "requirements": null }, - "price": 234.5 + "price": 256 }, "4401": { "id": 4401, @@ -61282,7 +61240,7 @@ "slot": "cape", "requirements": null }, - "price": 1175 + "price": 5423 }, "4403": { "id": 4403, @@ -61319,7 +61277,7 @@ "slot": "cape", "requirements": null }, - "price": 916.5 + "price": 668 }, "4405": { "id": 4405, @@ -61356,7 +61314,7 @@ "slot": "cape", "requirements": null }, - "price": 22 + "price": 99 }, "4407": { "id": 4407, @@ -61393,7 +61351,7 @@ "slot": "cape", "requirements": null }, - "price": 139.5 + "price": 2608 }, "4409": { "id": 4409, @@ -61430,7 +61388,7 @@ "slot": "cape", "requirements": null }, - "price": 294.5 + "price": 983 }, "4411": { "id": 4411, @@ -61467,7 +61425,7 @@ "slot": "cape", "requirements": null }, - "price": 259.5 + "price": 89 }, "4413": { "id": 4413, @@ -61504,7 +61462,7 @@ "slot": "cape", "requirements": null }, - "price": 323.5 + "price": 256 }, "4415": { "id": 4415, @@ -61550,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": 1764.5 + "price": 3327 }, "4419": { "id": 4419, @@ -61568,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": 1295 + "price": 1698 }, "4421": { "id": 4421, @@ -61586,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": 10378.5 + "price": 1000 }, "4423": { "id": 4423, @@ -61604,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": 356 + "price": 559 }, "4425": { "id": 4425, @@ -61776,7 +61734,7 @@ "examine": "This is pretty well sealed.", "wiki_name": "Airtight pot", "wiki_url": "https://oldschool.runescape.wiki/w/Airtight_pot", - "price": 1668 + "price": 2727 }, "4438": { "id": 4438, @@ -61794,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": 68 + "price": 131 }, "4440": { "id": 4440, @@ -61812,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": 204.5 + "price": 447 }, "4442": { "id": 4442, @@ -61912,7 +61870,7 @@ "examine": "It's a bowl of hot water.", "wiki_name": "Bowl of hot water", "wiki_url": "https://oldschool.runescape.wiki/w/Bowl_of_hot_water", - "price": 114.5 + "price": 218 }, "4458": { "id": 4458, @@ -61930,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, @@ -61948,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": 195 + "price": 463 }, "4462": { "id": 4462, @@ -62899,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": 2761.5 + "price": 3702 }, "4519": { "id": 4519, @@ -62944,7 +62902,7 @@ "examine": "Not the genie sort.", "wiki_name": "Oil lamp (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Oil_lamp#Unlit", - "price": 3861 + "price": 1273 }, "4524": { "id": 4524, @@ -62976,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": 14 + "price": 25 }, "4527": { "id": 4527, @@ -62994,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": 6 + "price": 5 }, "4529": { "id": 4529, @@ -63011,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": 915 + "price": 281 }, "4531": { "id": 4531, @@ -63042,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": 50921 + "price": 23443 }, "4534": { "id": 4534, @@ -63074,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": 45 + "price": 114 }, "4537": { "id": 4537, @@ -63092,7 +63050,7 @@ "examine": "An unlit oil lantern.", "wiki_name": "Oil lantern (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Oil_lantern#Unlit", - "price": 370.5 + "price": 740 }, "4539": { "id": 4539, @@ -63124,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": 80.5 + "price": 1 }, "4542": { "id": 4542, @@ -63142,7 +63100,7 @@ "examine": "A roughly circular disc of glass.", "wiki_name": "Lantern lens", "wiki_url": "https://oldschool.runescape.wiki/w/Lantern_lens", - "price": 16 + "price": 17 }, "4544": { "id": 4544, @@ -63160,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": 228.5 + "price": 185 }, "4546": { "id": 4546, @@ -63178,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": 200 + "price": 605 }, "4548": { "id": 4548, @@ -63196,7 +63154,7 @@ "examine": "A sturdy steel lantern.", "wiki_name": "Bullseye lantern (Unlit)", "wiki_url": "https://oldschool.runescape.wiki/w/Bullseye_lantern#Unlit", - "price": 937 + "price": 1225 }, "4550": { "id": 4550, @@ -63250,7 +63208,7 @@ "defence": 5 } }, - "price": 1513 + "price": 1279 }, "4558": { "id": 4558, @@ -63699,7 +63657,7 @@ } ] }, - "price": 1031.5 + "price": 1003 }, "4582": { "id": 4582, @@ -63774,7 +63732,7 @@ } ] }, - "price": 250.5 + "price": 4039 }, "4584": { "id": 4584, @@ -63960,7 +63918,7 @@ } ] }, - "price": 59802.5 + "price": 59802 }, "4589": { "id": 4589, @@ -64004,7 +63962,7 @@ "examine": "Wear it on your head.", "wiki_name": "Kharidian headpiece", "wiki_url": "https://oldschool.runescape.wiki/w/Kharidian_headpiece", - "price": 947 + "price": 214 }, "4593": { "id": 4593, @@ -64022,7 +63980,7 @@ "examine": "Makes me itch.", "wiki_name": "Fake beard", "wiki_url": "https://oldschool.runescape.wiki/w/Fake_beard", - "price": 443 + "price": 309 }, "4595": { "id": 4595, @@ -64194,7 +64152,7 @@ } ] }, - "price": 143 + "price": 131 }, "4601": { "id": 4601, @@ -64308,7 +64266,7 @@ "examine": "A meaty and very hot kebab.", "wiki_name": "Super kebab", "wiki_url": "https://oldschool.runescape.wiki/w/Super_kebab", - "price": 1459.5 + "price": 200 }, "4610": { "id": 4610, @@ -64546,7 +64504,7 @@ "examine": "A cheeky little lager.", "wiki_name": "Bandit's brew", "wiki_url": "https://oldschool.runescape.wiki/w/Bandit's_brew", - "price": 1986.5 + "price": 1660 }, "4653": { "id": 4653, @@ -64794,7 +64752,7 @@ "examine": "Finely ground garlic powder.", "wiki_name": "Garlic powder", "wiki_url": "https://oldschool.runescape.wiki/w/Garlic_powder", - "price": 49 + "price": 400 }, "4670": { "id": 4670, @@ -64947,7 +64905,7 @@ } ] }, - "price": 60653 + "price": 68081 }, "4677": { "id": 4677, @@ -65079,7 +65037,7 @@ "examine": "One sheet of mummy wrap.", "wiki_name": "Linen", "wiki_url": "https://oldschool.runescape.wiki/w/Linen", - "price": 419.5 + "price": 744 }, "4686": { "id": 4686, @@ -65111,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": 690 + "price": 481 }, "4689": { "id": 4689, @@ -65172,7 +65130,7 @@ "examine": "A combined Water and Fire Rune.", "wiki_name": "Steam rune", "wiki_url": "https://oldschool.runescape.wiki/w/Steam_rune", - "price": 50.5 + "price": 51 }, "4695": { "id": 4695, @@ -65189,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, @@ -65206,7 +65164,7 @@ "examine": "A combined Air and Earth Rune.", "wiki_name": "Dust rune", "wiki_url": "https://oldschool.runescape.wiki/w/Dust_rune", - "price": 10.5 + "price": 16 }, "4697": { "id": 4697, @@ -65240,7 +65198,7 @@ "examine": "A combined Earth and Water Rune.", "wiki_name": "Mud rune", "wiki_url": "https://oldschool.runescape.wiki/w/Mud_rune", - "price": 78.5 + "price": 106 }, "4699": { "id": 4699, @@ -65257,7 +65215,7 @@ "examine": "A combined Earth and Fire Rune.", "wiki_name": "Lava rune", "wiki_url": "https://oldschool.runescape.wiki/w/Lava_rune", - "price": 12 + "price": 16 }, "4700": { "id": 4700, @@ -65368,7 +65326,7 @@ "defence": 70 } }, - "price": 152365.5 + "price": 211435 }, "4710": { "id": 4710, @@ -65451,7 +65409,7 @@ } ] }, - "price": 170035.5 + "price": 182752 }, "4712": { "id": 4712, @@ -65492,7 +65450,7 @@ "defence": 70 } }, - "price": 3371347 + "price": 3075549 }, "4714": { "id": 4714, @@ -65533,7 +65491,7 @@ "defence": 70 } }, - "price": 2455000 + "price": 1953002 }, "4716": { "id": 4716, @@ -65573,7 +65531,7 @@ "defence": 70 } }, - "price": 568894 + "price": 603760 }, "4718": { "id": 4718, @@ -65649,7 +65607,7 @@ } ] }, - "price": 882068.5 + "price": 1351115 }, "4720": { "id": 4720, @@ -65689,7 +65647,7 @@ "defence": 70 } }, - "price": 869893.5 + "price": 1001293 }, "4722": { "id": 4722, @@ -65729,7 +65687,7 @@ "defence": 70 } }, - "price": 799654 + "price": 2225200 }, "4724": { "id": 4724, @@ -65769,7 +65727,7 @@ "defence": 70 } }, - "price": 129309 + "price": 149420 }, "4726": { "id": 4726, @@ -65844,7 +65802,7 @@ } ] }, - "price": 193399.5 + "price": 135450 }, "4728": { "id": 4728, @@ -65884,7 +65842,7 @@ "defence": 70 } }, - "price": 277943.5 + "price": 251949 }, "4730": { "id": 4730, @@ -65924,7 +65882,7 @@ "defence": 70 } }, - "price": 262428 + "price": 267500 }, "4732": { "id": 4732, @@ -65965,7 +65923,7 @@ "defence": 70 } }, - "price": 65535.5 + "price": 53313 }, "4734": { "id": 4734, @@ -66033,7 +65991,7 @@ } ] }, - "price": 118611.5 + "price": 104767 }, "4736": { "id": 4736, @@ -66074,7 +66032,7 @@ "defence": 70 } }, - "price": 1441891 + "price": 1231597 }, "4738": { "id": 4738, @@ -66115,7 +66073,7 @@ "defence": 70 } }, - "price": 583308.5 + "price": 512337 }, "4740": { "id": 4740, @@ -66152,7 +66110,7 @@ "slot": "ammo", "requirements": null }, - "price": 49 + "price": 46 }, "4745": { "id": 4745, @@ -66192,7 +66150,7 @@ "defence": 70 } }, - "price": 111202 + "price": 128901 }, "4747": { "id": 4747, @@ -66261,7 +66219,7 @@ } ] }, - "price": 114854.5 + "price": 95055 }, "4749": { "id": 4749, @@ -66301,7 +66259,7 @@ "defence": 70 } }, - "price": 233975 + "price": 171553 }, "4751": { "id": 4751, @@ -66341,7 +66299,7 @@ "defence": 70 } }, - "price": 237541.5 + "price": 243390 }, "4753": { "id": 4753, @@ -66456,7 +66414,7 @@ } ] }, - "price": 100938.5 + "price": 109388 }, "4757": { "id": 4757, @@ -66496,7 +66454,7 @@ "defence": 70 } }, - "price": 179176.5 + "price": 173061 }, "4759": { "id": 4759, @@ -66536,7 +66494,7 @@ "defence": 70 } }, - "price": 238949 + "price": 233267 }, "4773": { "id": 4773, @@ -66575,7 +66533,7 @@ "ranged": 1 } }, - "price": 151.5 + "price": 139 }, "4778": { "id": 4778, @@ -66614,7 +66572,7 @@ "ranged": 1 } }, - "price": 107 + "price": 123 }, "4783": { "id": 4783, @@ -66653,7 +66611,7 @@ "ranged": 5 } }, - "price": 60.5 + "price": 92 }, "4788": { "id": 4788, @@ -66692,7 +66650,7 @@ "ranged": 10 } }, - "price": 447 + "price": 607 }, "4793": { "id": 4793, @@ -66731,7 +66689,7 @@ "ranged": 20 } }, - "price": 161.5 + "price": 297 }, "4798": { "id": 4798, @@ -66770,7 +66728,7 @@ "ranged": 30 } }, - "price": 247.5 + "price": 258 }, "4803": { "id": 4803, @@ -66809,7 +66767,7 @@ "ranged": 40 } }, - "price": 1152.5 + "price": 1025 }, "4808": { "id": 4808, @@ -66879,7 +66837,7 @@ "examine": "A pile of Zombie Ogre bones.", "wiki_name": "Zogre bones", "wiki_url": "https://oldschool.runescape.wiki/w/Zogre_bones", - "price": 521.5 + "price": 743 }, "4814": { "id": 4814, @@ -66964,7 +66922,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Bronze nails", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_nails", - "price": 10 + "price": 2 }, "4820": { "id": 4820, @@ -66981,7 +66939,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Iron nails", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_nails", - "price": 18 + "price": 12 }, "4821": { "id": 4821, @@ -66998,7 +66956,7 @@ "examine": "Keeps things in place fairly permanently.", "wiki_name": "Black nails", "wiki_url": "https://oldschool.runescape.wiki/w/Black_nails", - "price": 3017.5 + "price": 4692 }, "4822": { "id": 4822, @@ -67032,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, @@ -67067,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": 3999 + "price": 1590 }, "4827": { "id": 4827, @@ -67135,7 +67093,7 @@ } ] }, - "price": 6381.5 + "price": 719 }, "4829": { "id": 4829, @@ -67167,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": 5798 + "price": 3500 }, "4832": { "id": 4832, @@ -67185,7 +67143,7 @@ "examine": "Ancient ogre bones from the ogre burial tomb.", "wiki_name": "Raurg bones", "wiki_url": "https://oldschool.runescape.wiki/w/Raurg_bones", - "price": 6418.5 + "price": 5889 }, "4834": { "id": 4834, @@ -67203,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": 84179 + "price": 48572 }, "4836": { "id": 4836, @@ -67289,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": 945 + "price": 585 }, "4844": { "id": 4844, @@ -67307,7 +67265,7 @@ "examine": "3 doses of Relicym's balm, which helps cure disease.", "wiki_name": "Relicym's balm (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Relicym's_balm#3_dose", - "price": 390 + "price": 483 }, "4846": { "id": 4846, @@ -67325,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": 179.5 + "price": 7 }, "4848": { "id": 4848, @@ -67343,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": 264.5 + "price": 168 }, "4850": { "id": 4850, @@ -67361,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": 2082 + "price": 2052 }, "4852": { "id": 4852, @@ -67583,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": 106642 + "price": 163008 }, "4862": { "id": 4862, @@ -67917,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": 82028.5 + "price": 105950 }, "4868": { "id": 4868, @@ -68083,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": 3234928 + "price": 3023000 }, "4874": { "id": 4874, @@ -68249,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": 2333620 + "price": 1912500 }, "4880": { "id": 4880, @@ -68411,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": 542357 + "price": 615133 }, "4886": { "id": 4886, @@ -68717,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": 821921 + "price": 1244215 }, "4892": { "id": 4892, @@ -68879,7 +68837,7 @@ "examine": "Dharok the Wretched's platebody armour.", "wiki_name": "Dharok's platebody (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Dharok's_platebody#0", - "price": 841500 + "price": 947560 }, "4898": { "id": 4898, @@ -69041,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": 729694 + "price": 2247500 }, "4904": { "id": 4904, @@ -69203,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": 71728.5 + "price": 98491 }, "4910": { "id": 4910, @@ -69505,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": 113822.5 + "price": 86137 }, "4916": { "id": 4916, @@ -69667,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": 201348.5 + "price": 169532 }, "4922": { "id": 4922, @@ -69829,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": 174060 + "price": 169974 }, "4928": { "id": 4928, @@ -69995,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": 25034 + "price": 11124 }, "4934": { "id": 4934, @@ -70435,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": 1361155 + "price": 1151592 }, "4946": { "id": 4946, @@ -70601,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": 502386.5 + "price": 435421 }, "4952": { "id": 4952, @@ -70763,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": 59616.5 + "price": 66519 }, "4958": { "id": 4958, @@ -71041,7 +70999,7 @@ "examine": "Torag the Corrupted's twin hammers.", "wiki_name": "Torag's hammers (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Torag's_hammers#0", - "price": 103000 + "price": 95537 }, "4964": { "id": 4964, @@ -71203,7 +71161,7 @@ "examine": "Torag the Corrupted's platebody armour.", "wiki_name": "Torag's platebody (0)", "wiki_url": "https://oldschool.runescape.wiki/w/Torag's_platebody#0", - "price": 167000 + "price": 168140 }, "4970": { "id": 4970, @@ -71365,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": 185720.5 + "price": 170204 }, "4976": { "id": 4976, @@ -71829,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, @@ -71991,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": 172285.5 + "price": 158244 }, "4994": { "id": 4994, @@ -72153,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": 178418.5 + "price": 174265 }, "5001": { "id": 5001, @@ -72171,7 +72129,7 @@ "examine": "It's incredibly slimy.", "wiki_name": "Raw cave eel", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_cave_eel", - "price": 106.5 + "price": 87 }, "5002": { "id": 5002, @@ -72205,7 +72163,7 @@ "examine": "It's a bit slimy.", "wiki_name": "Cave eel", "wiki_url": "https://oldschool.runescape.wiki/w/Cave_eel", - "price": 74.5 + "price": 51 }, "5004": { "id": 5004, @@ -72359,7 +72317,7 @@ "slot": "head", "requirements": null }, - "price": 336.5 + "price": 558 }, "5016": { "id": 5016, @@ -72432,7 +72390,7 @@ } ] }, - "price": 720.5 + "price": 1200 }, "5018": { "id": 5018, @@ -72498,7 +72456,7 @@ } ] }, - "price": 613 + "price": 4067 }, "5020": { "id": 5020, @@ -72592,7 +72550,7 @@ "slot": "body", "requirements": null }, - "price": 645.5 + "price": 1036 }, "5026": { "id": 5026, @@ -72630,7 +72588,7 @@ "slot": "body", "requirements": null }, - "price": 2431.5 + "price": 5559 }, "5028": { "id": 5028, @@ -72668,7 +72626,7 @@ "slot": "body", "requirements": null }, - "price": 829 + "price": 1508 }, "5030": { "id": 5030, @@ -72744,7 +72702,7 @@ "slot": "body", "requirements": null }, - "price": 241.5 + "price": 1145 }, "5034": { "id": 5034, @@ -72782,7 +72740,7 @@ "slot": "body", "requirements": null }, - "price": 2328.5 + "price": 501 }, "5036": { "id": 5036, @@ -72820,7 +72778,7 @@ "slot": "legs", "requirements": null }, - "price": 1285 + "price": 2501 }, "5038": { "id": 5038, @@ -72858,7 +72816,7 @@ "slot": "legs", "requirements": null }, - "price": 3500 + "price": 1425 }, "5040": { "id": 5040, @@ -72896,7 +72854,7 @@ "slot": "legs", "requirements": null }, - "price": 461 + "price": 1035 }, "5042": { "id": 5042, @@ -72934,7 +72892,7 @@ "slot": "legs", "requirements": null }, - "price": 990 + "price": 5646 }, "5044": { "id": 5044, @@ -72972,7 +72930,7 @@ "slot": "legs", "requirements": null }, - "price": 412.5 + "price": 605 }, "5046": { "id": 5046, @@ -73010,7 +72968,7 @@ "slot": "legs", "requirements": null }, - "price": 1066 + "price": 1383 }, "5048": { "id": 5048, @@ -73048,7 +73006,7 @@ "slot": "legs", "requirements": null }, - "price": 351.5 + "price": 225 }, "5050": { "id": 5050, @@ -73124,7 +73082,7 @@ "slot": "legs", "requirements": null }, - "price": 540.5 + "price": 342 }, "5054": { "id": 5054, @@ -73398,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": 6150 + "price": 7751 }, "5076": { "id": 5076, @@ -73493,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, @@ -73510,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": 4.5 + "price": 13 }, "5098": { "id": 5098, @@ -73527,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": 1 + "price": 10 }, "5099": { "id": 5099, @@ -73544,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, @@ -73561,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": 7.5 + "price": 4 }, "5101": { "id": 5101, @@ -73578,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": 2.5 + "price": 7 }, "5102": { "id": 5102, @@ -73595,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": 2 + "price": 7 }, "5103": { "id": 5103, @@ -73629,7 +73587,7 @@ "examine": "A jangerberry bush seed - plant in a bush patch.", "wiki_name": "Jangerberry seed", "wiki_url": "https://oldschool.runescape.wiki/w/Jangerberry_seed", - "price": 4.5 + "price": 1 }, "5105": { "id": 5105, @@ -73646,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": 2 + "price": 12 }, "5106": { "id": 5106, @@ -73663,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": 11 + "price": 6 }, "5171": { "id": 5171, @@ -73689,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": 103 + "price": 25 }, "5281": { "id": 5281, @@ -73706,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": 90.5 + "price": 65 }, "5282": { "id": 5282, @@ -73723,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, @@ -73740,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": 6 + "price": 28 }, "5284": { "id": 5284, @@ -73757,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": 8 + "price": 9 }, "5285": { "id": 5285, @@ -73774,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": 6 + "price": 15 }, "5286": { "id": 5286, @@ -73791,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": 11.5 + "price": 17 }, "5287": { "id": 5287, @@ -73808,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": 20.5 + "price": 58 }, "5288": { "id": 5288, @@ -73825,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": 504.5 + "price": 300 }, "5289": { "id": 5289, @@ -73842,7 +73800,7 @@ "examine": "Plant in a plantpot of soil to grow a sapling.", "wiki_name": "Palm tree seed", "wiki_url": "https://oldschool.runescape.wiki/w/Palm_tree_seed", - "price": 20444.5 + "price": 17920 }, "5290": { "id": 5290, @@ -73859,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": 51.5 + "price": 36 }, "5291": { "id": 5291, @@ -73876,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": 6 + "price": 28 }, "5292": { "id": 5292, @@ -73893,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": 2 + "price": 3 }, "5293": { "id": 5293, @@ -73910,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": 23.5 + "price": 18 }, "5294": { "id": 5294, @@ -73927,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": 14.5 + "price": 7 }, "5295": { "id": 5295, @@ -73944,7 +73902,7 @@ "examine": "A ranarr seed - plant in a herb patch.", "wiki_name": "Ranarr seed", "wiki_url": "https://oldschool.runescape.wiki/w/Ranarr_seed", - "price": 19215 + "price": 23262 }, "5296": { "id": 5296, @@ -73961,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": 552.5 + "price": 535 }, "5297": { "id": 5297, @@ -73978,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": 37 + "price": 103 }, "5298": { "id": 5298, @@ -73995,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": 6026.5 + "price": 2579 }, "5299": { "id": 5299, @@ -74012,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": 1993 + "price": 1693 }, "5300": { "id": 5300, @@ -74029,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": 30582.5 + "price": 35074 }, "5301": { "id": 5301, @@ -74046,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": 4203 + "price": 8397 }, "5302": { "id": 5302, @@ -74063,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": 260.5 + "price": 336 }, "5303": { "id": 5303, @@ -74080,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": 693 + "price": 685 }, "5304": { "id": 5304, @@ -74097,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": 5016 + "price": 7052 }, "5305": { "id": 5305, @@ -74114,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.5 + "price": 3 }, "5306": { "id": 5306, @@ -74131,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.5 + "price": 2 }, "5307": { "id": 5307, @@ -74148,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, @@ -74165,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": 2.5 + "price": 2 }, "5309": { "id": 5309, @@ -74182,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": 6 + "price": 2 }, "5310": { "id": 5310, @@ -74199,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": 2 + "price": 9 }, "5311": { "id": 5311, @@ -74216,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": 8 + "price": 7 }, "5312": { "id": 5312, @@ -74233,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": 69.5 + "price": 107 }, "5313": { "id": 5313, @@ -74250,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": 18.5 + "price": 49 }, "5314": { "id": 5314, @@ -74267,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": 5575.5 + "price": 3963 }, "5315": { "id": 5315, @@ -74284,7 +74242,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Yew seed", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_seed", - "price": 22489.5 + "price": 23987 }, "5316": { "id": 5316, @@ -74301,7 +74259,7 @@ "examine": "Plant this in a plantpot of soil to grow a sapling.", "wiki_name": "Magic seed", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_seed", - "price": 65370 + "price": 74273 }, "5317": { "id": 5317, @@ -74332,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, @@ -74366,7 +74324,7 @@ "examine": "A sweetcorn seed - plant in an allotment.", "wiki_name": "Sweetcorn seed", "wiki_url": "https://oldschool.runescape.wiki/w/Sweetcorn_seed", - "price": 2.5 + "price": 1 }, "5321": { "id": 5321, @@ -74383,7 +74341,7 @@ "examine": "A watermelon seed - plant in an allotment.", "wiki_name": "Watermelon seed", "wiki_url": "https://oldschool.runescape.wiki/w/Watermelon_seed", - "price": 10.5 + "price": 1 }, "5322": { "id": 5322, @@ -74400,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": 1.5 + "price": 1 }, "5323": { "id": 5323, @@ -74417,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": 18.5 + "price": 11 }, "5324": { "id": 5324, @@ -74452,7 +74410,7 @@ "examine": "Not suitable for archaeological digs.", "wiki_name": "Gardening trowel", "wiki_url": "https://oldschool.runescape.wiki/w/Gardening_trowel", - "price": 252 + "price": 145 }, "5327": { "id": 5327, @@ -74514,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": 203 + "price": 129 }, "5333": { "id": 5333, @@ -74644,7 +74602,7 @@ "examine": "Use this to clear weeds.", "wiki_name": "Rake", "wiki_url": "https://oldschool.runescape.wiki/w/Rake", - "price": 26 + "price": 2 }, "5343": { "id": 5343, @@ -74662,7 +74620,7 @@ "examine": "Use this to plant seeds with.", "wiki_name": "Seed dibber", "wiki_url": "https://oldschool.runescape.wiki/w/Seed_dibber", - "price": 149 + "price": 2 }, "5345": { "id": 5345, @@ -74700,7 +74658,7 @@ "slot": "feet", "requirements": null }, - "price": 626 + "price": 5955 }, "5347": { "id": 5347, @@ -74753,7 +74711,7 @@ "examine": "An empty plant pot.", "wiki_name": "Empty plant pot", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_plant_pot", - "price": 10 + "price": 30 }, "5352": { "id": 5352, @@ -74771,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, @@ -74789,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": 2 + "price": 3 }, "5356": { "id": 5356, @@ -74991,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": 305.5 + "price": 399 }, "5371": { "id": 5371, @@ -75009,7 +74967,7 @@ "examine": "This sapling is ready to be replanted in a tree patch.", "wiki_name": "Willow sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_sapling", - "price": 346.5 + "price": 350 }, "5372": { "id": 5372, @@ -75027,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": 7607.5 + "price": 5614 }, "5373": { "id": 5373, @@ -75045,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": 23606 + "price": 24420 }, "5374": { "id": 5374, @@ -75063,7 +75021,7 @@ "examine": "This sapling is ready to be replanted in a tree patch.", "wiki_name": "Magic sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_sapling", - "price": 67798.5 + "price": 76808 }, "5375": { "id": 5375, @@ -75095,7 +75053,7 @@ "examine": "An empty fruit basket.", "wiki_name": "Basket", "wiki_url": "https://oldschool.runescape.wiki/w/Basket", - "price": 2.5 + "price": 5 }, "5378": { "id": 5378, @@ -75259,7 +75217,7 @@ "examine": "A fruit basket filled with oranges.", "wiki_name": "Oranges (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Oranges#(5)", - "price": 741 + "price": 931 }, "5398": { "id": 5398, @@ -75341,7 +75299,7 @@ "examine": "A fruit basket filled with strawberries.", "wiki_name": "Strawberries (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Strawberries#(5)", - "price": 707.5 + "price": 748 }, "5408": { "id": 5408, @@ -75423,7 +75381,7 @@ "examine": "A fruit basket filled with bananas.", "wiki_name": "Bananas (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Bananas#(5)", - "price": 703.5 + "price": 579 }, "5418": { "id": 5418, @@ -75441,7 +75399,7 @@ "examine": "An empty vegetable sack.", "wiki_name": "Empty sack", "wiki_url": "https://oldschool.runescape.wiki/w/Empty_sack", - "price": 1 + "price": 2 }, "5420": { "id": 5420, @@ -75603,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": 1272.5 + "price": 2206 }, "5440": { "id": 5440, @@ -75765,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": 601.5 + "price": 1109 }, "5460": { "id": 5460, @@ -75927,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": 486.5 + "price": 1273 }, "5480": { "id": 5480, @@ -76169,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, @@ -76187,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": 120 + "price": 138 }, "5498": { "id": 5498, @@ -76205,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": 500 + "price": 87 }, "5499": { "id": 5499, @@ -76223,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": 60 + "price": 644 }, "5500": { "id": 5500, @@ -76241,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": 508 + "price": 402 }, "5501": { "id": 5501, @@ -76259,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": 1167.5 + "price": 974 }, "5502": { "id": 5502, @@ -76277,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": 21076.5 + "price": 19611 }, "5503": { "id": 5503, @@ -76295,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": 272.5 + "price": 760 }, "5504": { "id": 5504, @@ -76313,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, @@ -76469,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": 3392 + "price": 6049 }, "5518": { "id": 5518, @@ -76549,7 +76507,7 @@ "slot": "neck", "requirements": null }, - "price": 895.5 + "price": 804 }, "5523": { "id": 5523, @@ -76566,7 +76524,7 @@ "examine": "A mould for tiaras.", "wiki_name": "Tiara mould", "wiki_url": "https://oldschool.runescape.wiki/w/Tiara_mould", - "price": 150 + "price": 160 }, "5525": { "id": 5525, @@ -76603,7 +76561,7 @@ "slot": "head", "requirements": null }, - "price": 117.5 + "price": 115 }, "5527": { "id": 5527, @@ -76640,7 +76598,7 @@ "slot": "head", "requirements": null }, - "price": 37.5 + "price": 18 }, "5529": { "id": 5529, @@ -76677,7 +76635,7 @@ "slot": "head", "requirements": null }, - "price": 175 + "price": 37 }, "5531": { "id": 5531, @@ -76714,7 +76672,7 @@ "slot": "head", "requirements": null }, - "price": 107.5 + "price": 4 }, "5533": { "id": 5533, @@ -76751,7 +76709,7 @@ "slot": "head", "requirements": null }, - "price": 35 + "price": 21 }, "5535": { "id": 5535, @@ -76788,7 +76746,7 @@ "slot": "head", "requirements": null }, - "price": 5.5 + "price": 9 }, "5537": { "id": 5537, @@ -76825,7 +76783,7 @@ "slot": "head", "requirements": null }, - "price": 52.5 + "price": 67 }, "5539": { "id": 5539, @@ -76863,7 +76821,7 @@ "slot": "head", "requirements": null }, - "price": 50.5 + "price": 101 }, "5541": { "id": 5541, @@ -76901,7 +76859,7 @@ "slot": "head", "requirements": null }, - "price": 28.5 + "price": 185 }, "5543": { "id": 5543, @@ -76939,7 +76897,7 @@ "slot": "head", "requirements": null }, - "price": 212.5 + "price": 4 }, "5545": { "id": 5545, @@ -77011,7 +76969,7 @@ "slot": "head", "requirements": null }, - "price": 667 + "price": 1078 }, "5549": { "id": 5549, @@ -77048,7 +77006,7 @@ "slot": "head", "requirements": null }, - "price": 80882 + "price": 94398 }, "5553": { "id": 5553, @@ -77479,7 +77437,7 @@ "prayer": 10 } }, - "price": 3213 + "price": 5660 }, "5575": { "id": 5575, @@ -77520,7 +77478,7 @@ "prayer": 10 } }, - "price": 5707 + "price": 5053 }, "5576": { "id": 5576, @@ -77560,7 +77518,7 @@ "defence": 10 } }, - "price": 6395.5 + "price": 3911 }, "5577": { "id": 5577, @@ -78157,7 +78115,7 @@ "ranged": 1 } }, - "price": 18.5 + "price": 18 }, "5617": { "id": 5617, @@ -78196,7 +78154,7 @@ "ranged": 1 } }, - "price": 50 + "price": 34 }, "5618": { "id": 5618, @@ -78235,7 +78193,7 @@ "ranged": 5 } }, - "price": 299 + "price": 9000 }, "5619": { "id": 5619, @@ -78274,7 +78232,7 @@ "ranged": 20 } }, - "price": 96.5 + "price": 278 }, "5620": { "id": 5620, @@ -78313,7 +78271,7 @@ "ranged": 30 } }, - "price": 184 + "price": 216 }, "5621": { "id": 5621, @@ -78352,7 +78310,7 @@ "ranged": 40 } }, - "price": 344 + "price": 388 }, "5622": { "id": 5622, @@ -78391,7 +78349,7 @@ "ranged": 1 } }, - "price": 31.5 + "price": 37 }, "5623": { "id": 5623, @@ -78508,7 +78466,7 @@ "ranged": 30 } }, - "price": 257.5 + "price": 489 }, "5626": { "id": 5626, @@ -78547,7 +78505,7 @@ "ranged": 30 } }, - "price": 17 + "price": 28 }, "5627": { "id": 5627, @@ -78586,7 +78544,7 @@ "ranged": 40 } }, - "price": 573 + "price": 1041 }, "5628": { "id": 5628, @@ -78653,7 +78611,7 @@ } ] }, - "price": 531 + "price": 100 }, "5629": { "id": 5629, @@ -78720,7 +78678,7 @@ } ] }, - "price": 6898.5 + "price": 35024 }, "5630": { "id": 5630, @@ -78787,7 +78745,7 @@ } ] }, - "price": 2501 + "price": 73 }, "5631": { "id": 5631, @@ -78854,7 +78812,7 @@ } ] }, - "price": 6736 + "price": 45 }, "5632": { "id": 5632, @@ -78921,7 +78879,7 @@ } ] }, - "price": 167 + "price": 2366 }, "5633": { "id": 5633, @@ -78988,7 +78946,7 @@ } ] }, - "price": 88.5 + "price": 125 }, "5634": { "id": 5634, @@ -79055,7 +79013,7 @@ } ] }, - "price": 393.5 + "price": 697 }, "5635": { "id": 5635, @@ -79122,7 +79080,7 @@ } ] }, - "price": 3501 + "price": 1019 }, "5636": { "id": 5636, @@ -79189,7 +79147,7 @@ } ] }, - "price": 116 + "price": 67 }, "5637": { "id": 5637, @@ -79256,7 +79214,7 @@ } ] }, - "price": 305 + "price": 81 }, "5638": { "id": 5638, @@ -79323,7 +79281,7 @@ } ] }, - "price": 2651.5 + "price": 25049 }, "5639": { "id": 5639, @@ -79390,7 +79348,7 @@ } ] }, - "price": 640.5 + "price": 873 }, "5640": { "id": 5640, @@ -79457,7 +79415,7 @@ } ] }, - "price": 595.5 + "price": 600 }, "5641": { "id": 5641, @@ -79524,7 +79482,7 @@ } ] }, - "price": 726 + "price": 1319 }, "5642": { "id": 5642, @@ -79563,7 +79521,7 @@ "ranged": 1 } }, - "price": 1337 + "price": 3700 }, "5643": { "id": 5643, @@ -79602,7 +79560,7 @@ "ranged": 1 } }, - "price": 2000 + "price": 2250 }, "5644": { "id": 5644, @@ -79641,7 +79599,7 @@ "ranged": 5 } }, - "price": 9 + "price": 11 }, "5645": { "id": 5645, @@ -79680,7 +79638,7 @@ "ranged": 20 } }, - "price": 683.5 + "price": 19 }, "5646": { "id": 5646, @@ -79719,7 +79677,7 @@ "ranged": 30 } }, - "price": 213.5 + "price": 257 }, "5647": { "id": 5647, @@ -79758,7 +79716,7 @@ "ranged": 40 } }, - "price": 657 + "price": 255 }, "5648": { "id": 5648, @@ -79797,7 +79755,7 @@ "ranged": 1 } }, - "price": 11.5 + "price": 11 }, "5649": { "id": 5649, @@ -79875,7 +79833,7 @@ "ranged": 5 } }, - "price": 18.5 + "price": 30 }, "5651": { "id": 5651, @@ -79914,7 +79872,7 @@ "ranged": 20 } }, - "price": 35 + "price": 39 }, "5652": { "id": 5652, @@ -79953,7 +79911,7 @@ "ranged": 30 } }, - "price": 183.5 + "price": 183 }, "5653": { "id": 5653, @@ -79992,7 +79950,7 @@ "ranged": 40 } }, - "price": 565.5 + "price": 1163 }, "5654": { "id": 5654, @@ -80059,7 +80017,7 @@ } ] }, - "price": 5024.5 + "price": 7499 }, "5655": { "id": 5655, @@ -80126,7 +80084,7 @@ } ] }, - "price": 600 + "price": 394 }, "5656": { "id": 5656, @@ -80260,7 +80218,7 @@ } ] }, - "price": 340.5 + "price": 468 }, "5658": { "id": 5658, @@ -80327,7 +80285,7 @@ } ] }, - "price": 148 + "price": 111 }, "5659": { "id": 5659, @@ -80394,7 +80352,7 @@ } ] }, - "price": 99 + "price": 639 }, "5660": { "id": 5660, @@ -80461,7 +80419,7 @@ } ] }, - "price": 423 + "price": 279 }, "5661": { "id": 5661, @@ -80528,7 +80486,7 @@ } ] }, - "price": 173 + "price": 180 }, "5662": { "id": 5662, @@ -80595,7 +80553,7 @@ } ] }, - "price": 418.5 + "price": 358 }, "5663": { "id": 5663, @@ -80662,7 +80620,7 @@ } ] }, - "price": 10252.5 + "price": 80 }, "5664": { "id": 5664, @@ -80729,7 +80687,7 @@ } ] }, - "price": 806 + "price": 1398 }, "5665": { "id": 5665, @@ -80796,7 +80754,7 @@ } ] }, - "price": 951 + "price": 1 }, "5666": { "id": 5666, @@ -80863,7 +80821,7 @@ } ] }, - "price": 1086 + "price": 272 }, "5667": { "id": 5667, @@ -80930,7 +80888,7 @@ } ] }, - "price": 188 + "price": 250 }, "5668": { "id": 5668, @@ -81080,7 +81038,7 @@ } ] }, - "price": 769 + "price": 4 }, "5672": { "id": 5672, @@ -81155,7 +81113,7 @@ } ] }, - "price": 230 + "price": 26 }, "5674": { "id": 5674, @@ -81230,7 +81188,7 @@ } ] }, - "price": 500.5 + "price": 950 }, "5676": { "id": 5676, @@ -81305,7 +81263,7 @@ } ] }, - "price": 1049.5 + "price": 1870 }, "5678": { "id": 5678, @@ -81380,7 +81338,7 @@ } ] }, - "price": 4032.5 + "price": 4032 }, "5680": { "id": 5680, @@ -81530,7 +81488,7 @@ } ] }, - "price": 2343 + "price": 25 }, "5684": { "id": 5684, @@ -81620,7 +81578,7 @@ } ] }, - "price": 6543.5 + "price": 3685 }, "5688": { "id": 5688, @@ -81695,7 +81653,7 @@ } ] }, - "price": 421.5 + "price": 2071 }, "5690": { "id": 5690, @@ -81770,7 +81728,7 @@ } ] }, - "price": 5000 + "price": 2044 }, "5692": { "id": 5692, @@ -81920,7 +81878,7 @@ } ] }, - "price": 26373.5 + "price": 9347 }, "5696": { "id": 5696, @@ -81995,7 +81953,7 @@ } ] }, - "price": 17254.5 + "price": 5648 }, "5698": { "id": 5698, @@ -82070,7 +82028,7 @@ } ] }, - "price": 21257.5 + "price": 21257 }, "5700": { "id": 5700, @@ -82145,7 +82103,7 @@ } ] }, - "price": 9055.5 + "price": 14251 }, "5702": { "id": 5702, @@ -82235,7 +82193,7 @@ } ] }, - "price": 759 + "price": 770 }, "5706": { "id": 5706, @@ -82385,7 +82343,7 @@ } ] }, - "price": 27.5 + "price": 217 }, "5710": { "id": 5710, @@ -82460,7 +82418,7 @@ } ] }, - "price": 4840.5 + "price": 2966 }, "5712": { "id": 5712, @@ -82535,7 +82493,7 @@ } ] }, - "price": 1955.5 + "price": 2490 }, "5714": { "id": 5714, @@ -82610,7 +82568,7 @@ } ] }, - "price": 20035.5 + "price": 74497 }, "5716": { "id": 5716, @@ -82685,7 +82643,7 @@ } ] }, - "price": 39100 + "price": 49220 }, "5718": { "id": 5718, @@ -82760,7 +82718,7 @@ } ] }, - "price": 528.5 + "price": 28 }, "5720": { "id": 5720, @@ -82835,7 +82793,7 @@ } ] }, - "price": 5031.5 + "price": 12061 }, "5722": { "id": 5722, @@ -82910,7 +82868,7 @@ } ] }, - "price": 85 + "price": 476 }, "5724": { "id": 5724, @@ -82985,7 +82943,7 @@ } ] }, - "price": 4687 + "price": 2229 }, "5726": { "id": 5726, @@ -83060,7 +83018,7 @@ } ] }, - "price": 10388 + "price": 810 }, "5728": { "id": 5728, @@ -83135,7 +83093,7 @@ } ] }, - "price": 18853 + "price": 11142 }, "5730": { "id": 5730, @@ -83311,7 +83269,7 @@ } ] }, - "price": 2000.5 + "price": 5106 }, "5736": { "id": 5736, @@ -83386,7 +83344,7 @@ } ] }, - "price": 5104 + "price": 7989 }, "5739": { "id": 5739, @@ -83404,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": 4130 + "price": 40000 }, "5741": { "id": 5741, @@ -83422,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": 90000 + "price": 22090 }, "5743": { "id": 5743, @@ -83440,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": 53250 + "price": 93598 }, "5745": { "id": 5745, @@ -83458,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": 12777.5 + "price": 50192 }, "5747": { "id": 5747, @@ -83476,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": 18598 + "price": 15815 }, "5749": { "id": 5749, @@ -83494,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": 25000 + "price": 64444 }, "5751": { "id": 5751, @@ -83512,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": 750.5 + "price": 1076 }, "5753": { "id": 5753, @@ -83530,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": 57474.5 + "price": 73945 }, "5755": { "id": 5755, @@ -83548,7 +83506,7 @@ "examine": "A fruity, full-bodied ale.", "wiki_name": "Chef's delight", "wiki_url": "https://oldschool.runescape.wiki/w/Chef's_delight", - "price": 593 + "price": 329 }, "5757": { "id": 5757, @@ -83566,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": 47568 + "price": 67583 }, "5759": { "id": 5759, @@ -83584,7 +83542,7 @@ "examine": "Ale with bite.", "wiki_name": "Slayer's respite", "wiki_url": "https://oldschool.runescape.wiki/w/Slayer's_respite", - "price": 32 + "price": 34 }, "5761": { "id": 5761, @@ -83602,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": 65069 + "price": 77699 }, "5763": { "id": 5763, @@ -83620,7 +83578,7 @@ "examine": "A glass of cider.", "wiki_name": "Cider", "wiki_url": "https://oldschool.runescape.wiki/w/Cider", - "price": 412 + "price": 232 }, "5765": { "id": 5765, @@ -83638,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": 93500 + "price": 151728 }, "5767": { "id": 5767, @@ -83656,7 +83614,7 @@ "examine": "A pot filled with ale yeast.", "wiki_name": "Ale yeast", "wiki_url": "https://oldschool.runescape.wiki/w/Ale_yeast", - "price": 1605.5 + "price": 851 }, "5769": { "id": 5769, @@ -83674,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": 196.5 + "price": 138 }, "5771": { "id": 5771, @@ -83740,7 +83698,7 @@ "examine": "This keg contains 4 pints of Dwarven Stout.", "wiki_name": "Dwarven stout (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Dwarven_stout_(keg)#4_pints", - "price": 15209 + "price": 10625 }, "5779": { "id": 5779, @@ -83806,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": 58782 + "price": 60794 }, "5787": { "id": 5787, @@ -83872,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": 10210.5 + "price": 27981 }, "5795": { "id": 5795, @@ -83938,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": 18500 + "price": 63579 }, "5803": { "id": 5803, @@ -84004,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": 11314.5 + "price": 19955 }, "5811": { "id": 5811, @@ -84070,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": 37499.5 + "price": 25001 }, "5819": { "id": 5819, @@ -84136,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": 4996.5 + "price": 10848 }, "5827": { "id": 5827, @@ -84202,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": 9193.5 + "price": 5173 }, "5835": { "id": 5835, @@ -84268,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": 14954 + "price": 7256 }, "5843": { "id": 5843, @@ -84334,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": 12004 + "price": 24900 }, "5851": { "id": 5851, @@ -84400,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": 195515.5 + "price": 273790 }, "5859": { "id": 5859, @@ -84466,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": 10166 + "price": 75250 }, "5867": { "id": 5867, @@ -84532,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": 150799.5 + "price": 176500 }, "5875": { "id": 5875, @@ -84598,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": 30697.5 + "price": 46897 }, "5883": { "id": 5883, @@ -84664,7 +84622,7 @@ "examine": "This keg contains 4 pints of mature Dragon Bitter.", "wiki_name": "Dragon bitter(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bitter(m)_(keg)#4_pints", - "price": 17709 + "price": 89336 }, "5891": { "id": 5891, @@ -84730,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": 100000 + "price": 120691 }, "5899": { "id": 5899, @@ -84796,7 +84754,7 @@ "examine": "This keg contains 4 pints of mature Axeman's Folly.", "wiki_name": "Axeman's folly(m) (keg) (4 pints)", "wiki_url": "https://oldschool.runescape.wiki/w/Axeman's_folly(m)_(keg)#4_pints", - "price": 250000 + "price": 230494 }, "5907": { "id": 5907, @@ -84862,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": 200755 + "price": 304000 }, "5915": { "id": 5915, @@ -84928,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": 325568.5 + "price": 112000 }, "5923": { "id": 5923, @@ -84994,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": 172754 + "price": 1026050 }, "5931": { "id": 5931, @@ -85012,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, @@ -85030,7 +84988,7 @@ "examine": "A branch from a willow tree.", "wiki_name": "Willow branch", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_branch", - "price": 1070.5 + "price": 2125 }, "5935": { "id": 5935, @@ -85048,7 +85006,7 @@ "examine": "A vial filled with coconut milk", "wiki_name": "Coconut milk", "wiki_url": "https://oldschool.runescape.wiki/w/Coconut_milk", - "price": 90 + "price": 220 }, "5936": { "id": 5936, @@ -85080,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": 460.5 + "price": 657 }, "5939": { "id": 5939, @@ -85112,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": 4350 + "price": 5710 }, "5942": { "id": 5942, @@ -85144,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": 1646.5 + "price": 1976 }, "5945": { "id": 5945, @@ -85162,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": 1043 + "price": 1362 }, "5947": { "id": 5947, @@ -85180,7 +85138,7 @@ "examine": "2 doses of extra strong antipoison potion.", "wiki_name": "Antidote+ (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Antidote+#2_dose", - "price": 500 + "price": 853 }, "5949": { "id": 5949, @@ -85198,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": 108 + "price": 720 }, "5951": { "id": 5951, @@ -85230,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, @@ -85248,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": 4926 + "price": 3355 }, "5956": { "id": 5956, @@ -85266,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, @@ -85284,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": 1125 + "price": 1301 }, "5960": { "id": 5960, @@ -85366,7 +85324,7 @@ "examine": "A fruit basket filled with tomatoes.", "wiki_name": "Tomatoes (5)", "wiki_url": "https://oldschool.runescape.wiki/w/Tomatoes#(5)", - "price": 306 + "price": 186 }, "5970": { "id": 5970, @@ -85384,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": 7 + "price": 24 }, "5972": { "id": 5972, @@ -85402,7 +85360,7 @@ "examine": "Looks delicious.", "wiki_name": "Papaya fruit", "wiki_url": "https://oldschool.runescape.wiki/w/Papaya_fruit", - "price": 1986 + "price": 1627 }, "5974": { "id": 5974, @@ -85420,7 +85378,7 @@ "examine": "It's a coconut.", "wiki_name": "Coconut", "wiki_url": "https://oldschool.runescape.wiki/w/Coconut", - "price": 2975 + "price": 2422 }, "5976": { "id": 5976, @@ -85470,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, @@ -85488,7 +85446,7 @@ "examine": "A juicy watermelon.", "wiki_name": "Watermelon", "wiki_url": "https://oldschool.runescape.wiki/w/Watermelon", - "price": 24.5 + "price": 27 }, "5984": { "id": 5984, @@ -85506,7 +85464,7 @@ "examine": "A slice of watermelon.", "wiki_name": "Watermelon slice", "wiki_url": "https://oldschool.runescape.wiki/w/Watermelon_slice", - "price": 63.5 + "price": 70 }, "5986": { "id": 5986, @@ -85524,7 +85482,7 @@ "examine": "Raw sweetcorn.", "wiki_name": "Sweetcorn", "wiki_url": "https://oldschool.runescape.wiki/w/Sweetcorn", - "price": 73.5 + "price": 52 }, "5988": { "id": 5988, @@ -85542,7 +85500,7 @@ "examine": "Delicious cooked sweetcorn.", "wiki_name": "Cooked sweetcorn", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_sweetcorn", - "price": 70.5 + "price": 349 }, "5990": { "id": 5990, @@ -85576,7 +85534,7 @@ "examine": "A bucket of apple mush.", "wiki_name": "Apple mush", "wiki_url": "https://oldschool.runescape.wiki/w/Apple_mush", - "price": 7000 + "price": 6250 }, "5994": { "id": 5994, @@ -85594,7 +85552,7 @@ "examine": "A handful of Hammerstone Hops.", "wiki_name": "Hammerstone hops", "wiki_url": "https://oldschool.runescape.wiki/w/Hammerstone_hops", - "price": 2249 + "price": 245 }, "5996": { "id": 5996, @@ -85612,7 +85570,7 @@ "examine": "A handful of Asgarnian Hops.", "wiki_name": "Asgarnian hops", "wiki_url": "https://oldschool.runescape.wiki/w/Asgarnian_hops", - "price": 103 + "price": 234 }, "5998": { "id": 5998, @@ -85630,7 +85588,7 @@ "examine": "A handful of Yanillian Hops.", "wiki_name": "Yanillian hops", "wiki_url": "https://oldschool.runescape.wiki/w/Yanillian_hops", - "price": 1156 + "price": 1275 }, "6000": { "id": 6000, @@ -85648,7 +85606,7 @@ "examine": "A handful of Krandorian Hops.", "wiki_name": "Krandorian hops", "wiki_url": "https://oldschool.runescape.wiki/w/Krandorian_hops", - "price": 87 + "price": 83 }, "6002": { "id": 6002, @@ -85666,7 +85624,7 @@ "examine": "A handful of Wildblood Hops.", "wiki_name": "Wildblood hops", "wiki_url": "https://oldschool.runescape.wiki/w/Wildblood_hops", - "price": 25.5 + "price": 25 }, "6004": { "id": 6004, @@ -85684,7 +85642,7 @@ "examine": "A Bittercap Mushroom", "wiki_name": "Mushroom", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom", - "price": 82.5 + "price": 335 }, "6006": { "id": 6006, @@ -85702,7 +85660,7 @@ "examine": "A handful of Barley.", "wiki_name": "Barley", "wiki_url": "https://oldschool.runescape.wiki/w/Barley", - "price": 700 + "price": 800 }, "6008": { "id": 6008, @@ -85720,7 +85678,7 @@ "examine": "A handful of barley malt.", "wiki_name": "Barley malt", "wiki_url": "https://oldschool.runescape.wiki/w/Barley_malt", - "price": 1106 + "price": 1472 }, "6010": { "id": 6010, @@ -85738,7 +85696,7 @@ "examine": "A bunch of marigolds.", "wiki_name": "Marigolds", "wiki_url": "https://oldschool.runescape.wiki/w/Marigolds", - "price": 286 + "price": 211 }, "6012": { "id": 6012, @@ -85756,7 +85714,7 @@ "examine": "A bunch of nasturtiums.", "wiki_name": "Nasturtiums", "wiki_url": "https://oldschool.runescape.wiki/w/Nasturtiums", - "price": 540 + "price": 155 }, "6014": { "id": 6014, @@ -85792,7 +85750,7 @@ "examine": "Don't prick yourself with this.", "wiki_name": "Cactus spine", "wiki_url": "https://oldschool.runescape.wiki/w/Cactus_spine", - "price": 1253 + "price": 2148 }, "6018": { "id": 6018, @@ -85810,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": 60.5 + "price": 62 }, "6020": { "id": 6020, @@ -85826,7 +85784,7 @@ "examine": "A pile of leaves.", "wiki_name": "Leaves", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves", - "price": 6 + "price": 32 }, "6022": { "id": 6022, @@ -85842,7 +85800,7 @@ "examine": "A pile of Oak tree leaves.", "wiki_name": "Leaves (oak)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(oak)", - "price": 28 + "price": 108 }, "6024": { "id": 6024, @@ -85858,7 +85816,7 @@ "examine": "A pile of Willow tree leaves.", "wiki_name": "Leaves (willow)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(willow)", - "price": 30 + "price": 142 }, "6026": { "id": 6026, @@ -85874,7 +85832,7 @@ "examine": "A pile of Yew tree leaves.", "wiki_name": "Leaves (yew)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(yew)", - "price": 107.5 + "price": 464 }, "6028": { "id": 6028, @@ -85890,7 +85848,7 @@ "examine": "A pile of Maple tree leaves.", "wiki_name": "Leaves (maple)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(maple)", - "price": 30 + "price": 303 }, "6030": { "id": 6030, @@ -85906,7 +85864,7 @@ "examine": "A pile of Magic tree leaves.", "wiki_name": "Leaves (magic)", "wiki_url": "https://oldschool.runescape.wiki/w/Leaves_(magic)", - "price": 218 + "price": 697 }, "6032": { "id": 6032, @@ -85924,7 +85882,7 @@ "examine": "Good for plants, helps them grow.", "wiki_name": "Compost", "wiki_url": "https://oldschool.runescape.wiki/w/Compost", - "price": 28.5 + "price": 24 }, "6034": { "id": 6034, @@ -85942,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": 74.5 + "price": 267 }, "6036": { "id": 6036, @@ -85960,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.5 + "price": 138 }, "6038": { "id": 6038, @@ -85978,7 +85936,7 @@ "examine": "I could use this to make jewellery.", "wiki_name": "Magic string", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_string", - "price": 761.5 + "price": 2081 }, "6040": { "id": 6040, @@ -86066,7 +86024,7 @@ "examine": "The roots of the Oak tree.", "wiki_name": "Oak roots", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_roots", - "price": 153 + "price": 30 }, "6045": { "id": 6045, @@ -86084,7 +86042,7 @@ "examine": "The roots of the Willow tree.", "wiki_name": "Willow roots", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_roots", - "price": 71 + "price": 60 }, "6047": { "id": 6047, @@ -86102,7 +86060,7 @@ "examine": "The roots of the Maple tree.", "wiki_name": "Maple roots", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_roots", - "price": 61 + "price": 94 }, "6049": { "id": 6049, @@ -86120,7 +86078,7 @@ "examine": "The roots of the Yew tree.", "wiki_name": "Yew roots", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_roots", - "price": 123.5 + "price": 51 }, "6051": { "id": 6051, @@ -86138,7 +86096,7 @@ "examine": "The roots of the Magic tree.", "wiki_name": "Magic roots", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_roots", - "price": 6182 + "price": 5397 }, "6053": { "id": 6053, @@ -86171,7 +86129,7 @@ "examine": "A handful of weeds.", "wiki_name": "Weeds", "wiki_url": "https://oldschool.runescape.wiki/w/Weeds", - "price": 101 + "price": 151 }, "6057": { "id": 6057, @@ -86252,7 +86210,7 @@ "ranged": 1 } }, - "price": 2000 + "price": 143 }, "6062": { "id": 6062, @@ -86291,7 +86249,7 @@ "ranged": 1 } }, - "price": 663 + "price": 10364 }, "6063": { "id": 6063, @@ -87514,7 +87472,7 @@ "defence": 40 } }, - "price": 21946.5 + "price": 55778 }, "6129": { "id": 6129, @@ -87594,7 +87552,7 @@ "defence": 40 } }, - "price": 37522.5 + "price": 42400 }, "6131": { "id": 6131, @@ -87635,7 +87593,7 @@ "ranged": 40 } }, - "price": 42434.5 + "price": 36034 }, "6133": { "id": 6133, @@ -87676,7 +87634,7 @@ "ranged": 40 } }, - "price": 4235 + "price": 3568 }, "6135": { "id": 6135, @@ -87717,7 +87675,7 @@ "ranged": 40 } }, - "price": 7338.5 + "price": 10016 }, "6137": { "id": 6137, @@ -87758,7 +87716,7 @@ "magic": 40 } }, - "price": 76004.5 + "price": 91485 }, "6139": { "id": 6139, @@ -87799,7 +87757,7 @@ "magic": 40 } }, - "price": 32493 + "price": 26034 }, "6141": { "id": 6141, @@ -87840,7 +87798,7 @@ "magic": 40 } }, - "price": 23318.5 + "price": 24100 }, "6143": { "id": 6143, @@ -87881,7 +87839,7 @@ "magic": 40 } }, - "price": 9000 + "price": 8348 }, "6145": { "id": 6145, @@ -87919,7 +87877,7 @@ "slot": "feet", "requirements": null }, - "price": 314.5 + "price": 463 }, "6147": { "id": 6147, @@ -87957,7 +87915,7 @@ "slot": "feet", "requirements": null }, - "price": 19500 + "price": 17564 }, "6149": { "id": 6149, @@ -87995,7 +87953,7 @@ "slot": "hands", "requirements": null }, - "price": 9975 + "price": 10500 }, "6151": { "id": 6151, @@ -88033,7 +87991,7 @@ "slot": "hands", "requirements": null }, - "price": 407.5 + "price": 573 }, "6153": { "id": 6153, @@ -88071,7 +88029,7 @@ "slot": "hands", "requirements": null }, - "price": 132500 + "price": 80000 }, "6155": { "id": 6155, @@ -88089,7 +88047,7 @@ "examine": "A sturdy piece of dagannoth hide.", "wiki_name": "Dagannoth hide", "wiki_url": "https://oldschool.runescape.wiki/w/Dagannoth_hide", - "price": 376.5 + "price": 231 }, "6157": { "id": 6157, @@ -88107,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": 11298.5 + "price": 11250 }, "6159": { "id": 6159, @@ -88125,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": 19806 + "price": 6700 }, "6161": { "id": 6161, @@ -88143,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": 22664 + "price": 12200 }, "6163": { "id": 6163, @@ -88161,7 +88119,7 @@ "examine": "A fearsome looking skull.", "wiki_name": "Skull piece", "wiki_url": "https://oldschool.runescape.wiki/w/Skull_piece", - "price": 78193 + "price": 71764 }, "6165": { "id": 6165, @@ -88179,7 +88137,7 @@ "examine": "A slightly damaged ribcage.", "wiki_name": "Ribcage piece", "wiki_url": "https://oldschool.runescape.wiki/w/Ribcage_piece", - "price": 10014 + "price": 17550 }, "6167": { "id": 6167, @@ -88197,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, @@ -88215,7 +88173,7 @@ "examine": "A toughened chunk of dagannoth hide.", "wiki_name": "Circular hide", "wiki_url": "https://oldschool.runescape.wiki/w/Circular_hide", - "price": 5130 + "price": 17736 }, "6171": { "id": 6171, @@ -88233,7 +88191,7 @@ "examine": "A tattered chunk of dagannoth hide.", "wiki_name": "Flattened hide", "wiki_url": "https://oldschool.runescape.wiki/w/Flattened_hide", - "price": 9041.5 + "price": 7157 }, "6173": { "id": 6173, @@ -88251,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, @@ -88650,7 +88608,7 @@ "examine": "Teak logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Teak pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_pyre_logs", - "price": 2108 + "price": 2610 }, "6213": { "id": 6213, @@ -88668,7 +88626,7 @@ "examine": "Mahogany logs prepared with sacred oil for a funeral pyre.", "wiki_name": "Mahogany pyre logs", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_pyre_logs", - "price": 2819 + "price": 2026 }, "6215": { "id": 6215, @@ -89088,7 +89046,7 @@ "defence": 25 } }, - "price": 5117.5 + "price": 4551 }, "6237": { "id": 6237, @@ -89127,7 +89085,7 @@ "defence": 25 } }, - "price": 5034 + "price": 1756 }, "6239": { "id": 6239, @@ -89508,7 +89466,7 @@ "defence": 25 } }, - "price": 5174.5 + "price": 32153 }, "6259": { "id": 6259, @@ -89547,7 +89505,7 @@ "defence": 25 } }, - "price": 4769 + "price": 786 }, "6261": { "id": 6261, @@ -89928,7 +89886,7 @@ "defence": 25 } }, - "price": 3472 + "price": 2261 }, "6281": { "id": 6281, @@ -89946,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": 181 + "price": 182 }, "6283": { "id": 6283, @@ -89964,7 +89922,7 @@ "examine": "A wooden pole for use in primitive construction.", "wiki_name": "Thatch spar med", "wiki_url": "https://oldschool.runescape.wiki/w/Thatch_spar_med", - "price": 75 + "price": 1 }, "6285": { "id": 6285, @@ -90000,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": 28 + "price": 123 }, "6289": { "id": 6289, @@ -90018,7 +89976,7 @@ "examine": "Nicely tanned skin from a snake.", "wiki_name": "Snakeskin", "wiki_url": "https://oldschool.runescape.wiki/w/Snakeskin", - "price": 25 + "price": 14 }, "6291": { "id": 6291, @@ -90036,7 +89994,7 @@ "examine": "Its creeping days are over!", "wiki_name": "Spider carcass", "wiki_url": "https://oldschool.runescape.wiki/w/Spider_carcass", - "price": 118.5 + "price": 139 }, "6293": { "id": 6293, @@ -90104,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": 162 + "price": 35 }, "6301": { "id": 6301, @@ -90153,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": 150 + "price": 12 }, "6306": { "id": 6306, @@ -90170,7 +90128,7 @@ "examine": "Karamja currency.", "wiki_name": "Trading sticks", "wiki_url": "https://oldschool.runescape.wiki/w/Trading_sticks", - "price": 6.5 + "price": 10 }, "6311": { "id": 6311, @@ -90188,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": 974554.5 + "price": 676136 }, "6313": { "id": 6313, @@ -90261,7 +90219,7 @@ } ] }, - "price": 1746.5 + "price": 1466 }, "6315": { "id": 6315, @@ -90334,7 +90292,7 @@ } ] }, - "price": 20616.5 + "price": 7575 }, "6317": { "id": 6317, @@ -90407,7 +90365,7 @@ } ] }, - "price": 16455 + "price": 18415 }, "6319": { "id": 6319, @@ -90424,7 +90382,7 @@ "examine": "A giant mosquito's proboscis, aerodynamic and sharp!", "wiki_name": "Proboscis", "wiki_url": "https://oldschool.runescape.wiki/w/Proboscis", - "price": 365.5 + "price": 381 }, "6322": { "id": 6322, @@ -90465,7 +90423,7 @@ "defence": 30 } }, - "price": 622 + "price": 1048 }, "6324": { "id": 6324, @@ -90506,7 +90464,7 @@ "defence": 30 } }, - "price": 522 + "price": 1619 }, "6326": { "id": 6326, @@ -90547,7 +90505,7 @@ "defence": 30 } }, - "price": 459 + "price": 275 }, "6328": { "id": 6328, @@ -90588,7 +90546,7 @@ "defence": 30 } }, - "price": 361.5 + "price": 422 }, "6330": { "id": 6330, @@ -90629,7 +90587,7 @@ "defence": 30 } }, - "price": 114.5 + "price": 453 }, "6332": { "id": 6332, @@ -90647,7 +90605,7 @@ "examine": "Some well-cut mahogany logs.", "wiki_name": "Mahogany logs", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_logs", - "price": 464.5 + "price": 530 }, "6333": { "id": 6333, @@ -90665,7 +90623,7 @@ "examine": "Some well-cut teak logs.", "wiki_name": "Teak logs", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_logs", - "price": 148.5 + "price": 290 }, "6335": { "id": 6335, @@ -90741,7 +90699,7 @@ "slot": "head", "requirements": null }, - "price": 2024 + "price": 2301 }, "6339": { "id": 6339, @@ -90779,7 +90737,7 @@ "slot": "head", "requirements": null }, - "price": 2207.5 + "price": 2594 }, "6341": { "id": 6341, @@ -90817,7 +90775,7 @@ "slot": "body", "requirements": null }, - "price": 2277.5 + "price": 4588 }, "6343": { "id": 6343, @@ -90855,7 +90813,7 @@ "slot": "legs", "requirements": null }, - "price": 4987.5 + "price": 1852 }, "6345": { "id": 6345, @@ -90893,7 +90851,7 @@ "slot": "head", "requirements": null }, - "price": 1717 + "price": 11588 }, "6347": { "id": 6347, @@ -90969,7 +90927,7 @@ "slot": "feet", "requirements": null }, - "price": 2698.5 + "price": 1284 }, "6351": { "id": 6351, @@ -91007,7 +90965,7 @@ "slot": "body", "requirements": null }, - "price": 7510 + "price": 4560 }, "6353": { "id": 6353, @@ -91045,7 +91003,7 @@ "slot": "legs", "requirements": null }, - "price": 9050.5 + "price": 2919 }, "6355": { "id": 6355, @@ -91083,7 +91041,7 @@ "slot": "head", "requirements": null }, - "price": 1773 + "price": 6362 }, "6357": { "id": 6357, @@ -91121,7 +91079,7 @@ "slot": "feet", "requirements": null }, - "price": 1199.5 + "price": 535 }, "6359": { "id": 6359, @@ -91197,7 +91155,7 @@ "slot": "body", "requirements": null }, - "price": 1998 + "price": 1750 }, "6363": { "id": 6363, @@ -91235,7 +91193,7 @@ "slot": "legs", "requirements": null }, - "price": 780.5 + "price": 1251 }, "6365": { "id": 6365, @@ -91311,7 +91269,7 @@ "slot": "feet", "requirements": null }, - "price": 4332.5 + "price": 1485 }, "6369": { "id": 6369, @@ -91349,7 +91307,7 @@ "slot": "hands", "requirements": null }, - "price": 2072.5 + "price": 858 }, "6371": { "id": 6371, @@ -91387,7 +91345,7 @@ "slot": "body", "requirements": null }, - "price": 4123.5 + "price": 5456 }, "6373": { "id": 6373, @@ -91425,7 +91383,7 @@ "slot": "legs", "requirements": null }, - "price": 1392 + "price": 1217 }, "6375": { "id": 6375, @@ -91463,7 +91421,7 @@ "slot": "head", "requirements": null }, - "price": 2719.5 + "price": 1580 }, "6377": { "id": 6377, @@ -91501,7 +91459,7 @@ "slot": "feet", "requirements": null }, - "price": 12834.5 + "price": 49500 }, "6379": { "id": 6379, @@ -91539,7 +91497,7 @@ "slot": "hands", "requirements": null }, - "price": 1023 + "price": 501 }, "6382": { "id": 6382, @@ -91577,7 +91535,7 @@ "slot": "head", "requirements": null }, - "price": 388 + "price": 1528 }, "6384": { "id": 6384, @@ -91615,7 +91573,7 @@ "slot": "body", "requirements": null }, - "price": 388.5 + "price": 672 }, "6386": { "id": 6386, @@ -91653,7 +91611,7 @@ "slot": "legs", "requirements": null }, - "price": 2599.5 + "price": 727 }, "6388": { "id": 6388, @@ -91691,7 +91649,7 @@ "slot": "body", "requirements": null }, - "price": 621 + "price": 655 }, "6390": { "id": 6390, @@ -91729,7 +91687,7 @@ "slot": "legs", "requirements": null }, - "price": 1840.5 + "price": 572 }, "6392": { "id": 6392, @@ -91767,7 +91725,7 @@ "slot": "head", "requirements": null }, - "price": 381.5 + "price": 1150 }, "6394": { "id": 6394, @@ -91805,7 +91763,7 @@ "slot": "body", "requirements": null }, - "price": 175.5 + "price": 1001 }, "6396": { "id": 6396, @@ -91843,7 +91801,7 @@ "slot": "legs", "requirements": null }, - "price": 4740 + "price": 1376 }, "6398": { "id": 6398, @@ -91881,7 +91839,7 @@ "slot": "legs", "requirements": null }, - "price": 501 + "price": 438 }, "6400": { "id": 6400, @@ -91919,7 +91877,7 @@ "slot": "head", "requirements": null }, - "price": 340 + "price": 806 }, "6402": { "id": 6402, @@ -91957,7 +91915,7 @@ "slot": "body", "requirements": null }, - "price": 632 + "price": 4507 }, "6404": { "id": 6404, @@ -91995,7 +91953,7 @@ "slot": "legs", "requirements": null }, - "price": 205 + "price": 506 }, "6406": { "id": 6406, @@ -92099,7 +92057,7 @@ } ] }, - "price": 2131.5 + "price": 1 }, "6410": { "id": 6410, @@ -92165,7 +92123,7 @@ } ] }, - "price": 607 + "price": 850 }, "6412": { "id": 6412, @@ -92231,7 +92189,7 @@ } ] }, - "price": 6478.5 + "price": 1 }, "6414": { "id": 6414, @@ -92297,7 +92255,7 @@ } ] }, - "price": 760 + "price": 1814 }, "6416": { "id": 6416, @@ -92363,7 +92321,7 @@ } ] }, - "price": 2434 + "price": 1006 }, "6418": { "id": 6418, @@ -92429,7 +92387,7 @@ } ] }, - "price": 1543.5 + "price": 1289 }, "6420": { "id": 6420, @@ -92495,7 +92453,7 @@ } ] }, - "price": 1916 + "price": 2250 }, "6448": { "id": 6448, @@ -92803,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": 8.5 + "price": 25 }, "6472": { "id": 6472, @@ -92821,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": 24 + "price": 2 }, "6474": { "id": 6474, @@ -92839,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": 13 + "price": 11 }, "6476": { "id": 6476, @@ -92857,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": 1 + "price": 11 }, "6478": { "id": 6478, @@ -92992,7 +92950,7 @@ } ] }, - "price": 2524 + "price": 2673 }, "6523": { "id": 6523, @@ -93067,7 +93025,7 @@ } ] }, - "price": 350344.5 + "price": 370439 }, "6524": { "id": 6524, @@ -93107,7 +93065,7 @@ "defence": 60 } }, - "price": 480174.5 + "price": 422482 }, "6525": { "id": 6525, @@ -93182,7 +93140,7 @@ } ] }, - "price": 75452 + "price": 55472 }, "6526": { "id": 6526, @@ -93265,7 +93223,7 @@ } ] }, - "price": 439125 + "price": 339483 }, "6527": { "id": 6527, @@ -93333,7 +93291,7 @@ } ] }, - "price": 142618 + "price": 352500 }, "6528": { "id": 6528, @@ -93401,7 +93359,7 @@ } ] }, - "price": 252913 + "price": 348960 }, "6529": { "id": 6529, @@ -93895,7 +93853,7 @@ } ] }, - "price": 28248.5 + "price": 31219 }, "6563": { "id": 6563, @@ -93978,7 +93936,7 @@ } ] }, - "price": 48000.5 + "price": 77656 }, "6568": { "id": 6568, @@ -94016,7 +93974,7 @@ "slot": "cape", "requirements": null }, - "price": 607479 + "price": 541843 }, "6570": { "id": 6570, @@ -94068,7 +94026,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut onyx", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_onyx", - "price": 2376834.5 + "price": 1770283 }, "6573": { "id": 6573, @@ -94086,7 +94044,7 @@ "examine": "This looks valuable.", "wiki_name": "Onyx", "wiki_url": "https://oldschool.runescape.wiki/w/Onyx", - "price": 2350372 + "price": 1775550 }, "6575": { "id": 6575, @@ -94124,7 +94082,7 @@ "slot": "ring", "requirements": null }, - "price": 1772158.5 + "price": 1686567 }, "6577": { "id": 6577, @@ -94162,7 +94120,7 @@ "slot": "neck", "requirements": null }, - "price": 1930000 + "price": 1800000 }, "6579": { "id": 6579, @@ -94180,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": 1950000 + "price": 2002781 }, "6581": { "id": 6581, @@ -94218,7 +94176,7 @@ "slot": "neck", "requirements": null }, - "price": 2184313 + "price": 1638043 }, "6583": { "id": 6583, @@ -94256,7 +94214,7 @@ "slot": "ring", "requirements": null }, - "price": 2582500 + "price": 1847570 }, "6585": { "id": 6585, @@ -94294,7 +94252,7 @@ "slot": "neck", "requirements": null }, - "price": 2372536.5 + "price": 1779342 }, "6587": { "id": 6587, @@ -94369,7 +94327,7 @@ } ] }, - "price": 2466.5 + "price": 207 }, "6589": { "id": 6589, @@ -94444,7 +94402,7 @@ } ] }, - "price": 1142.5 + "price": 2188 }, "6591": { "id": 6591, @@ -94594,7 +94552,7 @@ } ] }, - "price": 130.5 + "price": 318 }, "6595": { "id": 6595, @@ -94744,7 +94702,7 @@ } ] }, - "price": 348 + "price": 176 }, "6599": { "id": 6599, @@ -94813,7 +94771,7 @@ } ] }, - "price": 2444 + "price": 1092 }, "6601": { "id": 6601, @@ -94888,7 +94846,7 @@ } ] }, - "price": 10305 + "price": 5305 }, "6603": { "id": 6603, @@ -94970,7 +94928,7 @@ } ] }, - "price": 765.5 + "price": 2773 }, "6605": { "id": 6605, @@ -95045,7 +95003,7 @@ } ] }, - "price": 2410.5 + "price": 894 }, "6607": { "id": 6607, @@ -95120,7 +95078,7 @@ } ] }, - "price": 1492.5 + "price": 1050 }, "6609": { "id": 6609, @@ -95195,7 +95153,7 @@ } ] }, - "price": 1683 + "price": 10760 }, "6611": { "id": 6611, @@ -95270,7 +95228,7 @@ } ] }, - "price": 4052.5 + "price": 625 }, "6613": { "id": 6613, @@ -95338,7 +95296,7 @@ } ] }, - "price": 847.5 + "price": 545 }, "6615": { "id": 6615, @@ -95378,7 +95336,7 @@ "defence": 10 } }, - "price": 760.5 + "price": 979 }, "6617": { "id": 6617, @@ -95418,7 +95376,7 @@ "defence": 10 } }, - "price": 4014 + "price": 5120 }, "6619": { "id": 6619, @@ -95458,7 +95416,7 @@ "defence": 10 } }, - "price": 881.5 + "price": 863 }, "6621": { "id": 6621, @@ -95498,7 +95456,7 @@ "defence": 10 } }, - "price": 581.5 + "price": 6 }, "6623": { "id": 6623, @@ -95538,7 +95496,7 @@ "defence": 10 } }, - "price": 1143.5 + "price": 2562 }, "6625": { "id": 6625, @@ -95578,7 +95536,7 @@ "defence": 10 } }, - "price": 2897 + "price": 2757 }, "6627": { "id": 6627, @@ -95618,7 +95576,7 @@ "defence": 10 } }, - "price": 7521.5 + "price": 6197 }, "6629": { "id": 6629, @@ -95658,7 +95616,7 @@ "defence": 10 } }, - "price": 596 + "price": 320 }, "6631": { "id": 6631, @@ -95698,7 +95656,7 @@ "defence": 10 } }, - "price": 15000.5 + "price": 1021 }, "6633": { "id": 6633, @@ -95738,7 +95696,7 @@ "defence": 10 } }, - "price": 3681 + "price": 1688 }, "6635": { "id": 6635, @@ -96258,7 +96216,7 @@ "examine": "An empty fishbowl.", "wiki_name": "Fishbowl (Empty)", "wiki_url": "https://oldschool.runescape.wiki/w/Fishbowl#Empty", - "price": 23.5 + "price": 37 }, "6668": { "id": 6668, @@ -96444,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": 21.5 + "price": 17 }, "6683": { "id": 6683, @@ -96478,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": 10317 + "price": 15183 }, "6687": { "id": 6687, @@ -96496,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": 7530.5 + "price": 11041 }, "6689": { "id": 6689, @@ -96514,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": 5019.5 + "price": 7480 }, "6691": { "id": 6691, @@ -96532,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": 2518 + "price": 3959 }, "6693": { "id": 6693, @@ -96550,7 +96508,7 @@ "examine": "A crushed bird's nest.", "wiki_name": "Crushed nest", "wiki_url": "https://oldschool.runescape.wiki/w/Crushed_nest", - "price": 6305.5 + "price": 7926 }, "6695": { "id": 6695, @@ -96591,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": 20.5 + "price": 45 }, "6699": { "id": 6699, @@ -96625,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": 142.5 + "price": 242 }, "6703": { "id": 6703, @@ -96643,7 +96601,7 @@ "examine": "A baked potato with butter.", "wiki_name": "Potato with butter", "wiki_url": "https://oldschool.runescape.wiki/w/Potato_with_butter", - "price": 346 + "price": 480 }, "6705": { "id": 6705, @@ -96661,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": 246 + "price": 348 }, "6707": { "id": 6707, @@ -96948,7 +96906,7 @@ } ] }, - "price": 22500 + "price": 45663 }, "6728": { "id": 6728, @@ -96980,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": 9969.5 + "price": 8150 }, "6731": { "id": 6731, @@ -97018,7 +96976,7 @@ "slot": "ring", "requirements": null }, - "price": 391738 + "price": 555677 }, "6733": { "id": 6733, @@ -97056,7 +97014,7 @@ "slot": "ring", "requirements": null }, - "price": 3270861.5 + "price": 3531373 }, "6735": { "id": 6735, @@ -97094,7 +97052,7 @@ "slot": "ring", "requirements": null }, - "price": 54042 + "price": 85198 }, "6737": { "id": 6737, @@ -97132,7 +97090,7 @@ "slot": "ring", "requirements": null }, - "price": 2817683.5 + "price": 4685975 }, "6739": { "id": 6739, @@ -97207,7 +97165,7 @@ } ] }, - "price": 50657.5 + "price": 64155 }, "6741": { "id": 6741, @@ -97455,7 +97413,7 @@ "slot": "body", "requirements": null }, - "price": 2587.5 + "price": 924 }, "6752": { "id": 6752, @@ -97493,7 +97451,7 @@ "slot": "legs", "requirements": null }, - "price": 1675 + "price": 508 }, "6754": { "id": 6754, @@ -97637,7 +97595,7 @@ } ] }, - "price": 9500 + "price": 7568 }, "6762": { "id": 6762, @@ -97703,7 +97661,7 @@ } ] }, - "price": 7257.5 + "price": 7257 }, "6764": { "id": 6764, @@ -97769,7 +97727,7 @@ } ] }, - "price": 10100.5 + "price": 4535 }, "6766": { "id": 6766, @@ -98512,7 +98470,7 @@ "examine": "Better eat this before it melts.", "wiki_name": "Choc-ice", "wiki_url": "https://oldschool.runescape.wiki/w/Choc-ice", - "price": 138 + "price": 196 }, "6796": { "id": 6796, @@ -98719,7 +98677,7 @@ "strength": 50 } }, - "price": 41211.5 + "price": 41211 }, "6810": { "id": 6810, @@ -98760,7 +98718,7 @@ "examine": "Bones of a large flying creature!", "wiki_name": "Wyvern bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wyvern_bones", - "price": 2712.5 + "price": 2681 }, "6814": { "id": 6814, @@ -98777,7 +98735,7 @@ "examine": "This would make warm clothing.", "wiki_name": "Fur", "wiki_url": "https://oldschool.runescape.wiki/w/Fur", - "price": 947.5 + "price": 489 }, "6817": { "id": 6817, @@ -99271,7 +99229,7 @@ "highalch": 0, "weight": 6.35, "release_date": "2014-12-18", - "examine": "A box full of puppets. Bring to the Taverly members gate.", + "examine": "A box full of puppets. Bring to the Taverley members gate.", "wiki_name": "Puppet box (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Puppet_box#Full", "price": 0 @@ -99954,7 +99912,7 @@ "magic": 60 } }, - "price": 2391136 + "price": 3105006 }, "6891": { "id": 6891, @@ -99972,7 +99930,7 @@ "examine": "A book about the Training Arena.", "wiki_name": "Arena book", "wiki_url": "https://oldschool.runescape.wiki/w/Arena_book", - "price": 442 + "price": 390 }, "6893": { "id": 6893, @@ -100254,7 +100212,7 @@ } ] }, - "price": 165190 + "price": 224245 }, "6910": { "id": 6910, @@ -100336,7 +100294,7 @@ } ] }, - "price": 435167 + "price": 685211 }, "6912": { "id": 6912, @@ -100418,7 +100376,7 @@ } ] }, - "price": 1677500 + "price": 1599912 }, "6914": { "id": 6914, @@ -100500,7 +100458,7 @@ } ] }, - "price": 3018162 + "price": 2211202 }, "6916": { "id": 6916, @@ -100541,7 +100499,7 @@ "defence": 25 } }, - "price": 2332715 + "price": 1883532 }, "6918": { "id": 6918, @@ -100582,7 +100540,7 @@ "defence": 25 } }, - "price": 1619396 + "price": 976108 }, "6920": { "id": 6920, @@ -100623,7 +100581,7 @@ "defence": 25 } }, - "price": 466377.5 + "price": 393500 }, "6922": { "id": 6922, @@ -100664,7 +100622,7 @@ "defence": 25 } }, - "price": 739721 + "price": 720000 }, "6924": { "id": 6924, @@ -100705,7 +100663,7 @@ "defence": 25 } }, - "price": 3164845.5 + "price": 2109500 }, "6926": { "id": 6926, @@ -100947,7 +100905,7 @@ "slot": "cape", "requirements": null }, - "price": 2750 + "price": 2496 }, "6961": { "id": 6961, @@ -100977,7 +100935,7 @@ "examine": "A freshly made triangle sandwich.", "wiki_name": "Triangle sandwich", "wiki_url": "https://oldschool.runescape.wiki/w/Triangle_sandwich", - "price": 404.5 + "price": 375 }, "6963": { "id": 6963, @@ -101074,7 +101032,7 @@ "examine": "A tiny chunk of sandstone.", "wiki_name": "Sandstone (1kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Sandstone#1kg", - "price": 15.5 + "price": 15 }, "6973": { "id": 6973, @@ -101092,7 +101050,7 @@ "examine": "A small chunk of sandstone.", "wiki_name": "Sandstone (2kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Sandstone#2kg", - "price": 29 + "price": 801 }, "6975": { "id": 6975, @@ -101128,7 +101086,7 @@ "examine": "A large chunk of sandstone.", "wiki_name": "Sandstone (10kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Sandstone#10kg", - "price": 1544.5 + "price": 2875 }, "6979": { "id": 6979, @@ -101146,7 +101104,7 @@ "examine": "A tiny chunk of granite.", "wiki_name": "Granite (500g)", "wiki_url": "https://oldschool.runescape.wiki/w/Granite#500g", - "price": 400 + "price": 75 }, "6981": { "id": 6981, @@ -101164,7 +101122,7 @@ "examine": "A small chunk of granite.", "wiki_name": "Granite (2kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Granite#2kg", - "price": 54 + "price": 17 }, "6983": { "id": 6983, @@ -101182,7 +101140,7 @@ "examine": "A medium-sized chunk of granite.", "wiki_name": "Granite (5kg)", "wiki_url": "https://oldschool.runescape.wiki/w/Granite#5kg", - "price": 503.5 + "price": 652 }, "6985": { "id": 6985, @@ -101517,7 +101475,7 @@ "slayer": 33 } }, - "price": 1403 + "price": 181 }, "7053": { "id": 7053, @@ -101571,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": 143.5 + "price": 217 }, "7056": { "id": 7056, @@ -101589,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": 228.5 + "price": 355 }, "7058": { "id": 7058, @@ -101607,7 +101565,7 @@ "examine": "A baked potato with mushroom and onions.", "wiki_name": "Mushroom potato", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom_potato", - "price": 519 + "price": 1092 }, "7060": { "id": 7060, @@ -101625,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": 991.5 + "price": 1688 }, "7062": { "id": 7062, @@ -101643,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": 2529 + "price": 320 }, "7064": { "id": 7064, @@ -101679,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": 637.5 + "price": 1099 }, "7068": { "id": 7068, @@ -101697,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": 591 + "price": 1150 }, "7070": { "id": 7070, @@ -101733,7 +101691,7 @@ "examine": "A bowl of spicy sauce.", "wiki_name": "Spicy sauce", "wiki_url": "https://oldschool.runescape.wiki/w/Spicy_sauce", - "price": 1165 + "price": 1350 }, "7074": { "id": 7074, @@ -101751,7 +101709,7 @@ "examine": "A bowl of chopped garlic.", "wiki_name": "Chopped garlic", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_garlic", - "price": 2502 + "price": 282 }, "7076": { "id": 7076, @@ -101769,7 +101727,7 @@ "examine": "A bowl of uncooked egg.", "wiki_name": "Uncooked egg", "wiki_url": "https://oldschool.runescape.wiki/w/Uncooked_egg", - "price": 557.5 + "price": 3738 }, "7078": { "id": 7078, @@ -101787,7 +101745,7 @@ "examine": "A bowl of scrambled egg.", "wiki_name": "Scrambled egg", "wiki_url": "https://oldschool.runescape.wiki/w/Scrambled_egg", - "price": 1277.5 + "price": 6280 }, "7080": { "id": 7080, @@ -101823,7 +101781,7 @@ "examine": "A bowl of fried Bittercap mushrooms.", "wiki_name": "Fried mushrooms", "wiki_url": "https://oldschool.runescape.wiki/w/Fried_mushrooms", - "price": 106.5 + "price": 76 }, "7084": { "id": 7084, @@ -101841,7 +101799,7 @@ "examine": "A bowl of sliced, fried onions.", "wiki_name": "Fried onions", "wiki_url": "https://oldschool.runescape.wiki/w/Fried_onions", - "price": 2 + "price": 32 }, "7086": { "id": 7086, @@ -101859,7 +101817,7 @@ "examine": "A bowl of finely chopped tuna.", "wiki_name": "Chopped tuna", "wiki_url": "https://oldschool.runescape.wiki/w/Chopped_tuna", - "price": 2629.5 + "price": 366 }, "7088": { "id": 7088, @@ -101877,7 +101835,7 @@ "examine": "A bowl of cooked sweetcorn.", "wiki_name": "Sweetcorn (bowl)", "wiki_url": "https://oldschool.runescape.wiki/w/Sweetcorn_(bowl)", - "price": 336.5 + "price": 550 }, "7090": { "id": 7090, @@ -101987,7 +101945,7 @@ "slot": "body", "requirements": null }, - "price": 112.5 + "price": 223 }, "7112": { "id": 7112, @@ -102025,7 +101983,7 @@ "slot": "head", "requirements": null }, - "price": 612.5 + "price": 689 }, "7114": { "id": 7114, @@ -102063,7 +102021,7 @@ "slot": "feet", "requirements": null }, - "price": 923.5 + "price": 1010 }, "7116": { "id": 7116, @@ -102101,7 +102059,7 @@ "slot": "legs", "requirements": null }, - "price": 311 + "price": 418 }, "7118": { "id": 7118, @@ -102191,7 +102149,7 @@ "slot": "body", "requirements": null }, - "price": 793.5 + "price": 2424 }, "7124": { "id": 7124, @@ -102229,7 +102187,7 @@ "slot": "head", "requirements": null }, - "price": 333.5 + "price": 615 }, "7126": { "id": 7126, @@ -102267,7 +102225,7 @@ "slot": "legs", "requirements": null }, - "price": 174.5 + "price": 2401 }, "7128": { "id": 7128, @@ -102305,7 +102263,7 @@ "slot": "body", "requirements": null }, - "price": 6142.5 + "price": 2423 }, "7130": { "id": 7130, @@ -102343,7 +102301,7 @@ "slot": "head", "requirements": null }, - "price": 785 + "price": 275 }, "7132": { "id": 7132, @@ -102381,7 +102339,7 @@ "slot": "legs", "requirements": null }, - "price": 388.5 + "price": 1603 }, "7134": { "id": 7134, @@ -102419,7 +102377,7 @@ "slot": "body", "requirements": null }, - "price": 9500 + "price": 32 }, "7136": { "id": 7136, @@ -102457,7 +102415,7 @@ "slot": "head", "requirements": null }, - "price": 659.5 + "price": 338 }, "7138": { "id": 7138, @@ -102495,7 +102453,7 @@ "slot": "legs", "requirements": null }, - "price": 84.5 + "price": 721 }, "7140": { "id": 7140, @@ -102935,7 +102893,7 @@ } ] }, - "price": 136997.5 + "price": 130943 }, "7159": { "id": 7159, @@ -102975,7 +102933,7 @@ "slayer": 37 } }, - "price": 234.5 + "price": 518 }, "7160": { "id": 7160, @@ -103002,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": 255 + "price": 67 }, "7164": { "id": 7164, @@ -103052,7 +103010,7 @@ "examine": "Needs to be baked before I can use it.", "wiki_name": "Raw mud pie", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_mud_pie", - "price": 683 + "price": 1141 }, "7170": { "id": 7170, @@ -103118,7 +103076,7 @@ } ] }, - "price": 3651 + "price": 1867 }, "7172": { "id": 7172, @@ -103168,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": 435.5 + "price": 667 }, "7178": { "id": 7178, @@ -103186,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": 141.5 + "price": 131 }, "7180": { "id": 7180, @@ -103270,7 +103228,7 @@ "examine": "Bounty of the sea.", "wiki_name": "Fish pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Fish_pie#Full", - "price": 375 + "price": 125 }, "7190": { "id": 7190, @@ -103354,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": 157.5 + "price": 149 }, "7200": { "id": 7200, @@ -103420,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": 3183.5 + "price": 4589 }, "7208": { "id": 7208, @@ -103438,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": 714 + "price": 846 }, "7210": { "id": 7210, @@ -103504,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": 1163 + "price": 1120 }, "7218": { "id": 7218, @@ -103522,7 +103480,7 @@ "examine": "All the fruits of a very small forest.", "wiki_name": "Summer pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Summer_pie#Full", - "price": 694 + "price": 962 }, "7220": { "id": 7220, @@ -103572,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": 75.5 + "price": 121 }, "7224": { "id": 7224, @@ -103606,7 +103564,7 @@ "examine": "An iron spit.", "wiki_name": "Iron spit", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_spit", - "price": 173 + "price": 339 }, "7226": { "id": 7226, @@ -103656,20 +103614,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Skewered_chompy", "price": 0 }, - "7255": { - "id": 7255, - "name": "Clue scroll (hard)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2022-02-16", - "examine": "A clue!", - "wiki_name": "Clue scroll (hard, cryptic 39)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard,_cryptic_39)", - "price": 0 - }, "7269": { "id": 7269, "name": "Challenge scroll (hard)", @@ -103758,7 +103702,7 @@ "slot": "head", "requirements": null }, - "price": 3845 + "price": 5404 }, "7323": { "id": 7323, @@ -103796,7 +103740,7 @@ "slot": "head", "requirements": null }, - "price": 7999.5 + "price": 12148 }, "7325": { "id": 7325, @@ -103834,7 +103778,7 @@ "slot": "head", "requirements": null }, - "price": 6155 + "price": 9680 }, "7327": { "id": 7327, @@ -103872,7 +103816,7 @@ "slot": "head", "requirements": null }, - "price": 5108 + "price": 9457 }, "7329": { "id": 7329, @@ -103889,7 +103833,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Red firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Red_firelighter", - "price": 39 + "price": 107 }, "7330": { "id": 7330, @@ -103906,7 +103850,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Green firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Green_firelighter", - "price": 52 + "price": 128 }, "7331": { "id": 7331, @@ -103923,7 +103867,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Blue firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Blue_firelighter", - "price": 90 + "price": 70 }, "7332": { "id": 7332, @@ -103962,7 +103906,7 @@ "defence": 10 } }, - "price": 3534.5 + "price": 2530 }, "7334": { "id": 7334, @@ -104001,7 +103945,7 @@ "defence": 30 } }, - "price": 3154 + "price": 2777 }, "7336": { "id": 7336, @@ -104040,7 +103984,7 @@ "defence": 40 } }, - "price": 55442 + "price": 56950 }, "7338": { "id": 7338, @@ -104079,7 +104023,7 @@ "defence": 10 } }, - "price": 1838 + "price": 2598 }, "7340": { "id": 7340, @@ -104118,7 +104062,7 @@ "defence": 30 } }, - "price": 4000 + "price": 2856 }, "7342": { "id": 7342, @@ -104157,7 +104101,7 @@ "defence": 40 } }, - "price": 34835 + "price": 39891 }, "7344": { "id": 7344, @@ -104196,7 +104140,7 @@ "defence": 10 } }, - "price": 3592.5 + "price": 2412 }, "7346": { "id": 7346, @@ -104235,7 +104179,7 @@ "defence": 30 } }, - "price": 3000 + "price": 2581 }, "7348": { "id": 7348, @@ -104274,7 +104218,7 @@ "defence": 40 } }, - "price": 34649.5 + "price": 34649 }, "7350": { "id": 7350, @@ -104313,7 +104257,7 @@ "defence": 10 } }, - "price": 1803.5 + "price": 2569 }, "7352": { "id": 7352, @@ -104352,7 +104296,7 @@ "defence": 30 } }, - "price": 2888 + "price": 2767 }, "7354": { "id": 7354, @@ -104391,7 +104335,7 @@ "defence": 40 } }, - "price": 46397.5 + "price": 39579 }, "7356": { "id": 7356, @@ -104430,7 +104374,7 @@ "defence": 10 } }, - "price": 2025.5 + "price": 2386 }, "7358": { "id": 7358, @@ -104469,7 +104413,7 @@ "defence": 30 } }, - "price": 2803.5 + "price": 2803 }, "7360": { "id": 7360, @@ -104508,7 +104452,7 @@ "defence": 40 } }, - "price": 34053.5 + "price": 34053 }, "7362": { "id": 7362, @@ -104548,7 +104492,7 @@ "defence": 20 } }, - "price": 13371.5 + "price": 6320 }, "7364": { "id": 7364, @@ -104588,7 +104532,7 @@ "defence": 20 } }, - "price": 3746.5 + "price": 1893 }, "7366": { "id": 7366, @@ -104628,7 +104572,7 @@ "defence": 1 } }, - "price": 5903.5 + "price": 4045 }, "7368": { "id": 7368, @@ -104668,7 +104612,7 @@ "defence": 1 } }, - "price": 5747.5 + "price": 6704 }, "7370": { "id": 7370, @@ -104708,7 +104652,7 @@ "defence": 40 } }, - "price": 4001.5 + "price": 6274 }, "7372": { "id": 7372, @@ -104748,7 +104692,7 @@ "defence": 40 } }, - "price": 6407.5 + "price": 4100 }, "7374": { "id": 7374, @@ -104789,7 +104733,7 @@ "defence": 40 } }, - "price": 5172 + "price": 5101 }, "7376": { "id": 7376, @@ -104830,7 +104774,7 @@ "defence": 40 } }, - "price": 7430.5 + "price": 3881 }, "7378": { "id": 7378, @@ -104869,7 +104813,7 @@ "ranged": 40 } }, - "price": 27502.5 + "price": 52121 }, "7380": { "id": 7380, @@ -104908,7 +104852,7 @@ "ranged": 40 } }, - "price": 3575 + "price": 5250 }, "7382": { "id": 7382, @@ -104988,7 +104932,7 @@ "ranged": 50 } }, - "price": 2301 + "price": 3059 }, "7386": { "id": 7386, @@ -105025,7 +104969,7 @@ "slot": "legs", "requirements": null }, - "price": 17954.5 + "price": 16438 }, "7388": { "id": 7388, @@ -105062,7 +105006,7 @@ "slot": "legs", "requirements": null }, - "price": 4978.5 + "price": 7655 }, "7390": { "id": 7390, @@ -105099,7 +105043,7 @@ "slot": "body", "requirements": null }, - "price": 130500 + "price": 193288 }, "7392": { "id": 7392, @@ -105136,7 +105080,7 @@ "slot": "body", "requirements": null }, - "price": 28249 + "price": 23500 }, "7394": { "id": 7394, @@ -105173,7 +105117,7 @@ "slot": "head", "requirements": null }, - "price": 131901 + "price": 145914 }, "7396": { "id": 7396, @@ -105210,7 +105154,7 @@ "slot": "head", "requirements": null }, - "price": 48803.5 + "price": 1240255 }, "7398": { "id": 7398, @@ -105251,7 +105195,7 @@ "magic": 40 } }, - "price": 46751 + "price": 66034 }, "7399": { "id": 7399, @@ -105292,7 +105236,7 @@ "magic": 40 } }, - "price": 80292.5 + "price": 89732 }, "7400": { "id": 7400, @@ -105333,7 +105277,7 @@ "magic": 40 } }, - "price": 9000 + "price": 9328 }, "7404": { "id": 7404, @@ -105531,7 +105475,7 @@ "examine": "A mole claw.", "wiki_name": "Mole claw", "wiki_url": "https://oldschool.runescape.wiki/w/Mole_claw", - "price": 6479.5 + "price": 9303 }, "7418": { "id": 7418, @@ -105549,7 +105493,7 @@ "examine": "The skin of a large mole.", "wiki_name": "Mole skin", "wiki_url": "https://oldschool.runescape.wiki/w/Mole_skin", - "price": 4380.5 + "price": 7697 }, "7420": { "id": 7420, @@ -105799,7 +105743,7 @@ } ] }, - "price": 725 + "price": 537 }, "7435": { "id": 7435, @@ -105872,7 +105816,7 @@ } ] }, - "price": 5247 + "price": 30 }, "7437": { "id": 7437, @@ -105945,7 +105889,7 @@ } ] }, - "price": 1968 + "price": 638 }, "7439": { "id": 7439, @@ -106018,7 +105962,7 @@ } ] }, - "price": 2557 + "price": 1747 }, "7441": { "id": 7441, @@ -106084,7 +106028,7 @@ } ] }, - "price": 682 + "price": 684 }, "7443": { "id": 7443, @@ -106157,7 +106101,7 @@ } ] }, - "price": 4085.5 + "price": 750 }, "7445": { "id": 7445, @@ -106223,7 +106167,7 @@ } ] }, - "price": 22845 + "price": 14048 }, "7447": { "id": 7447, @@ -106298,7 +106242,7 @@ } ] }, - "price": 3756.5 + "price": 6603 }, "7449": { "id": 7449, @@ -106437,7 +106381,7 @@ } ] }, - "price": 13941.5 + "price": 14924 }, "7453": { "id": 7453, @@ -106850,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": 1700 + "price": 2500 }, "7470": { "id": 7470, @@ -107455,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": 298.5 + "price": 380 }, "7523": { "id": 7523, @@ -107913,7 +107857,7 @@ "examine": "The uncooked meat of a Jubbly bird.", "wiki_name": "Raw jubbly", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_jubbly", - "price": 458 + "price": 300 }, "7568": { "id": 7568, @@ -107931,7 +107875,7 @@ "examine": "Lovely Jubbly!", "wiki_name": "Cooked jubbly", "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_jubbly", - "price": 1775 + "price": 850 }, "7570": { "id": 7570, @@ -109365,7 +109309,7 @@ "examine": "It's ground up silver.", "wiki_name": "Silver dust", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_dust", - "price": 222 + "price": 728 }, "7652": { "id": 7652, @@ -109447,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": 131.5 + "price": 4938 }, "7662": { "id": 7662, @@ -109465,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": 88 + "price": 154 }, "7664": { "id": 7664, @@ -109483,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": 241 + "price": 424 }, "7666": { "id": 7666, @@ -109501,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": 106.5 + "price": 221 }, "7668": { "id": 7668, @@ -109569,7 +109513,7 @@ } ] }, - "price": 2118.5 + "price": 2519 }, "7671": { "id": 7671, @@ -110540,7 +110484,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy soldier (Normal)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_soldier#Normal", - "price": 1879 + "price": 2195 }, "7761": { "id": 7761, @@ -110558,7 +110502,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy soldier (Wound)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_soldier#Wound", - "price": 6414.5 + "price": 1750 }, "7763": { "id": 7763, @@ -110576,7 +110520,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy doll (Normal)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_doll#Normal", - "price": 2626.5 + "price": 2145 }, "7765": { "id": 7765, @@ -110594,7 +110538,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy doll (Wound)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_doll#Wound", - "price": 3287.5 + "price": 3657 }, "7767": { "id": 7767, @@ -110612,7 +110556,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy mouse (Normal)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_mouse#Normal", - "price": 2406.5 + "price": 3118 }, "7769": { "id": 7769, @@ -110630,7 +110574,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy mouse (Wound)", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_mouse#Wound", - "price": 3458 + "price": 3884 }, "7771": { "id": 7771, @@ -110648,7 +110592,7 @@ "examine": "Nice bit of crafting!", "wiki_name": "Toy cat", "wiki_url": "https://oldschool.runescape.wiki/w/Toy_cat", - "price": 3169.5 + "price": 3294 }, "7773": { "id": 7773, @@ -111058,7 +111002,7 @@ "examine": "Scaly but not slimy!", "wiki_name": "Snake hide (swamp)", "wiki_url": "https://oldschool.runescape.wiki/w/Snake_hide_(swamp)", - "price": 69.5 + "price": 222 }, "7803": { "id": 7803, @@ -112969,7 +112913,7 @@ "examine": "A very good vintage.", "wiki_name": "Bottle of wine", "wiki_url": "https://oldschool.runescape.wiki/w/Bottle_of_wine", - "price": 843 + "price": 810 }, "7921": { "id": 7921, @@ -113140,7 +113084,7 @@ "examine": "An unimbued rune of extra capability.", "wiki_name": "Pure essence", "wiki_url": "https://oldschool.runescape.wiki/w/Pure_essence", - "price": 2.5 + "price": 2 }, "7938": { "id": 7938, @@ -113172,7 +113116,7 @@ "examine": "A word in your shell-like.", "wiki_name": "Tortoise shell", "wiki_url": "https://oldschool.runescape.wiki/w/Tortoise_shell", - "price": 1801.5 + "price": 11005 }, "7941": { "id": 7941, @@ -113232,7 +113176,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw monkfish", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_monkfish", - "price": 168.5 + "price": 500 }, "7946": { "id": 7946, @@ -113250,7 +113194,7 @@ "examine": "A tasty fish.", "wiki_name": "Monkfish", "wiki_url": "https://oldschool.runescape.wiki/w/Monkfish", - "price": 264 + "price": 969 }, "7948": { "id": 7948, @@ -114053,7 +113997,7 @@ "examine": "A teleport to Varrock.", "wiki_name": "Varrock teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Varrock_teleport_(tablet)", - "price": 450 + "price": 452 }, "8008": { "id": 8008, @@ -114070,7 +114014,7 @@ "examine": "A teleport to Lumbridge.", "wiki_name": "Lumbridge teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Lumbridge_teleport_(tablet)", - "price": 440.5 + "price": 527 }, "8009": { "id": 8009, @@ -114087,7 +114031,7 @@ "examine": "A teleport to Falador.", "wiki_name": "Falador teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Falador_teleport_(tablet)", - "price": 453 + "price": 482 }, "8010": { "id": 8010, @@ -114104,7 +114048,7 @@ "examine": "A teleport to Camelot.", "wiki_name": "Camelot teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Camelot_teleport_(tablet)", - "price": 305.5 + "price": 526 }, "8011": { "id": 8011, @@ -114121,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": 342.5 + "price": 393 }, "8012": { "id": 8012, @@ -114138,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": 663 + "price": 594 }, "8013": { "id": 8013, @@ -114155,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": 436.5 + "price": 485 }, "8014": { "id": 8014, @@ -114172,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": 651.5 + "price": 452 }, "8015": { "id": 8015, @@ -114189,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": 876.5 + "price": 529 }, "8016": { "id": 8016, @@ -114206,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": 585 + "price": 88 }, "8017": { "id": 8017, @@ -114223,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": 1240 + "price": 901 }, "8018": { "id": 8018, @@ -114240,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": 680 + "price": 767 }, "8019": { "id": 8019, @@ -114257,7 +114201,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant diamond", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_diamond", - "price": 675 + "price": 1 }, "8020": { "id": 8020, @@ -114274,7 +114218,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant dragonstone", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_dragonstone", - "price": 1005 + "price": 1 }, "8021": { "id": 8021, @@ -114291,7 +114235,7 @@ "examine": "A tablet containing a magic spell.", "wiki_name": "Enchant onyx", "wiki_url": "https://oldschool.runescape.wiki/w/Enchant_onyx", - "price": 365.5 + "price": 143 }, "8022": { "id": 8022, @@ -117536,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": 3122 + "price": 3645 }, "8421": { "id": 8421, @@ -117572,7 +117516,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged willow tree", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_willow_tree", - "price": 10027.5 + "price": 12150 }, "8425": { "id": 8425, @@ -117590,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, @@ -117608,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, @@ -117644,7 +117588,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged plant 1", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_plant_1", - "price": 1845 + "price": 1735 }, "8433": { "id": 8433, @@ -117662,7 +117606,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged plant 2", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_plant_2", - "price": 5709 + "price": 5951 }, "8435": { "id": 8435, @@ -117680,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, @@ -117698,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": 3325.5 + "price": 4639 }, "8439": { "id": 8439, @@ -117716,7 +117660,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Nice hedge (bagged)", "wiki_url": "https://oldschool.runescape.wiki/w/Nice_hedge_(bagged)", - "price": 13025 + "price": 11326 }, "8441": { "id": 8441, @@ -117734,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": 15947 + "price": 6620 }, "8443": { "id": 8443, @@ -117752,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": 24074.5 + "price": 23422 }, "8445": { "id": 8445, @@ -117770,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": 16564.5 + "price": 18249 }, "8447": { "id": 8447, @@ -117788,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": 37000 + "price": 31556 }, "8449": { "id": 8449, @@ -117806,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": 89984 + "price": 114739 }, "8451": { "id": 8451, @@ -117824,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": 7163 + "price": 7404 }, "8453": { "id": 8453, @@ -117842,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": 8431.5 + "price": 7600 }, "8455": { "id": 8455, @@ -117860,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": 26070 + "price": 20651 }, "8457": { "id": 8457, @@ -117878,7 +117822,7 @@ "examine": "You can plant this in your garden.", "wiki_name": "Bagged sunflower", "wiki_url": "https://oldschool.runescape.wiki/w/Bagged_sunflower", - "price": 7562 + "price": 6008 }, "8459": { "id": 8459, @@ -117896,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": 7682.5 + "price": 12749 }, "8461": { "id": 8461, @@ -117914,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": 18500 + "price": 18233 }, "8463": { "id": 8463, @@ -118522,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": 409.5 + "price": 1991 }, "8498": { "id": 8498, @@ -118540,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": 464.5 + "price": 1809 }, "8500": { "id": 8500, @@ -118558,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": 145 + "price": 44 }, "8502": { "id": 8502, @@ -118576,7 +118520,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak chair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_chair_(flatpack)", - "price": 21.5 + "price": 26 }, "8504": { "id": 8504, @@ -118594,7 +118538,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak armchair (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_armchair_(flatpack)", - "price": 13 + "price": 134 }, "8506": { "id": 8506, @@ -118612,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": 13.5 + "price": 16 }, "8508": { "id": 8508, @@ -118630,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": 131.5 + "price": 1033 }, "8510": { "id": 8510, @@ -118648,7 +118592,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Bookcase (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Bookcase_(flatpack)", - "price": 25 + "price": 250 }, "8512": { "id": 8512, @@ -118666,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": 75.5 + "price": 125 }, "8514": { "id": 8514, @@ -118702,7 +118646,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Beer barrel (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Beer_barrel_(flatpack)", - "price": 50 + "price": 57 }, "8518": { "id": 8518, @@ -118720,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": 14352 + "price": 10058 }, "8520": { "id": 8520, @@ -118738,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": 11000 + "price": 5040 }, "8522": { "id": 8522, @@ -118756,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": 18427 + "price": 7696 }, "8524": { "id": 8524, @@ -118774,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, @@ -118792,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": 13250 + "price": 9906 }, "8528": { "id": 8528, @@ -118828,7 +118772,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak kitchen table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_kitchen_table_(flatpack)", - "price": 5.5 + "price": 110 }, "8532": { "id": 8532, @@ -118976,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": 3.5 + "price": 5 }, "8550": { "id": 8550, @@ -118994,7 +118938,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak dining table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_dining_table_(flatpack)", - "price": 2.5 + "price": 127 }, "8552": { "id": 8552, @@ -119012,7 +118956,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Carved oak table (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Carved_oak_table_(flatpack)", - "price": 39 + "price": 2 }, "8554": { "id": 8554, @@ -119030,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": 5.5 + "price": 6 }, "8556": { "id": 8556, @@ -119048,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": 117.5 + "price": 10 }, "8558": { "id": 8558, @@ -119066,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": 120 + "price": 18 }, "8560": { "id": 8560, @@ -119084,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": 988889.5 + "price": 309801 }, "8562": { "id": 8562, @@ -119102,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": 22 + "price": 12 }, "8564": { "id": 8564, @@ -119120,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": 65 + "price": 68 }, "8566": { "id": 8566, @@ -119138,7 +119082,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Carved oak bench (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Carved_oak_bench_(flatpack)", - "price": 82 + "price": 132 }, "8568": { "id": 8568, @@ -119174,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": 22.5 + "price": 27 }, "8572": { "id": 8572, @@ -119192,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": 193.5 + "price": 1375 }, "8574": { "id": 8574, @@ -119210,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": 420000 + "price": 420060 }, "8576": { "id": 8576, @@ -119228,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": 1640 + "price": 1725 }, "8578": { "id": 8578, @@ -119246,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": 95000 + "price": 35250 }, "8580": { "id": 8580, @@ -119264,7 +119208,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Large oak bed (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Large_oak_bed_(flatpack)", - "price": 3308.5 + "price": 491 }, "8582": { "id": 8582, @@ -119282,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, @@ -119300,7 +119244,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Large teak bed (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Large_teak_bed_(flatpack)", - "price": 11500 + "price": 6203 }, "8586": { "id": 8586, @@ -119318,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": 5432 + "price": 5940 }, "8588": { "id": 8588, @@ -119336,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": 203033 + "price": 385000 }, "8590": { "id": 8590, @@ -119372,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": 1341 + "price": 1400 }, "8594": { "id": 8594, @@ -119390,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": 224493.5 + "price": 745500 }, "8596": { "id": 8596, @@ -119426,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, @@ -119444,7 +119388,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak dresser (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_dresser_(flatpack)", - "price": 562.5 + "price": 386 }, "8602": { "id": 8602, @@ -119462,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": 1100 + "price": 1073 }, "8604": { "id": 8604, @@ -119480,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, @@ -119498,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": 1197.5 + "price": 8094 }, "8608": { "id": 8608, @@ -119516,7 +119460,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Gilded dresser (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_dresser_(flatpack)", - "price": 172500 + "price": 497500 }, "8610": { "id": 8610, @@ -119534,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": 7 + "price": 51 }, "8612": { "id": 8612, @@ -119552,7 +119496,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak drawers (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_drawers_(flatpack)", - "price": 27.5 + "price": 34 }, "8614": { "id": 8614, @@ -119570,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, @@ -119588,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, @@ -119606,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": 137.5 + "price": 5064 }, "8620": { "id": 8620, @@ -119624,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, @@ -119642,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": 280315 + "price": 546000 }, "8624": { "id": 8624, @@ -122700,7 +122644,7 @@ "examine": "A plank of sturdy oak.", "wiki_name": "Oak plank", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_plank", - "price": 409 + "price": 461 }, "8780": { "id": 8780, @@ -122718,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, @@ -122754,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, @@ -122772,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, @@ -122790,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, @@ -122826,7 +122770,7 @@ "examine": "A clockwork mechanism.", "wiki_name": "Clockwork", "wiki_url": "https://oldschool.runescape.wiki/w/Clockwork", - "price": 730 + "price": 720 }, "8794": { "id": 8794, @@ -122862,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": 453.5 + "price": 742 }, "8839": { "id": 8839, @@ -123632,7 +123576,7 @@ } ] }, - "price": 3100 + "price": 4096 }, "8874": { "id": 8874, @@ -123705,7 +123649,7 @@ } ] }, - "price": 375 + "price": 5311 }, "8876": { "id": 8876, @@ -123778,7 +123722,7 @@ } ] }, - "price": 2509.5 + "price": 1750 }, "8878": { "id": 8878, @@ -123851,7 +123795,7 @@ } ] }, - "price": 6915.5 + "price": 10567 }, "8880": { "id": 8880, @@ -123919,7 +123863,7 @@ } ] }, - "price": 2258.5 + "price": 2625 }, "8882": { "id": 8882, @@ -123958,7 +123902,7 @@ "ranged": 28 } }, - "price": 17 + "price": 4 }, "8887": { "id": 8887, @@ -124051,7 +123995,7 @@ "combat": 40 } }, - "price": 687400 + "price": 636836 }, "8903": { "id": 8903, @@ -124453,7 +124397,7 @@ "combat": 40 } }, - "price": 711222 + "price": 657858 }, "8923": { "id": 8923, @@ -124565,7 +124509,7 @@ "slot": "head", "requirements": null }, - "price": 159.5 + "price": 5 }, "8926": { "id": 8926, @@ -124603,7 +124547,7 @@ "slot": "head", "requirements": null }, - "price": 48.5 + "price": 560 }, "8927": { "id": 8927, @@ -124641,7 +124585,7 @@ "slot": "head", "requirements": null }, - "price": 431.5 + "price": 1116 }, "8928": { "id": 8928, @@ -124679,7 +124623,7 @@ "slot": "head", "requirements": null }, - "price": 80210 + "price": 156656 }, "8929": { "id": 8929, @@ -126306,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, @@ -126323,7 +126267,7 @@ "examine": "Information regarding the Stronghold of Security.", "wiki_name": "Stronghold notes", "wiki_url": "https://oldschool.runescape.wiki/w/Stronghold_notes", - "price": 202.5 + "price": 166 }, "9005": { "id": 9005, @@ -126698,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": 273.5 + "price": 893 }, "9028": { "id": 9028, @@ -126716,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, @@ -126734,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": 174 + "price": 175 }, "9032": { "id": 9032, @@ -126752,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": 247.5 + "price": 223 }, "9034": { "id": 9034, @@ -126770,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, @@ -126788,7 +126732,7 @@ "examine": "A small statuette.", "wiki_name": "Pottery statuette", "wiki_url": "https://oldschool.runescape.wiki/w/Pottery_statuette", - "price": 1045.5 + "price": 98 }, "9038": { "id": 9038, @@ -126824,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, @@ -126922,7 +126866,7 @@ "examine": "Delicious and nutritious. Well, nutritious anyway.", "wiki_name": "Locust meat", "wiki_url": "https://oldschool.runescape.wiki/w/Locust_meat", - "price": 2526 + "price": 12535 }, "9054": { "id": 9054, @@ -127309,7 +127253,7 @@ "examine": "Used for Lunar spells.", "wiki_name": "Astral rune", "wiki_url": "https://oldschool.runescape.wiki/w/Astral_rune", - "price": 69 + "price": 93 }, "9076": { "id": 9076, @@ -128279,7 +128223,7 @@ "ranged": 26 } }, - "price": 4 + "price": 24 }, "9141": { "id": 9141, @@ -128318,7 +128262,7 @@ "ranged": 31 } }, - "price": 8 + "price": 32 }, "9142": { "id": 9142, @@ -128357,7 +128301,7 @@ "ranged": 36 } }, - "price": 40 + "price": 29 }, "9143": { "id": 9143, @@ -128396,7 +128340,7 @@ "ranged": 46 } }, - "price": 67.5 + "price": 11 }, "9144": { "id": 9144, @@ -128435,7 +128379,7 @@ "ranged": 61 } }, - "price": 112 + "price": 64 }, "9145": { "id": 9145, @@ -128474,7 +128418,7 @@ "ranged": 26 } }, - "price": 50 + "price": 39 }, "9174": { "id": 9174, @@ -128674,7 +128618,7 @@ } ] }, - "price": 1850 + "price": 747 }, "9179": { "id": 9179, @@ -128742,7 +128686,7 @@ } ] }, - "price": 293 + "price": 586 }, "9181": { "id": 9181, @@ -128810,7 +128754,7 @@ } ] }, - "price": 2426 + "price": 1644 }, "9183": { "id": 9183, @@ -128878,7 +128822,7 @@ } ] }, - "price": 4226 + "price": 4692 }, "9185": { "id": 9185, @@ -128946,7 +128890,7 @@ } ] }, - "price": 9446 + "price": 10486 }, "9187": { "id": 9187, @@ -128963,7 +128907,7 @@ "examine": "Jade bolt tips.", "wiki_name": "Jade bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Jade_bolt_tips", - "price": 13 + "price": 17 }, "9188": { "id": 9188, @@ -128997,7 +128941,7 @@ "examine": "Sapphire bolt tips.", "wiki_name": "Sapphire bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Sapphire_bolt_tips", - "price": 43 + "price": 50 }, "9190": { "id": 9190, @@ -129014,7 +128958,7 @@ "examine": "Emerald bolt tips.", "wiki_name": "Emerald bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Emerald_bolt_tips", - "price": 54 + "price": 46 }, "9191": { "id": 9191, @@ -129065,7 +129009,7 @@ "examine": "Dragonstone bolt tips.", "wiki_name": "Dragonstone bolt tips", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonstone_bolt_tips", - "price": 603.5 + "price": 498 }, "9194": { "id": 9194, @@ -129121,7 +129065,7 @@ "ranged": 1 } }, - "price": 7.5 + "price": 9 }, "9237": { "id": 9237, @@ -129196,7 +129140,7 @@ "ranged": 1 } }, - "price": 8 + "price": 9 }, "9239": { "id": 9239, @@ -129235,7 +129179,7 @@ "ranged": 31 } }, - "price": 5 + "price": 8 }, "9240": { "id": 9240, @@ -129274,7 +129218,7 @@ "ranged": 36 } }, - "price": 19 + "price": 20 }, "9241": { "id": 9241, @@ -129313,7 +129257,7 @@ "ranged": 36 } }, - "price": 22.5 + "price": 21 }, "9242": { "id": 9242, @@ -129352,7 +129296,7 @@ "ranged": 46 } }, - "price": 62.5 + "price": 44 }, "9243": { "id": 9243, @@ -129391,7 +129335,7 @@ "ranged": 61 } }, - "price": 74 + "price": 70 }, "9244": { "id": 9244, @@ -129430,7 +129374,7 @@ "ranged": 61 } }, - "price": 463.5 + "price": 363 }, "9245": { "id": 9245, @@ -129544,7 +129488,7 @@ "ranged": 26 } }, - "price": 17.5 + "price": 3444 }, "9288": { "id": 9288, @@ -129583,7 +129527,7 @@ "ranged": 31 } }, - "price": 144 + "price": 2613 }, "9289": { "id": 9289, @@ -129622,7 +129566,7 @@ "ranged": 36 } }, - "price": 258.5 + "price": 253 }, "9290": { "id": 9290, @@ -129661,7 +129605,7 @@ "ranged": 46 } }, - "price": 365 + "price": 209 }, "9291": { "id": 9291, @@ -129700,7 +129644,7 @@ "ranged": 61 } }, - "price": 274 + "price": 444 }, "9292": { "id": 9292, @@ -129739,7 +129683,7 @@ "ranged": 26 } }, - "price": 21 + "price": 45 }, "9293": { "id": 9293, @@ -129853,7 +129797,7 @@ "ranged": 31 } }, - "price": 354.5 + "price": 319 }, "9296": { "id": 9296, @@ -129892,7 +129836,7 @@ "ranged": 36 } }, - "price": 446 + "price": 441 }, "9297": { "id": 9297, @@ -129970,7 +129914,7 @@ "ranged": 61 } }, - "price": 350 + "price": 471 }, "9299": { "id": 9299, @@ -130009,7 +129953,7 @@ "ranged": 26 } }, - "price": 500.5 + "price": 119 }, "9300": { "id": 9300, @@ -130084,7 +130028,7 @@ "ranged": 26 } }, - "price": 8389 + "price": 737 }, "9302": { "id": 9302, @@ -130123,7 +130067,7 @@ "ranged": 31 } }, - "price": 7500.5 + "price": 583 }, "9303": { "id": 9303, @@ -130162,7 +130106,7 @@ "ranged": 36 } }, - "price": 683 + "price": 1102 }, "9304": { "id": 9304, @@ -130201,7 +130145,7 @@ "ranged": 46 } }, - "price": 756.5 + "price": 847 }, "9305": { "id": 9305, @@ -130240,7 +130184,7 @@ "ranged": 61 } }, - "price": 1087.5 + "price": 961 }, "9306": { "id": 9306, @@ -130279,7 +130223,7 @@ "ranged": 26 } }, - "price": 33277.5 + "price": 150 }, "9335": { "id": 9335, @@ -130354,7 +130298,7 @@ "ranged": 31 } }, - "price": 230.5 + "price": 232 }, "9337": { "id": 9337, @@ -130393,7 +130337,7 @@ "ranged": 36 } }, - "price": 65.5 + "price": 69 }, "9338": { "id": 9338, @@ -130432,7 +130376,7 @@ "ranged": 46 } }, - "price": 129.5 + "price": 125 }, "9339": { "id": 9339, @@ -130471,7 +130415,7 @@ "ranged": 46 } }, - "price": 166.5 + "price": 115 }, "9340": { "id": 9340, @@ -130510,7 +130454,7 @@ "ranged": 61 } }, - "price": 228 + "price": 160 }, "9341": { "id": 9341, @@ -130549,7 +130493,7 @@ "ranged": 61 } }, - "price": 739 + "price": 600 }, "9342": { "id": 9342, @@ -130588,7 +130532,7 @@ "ranged": 61 } }, - "price": 8446.5 + "price": 8446 }, "9375": { "id": 9375, @@ -130605,7 +130549,7 @@ "examine": "Unfeathered bronze crossbow bolts.", "wiki_name": "Bronze bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_bolts_(unf)", - "price": 11 + "price": 16 }, "9376": { "id": 9376, @@ -130636,7 +130580,7 @@ "examine": "Unfeathered iron crossbow bolts.", "wiki_name": "Iron bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_bolts_(unf)", - "price": 17.5 + "price": 22 }, "9378": { "id": 9378, @@ -130653,7 +130597,7 @@ "examine": "Unfeathered steel crossbow bolts.", "wiki_name": "Steel bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_bolts_(unf)", - "price": 52 + "price": 43 }, "9379": { "id": 9379, @@ -130687,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, @@ -130704,7 +130648,7 @@ "examine": "Unfeathered runite crossbow bolts.", "wiki_name": "Runite bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Runite_bolts_(unf)", - "price": 166 + "price": 100 }, "9382": { "id": 9382, @@ -130721,7 +130665,7 @@ "examine": "Unfeathered silver crossbow bolts.", "wiki_name": "Silver bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Silver_bolts_(unf)", - "price": 25.5 + "price": 25 }, "9415": { "id": 9415, @@ -130753,7 +130697,7 @@ "examine": "A mithril grapple tip.", "wiki_name": "Mith grapple tip", "wiki_url": "https://oldschool.runescape.wiki/w/Mith_grapple_tip", - "price": 434.5 + "price": 222 }, "9418": { "id": 9418, @@ -130771,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": 1592.5 + "price": 2903 }, "9419": { "id": 9419, @@ -130811,7 +130755,7 @@ "ranged": 1 } }, - "price": 2112.5 + "price": 1633 }, "9420": { "id": 9420, @@ -130829,7 +130773,7 @@ "examine": "A pair of bronze crossbow limbs.", "wiki_name": "Bronze limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_limbs", - "price": 49 + "price": 43 }, "9422": { "id": 9422, @@ -130861,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, @@ -130879,7 +130823,7 @@ "examine": "A pair of steel crossbow limbs.", "wiki_name": "Steel limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_limbs", - "price": 93.5 + "price": 90 }, "9427": { "id": 9427, @@ -130897,7 +130841,7 @@ "examine": "A pair of mithril crossbow limbs.", "wiki_name": "Mithril limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_limbs", - "price": 600 + "price": 214 }, "9429": { "id": 9429, @@ -130915,7 +130859,7 @@ "examine": "A pair of adamantite crossbow limbs.", "wiki_name": "Adamantite limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Adamantite_limbs", - "price": 1612 + "price": 1060 }, "9431": { "id": 9431, @@ -130933,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, @@ -130963,7 +130907,7 @@ "examine": "A mould for creating silver crossbow bolts.", "wiki_name": "Bolt mould", "wiki_url": "https://oldschool.runescape.wiki/w/Bolt_mould", - "price": 17 + "price": 1 }, "9436": { "id": 9436, @@ -130981,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": 200 + "price": 336 }, "9438": { "id": 9438, @@ -130999,7 +130943,7 @@ "examine": "A string for a crossbow.", "wiki_name": "Crossbow string", "wiki_url": "https://oldschool.runescape.wiki/w/Crossbow_string", - "price": 447.5 + "price": 558 }, "9440": { "id": 9440, @@ -131017,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, @@ -131053,7 +130997,7 @@ "examine": "A willow crossbow stock.", "wiki_name": "Willow stock", "wiki_url": "https://oldschool.runescape.wiki/w/Willow_stock", - "price": 12.5 + "price": 5 }, "9446": { "id": 9446, @@ -131071,7 +131015,7 @@ "examine": "A teak crossbow stock.", "wiki_name": "Teak stock", "wiki_url": "https://oldschool.runescape.wiki/w/Teak_stock", - "price": 39 + "price": 59 }, "9448": { "id": 9448, @@ -131089,7 +131033,7 @@ "examine": "A maple crossbow stock.", "wiki_name": "Maple stock", "wiki_url": "https://oldschool.runescape.wiki/w/Maple_stock", - "price": 2 + "price": 55 }, "9450": { "id": 9450, @@ -131107,7 +131051,7 @@ "examine": "A mahogany crossbow stock.", "wiki_name": "Mahogany stock", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_stock", - "price": 20 + "price": 10 }, "9452": { "id": 9452, @@ -131125,7 +131069,7 @@ "examine": "A yew crossbow stock.", "wiki_name": "Yew stock", "wiki_url": "https://oldschool.runescape.wiki/w/Yew_stock", - "price": 5.5 + "price": 180 }, "9454": { "id": 9454, @@ -131143,7 +131087,7 @@ "examine": "An unstrung bronze crossbow.", "wiki_name": "Bronze crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_crossbow_(u)", - "price": 93 + "price": 675 }, "9456": { "id": 9456, @@ -131175,7 +131119,7 @@ "examine": "An unstrung iron crossbow.", "wiki_name": "Iron crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_crossbow_(u)", - "price": 65 + "price": 142 }, "9459": { "id": 9459, @@ -131193,7 +131137,7 @@ "examine": "An unstrung steel crossbow.", "wiki_name": "Steel crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_crossbow_(u)", - "price": 98.5 + "price": 55 }, "9461": { "id": 9461, @@ -131211,7 +131155,7 @@ "examine": "An unstrung mithril crossbow.", "wiki_name": "Mithril crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_crossbow_(u)", - "price": 488 + "price": 487 }, "9463": { "id": 9463, @@ -131229,7 +131173,7 @@ "examine": "An unstrung adamantite crossbow.", "wiki_name": "Adamant crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_crossbow_(u)", - "price": 2093.5 + "price": 1732 }, "9465": { "id": 9465, @@ -131247,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, @@ -131291,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": 281826 + "price": 173043 }, "9470": { "id": 9470, @@ -131329,7 +131273,7 @@ "slot": "neck", "requirements": null }, - "price": 608494 + "price": 372049 }, "9472": { "id": 9472, @@ -131367,7 +131311,7 @@ "slot": "head", "requirements": null }, - "price": 29600.5 + "price": 45805 }, "9474": { "id": 9474, @@ -131399,7 +131343,7 @@ "examine": "It looks very minty.", "wiki_name": "Mint cake", "wiki_url": "https://oldschool.runescape.wiki/w/Mint_cake", - "price": 58446 + "price": 98000 }, "9477": { "id": 9477, @@ -131531,7 +131475,6 @@ "id": 9486, "name": "Unfinished batta", "members": true, - "tradeable": true, "cost": 2, "lowalch": 0, "highalch": 1, @@ -132482,7 +132425,7 @@ "defence": 5 } }, - "price": 1701 + "price": 576 }, "9632": { "id": 9632, @@ -132548,7 +132491,7 @@ "slot": "body", "requirements": null }, - "price": 5567.5 + "price": 1545 }, "9636": { "id": 9636, @@ -132586,7 +132529,7 @@ "slot": "legs", "requirements": null }, - "price": 1010.5 + "price": 1510 }, "9638": { "id": 9638, @@ -132624,7 +132567,7 @@ "slot": "feet", "requirements": null }, - "price": 903 + "price": 1321 }, "9640": { "id": 9640, @@ -132662,7 +132605,7 @@ "slot": "body", "requirements": null }, - "price": 119.5 + "price": 288 }, "9642": { "id": 9642, @@ -132700,7 +132643,7 @@ "slot": "legs", "requirements": null }, - "price": 28 + "price": 140 }, "9644": { "id": 9644, @@ -132738,7 +132681,7 @@ "slot": "feet", "requirements": null }, - "price": 9838.5 + "price": 364 }, "9646": { "id": 9646, @@ -132991,7 +132934,7 @@ "examine": "Proselyte level armour pack.", "wiki_name": "Proselyte harness m", "wiki_url": "https://oldschool.runescape.wiki/w/Proselyte_harness_m", - "price": 28690.5 + "price": 24040 }, "9668": { "id": 9668, @@ -133007,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, @@ -133025,7 +132968,7 @@ "examine": "Proselyte level armour pack.", "wiki_name": "Proselyte harness f", "wiki_url": "https://oldschool.runescape.wiki/w/Proselyte_harness_f", - "price": 26250 + "price": 20732 }, "9672": { "id": 9672, @@ -133066,7 +133009,7 @@ "prayer": 20 } }, - "price": 4030 + "price": 6235 }, "9674": { "id": 9674, @@ -133107,7 +133050,7 @@ "prayer": 20 } }, - "price": 7547 + "price": 6550 }, "9676": { "id": 9676, @@ -133148,7 +133091,7 @@ "prayer": 20 } }, - "price": 5299.5 + "price": 5854 }, "9678": { "id": 9678, @@ -133189,7 +133132,7 @@ "prayer": 20 } }, - "price": 5695 + "price": 7500 }, "9680": { "id": 9680, @@ -133927,7 +133870,7 @@ "slot": "shield", "requirements": null }, - "price": 37158.5 + "price": 21978 }, "9733": { "id": 9733, @@ -133965,7 +133908,7 @@ "slot": "head", "requirements": null }, - "price": 5107.5 + "price": 5888 }, "9735": { "id": 9735, @@ -133983,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": 67.5 + "price": 34 }, "9736": { "id": 9736, @@ -134001,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": 129 + "price": 107 }, "9739": { "id": 9739, @@ -134019,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": 417 + "price": 222 }, "9741": { "id": 9741, @@ -134037,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": 75 + "price": 179 }, "9743": { "id": 9743, @@ -134055,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": 159.5 + "price": 105 }, "9745": { "id": 9745, @@ -134073,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": 76 + "price": 54 }, "9747": { "id": 9747, @@ -136733,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": 537.5 + "price": 505 }, "9844": { "id": 9844, @@ -136751,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": 1523.5 + "price": 1519 }, "9845": { "id": 9845, @@ -136769,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, @@ -136787,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": 297497.5 + "price": 278447 }, "9847": { "id": 9847, @@ -136805,7 +136748,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Marble cape rack (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Marble_cape_rack_(flatpack)", - "price": 437465.5 + "price": 443537 }, "9848": { "id": 9848, @@ -136823,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": 1005586.5 + "price": 1130976 }, "9849": { "id": 9849, @@ -136841,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": 12 + "price": 24 }, "9850": { "id": 9850, @@ -136859,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": 1000.5 + "price": 28 }, "9851": { "id": 9851, @@ -136877,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": 400 + "price": 1020 }, "9852": { "id": 9852, @@ -136895,7 +136838,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak magic wardrobe (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_magic_wardrobe_(flatpack)", - "price": 5007 + "price": 19 }, "9853": { "id": 9853, @@ -136913,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": 5000 + "price": 55 }, "9854": { "id": 9854, @@ -136949,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": 19.5 + "price": 21 }, "9856": { "id": 9856, @@ -136967,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": 1078 + "price": 1187 }, "9857": { "id": 9857, @@ -136985,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": 306125 + "price": 355000 }, "9858": { "id": 9858, @@ -137003,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": 442848.5 + "price": 440859 }, "9859": { "id": 9859, @@ -137021,7 +136964,7 @@ "examine": "How does it all fit in there?", "wiki_name": "Oak armour case (flatpack)", "wiki_url": "https://oldschool.runescape.wiki/w/Oak_armour_case_(flatpack)", - "price": 24 + "price": 16 }, "9860": { "id": 9860, @@ -137039,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": 4000 + "price": 5081 }, "9861": { "id": 9861, @@ -137057,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": 10253.5 + "price": 3377 }, "9862": { "id": 9862, @@ -137075,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": 27 + "price": 639 }, "9863": { "id": 9863, @@ -137093,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": 572 + "price": 2579 }, "9864": { "id": 9864, @@ -137111,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": 15000 + "price": 2759 }, "9865": { "id": 9865, @@ -137129,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": 20 + "price": 11 }, "9866": { "id": 9866, @@ -137147,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": 193 + "price": 613 }, "9867": { "id": 9867, @@ -137165,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": 4164.5 + "price": 4775 }, "9901": { "id": 9901, @@ -138260,7 +138203,7 @@ "examine": "A nicely roasted bird.", "wiki_name": "Roast bird meat", "wiki_url": "https://oldschool.runescape.wiki/w/Roast_bird_meat", - "price": 93.5 + "price": 8 }, "9982": { "id": 9982, @@ -138378,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": 337.5 + "price": 223 }, "9996": { "id": 9996, @@ -138396,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": 836 + "price": 2000 }, "9998": { "id": 9998, @@ -138414,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": 8706.5 + "price": 2199 }, "10000": { "id": 10000, @@ -138432,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": 7473 + "price": 1619 }, "10002": { "id": 10002, @@ -138450,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": 4000 + "price": 1521 }, "10004": { "id": 10004, @@ -138468,7 +138411,7 @@ "examine": "1 dose of Hunter potion.", "wiki_name": "Hunter potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Hunter_potion#1_dose", - "price": 3000 + "price": 1 }, "10006": { "id": 10006, @@ -138486,7 +138429,7 @@ "examine": "A simple bird catcher.", "wiki_name": "Bird snare", "wiki_url": "https://oldschool.runescape.wiki/w/Bird_snare", - "price": 7.5 + "price": 20 }, "10008": { "id": 10008, @@ -138504,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": 63 + "price": 10 }, "10010": { "id": 10010, @@ -138597,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": 376.5 + "price": 104 }, "10014": { "id": 10014, @@ -138815,7 +138758,7 @@ "examine": "A magical catching box.", "wiki_name": "Magic box", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_box", - "price": 212.5 + "price": 410 }, "10027": { "id": 10027, @@ -138879,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": 17 + "price": 7 }, "10033": { "id": 10033, @@ -138946,7 +138889,7 @@ } ] }, - "price": 777 + "price": 679 }, "10034": { "id": 10034, @@ -139013,7 +138956,7 @@ } ] }, - "price": 1340 + "price": 1434 }, "10035": { "id": 10035, @@ -139053,7 +138996,7 @@ "hunter": 52 } }, - "price": 2425 + "price": 829 }, "10037": { "id": 10037, @@ -139093,7 +139036,7 @@ "hunter": 52 } }, - "price": 10000 + "price": 804 }, "10039": { "id": 10039, @@ -139133,7 +139076,7 @@ "hunter": 52 } }, - "price": 4239.5 + "price": 1715 }, "10041": { "id": 10041, @@ -139173,7 +139116,7 @@ "hunter": 28 } }, - "price": 1928.5 + "price": 561 }, "10043": { "id": 10043, @@ -139213,7 +139156,7 @@ "hunter": 28 } }, - "price": 942.5 + "price": 922 }, "10045": { "id": 10045, @@ -139253,7 +139196,7 @@ "hunter": 28 } }, - "price": 3000 + "price": 258 }, "10047": { "id": 10047, @@ -139293,7 +139236,7 @@ "hunter": 38 } }, - "price": 5150 + "price": 400 }, "10049": { "id": 10049, @@ -139333,7 +139276,7 @@ "hunter": 38 } }, - "price": 1054.5 + "price": 1515 }, "10051": { "id": 10051, @@ -139373,7 +139316,7 @@ "hunter": 38 } }, - "price": 3748 + "price": 7355 }, "10053": { "id": 10053, @@ -139388,7 +139331,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "This should make me harder to spot in wooded areas.", "wiki_name": "Wood camo top", @@ -139411,7 +139353,7 @@ "slot": "body", "requirements": null }, - "price": 3166.5 + "price": 3000 }, "10055": { "id": 10055, @@ -139426,7 +139368,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "These should make me harder to spot in wooded areas.", "wiki_name": "Wood camo legs", @@ -139449,7 +139390,7 @@ "slot": "legs", "requirements": null }, - "price": 8275 + "price": 1850 }, "10057": { "id": 10057, @@ -139464,7 +139405,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "This should make me harder to spot in jungle areas.", "wiki_name": "Jungle camo top", @@ -139487,7 +139427,7 @@ "slot": "body", "requirements": null }, - "price": 5681 + "price": 4000 }, "10059": { "id": 10059, @@ -139502,7 +139442,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "These should make me harder to spot in jungle areas.", "wiki_name": "Jungle camo legs", @@ -139525,7 +139464,7 @@ "slot": "legs", "requirements": null }, - "price": 5484 + "price": 3683 }, "10061": { "id": 10061, @@ -139540,7 +139479,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "This should make me harder to spot in desert areas.", "wiki_name": "Desert camo top", @@ -139563,7 +139501,7 @@ "slot": "body", "requirements": null }, - "price": 8025.5 + "price": 16140 }, "10063": { "id": 10063, @@ -139578,7 +139516,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "These should make me harder to spot in desert areas.", "wiki_name": "Desert camo legs", @@ -139601,7 +139538,7 @@ "slot": "legs", "requirements": null }, - "price": 18479.5 + "price": 14254 }, "10065": { "id": 10065, @@ -139616,7 +139553,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "This should make me harder to spot in polar areas.", "wiki_name": "Polar camo top", @@ -139639,7 +139575,7 @@ "slot": "body", "requirements": null }, - "price": 17586 + "price": 7900 }, "10067": { "id": 10067, @@ -139654,7 +139590,6 @@ "lowalch": 8, "highalch": 12, "weight": 0.226, - "buy_limit": 150, "release_date": "2006-11-21", "examine": "These should make me harder to spot in polar areas.", "wiki_name": "Polar camo legs", @@ -139677,7 +139612,7 @@ "slot": "legs", "requirements": null }, - "price": 8250.5 + "price": 8136 }, "10069": { "id": 10069, @@ -139717,7 +139652,7 @@ "hunter": 40 } }, - "price": 1489 + "price": 951 }, "10071": { "id": 10071, @@ -139757,7 +139692,7 @@ "hunter": 66 } }, - "price": 1362.5 + "price": 3241 }, "10075": { "id": 10075, @@ -139797,7 +139732,7 @@ "hunter": 54 } }, - "price": 3026.5 + "price": 1900 }, "10077": { "id": 10077, @@ -139837,7 +139772,7 @@ "ranged": 1 } }, - "price": 8 + "price": 11 }, "10079": { "id": 10079, @@ -139877,7 +139812,7 @@ "ranged": 40 } }, - "price": 933.5 + "price": 2750 }, "10081": { "id": 10081, @@ -139917,7 +139852,7 @@ "ranged": 50 } }, - "price": 1438.5 + "price": 2262 }, "10083": { "id": 10083, @@ -139957,7 +139892,7 @@ "ranged": 60 } }, - "price": 1553.5 + "price": 1824 }, "10085": { "id": 10085, @@ -139997,7 +139932,7 @@ "ranged": 70 } }, - "price": 2595.5 + "price": 1972 }, "10087": { "id": 10087, @@ -140276,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": 4471.5 + "price": 650 }, "10113": { "id": 10113, @@ -140531,7 +140466,7 @@ "slot": "neck", "requirements": null }, - "price": 2020.5 + "price": 2057 }, "10134": { "id": 10134, @@ -140567,7 +140502,7 @@ "examine": "Well, this would certainly add some colour to a meal.", "wiki_name": "Rainbow fish", "wiki_url": "https://oldschool.runescape.wiki/w/Rainbow_fish", - "price": 73.5 + "price": 175 }, "10138": { "id": 10138, @@ -140585,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": 915.5 + "price": 899 }, "10140": { "id": 10140, @@ -140638,7 +140573,7 @@ "slot": "ammo", "requirements": null }, - "price": 6 + "price": 5 }, "10143": { "id": 10143, @@ -140675,7 +140610,7 @@ "slot": "ammo", "requirements": null }, - "price": 1 + "price": 2 }, "10144": { "id": 10144, @@ -140712,7 +140647,7 @@ "slot": "ammo", "requirements": null }, - "price": 1.5 + "price": 1 }, "10145": { "id": 10145, @@ -140749,7 +140684,7 @@ "slot": "ammo", "requirements": null }, - "price": 4 + "price": 5 }, "10146": { "id": 10146, @@ -141102,7 +141037,7 @@ } ] }, - "price": 24.5 + "price": 23 }, "10156": { "id": 10156, @@ -141170,7 +141105,7 @@ } ] }, - "price": 2896 + "price": 2422 }, "10158": { "id": 10158, @@ -141209,7 +141144,7 @@ "ranged": 50 } }, - "price": 298 + "price": 74 }, "10159": { "id": 10159, @@ -141248,7 +141183,7 @@ "ranged": 50 } }, - "price": 1598.5 + "price": 50 }, "10167": { "id": 10167, @@ -141430,20 +141365,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Feathered_journal", "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 - }, "10280": { "id": 10280, "name": "Willow comp bow", @@ -141509,7 +141430,7 @@ } ] }, - "price": 1238.5 + "price": 5706 }, "10282": { "id": 10282, @@ -141577,7 +141498,7 @@ } ] }, - "price": 859 + "price": 1532 }, "10284": { "id": 10284, @@ -141645,7 +141566,7 @@ } ] }, - "price": 3145.5 + "price": 5186 }, "10286": { "id": 10286, @@ -141684,7 +141605,7 @@ "defence": 40 } }, - "price": 73071 + "price": 97001 }, "10288": { "id": 10288, @@ -141723,7 +141644,7 @@ "defence": 40 } }, - "price": 21883.5 + "price": 35926 }, "10290": { "id": 10290, @@ -141762,7 +141683,7 @@ "defence": 40 } }, - "price": 27216.5 + "price": 35965 }, "10292": { "id": 10292, @@ -141801,7 +141722,7 @@ "defence": 40 } }, - "price": 20449 + "price": 44575 }, "10294": { "id": 10294, @@ -141840,7 +141761,7 @@ "defence": 40 } }, - "price": 25663.5 + "price": 42004 }, "10296": { "id": 10296, @@ -141879,7 +141800,7 @@ "defence": 30 } }, - "price": 1361.5 + "price": 1533 }, "10298": { "id": 10298, @@ -141918,7 +141839,7 @@ "defence": 30 } }, - "price": 4974.5 + "price": 2051 }, "10300": { "id": 10300, @@ -141957,7 +141878,7 @@ "defence": 30 } }, - "price": 1457.5 + "price": 1573 }, "10302": { "id": 10302, @@ -141996,7 +141917,7 @@ "defence": 30 } }, - "price": 3900 + "price": 2770 }, "10304": { "id": 10304, @@ -142035,7 +141956,7 @@ "defence": 30 } }, - "price": 2633 + "price": 2037 }, "10306": { "id": 10306, @@ -142074,7 +141995,7 @@ "defence": 10 } }, - "price": 4266 + "price": 2688 }, "10308": { "id": 10308, @@ -142113,7 +142034,7 @@ "defence": 10 } }, - "price": 2355.5 + "price": 2585 }, "10310": { "id": 10310, @@ -142152,7 +142073,7 @@ "defence": 10 } }, - "price": 1633 + "price": 2427 }, "10312": { "id": 10312, @@ -142191,7 +142112,7 @@ "defence": 10 } }, - "price": 2236.5 + "price": 3691 }, "10314": { "id": 10314, @@ -142230,7 +142151,7 @@ "defence": 10 } }, - "price": 2693.5 + "price": 4061 }, "10316": { "id": 10316, @@ -142268,7 +142189,7 @@ "slot": "body", "requirements": null }, - "price": 16752 + "price": 5577 }, "10318": { "id": 10318, @@ -142306,7 +142227,7 @@ "slot": "body", "requirements": null }, - "price": 16171.5 + "price": 12652 }, "10320": { "id": 10320, @@ -142344,7 +142265,7 @@ "slot": "body", "requirements": null }, - "price": 16185 + "price": 4871 }, "10322": { "id": 10322, @@ -142382,7 +142303,7 @@ "slot": "body", "requirements": null }, - "price": 26579 + "price": 17300 }, "10324": { "id": 10324, @@ -142420,7 +142341,7 @@ "slot": "body", "requirements": null }, - "price": 5983 + "price": 10617 }, "10326": { "id": 10326, @@ -142437,7 +142358,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "Purple firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/Purple_firelighter", - "price": 68.5 + "price": 113 }, "10327": { "id": 10327, @@ -142454,7 +142375,7 @@ "examine": "Makes firelighting a lot easier.", "wiki_name": "White firelighter", "wiki_url": "https://oldschool.runescape.wiki/w/White_firelighter", - "price": 78 + "price": 72 }, "10328": { "id": 10328, @@ -142523,7 +142444,7 @@ "defence": 45 } }, - "price": 38764502.5 + "price": 67388889 }, "10332": { "id": 10332, @@ -142564,7 +142485,7 @@ "defence": 45 } }, - "price": 24400000 + "price": 56394425 }, "10334": { "id": 10334, @@ -142605,7 +142526,7 @@ "defence": 45 } }, - "price": 17094949 + "price": 42250000 }, "10336": { "id": 10336, @@ -142646,7 +142567,7 @@ "defence": 45 } }, - "price": 18069168 + "price": 37706003 }, "10338": { "id": 10338, @@ -142687,7 +142608,7 @@ "defence": 30 } }, - "price": 108483032.5 + "price": 217583000 }, "10340": { "id": 10340, @@ -142728,7 +142649,7 @@ "defence": 30 } }, - "price": 41600002 + "price": 86070210 }, "10342": { "id": 10342, @@ -142769,7 +142690,7 @@ "defence": 30 } }, - "price": 25250000 + "price": 61550000 }, "10344": { "id": 10344, @@ -142810,7 +142731,7 @@ "defence": 30 } }, - "price": 44002500 + "price": 174565921 }, "10346": { "id": 10346, @@ -142850,7 +142771,7 @@ "defence": 65 } }, - "price": 61322224 + "price": 137781500 }, "10348": { "id": 10348, @@ -142890,7 +142811,7 @@ "defence": 65 } }, - "price": 157578004.5 + "price": 266416062 }, "10350": { "id": 10350, @@ -142930,7 +142851,7 @@ "defence": 65 } }, - "price": 40550000 + "price": 86697925 }, "10352": { "id": 10352, @@ -142970,7 +142891,7 @@ "defence": 65 } }, - "price": 73999999.5 + "price": 234750050 }, "10354": { "id": 10354, @@ -143008,7 +142929,7 @@ "slot": "neck", "requirements": null }, - "price": 37192 + "price": 49623 }, "10356": { "id": 10356, @@ -143154,7 +143075,7 @@ "slot": "neck", "requirements": null }, - "price": 50908.5 + "price": 75216 }, "10364": { "id": 10364, @@ -143191,7 +143112,7 @@ "slot": "neck", "requirements": null }, - "price": 16648 + "price": 23240 }, "10366": { "id": 10366, @@ -143228,7 +143149,7 @@ "slot": "neck", "requirements": null }, - "price": 5200.5 + "price": 11302 }, "10368": { "id": 10368, @@ -143269,7 +143190,7 @@ "defence": 40 } }, - "price": 140500.5 + "price": 191759 }, "10370": { "id": 10370, @@ -143310,7 +143231,7 @@ "defence": 40 } }, - "price": 296144 + "price": 345954 }, "10372": { "id": 10372, @@ -143351,7 +143272,7 @@ "defence": 40 } }, - "price": 540808.5 + "price": 657826 }, "10374": { "id": 10374, @@ -143392,7 +143313,7 @@ "defence": 40 } }, - "price": 81332.5 + "price": 105564 }, "10376": { "id": 10376, @@ -143433,7 +143354,7 @@ "defence": 40 } }, - "price": 18885.5 + "price": 48444 }, "10378": { "id": 10378, @@ -143474,7 +143395,7 @@ "defence": 40 } }, - "price": 194125.5 + "price": 208849 }, "10380": { "id": 10380, @@ -143515,7 +143436,7 @@ "defence": 40 } }, - "price": 426681.5 + "price": 476439 }, "10382": { "id": 10382, @@ -143556,7 +143477,7 @@ "defence": 40 } }, - "price": 77750 + "price": 150521 }, "10384": { "id": 10384, @@ -143597,7 +143518,7 @@ "defence": 40 } }, - "price": 52513 + "price": 99250 }, "10386": { "id": 10386, @@ -143638,7 +143559,7 @@ "defence": 40 } }, - "price": 219670.5 + "price": 273311 }, "10388": { "id": 10388, @@ -143679,7 +143600,7 @@ "defence": 40 } }, - "price": 444949.5 + "price": 558219 }, "10390": { "id": 10390, @@ -143758,7 +143679,7 @@ "slot": "head", "requirements": null }, - "price": 2576.5 + "price": 4045 }, "10394": { "id": 10394, @@ -143796,7 +143717,7 @@ "slot": "legs", "requirements": null }, - "price": 2730403.5 + "price": 2496168 }, "10396": { "id": 10396, @@ -143834,7 +143755,7 @@ "slot": "legs", "requirements": null }, - "price": 5085 + "price": 2012 }, "10398": { "id": 10398, @@ -143872,7 +143793,7 @@ "slot": "head", "requirements": null }, - "price": 21424 + "price": 21910 }, "10400": { "id": 10400, @@ -143910,7 +143831,7 @@ "slot": "body", "requirements": null }, - "price": 6653 + "price": 15500 }, "10402": { "id": 10402, @@ -143948,7 +143869,7 @@ "slot": "legs", "requirements": null }, - "price": 1675.5 + "price": 14000 }, "10404": { "id": 10404, @@ -143986,7 +143907,7 @@ "slot": "body", "requirements": null }, - "price": 305 + "price": 29000 }, "10406": { "id": 10406, @@ -144024,7 +143945,7 @@ "slot": "legs", "requirements": null }, - "price": 1722 + "price": 9000 }, "10408": { "id": 10408, @@ -144062,7 +143983,7 @@ "slot": "body", "requirements": null }, - "price": 11796 + "price": 9500 }, "10410": { "id": 10410, @@ -144100,7 +144021,7 @@ "slot": "legs", "requirements": null }, - "price": 1805 + "price": 23499 }, "10412": { "id": 10412, @@ -144138,7 +144059,7 @@ "slot": "body", "requirements": null }, - "price": 10975 + "price": 14000 }, "10414": { "id": 10414, @@ -144176,7 +144097,7 @@ "slot": "legs", "requirements": null }, - "price": 1409.5 + "price": 476172 }, "10416": { "id": 10416, @@ -144214,7 +144135,7 @@ "slot": "body", "requirements": null }, - "price": 892 + "price": 3826 }, "10418": { "id": 10418, @@ -144252,7 +144173,7 @@ "slot": "legs", "requirements": null }, - "price": 2376 + "price": 4894 }, "10420": { "id": 10420, @@ -144290,7 +144211,7 @@ "slot": "body", "requirements": null }, - "price": 5238.5 + "price": 31639 }, "10422": { "id": 10422, @@ -144328,7 +144249,7 @@ "slot": "legs", "requirements": null }, - "price": 2221 + "price": 41500 }, "10424": { "id": 10424, @@ -144366,7 +144287,7 @@ "slot": "body", "requirements": null }, - "price": 2800.5 + "price": 44160 }, "10426": { "id": 10426, @@ -144404,7 +144325,7 @@ "slot": "legs", "requirements": null }, - "price": 366 + "price": 26514 }, "10428": { "id": 10428, @@ -144442,7 +144363,7 @@ "slot": "body", "requirements": null }, - "price": 10000 + "price": 30470 }, "10430": { "id": 10430, @@ -144480,7 +144401,7 @@ "slot": "legs", "requirements": null }, - "price": 1882 + "price": 55000 }, "10432": { "id": 10432, @@ -144518,7 +144439,7 @@ "slot": "body", "requirements": null }, - "price": 1875 + "price": 26342 }, "10434": { "id": 10434, @@ -144556,7 +144477,7 @@ "slot": "legs", "requirements": null }, - "price": 1206 + "price": 52750 }, "10436": { "id": 10436, @@ -144594,7 +144515,7 @@ "slot": "body", "requirements": null }, - "price": 2284.5 + "price": 2650 }, "10438": { "id": 10438, @@ -144632,7 +144553,7 @@ "slot": "legs", "requirements": null }, - "price": 1245.5 + "price": 4463 }, "10440": { "id": 10440, @@ -144714,7 +144635,7 @@ } ] }, - "price": 8049.5 + "price": 9205 }, "10442": { "id": 10442, @@ -144796,7 +144717,7 @@ } ] }, - "price": 8069 + "price": 17669 }, "10444": { "id": 10444, @@ -144878,7 +144799,7 @@ } ] }, - "price": 8054 + "price": 18500 }, "10446": { "id": 10446, @@ -144918,7 +144839,7 @@ "prayer": 40 } }, - "price": 25753 + "price": 53084 }, "10448": { "id": 10448, @@ -144958,7 +144879,7 @@ "prayer": 40 } }, - "price": 29321 + "price": 39750 }, "10450": { "id": 10450, @@ -144998,7 +144919,7 @@ "prayer": 40 } }, - "price": 19169.5 + "price": 35632 }, "10452": { "id": 10452, @@ -145039,7 +144960,7 @@ "magic": 40 } }, - "price": 22204 + "price": 21863 }, "10454": { "id": 10454, @@ -145080,7 +145001,7 @@ "magic": 40 } }, - "price": 19731.5 + "price": 24539 }, "10456": { "id": 10456, @@ -145121,7 +145042,7 @@ "magic": 40 } }, - "price": 19745 + "price": 23451 }, "10458": { "id": 10458, @@ -145161,7 +145082,7 @@ "prayer": 20 } }, - "price": 62836.5 + "price": 80170 }, "10460": { "id": 10460, @@ -145201,7 +145122,7 @@ "prayer": 20 } }, - "price": 55091.5 + "price": 81251 }, "10462": { "id": 10462, @@ -145241,7 +145162,7 @@ "prayer": 20 } }, - "price": 21439 + "price": 53000 }, "10464": { "id": 10464, @@ -145281,7 +145202,7 @@ "prayer": 20 } }, - "price": 49839 + "price": 81929 }, "10466": { "id": 10466, @@ -145321,7 +145242,7 @@ "prayer": 20 } }, - "price": 27737 + "price": 37153 }, "10468": { "id": 10468, @@ -145361,7 +145282,7 @@ "prayer": 20 } }, - "price": 46543 + "price": 66000 }, "10470": { "id": 10470, @@ -145401,7 +145322,7 @@ "prayer": 60 } }, - "price": 6543.5 + "price": 11155 }, "10472": { "id": 10472, @@ -145441,7 +145362,7 @@ "prayer": 60 } }, - "price": 6031.5 + "price": 6549 }, "10474": { "id": 10474, @@ -145481,7 +145402,7 @@ "prayer": 60 } }, - "price": 4250.5 + "price": 4084 }, "10476": { "id": 10476, @@ -145498,7 +145419,7 @@ "examine": "Remember to brush after eating!", "wiki_name": "Purple sweets", "wiki_url": "https://oldschool.runescape.wiki/w/Purple_sweets", - "price": 9100 + "price": 12249 }, "10485": { "id": 10485, @@ -145775,7 +145696,7 @@ "examine": "Shiny!", "wiki_name": "Polished buttons", "wiki_url": "https://oldschool.runescape.wiki/w/Polished_buttons", - "price": 1229 + "price": 6275 }, "10498": { "id": 10498, @@ -145784,8 +145705,6 @@ "equipable": true, "equipable_by_player": true, "cost": 769, - "lowalch": 307, - "highalch": 461, "weight": 4.535, "release_date": "2006-12-12", "examine": "A bagged chicken ready to serve you, magnet in claw.", @@ -145809,7 +145728,9 @@ "slot": "cape", "requirements": null }, - "price": 0 + "price": 0, + "lowalch": 307, + "highalch": 461 }, "10499": { "id": 10499, @@ -145818,8 +145739,6 @@ "equipable": true, "equipable_by_player": true, "cost": 1000, - "lowalch": 400, - "highalch": 600, "weight": 4.535, "release_date": "2006-12-12", "examine": "A superior bagged chicken ready to serve you, magnet in claw.", @@ -145845,7 +145764,9 @@ "ranged": 50 } }, - "price": 0 + "price": 0, + "lowalch": 400, + "highalch": 600 }, "10500": { "id": 10500, @@ -146917,7 +146838,7 @@ "defence": 50 } }, - "price": 53183.5 + "price": 53183 }, "10566": { "id": 10566, @@ -147345,7 +147266,7 @@ "defence": 50 } }, - "price": 41829.5 + "price": 37960 }, "10591": { "id": 10591, @@ -147496,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": 2500 + "price": 1599 }, "10810": { "id": 10810, @@ -147514,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": 445 + "price": 397 }, "10812": { "id": 10812, @@ -147532,7 +147453,7 @@ "examine": "Used to repair bridges.", "wiki_name": "Split log", "wiki_url": "https://oldschool.runescape.wiki/w/Split_log", - "price": 822.5 + "price": 1446 }, "10814": { "id": 10814, @@ -147550,7 +147471,7 @@ "examine": "I can spin this into rope.", "wiki_name": "Hair", "wiki_url": "https://oldschool.runescape.wiki/w/Hair", - "price": 150.5 + "price": 571 }, "10816": { "id": 10816, @@ -147568,7 +147489,7 @@ "examine": "I need to cook this.", "wiki_name": "Raw yak meat", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_yak_meat", - "price": 64 + "price": 53 }, "10818": { "id": 10818, @@ -147586,7 +147507,7 @@ "examine": "Thakkrad, of Neitiznot, can cure this.", "wiki_name": "Yak-hide", "wiki_url": "https://oldschool.runescape.wiki/w/Yak-hide", - "price": 201 + "price": 463 }, "10820": { "id": 10820, @@ -147604,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": 492 + "price": 3087 }, "10822": { "id": 10822, @@ -147644,7 +147565,7 @@ "defence": 20 } }, - "price": 627.5 + "price": 1337 }, "10824": { "id": 10824, @@ -147684,7 +147605,7 @@ "defence": 20 } }, - "price": 310 + "price": 160 }, "10826": { "id": 10826, @@ -147724,7 +147645,7 @@ "defence": 30 } }, - "price": 1189.5 + "price": 4170 }, "10828": { "id": 10828, @@ -148922,7 +148843,7 @@ "examine": "A wooden cat toy.", "wiki_name": "Wooden cat", "wiki_url": "https://oldschool.runescape.wiki/w/Wooden_cat", - "price": 2425.5 + "price": 3817 }, "10893": { "id": 10893, @@ -149176,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, @@ -149194,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, @@ -149212,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": 12184.5 + "price": 11107 }, "10931": { "id": 10931, @@ -149230,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": 8264.5 + "price": 5580 }, "10933": { "id": 10933, @@ -149324,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": 12158 + "price": 6642 }, "10939": { "id": 10939, @@ -149564,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": 1384.5 + "price": 5076 }, "10954": { "id": 10954, @@ -149605,7 +149526,7 @@ "ranged": 25 } }, - "price": 466.5 + "price": 9990 }, "10956": { "id": 10956, @@ -149646,7 +149567,7 @@ "ranged": 25 } }, - "price": 301.5 + "price": 337 }, "10958": { "id": 10958, @@ -149687,7 +149608,7 @@ "ranged": 25 } }, - "price": 713 + "price": 408 }, "10960": { "id": 10960, @@ -149947,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": 512.5 + "price": 198 }, "10980": { "id": 10980, @@ -149979,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": 950.5 + "price": 1208 }, "10983": { "id": 10983, @@ -150211,7 +150132,7 @@ "examine": "A tattered goblin holy book.", "wiki_name": "Goblin book", "wiki_url": "https://oldschool.runescape.wiki/w/Goblin_book", - "price": 111 + "price": 643 }, "11001": { "id": 11001, @@ -150780,7 +150701,7 @@ } ] }, - "price": 289950.5 + "price": 447513 }, "11039": { "id": 11039, @@ -151145,7 +151066,7 @@ } ] }, - "price": 3995, + "price": 755, "lowalch": 400, "highalch": 600 }, @@ -151179,7 +151100,7 @@ "examine": "Used to make bracelets.", "wiki_name": "Bracelet mould", "wiki_url": "https://oldschool.runescape.wiki/w/Bracelet_mould", - "price": 284 + "price": 335 }, "11069": { "id": 11069, @@ -151217,7 +151138,7 @@ "slot": "hands", "requirements": null }, - "price": 243 + "price": 238 }, "11072": { "id": 11072, @@ -151255,7 +151176,7 @@ "slot": "hands", "requirements": null }, - "price": 619.5 + "price": 619 }, "11074": { "id": 11074, @@ -151293,7 +151214,7 @@ "slot": "hands", "requirements": null }, - "price": 594 + "price": 444 }, "11076": { "id": 11076, @@ -151331,7 +151252,7 @@ "slot": "hands", "requirements": null }, - "price": 761 + "price": 764 }, "11079": { "id": 11079, @@ -151368,7 +151289,7 @@ "slot": "hands", "requirements": null }, - "price": 836.5 + "price": 836 }, "11081": { "id": 11081, @@ -151514,7 +151435,7 @@ "slot": "hands", "requirements": null }, - "price": 1376 + "price": 1349 }, "11090": { "id": 11090, @@ -151552,7 +151473,7 @@ "slot": "neck", "requirements": null }, - "price": 2168 + "price": 2088 }, "11092": { "id": 11092, @@ -151628,7 +151549,7 @@ "slot": "hands", "requirements": null }, - "price": 2194.5 + "price": 2194 }, "11097": { "id": 11097, @@ -151994,7 +151915,7 @@ "slot": "hands", "requirements": null }, - "price": 11870.5 + "price": 11870 }, "11117": { "id": 11117, @@ -152187,7 +152108,7 @@ "slot": "hands", "requirements": null }, - "price": 12245.5 + "price": 12245 }, "11128": { "id": 11128, @@ -152225,7 +152146,7 @@ "slot": "neck", "requirements": null }, - "price": 1871822.5 + "price": 1755000 }, "11130": { "id": 11130, @@ -152263,7 +152184,7 @@ "slot": "hands", "requirements": null }, - "price": 2657178.5 + "price": 1113663 }, "11133": { "id": 11133, @@ -152301,7 +152222,7 @@ "slot": "hands", "requirements": null }, - "price": 2334153 + "price": 1702052 }, "11136": { "id": 11136, @@ -152569,19 +152490,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Hunter_kit", "price": 0 }, - "11164": { - "id": 11164, - "name": "Restored shield", - "cost": 1, - "lowalch": 0, - "highalch": 0, - "weight": 5.443, - "release_date": "2007-05-29", - "examine": "Complete Shield of Arrav.", - "wiki_name": "Restored shield (unobtainable item)", - "wiki_url": "https://oldschool.runescape.wiki/w/Restored_shield_(unobtainable_item)", - "price": 0 - }, "11165": { "id": 11165, "name": "Phoenix crossbow", @@ -153175,7 +153083,7 @@ "defence": 50 } }, - "price": 36363 + "price": 36125 }, "11202": { "id": 11202, @@ -153234,7 +153142,7 @@ "examine": "A shrunk ogleroot! How odd...", "wiki_name": "Shrunk ogleroot", "wiki_url": "https://oldschool.runescape.wiki/w/Shrunk_ogleroot", - "price": 2758.5 + "price": 3092 }, "11210": { "id": 11210, @@ -153301,7 +153209,7 @@ "ranged": 60 } }, - "price": 1112 + "price": 1060 }, "11217": { "id": 11217, @@ -153414,7 +153322,7 @@ "ranged": 60 } }, - "price": 3196.5 + "price": 1128 }, "11228": { "id": 11228, @@ -153453,7 +153361,7 @@ "ranged": 60 } }, - "price": 1471.5 + "price": 1443 }, "11229": { "id": 11229, @@ -153492,7 +153400,7 @@ "ranged": 60 } }, - "price": 2143.5 + "price": 2339 }, "11230": { "id": 11230, @@ -153559,7 +153467,7 @@ } ] }, - "price": 1124 + "price": 955 }, "11231": { "id": 11231, @@ -153626,7 +153534,7 @@ } ] }, - "price": 1189.5 + "price": 1115 }, "11232": { "id": 11232, @@ -153643,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": 1494 + "price": 1209 }, "11233": { "id": 11233, @@ -153710,7 +153618,7 @@ } ] }, - "price": 1185 + "price": 1189 }, "11234": { "id": 11234, @@ -153777,7 +153685,7 @@ } ] }, - "price": 1900 + "price": 2088 }, "11235": { "id": 11235, @@ -153845,7 +153753,7 @@ } ] }, - "price": 683078 + "price": 1109301 }, "11237": { "id": 11237, @@ -153862,7 +153770,7 @@ "examine": "Dragon talons, usable as arrowheads.", "wiki_name": "Dragon arrowtips", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_arrowtips", - "price": 1178 + "price": 1077 }, "11238": { "id": 11238, @@ -153880,7 +153788,7 @@ "examine": "Baby impling in a jar. That's a bit cruel.", "wiki_name": "Baby impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Baby_impling_jar", - "price": 1131 + "price": 1501 }, "11240": { "id": 11240, @@ -153898,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": 1808.5 + "price": 2650 }, "11242": { "id": 11242, @@ -153916,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": 2557.5 + "price": 3935 }, "11244": { "id": 11244, @@ -153934,7 +153842,7 @@ "examine": "Earth impling in a jar.", "wiki_name": "Earth impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Earth_impling_jar", - "price": 1038.5 + "price": 1704 }, "11246": { "id": 11246, @@ -153952,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": 1464 + "price": 2899 }, "11248": { "id": 11248, @@ -153970,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": 4622 + "price": 5630 }, "11250": { "id": 11250, @@ -153988,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": 6341.5 + "price": 8982 }, "11252": { "id": 11252, @@ -154006,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": 30444.5 + "price": 28082 }, "11254": { "id": 11254, @@ -154024,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": 59162.5 + "price": 60614 }, "11256": { "id": 11256, @@ -154042,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": 469922.5 + "price": 543500 }, "11258": { "id": 11258, @@ -154145,7 +154053,7 @@ "examine": "It's got little holes in the top.", "wiki_name": "Impling jar", "wiki_url": "https://oldschool.runescape.wiki/w/Impling_jar", - "price": 802.5 + "price": 710 }, "11262": { "id": 11262, @@ -154255,7 +154163,7 @@ "slot": "head", "requirements": null }, - "price": 116500 + "price": 65889 }, "11282": { "id": 11282, @@ -154365,7 +154273,7 @@ "defence": 75 } }, - "price": 2870265 + "price": 2762496 }, "11286": { "id": 11286, @@ -154383,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": 3033500 + "price": 2743429 }, "11323": { "id": 11323, @@ -154415,7 +154323,7 @@ "examine": "Roe, or cheap fishy eggs.", "wiki_name": "Roe", "wiki_url": "https://oldschool.runescape.wiki/w/Roe", - "price": 74.5 + "price": 172 }, "11326": { "id": 11326, @@ -154433,7 +154341,7 @@ "examine": "Caviar, or expensive fishy eggs.", "wiki_name": "Caviar", "wiki_url": "https://oldschool.runescape.wiki/w/Caviar", - "price": 147.5 + "price": 114 }, "11328": { "id": 11328, @@ -154451,7 +154359,7 @@ "examine": "A sad-looking trout.", "wiki_name": "Leaping trout", "wiki_url": "https://oldschool.runescape.wiki/w/Leaping_trout", - "price": 22.5 + "price": 21 }, "11330": { "id": 11330, @@ -154469,7 +154377,7 @@ "examine": "Some non-tasty salmon.", "wiki_name": "Leaping salmon", "wiki_url": "https://oldschool.runescape.wiki/w/Leaping_salmon", - "price": 30.5 + "price": 21 }, "11332": { "id": 11332, @@ -154487,7 +154395,7 @@ "examine": "A bloated sturgeon.", "wiki_name": "Leaping sturgeon", "wiki_url": "https://oldschool.runescape.wiki/w/Leaping_sturgeon", - "price": 96 + "price": 51 }, "11334": { "id": 11334, @@ -154504,7 +154412,7 @@ "examine": "Slices of inedible fish.", "wiki_name": "Fish offcuts", "wiki_url": "https://oldschool.runescape.wiki/w/Fish_offcuts", - "price": 12.5 + "price": 50 }, "11335": { "id": 11335, @@ -154544,7 +154452,7 @@ "defence": 60 } }, - "price": 67889003 + "price": 92612277 }, "11337": { "id": 11337, @@ -155039,7 +154947,7 @@ } ] }, - "price": 43 + "price": 280 }, "11369": { "id": 11369, @@ -155114,7 +155022,7 @@ } ] }, - "price": 1 + "price": 3 }, "11371": { "id": 11371, @@ -155264,7 +155172,7 @@ } ] }, - "price": 692 + "price": 1000 }, "11375": { "id": 11375, @@ -155339,7 +155247,7 @@ } ] }, - "price": 1465.5 + "price": 815 }, "11377": { "id": 11377, @@ -155489,7 +155397,7 @@ } ] }, - "price": 1620.5 + "price": 300 }, "11381": { "id": 11381, @@ -155635,7 +155543,7 @@ } ] }, - "price": 2067 + "price": 2720 }, "11384": { "id": 11384, @@ -155785,7 +155693,7 @@ } ] }, - "price": 172162.5 + "price": 10001 }, "11388": { "id": 11388, @@ -155931,7 +155839,7 @@ } ] }, - "price": 43223.5 + "price": 1765 }, "11391": { "id": 11391, @@ -156006,7 +155914,7 @@ } ] }, - "price": 26605.5 + "price": 1000 }, "11393": { "id": 11393, @@ -156081,7 +155989,7 @@ } ] }, - "price": 4257.5 + "price": 4042 }, "11395": { "id": 11395, @@ -156227,7 +156135,7 @@ } ] }, - "price": 989.5 + "price": 10062 }, "11398": { "id": 11398, @@ -156302,7 +156210,7 @@ } ] }, - "price": 6146.5 + "price": 2565 }, "11400": { "id": 11400, @@ -156377,7 +156285,7 @@ } ] }, - "price": 1250 + "price": 838 }, "11402": { "id": 11402, @@ -156523,7 +156431,7 @@ } ] }, - "price": 5352.5 + "price": 251 }, "11405": { "id": 11405, @@ -156598,7 +156506,7 @@ } ] }, - "price": 3918 + "price": 4151 }, "11407": { "id": 11407, @@ -156673,7 +156581,7 @@ } ] }, - "price": 4445 + "price": 3012 }, "11409": { "id": 11409, @@ -156819,7 +156727,7 @@ } ] }, - "price": 2138 + "price": 6691 }, "11412": { "id": 11412, @@ -156894,7 +156802,7 @@ } ] }, - "price": 3090.5 + "price": 3544 }, "11414": { "id": 11414, @@ -156969,7 +156877,7 @@ } ] }, - "price": 14646 + "price": 14641 }, "11416": { "id": 11416, @@ -157115,7 +157023,7 @@ } ] }, - "price": 17070 + "price": 23710 }, "11419": { "id": 11419, @@ -157190,7 +157098,7 @@ } ] }, - "price": 20000 + "price": 13002 }, "11427": { "id": 11427, @@ -157254,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": 180.5 + "price": 68 }, "11433": { "id": 11433, @@ -157272,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": 157.5 + "price": 51 }, "11435": { "id": 11435, @@ -157290,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": 90 + "price": 285 }, "11437": { "id": 11437, @@ -157326,7 +157234,7 @@ "examine": "One dose of fishy Relicym's balm.", "wiki_name": "Relicym's mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Relicym's_mix#1_dose", - "price": 253 + "price": 10000 }, "11441": { "id": 11441, @@ -157344,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": 185.5 + "price": 260 }, "11443": { "id": 11443, @@ -157362,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": 22.5 + "price": 21 }, "11445": { "id": 11445, @@ -157380,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": 83.5 + "price": 89 }, "11447": { "id": 11447, @@ -157398,7 +157306,7 @@ "examine": "One dose of fishy combat potion.", "wiki_name": "Combat mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Combat_mix#1_dose", - "price": 4275 + "price": 1 }, "11449": { "id": 11449, @@ -157416,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": 52.5 + "price": 109 }, "11451": { "id": 11451, @@ -157434,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": 115.5 + "price": 152 }, "11453": { "id": 11453, @@ -157452,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": 319.5 + "price": 348 }, "11455": { "id": 11455, @@ -157470,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": 284 + "price": 279 }, "11457": { "id": 11457, @@ -157506,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": 11461 + "price": 22 }, "11461": { "id": 11461, @@ -157524,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": 57.5 + "price": 756 }, "11463": { "id": 11463, @@ -157542,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": 250 + "price": 345 }, "11465": { "id": 11465, @@ -157560,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": 2508 + "price": 4996 }, "11467": { "id": 11467, @@ -157578,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": 1733.5 + "price": 1630 }, "11469": { "id": 11469, @@ -157614,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": 2.5 + "price": 165 }, "11473": { "id": 11473, @@ -157632,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": 409.5 + "price": 343 }, "11475": { "id": 11475, @@ -157650,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": 567.5 + "price": 1720 }, "11477": { "id": 11477, @@ -157668,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": 65.5 + "price": 104 }, "11479": { "id": 11479, @@ -157686,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": 499.5 + "price": 281 }, "11481": { "id": 11481, @@ -157704,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": 10939.5 + "price": 1810 }, "11483": { "id": 11483, @@ -157722,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": 939.5 + "price": 838 }, "11485": { "id": 11485, @@ -157740,7 +157648,7 @@ "examine": "Two doses of fishy super Strength potion.", "wiki_name": "Super str. mix (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Super_str._mix#2_dose", - "price": 554 + "price": 1198 }, "11487": { "id": 11487, @@ -157758,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": 523 + "price": 717 }, "11489": { "id": 11489, @@ -157776,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": 7777 + "price": 1927 }, "11491": { "id": 11491, @@ -157794,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": 1112.5 + "price": 203 }, "11493": { "id": 11493, @@ -157812,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": 4270 + "price": 4325 }, "11495": { "id": 11495, @@ -157830,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": 5815.5 + "price": 5548 }, "11497": { "id": 11497, @@ -157848,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, @@ -157866,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": 257.5 + "price": 314 }, "11501": { "id": 11501, @@ -157884,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": 497 + "price": 1537 }, "11503": { "id": 11503, @@ -157920,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": 59 + "price": 161 }, "11507": { "id": 11507, @@ -157938,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": 243 + "price": 84 }, "11509": { "id": 11509, @@ -157956,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": 919 + "price": 1187 }, "11511": { "id": 11511, @@ -157974,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": 667 + "price": 450 }, "11513": { "id": 11513, @@ -157992,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": 36 + "price": 52 }, "11515": { "id": 11515, @@ -158010,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": 56.5 + "price": 63 }, "11517": { "id": 11517, @@ -158028,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": 3112.5 + "price": 22274 }, "11519": { "id": 11519, @@ -158046,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": 567 + "price": 140 }, "11521": { "id": 11521, @@ -158064,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": 556.5 + "price": 88 }, "11523": { "id": 11523, @@ -158082,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, @@ -161770,7 +161678,7 @@ } ] }, - "price": 52797700.5 + "price": 54293467 }, "11787": { "id": 11787, @@ -161853,7 +161761,7 @@ } ] }, - "price": 37433.5 + "price": 102500 }, "11789": { "id": 11789, @@ -161936,7 +161844,7 @@ } ] }, - "price": 92000 + "price": 168494 }, "11791": { "id": 11791, @@ -162019,7 +161927,7 @@ } ] }, - "price": 8674141.5 + "price": 14479842 }, "11794": { "id": 11794, @@ -162069,7 +161977,7 @@ "examine": "The blade for the ultimate weapon.", "wiki_name": "Godsword blade", "wiki_url": "https://oldschool.runescape.wiki/w/Godsword_blade", - "price": 480245.5 + "price": 485001 }, "11800": { "id": 11800, @@ -162160,7 +162068,7 @@ } ] }, - "price": 10267920 + "price": 12287851 }, "11804": { "id": 11804, @@ -162235,7 +162143,7 @@ } ] }, - "price": 22722909 + "price": 20744031 }, "11806": { "id": 11806, @@ -162310,7 +162218,7 @@ } ] }, - "price": 19907546.5 + "price": 32564377 }, "11808": { "id": 11808, @@ -162385,7 +162293,7 @@ } ] }, - "price": 15682887.5 + "price": 28504194 }, "11810": { "id": 11810, @@ -162403,7 +162311,7 @@ "examine": "Brimming with potential.", "wiki_name": "Armadyl hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_hilt", - "price": 9442500 + "price": 11639988 }, "11812": { "id": 11812, @@ -162421,7 +162329,7 @@ "examine": "Brimming with potential.", "wiki_name": "Bandos hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_hilt", - "price": 22175500 + "price": 19575000 }, "11814": { "id": 11814, @@ -162439,7 +162347,7 @@ "examine": "Brimming with potential.", "wiki_name": "Saradomin hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Saradomin_hilt", - "price": 19026506.5 + "price": 31715999 }, "11816": { "id": 11816, @@ -162457,7 +162365,7 @@ "examine": "Brimming with potential.", "wiki_name": "Zamorak hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak_hilt", - "price": 14946077.5 + "price": 27346985 }, "11818": { "id": 11818, @@ -162475,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": 157889.5 + "price": 151320 }, "11820": { "id": 11820, @@ -162493,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": 155055.5 + "price": 150802 }, "11822": { "id": 11822, @@ -162511,7 +162419,7 @@ "examine": "A part of the Godsword blade.", "wiki_name": "Godsword shard 3", "wiki_url": "https://oldschool.runescape.wiki/w/Godsword_shard_3", - "price": 160167 + "price": 155204 }, "11824": { "id": 11824, @@ -162586,7 +162494,7 @@ } ] }, - "price": 3480185 + "price": 4880620 }, "11826": { "id": 11826, @@ -162627,7 +162535,7 @@ "ranged": 70 } }, - "price": 9912540.5 + "price": 11918299 }, "11828": { "id": 11828, @@ -162668,7 +162576,7 @@ "ranged": 70 } }, - "price": 39952500 + "price": 47480506 }, "11830": { "id": 11830, @@ -162709,7 +162617,7 @@ "ranged": 70 } }, - "price": 29605420 + "price": 35512614 }, "11832": { "id": 11832, @@ -162749,7 +162657,7 @@ "defence": 65 } }, - "price": 29866081 + "price": 26010627 }, "11834": { "id": 11834, @@ -162789,7 +162697,7 @@ "defence": 65 } }, - "price": 20024425 + "price": 17447414 }, "11836": { "id": 11836, @@ -162829,7 +162737,7 @@ "defence": 65 } }, - "price": 230160.5 + "price": 190134 }, "11838": { "id": 11838, @@ -162904,7 +162812,7 @@ } ] }, - "price": 124305 + "price": 175550 }, "11840": { "id": 11840, @@ -162944,7 +162852,7 @@ "defence": 60 } }, - "price": 113815.5 + "price": 114777 }, "11842": { "id": 11842, @@ -163703,7 +163611,7 @@ "slayer": 55 } }, - "price": 46 + "price": 45 }, "11876": { "id": 11876, @@ -163720,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": 58 + "price": 56 }, "11877": { "id": 11877, @@ -163887,7 +163795,7 @@ } ] }, - "price": 3682589.5 + "price": 4922663 }, "11891": { "id": 11891, @@ -164502,7 +164410,7 @@ } ] }, - "price": 684661.5 + "price": 596653 }, "11907": { "id": 11907, @@ -164634,7 +164542,7 @@ } ] }, - "price": 42700 + "price": 48871 }, "11910": { "id": 11910, @@ -164827,7 +164735,7 @@ } ] }, - "price": 1058415.5 + "price": 963996 }, "11922": { "id": 11922, @@ -164895,7 +164803,7 @@ "defence": 60 } }, - "price": 1161970.5 + "price": 1915982 }, "11926": { "id": 11926, @@ -164935,7 +164843,7 @@ "defence": 60 } }, - "price": 3135496 + "price": 3182608 }, "11928": { "id": 11928, @@ -164953,7 +164861,7 @@ "examine": "A broken shield piece.", "wiki_name": "Odium shard 1", "wiki_url": "https://oldschool.runescape.wiki/w/Odium_shard_1", - "price": 2013687.5 + "price": 2125000 }, "11929": { "id": 11929, @@ -164971,7 +164879,7 @@ "examine": "A broken shield piece.", "wiki_name": "Odium shard 2", "wiki_url": "https://oldschool.runescape.wiki/w/Odium_shard_2", - "price": 279482 + "price": 1009000 }, "11930": { "id": 11930, @@ -164989,7 +164897,7 @@ "examine": "A broken shield piece.", "wiki_name": "Odium shard 3", "wiki_url": "https://oldschool.runescape.wiki/w/Odium_shard_3", - "price": 40079.5 + "price": 97316 }, "11931": { "id": 11931, @@ -165007,7 +164915,7 @@ "examine": "A broken shield piece.", "wiki_name": "Malediction shard 1", "wiki_url": "https://oldschool.runescape.wiki/w/Malediction_shard_1", - "price": 589473 + "price": 895038 }, "11932": { "id": 11932, @@ -165025,7 +164933,7 @@ "examine": "A broken shield piece.", "wiki_name": "Malediction shard 2", "wiki_url": "https://oldschool.runescape.wiki/w/Malediction_shard_2", - "price": 194441.5 + "price": 536000 }, "11933": { "id": 11933, @@ -165043,7 +164951,7 @@ "examine": "A broken shield piece.", "wiki_name": "Malediction shard 3", "wiki_url": "https://oldschool.runescape.wiki/w/Malediction_shard_3", - "price": 36204.5 + "price": 113321 }, "11934": { "id": 11934, @@ -165061,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": 676 + "price": 1522 }, "11936": { "id": 11936, @@ -165079,7 +164987,7 @@ "examine": "This looks tricky to eat.", "wiki_name": "Dark crab", "wiki_url": "https://oldschool.runescape.wiki/w/Dark_crab", - "price": 857 + "price": 1640 }, "11938": { "id": 11938, @@ -165158,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": 3736.5 + "price": 3599 }, "11951": { "id": 11951, @@ -165176,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": 218 + "price": 392 }, "11953": { "id": 11953, @@ -165194,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": 192.5 + "price": 345 }, "11955": { "id": 11955, @@ -165212,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": 85 + "price": 181 }, "11957": { "id": 11957, @@ -165230,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": 50 + "price": 66 }, "11959": { "id": 11959, @@ -165297,7 +165205,7 @@ } ] }, - "price": 4349.5 + "price": 3366 }, "11960": { "id": 11960, @@ -165315,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": 333 + "price": 200 }, "11962": { "id": 11962, @@ -165333,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": 66.5 + "price": 40 }, "11964": { "id": 11964, @@ -165371,7 +165279,7 @@ "slot": "neck", "requirements": null }, - "price": 77499.5 + "price": 48980 }, "11966": { "id": 11966, @@ -165629,7 +165537,7 @@ "slot": "neck", "requirements": null }, - "price": 10373 + "price": 12150 }, "11980": { "id": 11980, @@ -165667,7 +165575,7 @@ "slot": "ring", "requirements": null }, - "price": 14449.5 + "price": 14449 }, "11982": { "id": 11982, @@ -165849,7 +165757,7 @@ "slot": "head", "requirements": null }, - "price": 12246 + "price": 9042 }, "11992": { "id": 11992, @@ -165867,7 +165775,7 @@ "examine": "A scale from the hide of a lava dragon.", "wiki_name": "Lava scale", "wiki_url": "https://oldschool.runescape.wiki/w/Lava_scale", - "price": 169 + "price": 161 }, "11994": { "id": 11994, @@ -165884,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": 32 + "price": 43 }, "11995": { "id": 11995, @@ -166003,7 +165911,7 @@ } ] }, - "price": 1221586 + "price": 1827576 }, "12000": { "id": 12000, @@ -166086,7 +165994,7 @@ } ] }, - "price": 1276651.5 + "price": 1833205 }, "12002": { "id": 12002, @@ -166126,7 +166034,7 @@ "magic": 70 } }, - "price": 482026.5 + "price": 790940 }, "12004": { "id": 12004, @@ -166144,7 +166052,7 @@ "examine": "Ewwww... it's still sucky.", "wiki_name": "Kraken tentacle", "wiki_url": "https://oldschool.runescape.wiki/w/Kraken_tentacle", - "price": 585839.5 + "price": 876957 }, "12006": { "id": 12006, @@ -166226,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, @@ -166429,7 +166337,7 @@ "highalch": 0, "weight": 0.007, "release_date": "2014-05-01", - "examine": "Increases melee, ranged and magic damage & accuracy by 15%{{Sic|The correct value is 1/6th, equal to 16.67%.}} against the undead.", + "examine": "Increases melee, ranged and magic damage & accuracy by 15%{{Sic|The correct value for melee and ranged is 1/6th, equal to 16.67%.}} against the undead.", "wiki_name": "Salve amulet(i) (Nightmare Zone)", "wiki_url": "https://oldschool.runescape.wiki/w/Salve_amulet(i)#Nightmare_Zone", "equipment": { @@ -166542,20 +166450,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Puzzle_box#Tree_(elite)", "price": 0 }, - "12179": { - "id": 12179, - "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) - Al Kharid Mine", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)_-_Al_Kharid_Mine", - "price": 0 - }, "12193": { "id": 12193, "name": "Ancient robe top", @@ -166594,7 +166488,7 @@ "prayer": 20 } }, - "price": 29156 + "price": 64244 }, "12195": { "id": 12195, @@ -166634,7 +166528,7 @@ "prayer": 20 } }, - "price": 24585.5 + "price": 51077 }, "12197": { "id": 12197, @@ -166674,7 +166568,7 @@ "prayer": 40 } }, - "price": 31427.5 + "price": 53818 }, "12199": { "id": 12199, @@ -166756,7 +166650,7 @@ } ] }, - "price": 7092 + "price": 7921 }, "12201": { "id": 12201, @@ -166796,7 +166690,7 @@ "prayer": 60 } }, - "price": 2892 + "price": 6000 }, "12203": { "id": 12203, @@ -166837,7 +166731,7 @@ "magic": 40 } }, - "price": 18387 + "price": 23719 }, "12205": { "id": 12205, @@ -166876,7 +166770,7 @@ "defence": 1 } }, - "price": 27012.5 + "price": 61500 }, "12207": { "id": 12207, @@ -166915,7 +166809,7 @@ "defence": 1 } }, - "price": 7845 + "price": 7257 }, "12209": { "id": 12209, @@ -166954,7 +166848,7 @@ "defence": 1 } }, - "price": 2963 + "price": 4340 }, "12211": { "id": 12211, @@ -166993,7 +166887,7 @@ "defence": 1 } }, - "price": 26800 + "price": 44692 }, "12213": { "id": 12213, @@ -167032,7 +166926,7 @@ "defence": 1 } }, - "price": 26189 + "price": 27579 }, "12215": { "id": 12215, @@ -167071,7 +166965,7 @@ "defence": 1 } }, - "price": 8607.5 + "price": 3037 }, "12217": { "id": 12217, @@ -167110,7 +167004,7 @@ "defence": 1 } }, - "price": 1984.5 + "price": 3159 }, "12219": { "id": 12219, @@ -167149,7 +167043,7 @@ "defence": 1 } }, - "price": 3800 + "price": 3145 }, "12221": { "id": 12221, @@ -167188,7 +167082,7 @@ "defence": 1 } }, - "price": 3981 + "price": 5156 }, "12223": { "id": 12223, @@ -167227,7 +167121,7 @@ "defence": 1 } }, - "price": 3484.5 + "price": 51668 }, "12225": { "id": 12225, @@ -167266,7 +167160,7 @@ "defence": 1 } }, - "price": 25247.5 + "price": 170000 }, "12227": { "id": 12227, @@ -167305,7 +167199,7 @@ "defence": 1 } }, - "price": 5789 + "price": 4009 }, "12229": { "id": 12229, @@ -167344,7 +167238,7 @@ "defence": 1 } }, - "price": 1525.5 + "price": 4603 }, "12231": { "id": 12231, @@ -167383,7 +167277,7 @@ "defence": 1 } }, - "price": 40953.5 + "price": 24259 }, "12233": { "id": 12233, @@ -167422,7 +167316,7 @@ "defence": 1 } }, - "price": 6863.5 + "price": 10759 }, "12235": { "id": 12235, @@ -167461,7 +167355,7 @@ "defence": 1 } }, - "price": 249036 + "price": 186295 }, "12237": { "id": 12237, @@ -167500,7 +167394,7 @@ "defence": 1 } }, - "price": 18861 + "price": 24377 }, "12239": { "id": 12239, @@ -167539,7 +167433,7 @@ "defence": 1 } }, - "price": 7432 + "price": 6202 }, "12241": { "id": 12241, @@ -167617,7 +167511,7 @@ "defence": 1 } }, - "price": 126554.5 + "price": 78370 }, "12245": { "id": 12245, @@ -167655,7 +167549,7 @@ "slot": "head", "requirements": null }, - "price": 3008.5 + "price": 3256 }, "12247": { "id": 12247, @@ -167693,7 +167587,7 @@ "slot": "head", "requirements": null }, - "price": 5762.5 + "price": 25764 }, "12249": { "id": 12249, @@ -167731,7 +167625,7 @@ "slot": "head", "requirements": null }, - "price": 3744.5 + "price": 15932 }, "12251": { "id": 12251, @@ -167769,7 +167663,7 @@ "slot": "head", "requirements": null }, - "price": 10735 + "price": 16957 }, "12253": { "id": 12253, @@ -167809,7 +167703,7 @@ "prayer": 20 } }, - "price": 24356.5 + "price": 49184 }, "12255": { "id": 12255, @@ -167849,7 +167743,7 @@ "prayer": 20 } }, - "price": 22001.5 + "price": 49293 }, "12257": { "id": 12257, @@ -167889,7 +167783,7 @@ "prayer": 60 } }, - "price": 6151 + "price": 13384 }, "12259": { "id": 12259, @@ -167930,7 +167824,7 @@ "magic": 40 } }, - "price": 23416.5 + "price": 17730 }, "12261": { "id": 12261, @@ -167970,7 +167864,7 @@ "prayer": 40 } }, - "price": 32499.5 + "price": 38026 }, "12263": { "id": 12263, @@ -168052,7 +167946,7 @@ } ] }, - "price": 8499.5 + "price": 13200 }, "12265": { "id": 12265, @@ -168092,7 +167986,7 @@ "prayer": 20 } }, - "price": 21393 + "price": 41210 }, "12267": { "id": 12267, @@ -168132,7 +168026,7 @@ "prayer": 20 } }, - "price": 42008 + "price": 33947 }, "12269": { "id": 12269, @@ -168172,7 +168066,7 @@ "prayer": 60 } }, - "price": 3533.5 + "price": 15000 }, "12271": { "id": 12271, @@ -168213,7 +168107,7 @@ "magic": 40 } }, - "price": 21943 + "price": 24743 }, "12273": { "id": 12273, @@ -168253,7 +168147,7 @@ "prayer": 40 } }, - "price": 51250 + "price": 88179 }, "12275": { "id": 12275, @@ -168335,7 +168229,7 @@ } ] }, - "price": 7024 + "price": 7355 }, "12277": { "id": 12277, @@ -168374,7 +168268,7 @@ "defence": 20 } }, - "price": 4420.5 + "price": 5026 }, "12279": { "id": 12279, @@ -168413,7 +168307,7 @@ "defence": 20 } }, - "price": 2640 + "price": 1925 }, "12281": { "id": 12281, @@ -168452,7 +168346,7 @@ "defence": 20 } }, - "price": 3589 + "price": 3890 }, "12283": { "id": 12283, @@ -168491,7 +168385,7 @@ "defence": 20 } }, - "price": 4296 + "price": 3300 }, "12285": { "id": 12285, @@ -168530,7 +168424,7 @@ "defence": 20 } }, - "price": 2320.5 + "price": 6157 }, "12287": { "id": 12287, @@ -168569,7 +168463,7 @@ "defence": 20 } }, - "price": 3411 + "price": 3261 }, "12289": { "id": 12289, @@ -168608,7 +168502,7 @@ "defence": 20 } }, - "price": 2315 + "price": 2899 }, "12291": { "id": 12291, @@ -168647,7 +168541,7 @@ "defence": 20 } }, - "price": 2755 + "price": 3815 }, "12293": { "id": 12293, @@ -168686,7 +168580,7 @@ "defence": 20 } }, - "price": 2815.5 + "price": 3203 }, "12295": { "id": 12295, @@ -168725,7 +168619,7 @@ "defence": 20 } }, - "price": 1877.5 + "price": 20991 }, "12297": { "id": 12297, @@ -168799,7 +168693,7 @@ } ] }, - "price": 711.5 + "price": 2081 }, "12299": { "id": 12299, @@ -168837,7 +168731,7 @@ "slot": "head", "requirements": null }, - "price": 2387.5 + "price": 4000 }, "12301": { "id": 12301, @@ -168875,7 +168769,7 @@ "slot": "head", "requirements": null }, - "price": 6000 + "price": 5889 }, "12303": { "id": 12303, @@ -168913,7 +168807,7 @@ "slot": "head", "requirements": null }, - "price": 6500 + "price": 3219 }, "12305": { "id": 12305, @@ -168951,7 +168845,7 @@ "slot": "head", "requirements": null }, - "price": 3600 + "price": 4237 }, "12307": { "id": 12307, @@ -168989,7 +168883,7 @@ "slot": "head", "requirements": null }, - "price": 1116 + "price": 4251 }, "12309": { "id": 12309, @@ -169027,7 +168921,7 @@ "slot": "head", "requirements": null }, - "price": 6107.5 + "price": 23365 }, "12311": { "id": 12311, @@ -169065,7 +168959,7 @@ "slot": "head", "requirements": null }, - "price": 12500 + "price": 8014 }, "12313": { "id": 12313, @@ -169103,7 +168997,7 @@ "slot": "head", "requirements": null }, - "price": 3249 + "price": 13501 }, "12315": { "id": 12315, @@ -169141,7 +169035,7 @@ "slot": "body", "requirements": null }, - "price": 3702 + "price": 4000 }, "12317": { "id": 12317, @@ -169179,7 +169073,7 @@ "slot": "legs", "requirements": null }, - "price": 2000 + "price": 6785 }, "12319": { "id": 12319, @@ -169217,7 +169111,7 @@ "slot": "head", "requirements": null }, - "price": 2387.5 + "price": 2669 }, "12321": { "id": 12321, @@ -169255,7 +169149,7 @@ "slot": "head", "requirements": null }, - "price": 12863 + "price": 7227 }, "12323": { "id": 12323, @@ -169293,7 +169187,7 @@ "slot": "head", "requirements": null }, - "price": 3308 + "price": 1999 }, "12325": { "id": 12325, @@ -169331,7 +169225,7 @@ "slot": "head", "requirements": null }, - "price": 2235 + "price": 9002 }, "12327": { "id": 12327, @@ -169372,7 +169266,7 @@ "defence": 40 } }, - "price": 6143.5 + "price": 5834 }, "12329": { "id": 12329, @@ -169412,7 +169306,7 @@ "ranged": 60 } }, - "price": 9525.5 + "price": 10580 }, "12331": { "id": 12331, @@ -169453,7 +169347,7 @@ "defence": 40 } }, - "price": 6217 + "price": 6330 }, "12333": { "id": 12333, @@ -169493,7 +169387,7 @@ "ranged": 60 } }, - "price": 2451 + "price": 3416 }, "12335": { "id": 12335, @@ -169531,7 +169425,7 @@ "slot": "shield", "requirements": null }, - "price": 154994 + "price": 260000 }, "12337": { "id": 12337, @@ -169569,7 +169463,7 @@ "slot": "head", "requirements": null }, - "price": 549500 + "price": 1343668 }, "12339": { "id": 12339, @@ -169607,7 +169501,7 @@ "slot": "body", "requirements": null }, - "price": 3246.5 + "price": 8540 }, "12341": { "id": 12341, @@ -169645,7 +169539,7 @@ "slot": "legs", "requirements": null }, - "price": 919.5 + "price": 7311 }, "12343": { "id": 12343, @@ -169683,7 +169577,7 @@ "slot": "body", "requirements": null }, - "price": 874 + "price": 6410 }, "12345": { "id": 12345, @@ -169721,7 +169615,7 @@ "slot": "legs", "requirements": null }, - "price": 1247 + "price": 6288 }, "12347": { "id": 12347, @@ -169759,7 +169653,7 @@ "slot": "body", "requirements": null }, - "price": 943 + "price": 3750 }, "12349": { "id": 12349, @@ -169797,7 +169691,7 @@ "slot": "legs", "requirements": null }, - "price": 10891.5 + "price": 6120 }, "12351": { "id": 12351, @@ -169835,7 +169729,7 @@ "slot": "head", "requirements": null }, - "price": 114598.5 + "price": 103862 }, "12353": { "id": 12353, @@ -169873,7 +169767,7 @@ "slot": "head", "requirements": null }, - "price": 17500 + "price": 10322 }, "12355": { "id": 12355, @@ -169911,7 +169805,7 @@ "slot": "head", "requirements": null }, - "price": 611561 + "price": 656224 }, "12357": { "id": 12357, @@ -169984,7 +169878,7 @@ } ] }, - "price": 250120.5 + "price": 111842 }, "12359": { "id": 12359, @@ -170022,7 +169916,7 @@ "slot": "head", "requirements": null }, - "price": 7250 + "price": 10352 }, "12361": { "id": 12361, @@ -170060,7 +169954,7 @@ "slot": "head", "requirements": null }, - "price": 11627.5 + "price": 11132 }, "12363": { "id": 12363, @@ -170098,7 +169992,7 @@ "slot": "head", "requirements": null }, - "price": 5861 + "price": 7452 }, "12365": { "id": 12365, @@ -170136,7 +170030,7 @@ "slot": "head", "requirements": null }, - "price": 10250 + "price": 5267 }, "12367": { "id": 12367, @@ -170174,7 +170068,7 @@ "slot": "head", "requirements": null }, - "price": 7503 + "price": 4268 }, "12369": { "id": 12369, @@ -170212,7 +170106,7 @@ "slot": "head", "requirements": null }, - "price": 9801.5 + "price": 7043 }, "12371": { "id": 12371, @@ -170250,7 +170144,7 @@ "slot": "head", "requirements": null }, - "price": 2522745 + "price": 2205000 }, "12373": { "id": 12373, @@ -170318,7 +170212,7 @@ } ] }, - "price": 25784.5 + "price": 18302 }, "12375": { "id": 12375, @@ -170393,7 +170287,7 @@ } ] }, - "price": 1812.5 + "price": 8500 }, "12377": { "id": 12377, @@ -170468,7 +170362,7 @@ } ] }, - "price": 1458 + "price": 6812 }, "12379": { "id": 12379, @@ -170543,7 +170437,7 @@ } ] }, - "price": 7817.5 + "price": 7776 }, "12381": { "id": 12381, @@ -170584,7 +170478,7 @@ "defence": 40 } }, - "price": 23047.5 + "price": 17000 }, "12383": { "id": 12383, @@ -170624,7 +170518,7 @@ "ranged": 70 } }, - "price": 190306 + "price": 180273 }, "12385": { "id": 12385, @@ -170665,7 +170559,7 @@ "defence": 40 } }, - "price": 7753.5 + "price": 14700 }, "12387": { "id": 12387, @@ -170705,7 +170599,7 @@ "ranged": 70 } }, - "price": 50666.5 + "price": 44147 }, "12389": { "id": 12389, @@ -170779,7 +170673,7 @@ } ] }, - "price": 14567497.5 + "price": 19625000 }, "12391": { "id": 12391, @@ -170819,7 +170713,7 @@ "defence": 40 } }, - "price": 1993335 + "price": 2579719 }, "12393": { "id": 12393, @@ -170857,7 +170751,7 @@ "slot": "body", "requirements": null }, - "price": 23194 + "price": 28644 }, "12395": { "id": 12395, @@ -170895,7 +170789,7 @@ "slot": "legs", "requirements": null }, - "price": 19911 + "price": 8862 }, "12397": { "id": 12397, @@ -170933,7 +170827,7 @@ "slot": "head", "requirements": null }, - "price": 135642 + "price": 162501 }, "12399": { "id": 12399, @@ -170971,7 +170865,7 @@ "slot": "head", "requirements": null }, - "price": 617500 + "price": 1464612 }, "12402": { "id": 12402, @@ -170988,7 +170882,7 @@ "examine": "Teleports you to Nardah.", "wiki_name": "Nardah teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Nardah_teleport", - "price": 26921.5 + "price": 41383 }, "12403": { "id": 12403, @@ -171005,7 +170899,7 @@ "examine": "Teleports you to the Digsite.", "wiki_name": "Digsite teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Digsite_teleport", - "price": 11020 + "price": 28995 }, "12404": { "id": 12404, @@ -171022,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": 1082 + "price": 2200 }, "12405": { "id": 12405, @@ -171039,7 +170933,7 @@ "examine": "Teleports you to Lunar isle.", "wiki_name": "Lunar isle teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Lunar_isle_teleport", - "price": 2829 + "price": 3198 }, "12406": { "id": 12406, @@ -171056,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": 15684 + "price": 37874 }, "12407": { "id": 12407, @@ -171073,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": 486 + "price": 642 }, "12408": { "id": 12408, @@ -171090,7 +170984,7 @@ "examine": "Teleports you to Piscatoris.", "wiki_name": "Piscatoris teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Piscatoris_teleport", - "price": 1577.5 + "price": 7233 }, "12409": { "id": 12409, @@ -171107,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": 3825.5 + "price": 5586 }, "12410": { "id": 12410, @@ -171124,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": 2738.5 + "price": 3404 }, "12411": { "id": 12411, @@ -171179,7 +171073,7 @@ "slot": "head", "requirements": null }, - "price": 775000 + "price": 672943 }, "12414": { "id": 12414, @@ -171548,7 +171442,7 @@ } ] }, - "price": 370388888.5 + "price": 1101027528 }, "12424": { "id": 12424, @@ -171616,7 +171510,7 @@ } ] }, - "price": 1224460000 + "price": 1970003504 }, "12426": { "id": 12426, @@ -171691,7 +171585,7 @@ } ] }, - "price": 837500000 + "price": 2147483647 }, "12428": { "id": 12428, @@ -171729,7 +171623,7 @@ "slot": "head", "requirements": null }, - "price": 7146 + "price": 2338 }, "12430": { "id": 12430, @@ -171767,7 +171661,7 @@ "slot": "head", "requirements": null }, - "price": 198961.5 + "price": 470003 }, "12432": { "id": 12432, @@ -171805,7 +171699,7 @@ "slot": "head", "requirements": null }, - "price": 74037 + "price": 286729 }, "12434": { "id": 12434, @@ -171843,7 +171737,7 @@ "slot": "head", "requirements": null }, - "price": 101098.5 + "price": 138398 }, "12436": { "id": 12436, @@ -171917,7 +171811,7 @@ "prayer": 65 } }, - "price": 370000000 + "price": 949943945 }, "12439": { "id": 12439, @@ -171983,7 +171877,7 @@ } ] }, - "price": 10662 + "price": 264613 }, "12441": { "id": 12441, @@ -172021,7 +171915,7 @@ "slot": "body", "requirements": null }, - "price": 33896 + "price": 35588 }, "12443": { "id": 12443, @@ -172059,7 +171953,7 @@ "slot": "legs", "requirements": null }, - "price": 20063.5 + "price": 16997 }, "12445": { "id": 12445, @@ -172096,7 +171990,7 @@ "slot": "legs", "requirements": null }, - "price": 8507.5 + "price": 8500 }, "12447": { "id": 12447, @@ -172133,7 +172027,7 @@ "slot": "legs", "requirements": null }, - "price": 5693 + "price": 10428 }, "12449": { "id": 12449, @@ -172170,7 +172064,7 @@ "slot": "body", "requirements": null }, - "price": 174248.5 + "price": 152973 }, "12451": { "id": 12451, @@ -172207,7 +172101,7 @@ "slot": "body", "requirements": null }, - "price": 36063.5 + "price": 54376 }, "12453": { "id": 12453, @@ -172244,7 +172138,7 @@ "slot": "head", "requirements": null }, - "price": 295319 + "price": 298926 }, "12455": { "id": 12455, @@ -172281,7 +172175,7 @@ "slot": "head", "requirements": null }, - "price": 58539 + "price": 68515 }, "12457": { "id": 12457, @@ -172431,7 +172325,7 @@ "defence": 40 } }, - "price": 71856 + "price": 46268 }, "12462": { "id": 12462, @@ -172470,7 +172364,7 @@ "defence": 40 } }, - "price": 41629 + "price": 46449 }, "12464": { "id": 12464, @@ -172509,7 +172403,7 @@ "defence": 40 } }, - "price": 37566.5 + "price": 37566 }, "12466": { "id": 12466, @@ -172548,7 +172442,7 @@ "defence": 40 } }, - "price": 41700.5 + "price": 42998 }, "12468": { "id": 12468, @@ -172587,7 +172481,7 @@ "defence": 40 } }, - "price": 29280 + "price": 50587 }, "12470": { "id": 12470, @@ -172626,7 +172520,7 @@ "defence": 40 } }, - "price": 42093 + "price": 46801 }, "12472": { "id": 12472, @@ -172665,7 +172559,7 @@ "defence": 40 } }, - "price": 39650.5 + "price": 39650 }, "12474": { "id": 12474, @@ -172704,7 +172598,7 @@ "defence": 40 } }, - "price": 40528.5 + "price": 40528 }, "12476": { "id": 12476, @@ -172743,7 +172637,7 @@ "defence": 40 } }, - "price": 21887 + "price": 31491 }, "12478": { "id": 12478, @@ -172782,7 +172676,7 @@ "defence": 40 } }, - "price": 32132.5 + "price": 36550 }, "12480": { "id": 12480, @@ -172821,7 +172715,7 @@ "defence": 40 } }, - "price": 115390 + "price": 215740 }, "12482": { "id": 12482, @@ -172977,7 +172871,7 @@ "defence": 40 } }, - "price": 32099 + "price": 35310 }, "12490": { "id": 12490, @@ -173018,7 +172912,7 @@ "defence": 40 } }, - "price": 225830 + "price": 157499 }, "12492": { "id": 12492, @@ -173059,7 +172953,7 @@ "defence": 40 } }, - "price": 188396.5 + "price": 230742 }, "12494": { "id": 12494, @@ -173100,7 +172994,7 @@ "defence": 40 } }, - "price": 377346.5 + "price": 488228 }, "12496": { "id": 12496, @@ -173141,7 +173035,7 @@ "defence": 40 } }, - "price": 84029.5 + "price": 172816 }, "12498": { "id": 12498, @@ -173182,7 +173076,7 @@ "defence": 40 } }, - "price": 70507.5 + "price": 101600 }, "12500": { "id": 12500, @@ -173223,7 +173117,7 @@ "defence": 40 } }, - "price": 175307.5 + "price": 211030 }, "12502": { "id": 12502, @@ -173264,7 +173158,7 @@ "defence": 40 } }, - "price": 334328 + "price": 447088 }, "12504": { "id": 12504, @@ -173305,7 +173199,7 @@ "defence": 40 } }, - "price": 99444 + "price": 147092 }, "12506": { "id": 12506, @@ -173346,7 +173240,7 @@ "defence": 40 } }, - "price": 108189.5 + "price": 127751 }, "12508": { "id": 12508, @@ -173387,7 +173281,7 @@ "defence": 40 } }, - "price": 269228 + "price": 294258 }, "12510": { "id": 12510, @@ -173428,7 +173322,7 @@ "defence": 40 } }, - "price": 441770.5 + "price": 615456 }, "12512": { "id": 12512, @@ -173469,7 +173363,7 @@ "defence": 40 } }, - "price": 107946.5 + "price": 156500 }, "12514": { "id": 12514, @@ -173507,7 +173401,7 @@ "slot": "cape", "requirements": null }, - "price": 24884 + "price": 21475 }, "12516": { "id": 12516, @@ -173545,7 +173439,7 @@ "slot": "head", "requirements": null }, - "price": 11853.5 + "price": 4129 }, "12518": { "id": 12518, @@ -173583,7 +173477,7 @@ "slot": "head", "requirements": null }, - "price": 7486 + "price": 6081 }, "12520": { "id": 12520, @@ -173621,7 +173515,7 @@ "slot": "head", "requirements": null }, - "price": 5875.5 + "price": 7379 }, "12522": { "id": 12522, @@ -173659,7 +173553,7 @@ "slot": "head", "requirements": null }, - "price": 4992.5 + "price": 6155 }, "12524": { "id": 12524, @@ -173697,7 +173591,7 @@ "slot": "head", "requirements": null }, - "price": 85000.5 + "price": 223641 }, "12526": { "id": 12526, @@ -173715,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": 319049 + "price": 454446 }, "12528": { "id": 12528, @@ -173733,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": 17832.5 + "price": 55832 }, "12530": { "id": 12530, @@ -173751,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": 30052 + "price": 21996 }, "12532": { "id": 12532, @@ -173769,7 +173663,7 @@ "examine": "Use on a dragon square shield to make it look fancier!", "wiki_name": "Dragon sq shield ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_sq_shield_ornament_kit", - "price": 140000 + "price": 10247 }, "12534": { "id": 12534, @@ -173787,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": 9350 + "price": 9950 }, "12536": { "id": 12536, @@ -173805,7 +173699,7 @@ "examine": "Use on dragon platelegs or plateskirt to make them look fancier!", "wiki_name": "Dragon legs/skirt ornament kit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_legs/skirt_ornament_kit", - "price": 7927 + "price": 10665 }, "12538": { "id": 12538, @@ -173823,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": 21688 + "price": 15000 }, "12540": { "id": 12540, @@ -173861,7 +173755,7 @@ "slot": "head", "requirements": null }, - "price": 17808 + "price": 14123 }, "12592": { "id": 12592, @@ -173931,7 +173825,7 @@ "ranged": 40 } }, - "price": 3015483 + "price": 4927604 }, "12598": { "id": 12598, @@ -173971,7 +173865,7 @@ "prayer": 31 } }, - "price": 1722111 + "price": 2535011 }, "12600": { "id": 12600, @@ -174042,7 +173936,7 @@ "slot": "ring", "requirements": null }, - "price": 3249365 + "price": 5212500 }, "12603": { "id": 12603, @@ -174080,7 +173974,7 @@ "slot": "ring", "requirements": null }, - "price": 132788.5 + "price": 318308 }, "12605": { "id": 12605, @@ -174118,7 +174012,7 @@ "slot": "ring", "requirements": null }, - "price": 65426.5 + "price": 179058 }, "12607": { "id": 12607, @@ -174339,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": 543 + "price": 2077 }, "12614": { "id": 12614, @@ -174356,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": 1499 + "price": 1989 }, "12615": { "id": 12615, @@ -174373,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": 1125.5 + "price": 2156 }, "12616": { "id": 12616, @@ -174390,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": 376.5 + "price": 3081 }, "12617": { "id": 12617, @@ -174407,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": 1398 + "price": 11728 }, "12618": { "id": 12618, @@ -174424,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": 1704.5 + "price": 7495 }, "12619": { "id": 12619, @@ -174441,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": 1705 + "price": 16469 }, "12620": { "id": 12620, @@ -174458,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": 1499 + "price": 18421 }, "12621": { "id": 12621, @@ -174475,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": 4816.5 + "price": 18239 }, "12622": { "id": 12622, @@ -174492,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": 1447.5 + "price": 22597 }, "12623": { "id": 12623, @@ -174509,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": 1938.5 + "price": 32000 }, "12624": { "id": 12624, @@ -174526,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": 1234.5 + "price": 13079 }, "12625": { "id": 12625, @@ -174544,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": 11297 + "price": 9231 }, "12627": { "id": 12627, @@ -174562,7 +174456,7 @@ "examine": "3 doses of stamina potion.", "wiki_name": "Stamina potion (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Stamina_potion#3_dose", - "price": 8464.5 + "price": 6899 }, "12629": { "id": 12629, @@ -174580,7 +174474,7 @@ "examine": "2 doses of stamina potion.", "wiki_name": "Stamina potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Stamina_potion#2_dose", - "price": 5679 + "price": 4492 }, "12631": { "id": 12631, @@ -174598,7 +174492,7 @@ "examine": "1 dose of stamina potion.", "wiki_name": "Stamina potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Stamina_potion#1_dose", - "price": 2822.5 + "price": 2298 }, "12633": { "id": 12633, @@ -174616,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": 3244 + "price": 4928 }, "12635": { "id": 12635, @@ -174634,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": 1570 + "price": 1770 }, "12637": { "id": 12637, @@ -174753,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": 1591 + "price": 776 }, "12641": { "id": 12641, @@ -174784,7 +174678,7 @@ "examine": "Teleports you to the Lumberyard.", "wiki_name": "Lumberyard teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Lumberyard_teleport", - "price": 5818 + "price": 8077 }, "12643": { "id": 12643, @@ -175357,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": 14600 + "price": 22391 }, "12697": { "id": 12697, @@ -175375,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, @@ -175393,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": 7300 + "price": 11831 }, "12701": { "id": 12701, @@ -175411,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": 3544.5 + "price": 5347 }, "12703": { "id": 12703, @@ -175992,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": 174173.5 + "price": 290000 }, "12759": { "id": 12759, @@ -176010,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": 200045 + "price": 182374 }, "12761": { "id": 12761, @@ -176028,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": 112157 + "price": 110783 }, "12763": { "id": 12763, @@ -176046,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": 393367 + "price": 700000 }, "12765": { "id": 12765, @@ -176320,7 +176214,7 @@ "examine": "Cold to the touch.", "wiki_name": "Frozen whip mix", "wiki_url": "https://oldschool.runescape.wiki/w/Frozen_whip_mix", - "price": 853059 + "price": 650729 }, "12771": { "id": 12771, @@ -176338,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": 865459.5 + "price": 679009 }, "12773": { "id": 12773, @@ -176483,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": 2358.5 + "price": 2011 }, "12776": { "id": 12776, @@ -176500,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": 1850 + "price": 1888 }, "12777": { "id": 12777, @@ -176517,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, @@ -176551,7 +176445,7 @@ "examine": "A teleport to Kharyrll.", "wiki_name": "Kharyrll teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Kharyrll_teleport_(tablet)", - "price": 1829.5 + "price": 2399 }, "12780": { "id": 12780, @@ -176568,7 +176462,7 @@ "examine": "A teleport to Lassar.", "wiki_name": "Lassar teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Lassar_teleport_(tablet)", - "price": 1598.5 + "price": 1924 }, "12781": { "id": 12781, @@ -176585,7 +176479,7 @@ "examine": "A teleport to Paddewwa.", "wiki_name": "Paddewwa teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Paddewwa_teleport_(tablet)", - "price": 2063 + "price": 718 }, "12782": { "id": 12782, @@ -176602,7 +176496,7 @@ "examine": "A teleport to Senntisten.", "wiki_name": "Senntisten teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Senntisten_teleport_(tablet)", - "price": 1543 + "price": 1690 }, "12783": { "id": 12783, @@ -176620,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": 7350.5 + "price": 4130 }, "12785": { "id": 12785, @@ -176672,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": 176377 + "price": 110278 }, "12788": { "id": 12788, @@ -176754,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": 201364 + "price": 146944 }, "12791": { "id": 12791, @@ -177057,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": 352500 + "price": 517500 }, "12800": { "id": 12800, @@ -177075,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": 614888.5 + "price": 347015 }, "12802": { "id": 12802, @@ -177093,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": 705001 + "price": 476829 }, "12804": { "id": 12804, @@ -177111,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": 4708342.5 + "price": 3912917 }, "12806": { "id": 12806, @@ -177566,7 +177460,7 @@ "prayer": 75 } }, - "price": 655477538.5 + "price": 730206512 }, "12819": { "id": 12819, @@ -177584,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": 662077999.5 + "price": 728449999 }, "12821": { "id": 12821, @@ -177626,7 +177520,7 @@ "magic": 65 } }, - "price": 43233878 + "price": 46238535 }, "12823": { "id": 12823, @@ -177644,7 +177538,7 @@ "examine": "A sigil in the shape of a spectral symbol.", "wiki_name": "Spectral sigil", "wiki_url": "https://oldschool.runescape.wiki/w/Spectral_sigil", - "price": 42796625 + "price": 45725000 }, "12825": { "id": 12825, @@ -177686,7 +177580,7 @@ "magic": 65 } }, - "price": 120474356.5 + "price": 131289444 }, "12827": { "id": 12827, @@ -177704,7 +177598,7 @@ "examine": "A sigil in the shape of an arcane symbol.", "wiki_name": "Arcane sigil", "wiki_url": "https://oldschool.runescape.wiki/w/Arcane_sigil", - "price": 120285895.5 + "price": 132500000 }, "12829": { "id": 12829, @@ -177745,7 +177639,7 @@ "prayer": 55 } }, - "price": 68551 + "price": 89334 }, "12831": { "id": 12831, @@ -177786,7 +177680,7 @@ "prayer": 50 } }, - "price": 724000 + "price": 722575 }, "12833": { "id": 12833, @@ -177804,7 +177698,7 @@ "examine": "A bottle of holy elixir.", "wiki_name": "Holy elixir", "wiki_url": "https://oldschool.runescape.wiki/w/Holy_elixir", - "price": 666750 + "price": 623125 }, "12835": { "id": 12835, @@ -177973,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": 7055612.5 + "price": 6827500 }, "12848": { "id": 12848, @@ -178055,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": 690859.5 + "price": 689517 }, "12851": { "id": 12851, @@ -178093,7 +177987,7 @@ "slot": "neck", "requirements": null }, - "price": 35330.5 + "price": 35330 }, "12853": { "id": 12853, @@ -178305,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": 15322 + "price": 9125 }, "12869": { "id": 12869, @@ -178323,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": 9384.5 + "price": 15000 }, "12871": { "id": 12871, @@ -178359,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": 870844 + "price": 842149 }, "12875": { "id": 12875, @@ -178377,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": 746086 + "price": 652171 }, "12877": { "id": 12877, @@ -178395,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": 3187713 + "price": 5321070 }, "12879": { "id": 12879, @@ -178413,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": 654406 + "price": 587008 }, "12881": { "id": 12881, @@ -178431,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": 6093045 + "price": 5417853 }, "12883": { "id": 12883, @@ -178449,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": 2312144.5 + "price": 1898805 }, "12885": { "id": 12885, @@ -178467,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": 819650 + "price": 493544 }, "12887": { "id": 12887, @@ -178955,7 +178849,7 @@ } ] }, - "price": 2505360.5 + "price": 2314365 }, "12902": { "id": 12902, @@ -179038,7 +178932,7 @@ } ] }, - "price": 11349348.5 + "price": 16542682 }, "12904": { "id": 12904, @@ -179135,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": 5744 + "price": 6304 }, "12907": { "id": 12907, @@ -179153,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": 4110 + "price": 4117 }, "12909": { "id": 12909, @@ -179171,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": 3106.5 + "price": 3532 }, "12911": { "id": 12911, @@ -179189,7 +179083,7 @@ "examine": "1 dose of antivenom potion.", "wiki_name": "Anti-venom (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Anti-venom#1_dose", - "price": 1967.5 + "price": 1202 }, "12913": { "id": 12913, @@ -179207,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": 8772.5 + "price": 12238 }, "12915": { "id": 12915, @@ -179225,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": 6313.5 + "price": 8601 }, "12917": { "id": 12917, @@ -179243,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": 5178.5 + "price": 5334 }, "12919": { "id": 12919, @@ -179261,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": 2166.5 + "price": 3023 }, "12921": { "id": 12921, @@ -179293,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": 2444306.5 + "price": 2261007 }, "12924": { "id": 12924, @@ -179311,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": 2487696.5 + "price": 2304876 }, "12926": { "id": 12926, @@ -179393,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": 2469114 + "price": 2270500 }, "12929": { "id": 12929, @@ -179411,7 +179305,7 @@ "examine": "Needs to be charged with Zulrah's scales.", "wiki_name": "Serpentine helm (Uncharged)", "wiki_url": "https://oldschool.runescape.wiki/w/Serpentine_helm#Uncharged", - "price": 2490047 + "price": 2352000 }, "12931": { "id": 12931, @@ -179465,7 +179359,7 @@ "examine": "This can be attached to a Staff of the Dead or a Trident of the Seas.", "wiki_name": "Magic fang", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_fang", - "price": 2438080 + "price": 2302275 }, "12934": { "id": 12934, @@ -179482,7 +179376,7 @@ "examine": "Flakes of toxic snakeskin.", "wiki_name": "Zulrah's scales", "wiki_url": "https://oldschool.runescape.wiki/w/Zulrah's_scales", - "price": 125 + "price": 118 }, "12935": { "id": 12935, @@ -179514,7 +179408,7 @@ "examine": "This is my Swamp!", "wiki_name": "Jar of swamp", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_swamp", - "price": 53339.5 + "price": 40471 }, "12938": { "id": 12938, @@ -179531,7 +179425,7 @@ "examine": "Teleports you to Zul-Andra.", "wiki_name": "Zul-andra teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Zul-andra_teleport", - "price": 21085 + "price": 15050 }, "12939": { "id": 12939, @@ -179755,7 +179649,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Bronze set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_set_(lg)", - "price": 368 + "price": 254 }, "12962": { "id": 12962, @@ -179772,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": 716.5 + "price": 686 }, "12964": { "id": 12964, @@ -179789,7 +179683,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Bronze trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_trimmed_set_(lg)", - "price": 29845.5 + "price": 32500 }, "12966": { "id": 12966, @@ -179806,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": 143992.5 + "price": 40916 }, "12968": { "id": 12968, @@ -179823,7 +179717,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Bronze gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_gold-trimmed_set_(lg)", - "price": 146715.5 + "price": 130001 }, "12970": { "id": 12970, @@ -179840,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": 111187 + "price": 296358 }, "12972": { "id": 12972, @@ -179857,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": 625 + "price": 353 }, "12974": { "id": 12974, @@ -179874,7 +179768,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Iron set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_set_(sk)", - "price": 750 + "price": 466 }, "12976": { "id": 12976, @@ -179891,7 +179785,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Iron trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_trimmed_set_(lg)", - "price": 119350.5 + "price": 138153 }, "12978": { "id": 12978, @@ -179908,7 +179802,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Iron trimmed set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_trimmed_set_(sk)", - "price": 147841.5 + "price": 126956 }, "12980": { "id": 12980, @@ -179925,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": 509361.5 + "price": 426000 }, "12982": { "id": 12982, @@ -179942,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": 515002.5 + "price": 385000 }, "12984": { "id": 12984, @@ -179959,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": 2109 + "price": 2067 }, "12986": { "id": 12986, @@ -179976,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": 2581 + "price": 2263 }, "12988": { "id": 12988, @@ -179993,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": 7712 + "price": 6152 }, "12990": { "id": 12990, @@ -180010,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": 5921 + "price": 14827 }, "12992": { "id": 12992, @@ -180027,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": 50101 + "price": 85151 }, "12994": { "id": 12994, @@ -180044,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": 134297 + "price": 76146 }, "12996": { "id": 12996, @@ -180061,7 +179955,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Black gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Black_gold-trimmed_set_(lg)", - "price": 413156 + "price": 386537 }, "12998": { "id": 12998, @@ -180078,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": 454981 + "price": 358078 }, "13000": { "id": 13000, @@ -180095,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": 5344.5 + "price": 16293 }, "13002": { "id": 13002, @@ -180112,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": 4518.5 + "price": 4900 }, "13004": { "id": 13004, @@ -180129,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": 21551 + "price": 21721 }, "13006": { "id": 13006, @@ -180146,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": 18993 + "price": 16096 }, "13008": { "id": 13008, @@ -180163,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": 33619 + "price": 25803 }, "13010": { "id": 13010, @@ -180180,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": 30826.5 + "price": 59480 }, "13012": { "id": 13012, @@ -180197,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, @@ -180214,7 +180108,7 @@ "examine": "A set containing a full helm, platebody, skirt and kiteshield.", "wiki_name": "Adamant set (sk)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_set_(sk)", - "price": 24065 + "price": 21109 }, "13016": { "id": 13016, @@ -180231,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, @@ -180248,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": 21839 + "price": 24807 }, "13020": { "id": 13020, @@ -180265,7 +180159,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Adamant gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_gold-trimmed_set_(lg)", - "price": 57754.5 + "price": 57000 }, "13022": { "id": 13022, @@ -180282,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": 80565.5 + "price": 44609 }, "13024": { "id": 13024, @@ -180316,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": 134914 + "price": 123440 }, "13028": { "id": 13028, @@ -180333,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": 150000 + "price": 179518 }, "13030": { "id": 13030, @@ -180350,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": 189785.5 + "price": 151809 }, "13032": { "id": 13032, @@ -180367,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": 373505 + "price": 406500 }, "13034": { "id": 13034, @@ -180384,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": 371563.5 + "price": 345389 }, "13036": { "id": 13036, @@ -180401,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": 23842225.5 + "price": 26932502 }, "13038": { "id": 13038, @@ -180418,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": 18661488 + "price": 20842509 }, "13040": { "id": 13040, @@ -180435,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": 267495 + "price": 364700 }, "13042": { "id": 13042, @@ -180452,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": 243911 + "price": 335025 }, "13044": { "id": 13044, @@ -180469,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": 847500 + "price": 1101178 }, "13046": { "id": 13046, @@ -180486,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": 885982 + "price": 1000529 }, "13048": { "id": 13048, @@ -180503,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": 157309 + "price": 201244 }, "13050": { "id": 13050, @@ -180520,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": 161764.5 + "price": 197497 }, "13052": { "id": 13052, @@ -180537,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": 147342.5 + "price": 193189 }, "13054": { "id": 13054, @@ -180554,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": 180230 + "price": 189017 }, "13056": { "id": 13056, @@ -180571,7 +180465,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Bandos rune armour set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Bandos_rune_armour_set_(lg)", - "price": 224121.5 + "price": 311227 }, "13058": { "id": 13058, @@ -180588,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": 253796 + "price": 355000 }, "13060": { "id": 13060, @@ -180605,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": 206966 + "price": 209665 }, "13062": { "id": 13062, @@ -180622,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": 339045 + "price": 203100 }, "13064": { "id": 13064, @@ -180640,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": 1193 + "price": 545 }, "13066": { "id": 13066, @@ -180658,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, @@ -184090,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": 11680.5 + "price": 22947 }, "13151": { "id": 13151, @@ -184108,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": 19616 + "price": 38469 }, "13153": { "id": 13153, @@ -184126,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": 10368 + "price": 28560 }, "13155": { "id": 13155, @@ -184144,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": 21264.5 + "price": 18681 }, "13157": { "id": 13157, @@ -184162,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": 19667 + "price": 40287 }, "13159": { "id": 13159, @@ -184180,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": 20999.5 + "price": 42460 }, "13161": { "id": 13161, @@ -184198,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": 1081399.5 + "price": 1361501 }, "13163": { "id": 13163, @@ -184216,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": 839454 + "price": 993985 }, "13165": { "id": 13165, @@ -184234,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": 809833 + "price": 852000 }, "13167": { "id": 13167, @@ -184252,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": 728564.5 + "price": 993000 }, "13169": { "id": 13169, @@ -184270,7 +184164,7 @@ "examine": "A set containing an Armadyl dragonhide coif, body, chaps and bracers.", "wiki_name": "Armadyl dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Armadyl_dragonhide_set", - "price": 1008110 + "price": 1217263 }, "13171": { "id": 13171, @@ -184288,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": 1014955 + "price": 980500 }, "13173": { "id": 13173, @@ -184305,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": 30728 + "price": 73773 }, "13175": { "id": 13175, @@ -184322,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": 24229 + "price": 36803 }, "13177": { "id": 13177, @@ -184513,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": 9147891.5 + "price": 12226628 }, "13192": { "id": 13192, @@ -184768,7 +184662,7 @@ "cost": 1, "weight": 1.814, "release_date": "2015-07-02", - "examine": "A disconcertingly purple egg", + "examine": "A disconcertingly rotten egg.", "wiki_name": "Rotten egg", "wiki_url": "https://oldschool.runescape.wiki/w/Rotten_egg", "price": 0 @@ -184971,7 +184865,7 @@ "examine": "A powerful crystal of magic.", "wiki_name": "Eternal crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Eternal_crystal", - "price": 3000000 + "price": 6816056 }, "13229": { "id": 13229, @@ -184989,7 +184883,7 @@ "examine": "A powerful crystal of flight.", "wiki_name": "Pegasian crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Pegasian_crystal", - "price": 105916.5 + "price": 214582 }, "13231": { "id": 13231, @@ -185007,7 +184901,7 @@ "examine": "A powerful crystal of strength.", "wiki_name": "Primordial crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Primordial_crystal", - "price": 27977500 + "price": 30771160 }, "13233": { "id": 13233, @@ -185025,7 +184919,7 @@ "examine": "A smouldering stone from the depths of Hell.", "wiki_name": "Smouldering stone", "wiki_url": "https://oldschool.runescape.wiki/w/Smouldering_stone", - "price": 5096585.5 + "price": 3809874 }, "13235": { "id": 13235, @@ -185066,7 +184960,7 @@ "defence": 75 } }, - "price": 3421710 + "price": 7263500 }, "13237": { "id": 13237, @@ -185107,7 +185001,7 @@ "defence": 75 } }, - "price": 31860246.5 + "price": 31860246 }, "13239": { "id": 13239, @@ -185148,7 +185042,7 @@ "strength": 75 } }, - "price": 28403101.5 + "price": 30889276 }, "13241": { "id": 13241, @@ -185450,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": 84081 + "price": 110048 }, "13247": { "id": 13247, @@ -185554,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": 46368.5 + "price": 109945 }, "13258": { "id": 13258, @@ -185771,7 +185665,7 @@ } ] }, - "price": 9032539 + "price": 14087378 }, "13265": { "id": 13265, @@ -185846,7 +185740,7 @@ } ] }, - "price": 2232984.5 + "price": 3531136 }, "13267": { "id": 13267, @@ -185921,7 +185815,7 @@ } ] }, - "price": 2364479 + "price": 3651000 }, "13269": { "id": 13269, @@ -185996,7 +185890,7 @@ } ] }, - "price": 2323499.5 + "price": 3230500 }, "13271": { "id": 13271, @@ -186071,7 +185965,7 @@ } ] }, - "price": 2358219.5 + "price": 3444297 }, "13273": { "id": 13273, @@ -186143,7 +186037,7 @@ "examine": "It smells abysmal.", "wiki_name": "Jar of miasma", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_miasma", - "price": 41869.5 + "price": 34210 }, "13279": { "id": 13279, @@ -186764,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", @@ -188555,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": 763 + "price": 548 }, "13385": { "id": 13385, @@ -188596,7 +188490,7 @@ "defence": 10 } }, - "price": 2905.5 + "price": 1757 }, "13387": { "id": 13387, @@ -188637,7 +188531,7 @@ "defence": 10 } }, - "price": 3899.5 + "price": 4043 }, "13389": { "id": 13389, @@ -188678,7 +188572,7 @@ "defence": 10 } }, - "price": 5515.5 + "price": 3724 }, "13391": { "id": 13391, @@ -188695,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": 27.5 + "price": 17 }, "13392": { "id": 13392, @@ -189159,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": 5 + "price": 10 }, "13423": { "id": 13423, @@ -189288,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, @@ -189381,7 +189275,7 @@ "examine": "I should try cooking this.", "wiki_name": "Raw anglerfish", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_anglerfish", - "price": 1170.5 + "price": 1789 }, "13441": { "id": 13441, @@ -189399,7 +189293,7 @@ "examine": "I hope this tastes better than it looks.", "wiki_name": "Anglerfish", "wiki_url": "https://oldschool.runescape.wiki/w/Anglerfish", - "price": 1334 + "price": 1958 }, "13443": { "id": 13443, @@ -189476,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": 355 + "price": 293 }, "13450": { "id": 13450, @@ -189509,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": 511 + "price": 367 }, "13453": { "id": 13453, @@ -189541,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": 903 + "price": 1557 }, "13456": { "id": 13456, @@ -189574,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": 525.5 + "price": 500 }, "13459": { "id": 13459, @@ -189607,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": 600 + "price": 710 }, "13462": { "id": 13462, @@ -189640,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": 278 + "price": 594 }, "13465": { "id": 13465, @@ -189673,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": 1811 + "price": 2019 }, "13468": { "id": 13468, @@ -189706,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": 706 + "price": 651 }, "13471": { "id": 13471, @@ -189739,7 +189633,7 @@ "examine": "The druid's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled chaos druid head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_chaos_druid_head#Item", - "price": 789.5 + "price": 744 }, "13474": { "id": 13474, @@ -189772,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": 888.5 + "price": 858 }, "13477": { "id": 13477, @@ -189805,7 +189699,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled ogre head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_ogre_head#Item", - "price": 1157.5 + "price": 1385 }, "13480": { "id": 13480, @@ -189838,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": 1750 + "price": 870 }, "13483": { "id": 13483, @@ -189871,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": 1745.5 + "price": 1437 }, "13486": { "id": 13486, @@ -189904,7 +189798,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Adept Reanimation.", "wiki_name": "Ensouled horror head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_horror_head#Item", - "price": 1902 + "price": 2040 }, "13489": { "id": 13489, @@ -189937,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": 1628.5 + "price": 1938 }, "13492": { "id": 13492, @@ -189970,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": 2016 + "price": 1917 }, "13495": { "id": 13495, @@ -190003,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": 2830 + "price": 2888 }, "13498": { "id": 13498, @@ -190036,7 +189930,7 @@ "examine": "The creature's soul is still in here. I could reanimate it with Expert Reanimation.", "wiki_name": "Ensouled tzhaar head (Item)", "wiki_url": "https://oldschool.runescape.wiki/w/Ensouled_tzhaar_head#Item", - "price": 3302.5 + "price": 4023 }, "13501": { "id": 13501, @@ -190069,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": 3754.5 + "price": 4051 }, "13504": { "id": 13504, @@ -190102,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": 4147.5 + "price": 4103 }, "13507": { "id": 13507, @@ -190135,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": 4442 + "price": 4578 }, "13510": { "id": 13510, @@ -190168,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": 7728.5 + "price": 7580 }, "13513": { "id": 13513, @@ -190875,7 +190769,6 @@ "name": "Shayzien supply crate", "members": true, "tradeable": true, - "noteable": true, "cost": 0, "lowalch": 0, "highalch": 0, @@ -191014,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": 701.5 + "price": 454 }, "13575": { "id": 13575, @@ -191096,7 +190989,7 @@ } ] }, - "price": 30239869.5 + "price": 34919897 }, "13579": { "id": 13579, @@ -192533,7 +192426,7 @@ } ] }, - "price": 87999998.5 + "price": 100200114 }, "13653": { "id": 13653, @@ -192620,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, @@ -192635,7 +192528,7 @@ "examine": "A card which has magical properties.", "wiki_name": "Teleport card", "wiki_url": "https://oldschool.runescape.wiki/w/Teleport_card", - "price": 218 + "price": 172 }, "13660": { "id": 13660, @@ -192983,8 +192876,6 @@ "equipable": true, "equipable_by_player": true, "cost": 100, - "lowalch": 40, - "highalch": 60, "weight": 0.453, "release_date": "2016-04-01", "examine": "The cape worn by master cabbage pickers.", @@ -193008,7 +192899,9 @@ "slot": "cape", "requirements": null }, - "price": 0 + "price": 0, + "lowalch": 40, + "highalch": 60 }, "13680": { "id": 13680, @@ -193184,7 +193077,7 @@ } ] }, - "price": 459463.5 + "price": 812250 }, "19481": { "id": 19481, @@ -193252,7 +193145,7 @@ } ] }, - "price": 584504.5 + "price": 863282 }, "19484": { "id": 19484, @@ -193291,7 +193184,7 @@ "ranged": 65 } }, - "price": 1031 + "price": 904 }, "19486": { "id": 19486, @@ -193330,7 +193223,7 @@ "ranged": 65 } }, - "price": 997 + "price": 1117 }, "19488": { "id": 19488, @@ -193369,7 +193262,7 @@ "ranged": 65 } }, - "price": 1272 + "price": 965 }, "19490": { "id": 19490, @@ -193408,7 +193301,7 @@ "ranged": 65 } }, - "price": 1919.5 + "price": 2249 }, "19493": { "id": 19493, @@ -193426,7 +193319,7 @@ "examine": "This looks valuable.", "wiki_name": "Zenyte", "wiki_url": "https://oldschool.runescape.wiki/w/Zenyte", - "price": 10121448.5 + "price": 13470860 }, "19496": { "id": 19496, @@ -193444,7 +193337,7 @@ "examine": "This would be worth more cut.", "wiki_name": "Uncut zenyte", "wiki_url": "https://oldschool.runescape.wiki/w/Uncut_zenyte", - "price": 9500000 + "price": 13317679 }, "19501": { "id": 19501, @@ -193462,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": 9250000.5 + "price": 13237807 }, "19505": { "id": 19505, @@ -193660,7 +193553,7 @@ "examine": "A shard of unstable zenyte.", "wiki_name": "Zenyte shard", "wiki_url": "https://oldschool.runescape.wiki/w/Zenyte_shard", - "price": 7412382.5 + "price": 12425500 }, "19532": { "id": 19532, @@ -193698,7 +193591,7 @@ "slot": "hands", "requirements": null }, - "price": 9525958 + "price": 12057418 }, "19535": { "id": 19535, @@ -193736,7 +193629,7 @@ "slot": "neck", "requirements": null }, - "price": 10638500 + "price": 13397000 }, "19538": { "id": 19538, @@ -193774,7 +193667,7 @@ "slot": "ring", "requirements": null }, - "price": 9712000 + "price": 11590916 }, "19541": { "id": 19541, @@ -193812,7 +193705,7 @@ "slot": "neck", "requirements": null }, - "price": 10106111 + "price": 15888889 }, "19544": { "id": 19544, @@ -193852,7 +193745,7 @@ "hitpoints": 75 } }, - "price": 9936867 + "price": 14369505 }, "19547": { "id": 19547, @@ -193892,7 +193785,7 @@ "hitpoints": 75 } }, - "price": 9937427.5 + "price": 14579105 }, "19550": { "id": 19550, @@ -193932,7 +193825,7 @@ "hitpoints": 75 } }, - "price": 9913014 + "price": 14143219 }, "19553": { "id": 19553, @@ -193972,7 +193865,7 @@ "hitpoints": 75 } }, - "price": 9908955 + "price": 14529025 }, "19556": { "id": 19556, @@ -194147,7 +194040,7 @@ "examine": "Needs a shaft.", "wiki_name": "Bronze javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Bronze_javelin_heads", - "price": 45.5 + "price": 42 }, "19572": { "id": 19572, @@ -194164,7 +194057,7 @@ "examine": "Needs a shaft.", "wiki_name": "Iron javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Iron_javelin_heads", - "price": 41.5 + "price": 27 }, "19574": { "id": 19574, @@ -194181,7 +194074,7 @@ "examine": "Needs a shaft.", "wiki_name": "Steel javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_javelin_heads", - "price": 31.5 + "price": 66 }, "19576": { "id": 19576, @@ -194198,7 +194091,7 @@ "examine": "Needs a shaft.", "wiki_name": "Mithril javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Mithril_javelin_heads", - "price": 66 + "price": 63 }, "19578": { "id": 19578, @@ -194215,7 +194108,7 @@ "examine": "Needs a shaft.", "wiki_name": "Adamant javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Adamant_javelin_heads", - "price": 138.5 + "price": 174 }, "19580": { "id": 19580, @@ -194232,7 +194125,7 @@ "examine": "Needs a shaft.", "wiki_name": "Rune javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Rune_javelin_heads", - "price": 607 + "price": 557 }, "19582": { "id": 19582, @@ -194249,7 +194142,7 @@ "examine": "Needs a shaft.", "wiki_name": "Dragon javelin heads", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_javelin_heads", - "price": 978.5 + "price": 916 }, "19584": { "id": 19584, @@ -194266,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 + "price": 4 }, "19586": { "id": 19586, @@ -194302,7 +194195,7 @@ "examine": "A heavy wooden frame.", "wiki_name": "Heavy frame", "wiki_url": "https://oldschool.runescape.wiki/w/Heavy_frame", - "price": 96184.5 + "price": 107500 }, "19592": { "id": 19592, @@ -194320,7 +194213,7 @@ "examine": "Sturdy struts.", "wiki_name": "Ballista limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Ballista_limbs", - "price": 31324 + "price": 31332 }, "19595": { "id": 19595, @@ -194338,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": 39534 + "price": 30550 }, "19598": { "id": 19598, @@ -194356,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": 51154.5 + "price": 129282 }, "19601": { "id": 19601, @@ -194392,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": 62647.5 + "price": 108444 }, "19607": { "id": 19607, @@ -194410,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": 170000 + "price": 185314 }, "19610": { "id": 19610, @@ -194445,7 +194338,7 @@ "examine": "A teleport to the Arceuus Library", "wiki_name": "Arceuus library teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Arceuus_library_teleport_(tablet)", - "price": 1162 + "price": 1543 }, "19615": { "id": 19615, @@ -194462,7 +194355,7 @@ "examine": "A teleport to Draynor Manor.", "wiki_name": "Draynor manor teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Draynor_manor_teleport_(tablet)", - "price": 2992 + "price": 2249 }, "19617": { "id": 19617, @@ -194479,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, @@ -194496,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": 1818 + "price": 1960 }, "19621": { "id": 19621, @@ -194513,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": 2138 + "price": 2340 }, "19623": { "id": 19623, @@ -194530,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": 1880 + "price": 2468 }, "19625": { "id": 19625, @@ -194547,7 +194440,7 @@ "examine": "A teleport to Harmony Island.", "wiki_name": "Harmony island teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Harmony_island_teleport_(tablet)", - "price": 4235.5 + "price": 2794 }, "19627": { "id": 19627, @@ -194564,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": 1775 + "price": 2429 }, "19629": { "id": 19629, @@ -194581,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": 2943 + "price": 2942 }, "19631": { "id": 19631, @@ -194598,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": 4837 + "price": 2908 }, "19634": { "id": 19634, @@ -194888,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": 568 + "price": 943 }, "19656": { "id": 19656, @@ -194906,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": 1975.5 + "price": 2236 }, "19659": { "id": 19659, @@ -194940,7 +194833,7 @@ "examine": "Mmm botanical pie.", "wiki_name": "Botanical pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Botanical_pie#Full", - "price": 1618.5 + "price": 1955 }, "19665": { "id": 19665, @@ -194990,7 +194883,7 @@ "examine": "Logs cut from a redwood tree.", "wiki_name": "Redwood logs", "wiki_url": "https://oldschool.runescape.wiki/w/Redwood_logs", - "price": 562 + "price": 505 }, "19672": { "id": 19672, @@ -195008,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": 4323.5 + "price": 3326 }, "19675": { "id": 19675, @@ -195402,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": 404411.5 + "price": 397500 }, "19704": { "id": 19704, @@ -195456,7 +195349,7 @@ "slot": "neck", "requirements": null }, - "price": 72663888.5 + "price": 71750000 }, "19710": { "id": 19710, @@ -195658,7 +195551,7 @@ "slot": "head", "requirements": null }, - "price": 32500 + "price": 13527 }, "19727": { "id": 19727, @@ -195696,7 +195589,7 @@ "slot": "head", "requirements": null }, - "price": 19972 + "price": 25517 }, "19730": { "id": 19730, @@ -195724,34 +195617,6 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Lucky_impling_jar", "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 - }, - "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 - }, "19812": { "id": 19812, "name": "Key (elite)", @@ -195775,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 @@ -195900,7 +195765,7 @@ } ] }, - "price": 1585.5 + "price": 7877 }, "19915": { "id": 19915, @@ -195938,7 +195803,7 @@ "slot": "head", "requirements": null }, - "price": 10743.5 + "price": 9336 }, "19918": { "id": 19918, @@ -196045,7 +195910,7 @@ "defence": 40 } }, - "price": 670789.5 + "price": 958346 }, "19924": { "id": 19924, @@ -196086,7 +195951,7 @@ "defence": 40 } }, - "price": 471226.5 + "price": 500853 }, "19927": { "id": 19927, @@ -196127,7 +195992,7 @@ "defence": 40 } }, - "price": 451550 + "price": 615866 }, "19930": { "id": 19930, @@ -196168,7 +196033,7 @@ "defence": 40 } }, - "price": 958465 + "price": 1149504 }, "19933": { "id": 19933, @@ -196209,7 +196074,7 @@ "defence": 40 } }, - "price": 526664.5 + "price": 699787 }, "19936": { "id": 19936, @@ -196250,7 +196115,7 @@ "defence": 40 } }, - "price": 867240.5 + "price": 982494 }, "19939": { "id": 19939, @@ -196364,7 +196229,7 @@ "slot": "neck", "requirements": null }, - "price": 4289.5 + "price": 7667 }, "19946": { "id": 19946, @@ -196402,7 +196267,7 @@ "slot": "neck", "requirements": null }, - "price": 3500 + "price": 14543 }, "19949": { "id": 19949, @@ -196440,7 +196305,7 @@ "slot": "neck", "requirements": null }, - "price": 4700 + "price": 47500 }, "19952": { "id": 19952, @@ -196478,7 +196343,7 @@ "slot": "neck", "requirements": null }, - "price": 5000 + "price": 8038 }, "19955": { "id": 19955, @@ -196516,7 +196381,7 @@ "slot": "neck", "requirements": null }, - "price": 4950 + "price": 32501 }, "19958": { "id": 19958, @@ -196554,7 +196419,7 @@ "slot": "body", "requirements": null }, - "price": 919498.5 + "price": 1235998 }, "19961": { "id": 19961, @@ -196592,7 +196457,7 @@ "slot": "hands", "requirements": null }, - "price": 236015.5 + "price": 4310214 }, "19964": { "id": 19964, @@ -196630,7 +196495,7 @@ "slot": "legs", "requirements": null }, - "price": 975000 + "price": 707482 }, "19967": { "id": 19967, @@ -196668,7 +196533,7 @@ "slot": "feet", "requirements": null }, - "price": 359401.5 + "price": 470500 }, "19970": { "id": 19970, @@ -196706,7 +196571,7 @@ "slot": "neck", "requirements": null }, - "price": 1125000 + "price": 557640 }, "19973": { "id": 19973, @@ -196744,7 +196609,7 @@ "slot": "body", "requirements": null }, - "price": 2292449 + "price": 2178500 }, "19976": { "id": 19976, @@ -196782,7 +196647,7 @@ "slot": "hands", "requirements": null }, - "price": 174919.5 + "price": 295064 }, "19979": { "id": 19979, @@ -196820,7 +196685,7 @@ "slot": "legs", "requirements": null }, - "price": 190952 + "price": 152508 }, "19982": { "id": 19982, @@ -196858,7 +196723,7 @@ "slot": "feet", "requirements": null }, - "price": 465733 + "price": 938826 }, "19985": { "id": 19985, @@ -196896,7 +196761,7 @@ "slot": "neck", "requirements": null }, - "price": 175087 + "price": 248093 }, "19988": { "id": 19988, @@ -196934,7 +196799,7 @@ "slot": "head", "requirements": null }, - "price": 80000 + "price": 65500 }, "19991": { "id": 19991, @@ -196972,7 +196837,7 @@ "slot": "head", "requirements": null }, - "price": 25863.5 + "price": 44515 }, "19994": { "id": 19994, @@ -197012,7 +196877,7 @@ "ranged": 40 } }, - "price": 522812 + "price": 643798 }, "19997": { "id": 19997, @@ -197052,7 +196917,7 @@ "prayer": 31 } }, - "price": 866486.5 + "price": 1119494 }, "20000": { "id": 20000, @@ -197141,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": 280180 + "price": 410000 }, "20005": { "id": 20005, @@ -197178,7 +197043,7 @@ "slot": "ring", "requirements": null }, - "price": 10116500 + "price": 10540101 }, "20008": { "id": 20008, @@ -197216,7 +197081,7 @@ "slot": "head", "requirements": null }, - "price": 5594 + "price": 21675 }, "20011": { "id": 20011, @@ -197403,7 +197268,7 @@ "slot": "ring", "requirements": null }, - "price": 15442421.5 + "price": 20681001 }, "20020": { "id": 20020, @@ -197441,7 +197306,7 @@ "slot": "head", "requirements": null }, - "price": 8424.5 + "price": 9000 }, "20023": { "id": 20023, @@ -197479,7 +197344,7 @@ "slot": "head", "requirements": null }, - "price": 12923 + "price": 5681 }, "20026": { "id": 20026, @@ -197517,7 +197382,7 @@ "slot": "head", "requirements": null }, - "price": 54047 + "price": 80662 }, "20029": { "id": 20029, @@ -197555,7 +197420,7 @@ "slot": "head", "requirements": null }, - "price": 35884.5 + "price": 62500 }, "20032": { "id": 20032, @@ -197593,7 +197458,7 @@ "slot": "head", "requirements": null }, - "price": 9784 + "price": 46893 }, "20035": { "id": 20035, @@ -197633,7 +197498,7 @@ "defence": 35 } }, - "price": 30053 + "price": 32568 }, "20038": { "id": 20038, @@ -197673,7 +197538,7 @@ "defence": 35 } }, - "price": 46232.5 + "price": 54343 }, "20041": { "id": 20041, @@ -197713,7 +197578,7 @@ "defence": 35 } }, - "price": 43623.5 + "price": 42750 }, "20044": { "id": 20044, @@ -197753,7 +197618,7 @@ "defence": 35 } }, - "price": 45555.5 + "price": 44179 }, "20047": { "id": 20047, @@ -197793,7 +197658,7 @@ "defence": 35 } }, - "price": 22198 + "price": 38961 }, "20050": { "id": 20050, @@ -197831,7 +197696,7 @@ "slot": "cape", "requirements": null }, - "price": 739509 + "price": 874623 }, "20053": { "id": 20053, @@ -197869,7 +197734,7 @@ "slot": "head", "requirements": null }, - "price": 32103 + "price": 95000 }, "20056": { "id": 20056, @@ -197935,7 +197800,7 @@ } ] }, - "price": 266000.5 + "price": 800000 }, "20059": { "id": 20059, @@ -197973,7 +197838,7 @@ "slot": "head", "requirements": null }, - "price": 3000500 + "price": 4399500 }, "20062": { "id": 20062, @@ -197991,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": 3023291 + "price": 3640974 }, "20065": { "id": 20065, @@ -198009,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": 4701868.5 + "price": 4643946 }, "20068": { "id": 20068, @@ -198027,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": 147356 + "price": 112652 }, "20071": { "id": 20071, @@ -198045,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": 5386502 + "price": 5742889 }, "20074": { "id": 20074, @@ -198063,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": 610004.5 + "price": 3655002 }, "20077": { "id": 20077, @@ -198081,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": 194501 + "price": 213322 }, "20080": { "id": 20080, @@ -198119,7 +197984,7 @@ "slot": "head", "requirements": null }, - "price": 826924 + "price": 3650000 }, "20083": { "id": 20083, @@ -198157,7 +198022,7 @@ "slot": "body", "requirements": null }, - "price": 288000 + "price": 3282672 }, "20086": { "id": 20086, @@ -198195,7 +198060,7 @@ "slot": "hands", "requirements": null }, - "price": 200002.5 + "price": 889234 }, "20089": { "id": 20089, @@ -198233,7 +198098,7 @@ "slot": "legs", "requirements": null }, - "price": 312500 + "price": 1405000 }, "20092": { "id": 20092, @@ -198271,7 +198136,7 @@ "slot": "feet", "requirements": null }, - "price": 108846 + "price": 915000 }, "20095": { "id": 20095, @@ -198309,7 +198174,7 @@ "slot": "head", "requirements": null }, - "price": 6593117.5 + "price": 12077654 }, "20098": { "id": 20098, @@ -198347,7 +198212,7 @@ "slot": "body", "requirements": null }, - "price": 18715936 + "price": 25081572 }, "20101": { "id": 20101, @@ -198385,7 +198250,7 @@ "slot": "hands", "requirements": null }, - "price": 3633000.5 + "price": 3717444 }, "20104": { "id": 20104, @@ -198423,7 +198288,7 @@ "slot": "legs", "requirements": null }, - "price": 7962500 + "price": 8500000 }, "20107": { "id": 20107, @@ -198461,7 +198326,7 @@ "slot": "feet", "requirements": null }, - "price": 2021997.5 + "price": 2298365 }, "20110": { "id": 20110, @@ -198499,7 +198364,7 @@ "slot": "head", "requirements": null }, - "price": 2056 + "price": 14730 }, "20113": { "id": 20113, @@ -198537,7 +198402,7 @@ "slot": "head", "requirements": null }, - "price": 3362.5 + "price": 27500 }, "20116": { "id": 20116, @@ -198575,7 +198440,7 @@ "slot": "head", "requirements": null }, - "price": 900.5 + "price": 1737 }, "20119": { "id": 20119, @@ -198613,7 +198478,7 @@ "slot": "head", "requirements": null }, - "price": 1000 + "price": 6969 }, "20122": { "id": 20122, @@ -198651,7 +198516,7 @@ "slot": "head", "requirements": null }, - "price": 4986.5 + "price": 5008 }, "20125": { "id": 20125, @@ -198689,7 +198554,7 @@ "slot": "head", "requirements": null }, - "price": 4068.5 + "price": 45225 }, "20128": { "id": 20128, @@ -198730,7 +198595,7 @@ "defence": 20 } }, - "price": 23800 + "price": 35923 }, "20131": { "id": 20131, @@ -198771,7 +198636,7 @@ "defence": 20 } }, - "price": 81369 + "price": 82430 }, "20134": { "id": 20134, @@ -198812,7 +198677,7 @@ "defence": 20 } }, - "price": 25759 + "price": 51510 }, "20137": { "id": 20137, @@ -198853,7 +198718,7 @@ "defence": 20 } }, - "price": 52585.5 + "price": 66163 }, "20140": { "id": 20140, @@ -198894,7 +198759,7 @@ "defence": 20 } }, - "price": 36859 + "price": 35641 }, "20143": { "id": 20143, @@ -198912,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": 154679.5 + "price": 62066 }, "20146": { "id": 20146, @@ -198951,7 +198816,7 @@ "defence": 40 } }, - "price": 1156916.5 + "price": 1991501 }, "20149": { "id": 20149, @@ -198990,7 +198855,7 @@ "defence": 40 } }, - "price": 2311606 + "price": 3851499 }, "20152": { "id": 20152, @@ -199029,7 +198894,7 @@ "defence": 40 } }, - "price": 1324004 + "price": 1801999 }, "20155": { "id": 20155, @@ -199103,7 +198968,7 @@ } ] }, - "price": 4195749.5 + "price": 6432000 }, "20158": { "id": 20158, @@ -199178,7 +199043,7 @@ } ] }, - "price": 862500 + "price": 5074527 }, "20161": { "id": 20161, @@ -199253,7 +199118,7 @@ } ] }, - "price": 417500 + "price": 760499 }, "20164": { "id": 20164, @@ -199352,7 +199217,7 @@ "slot": "shield", "requirements": null }, - "price": 46669 + "price": 39997 }, "20169": { "id": 20169, @@ -199391,7 +199256,7 @@ "defence": 5 } }, - "price": 9840 + "price": 3889 }, "20172": { "id": 20172, @@ -199430,7 +199295,7 @@ "defence": 5 } }, - "price": 3250 + "price": 2250 }, "20175": { "id": 20175, @@ -199469,7 +199334,7 @@ "defence": 5 } }, - "price": 12192.5 + "price": 7506 }, "20178": { "id": 20178, @@ -199508,7 +199373,7 @@ "defence": 5 } }, - "price": 5750 + "price": 12254 }, "20181": { "id": 20181, @@ -199547,7 +199412,7 @@ "defence": 5 } }, - "price": 6611 + "price": 10681 }, "20184": { "id": 20184, @@ -199586,7 +199451,7 @@ "defence": 5 } }, - "price": 5269.5 + "price": 2848 }, "20187": { "id": 20187, @@ -199625,7 +199490,7 @@ "defence": 5 } }, - "price": 3594.5 + "price": 2730 }, "20190": { "id": 20190, @@ -199664,7 +199529,7 @@ "defence": 5 } }, - "price": 2833 + "price": 6068 }, "20193": { "id": 20193, @@ -199703,7 +199568,7 @@ "defence": 5 } }, - "price": 553 + "price": 4130 }, "20196": { "id": 20196, @@ -199742,7 +199607,7 @@ "defence": 5 } }, - "price": 7701.5 + "price": 7152 }, "20199": { "id": 20199, @@ -199779,7 +199644,7 @@ "slot": "body", "requirements": null }, - "price": 4484000 + "price": 4574812 }, "20202": { "id": 20202, @@ -199816,7 +199681,7 @@ "slot": "legs", "requirements": null }, - "price": 2527416.5 + "price": 2395959 }, "20205": { "id": 20205, @@ -199853,7 +199718,7 @@ "slot": "head", "requirements": null }, - "price": 394088.5 + "price": 602749 }, "20208": { "id": 20208, @@ -199890,7 +199755,7 @@ "slot": "body", "requirements": null }, - "price": 184875 + "price": 349627 }, "20211": { "id": 20211, @@ -199927,7 +199792,7 @@ "slot": "cape", "requirements": null }, - "price": 3039641.5 + "price": 3555750 }, "20214": { "id": 20214, @@ -199964,7 +199829,7 @@ "slot": "cape", "requirements": null }, - "price": 1324500 + "price": 1386500 }, "20217": { "id": 20217, @@ -200001,7 +199866,7 @@ "slot": "cape", "requirements": null }, - "price": 1243635.5 + "price": 1252117 }, "20220": { "id": 20220, @@ -200039,7 +199904,7 @@ "slot": "ammo", "requirements": null }, - "price": 8908.5 + "price": 20969 }, "20223": { "id": 20223, @@ -200077,7 +199942,7 @@ "slot": "ammo", "requirements": null }, - "price": 28316 + "price": 49551 }, "20226": { "id": 20226, @@ -200115,7 +199980,7 @@ "slot": "ammo", "requirements": null }, - "price": 4097.5 + "price": 13525 }, "20229": { "id": 20229, @@ -200153,7 +200018,7 @@ "slot": "ammo", "requirements": null }, - "price": 4592 + "price": 27785 }, "20232": { "id": 20232, @@ -200191,7 +200056,7 @@ "slot": "ammo", "requirements": null }, - "price": 12000 + "price": 23247 }, "20235": { "id": 20235, @@ -200229,7 +200094,7 @@ "slot": "ammo", "requirements": null }, - "price": 5684.5 + "price": 15554 }, "20238": { "id": 20238, @@ -200284,7 +200149,7 @@ "slot": "body", "requirements": null }, - "price": 1295 + "price": 3651 }, "20243": { "id": 20243, @@ -200350,7 +200215,7 @@ } ] }, - "price": 2100 + "price": 2569 }, "20246": { "id": 20246, @@ -200388,7 +200253,7 @@ "slot": "head", "requirements": null }, - "price": 3017 + "price": 7859 }, "20249": { "id": 20249, @@ -200582,7 +200447,7 @@ } ] }, - "price": 2338.5 + "price": 5832 }, "20257": { "id": 20257, @@ -200648,7 +200513,7 @@ } ] }, - "price": 1533 + "price": 5591 }, "20260": { "id": 20260, @@ -200714,7 +200579,7 @@ } ] }, - "price": 3110.5 + "price": 42535 }, "20263": { "id": 20263, @@ -200780,7 +200645,7 @@ } ] }, - "price": 1120 + "price": 1007 }, "20266": { "id": 20266, @@ -200818,7 +200683,7 @@ "slot": "head", "requirements": null }, - "price": 10037.5 + "price": 63249 }, "20269": { "id": 20269, @@ -200856,7 +200721,7 @@ "slot": "head", "requirements": null }, - "price": 2425 + "price": 13750 }, "20272": { "id": 20272, @@ -200896,7 +200761,7 @@ "defence": 30 } }, - "price": 6241 + "price": 8142 }, "20275": { "id": 20275, @@ -200914,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": 3826 + "price": 17136 }, "20278": { "id": 20278, @@ -201369,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": 38940 + "price": 49281 }, "20379": { "id": 20379, @@ -201386,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": 63351 + "price": 60283 }, "20382": { "id": 20382, @@ -201403,7 +201268,7 @@ "examine": "A set containing a full helm, platebody, legs and kiteshield.", "wiki_name": "Steel gold-trimmed set (lg)", "wiki_url": "https://oldschool.runescape.wiki/w/Steel_gold-trimmed_set_(lg)", - "price": 41727 + "price": 52187 }, "20385": { "id": 20385, @@ -201420,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": 75693.5 + "price": 68784 }, "20389": { "id": 20389, @@ -201962,7 +201827,7 @@ "slot": "feet", "requirements": null }, - "price": 348000 + "price": 754542 }, "20436": { "id": 20436, @@ -202000,7 +201865,7 @@ "slot": "body", "requirements": null }, - "price": 251290.5 + "price": 295009 }, "20439": { "id": 20439, @@ -202038,7 +201903,7 @@ "slot": "head", "requirements": null }, - "price": 249290.5 + "price": 1114501 }, "20442": { "id": 20442, @@ -202076,7 +201941,7 @@ "slot": "legs", "requirements": null }, - "price": 392563.5 + "price": 262229 }, "20445": { "id": 20445, @@ -202614,7 +202479,7 @@ "magic": 40 } }, - "price": 292990 + "price": 579687 }, "20520": { "id": 20520, @@ -202654,7 +202519,7 @@ "magic": 40 } }, - "price": 164337 + "price": 340256 }, "20523": { "id": 20523, @@ -203179,7 +203044,7 @@ } ] }, - "price": 723744 + "price": 712555 }, "20593": { "id": 20593, @@ -203297,7 +203162,7 @@ "magic": 40 } }, - "price": 192754 + "price": 392568 }, "20598": { "id": 20598, @@ -204490,7 +204355,7 @@ "magic": 50 } }, - "price": 762790.5 + "price": 998473 }, "20718": { "id": 20718, @@ -204507,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": 2348 + "price": 2718 }, "20720": { "id": 20720, @@ -204601,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": 89552447 + "price": 111866451 }, "20727": { "id": 20727, @@ -204760,7 +204625,7 @@ } ] }, - "price": 26833 + "price": 92774 }, "20733": { "id": 20733, @@ -204843,7 +204708,7 @@ } ] }, - "price": 62663 + "price": 128118 }, "20736": { "id": 20736, @@ -204926,7 +204791,7 @@ } ] }, - "price": 11447 + "price": 25906 }, "20739": { "id": 20739, @@ -205009,7 +204874,7 @@ } ] }, - "price": 57365 + "price": 63250 }, "20742": { "id": 20742, @@ -205074,7 +204939,7 @@ "examine": "The Grapes of Wrath.", "wiki_name": "Zamorak's grapes", "wiki_url": "https://oldschool.runescape.wiki/w/Zamorak's_grapes", - "price": 1438 + "price": 1206 }, "20752": { "id": 20752, @@ -205168,7 +205033,7 @@ } ] }, - "price": 777178 + "price": 1288259 }, "20760": { "id": 20760, @@ -205965,10 +205830,10 @@ "name": "Kindling", "members": true, "tradeable": true, + "stackable": true, "cost": 2, "lowalch": 0, "highalch": 1, - "weight": 0.76, "release_date": "2017-01-05", "examine": "It feels weak, but it might be okay for burning.", "wiki_name": "Kindling (Chambers of Xeric)", @@ -206354,7 +206219,7 @@ } ] }, - "price": 396 + "price": 331 }, "20851": { "id": 20851, @@ -206853,10 +206718,10 @@ "name": "Cavern grubs", "members": true, "tradeable": true, + "stackable": true, "cost": 1, "lowalch": 0, "highalch": 0, - "weight": 0.01, "release_date": "2017-01-05", "examine": "Freshly hatched. They smell utterly revolting, but they're quite juicy.", "wiki_name": "Cavern grubs", @@ -208482,7 +208347,7 @@ } ] }, - "price": 1460631444 + "price": 1649756620 }, "21000": { "id": 21000, @@ -208523,7 +208388,7 @@ "ranged": 75 } }, - "price": 18907738.5 + "price": 18649158 }, "21003": { "id": 21003, @@ -208592,7 +208457,7 @@ } ] }, - "price": 19458196 + "price": 164749997 }, "21006": { "id": 21006, @@ -208674,7 +208539,7 @@ } ] }, - "price": 98036236 + "price": 121356663 }, "21009": { "id": 21009, @@ -208749,7 +208614,7 @@ } ] }, - "price": 53499 + "price": 88962 }, "21012": { "id": 21012, @@ -208817,7 +208682,7 @@ } ] }, - "price": 60435934.5 + "price": 67021008 }, "21015": { "id": 21015, @@ -208879,7 +208744,7 @@ } ] }, - "price": 16486796 + "price": 19851555 }, "21018": { "id": 21018, @@ -208920,7 +208785,7 @@ "magic": 75 } }, - "price": 52087050 + "price": 65346386 }, "21021": { "id": 21021, @@ -208961,7 +208826,7 @@ "magic": 75 } }, - "price": 171969462.5 + "price": 186391784 }, "21024": { "id": 21024, @@ -209002,7 +208867,7 @@ "magic": 75 } }, - "price": 141536530 + "price": 143733516 }, "21027": { "id": 21027, @@ -209091,7 +208956,7 @@ } ] }, - "price": 1849532.5 + "price": 1975480 }, "21031": { "id": 21031, @@ -209251,17 +209116,17 @@ "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": 38173442 + "price": 17174098 }, "21036": { "id": 21036, "name": "Mallignum root plank", "members": true, "tradeable": true, + "stackable": true, "cost": 2, "lowalch": 0, "highalch": 1, - "weight": 0.8, "release_date": "2017-01-12", "examine": "Tekton's old building materials.", "wiki_name": "Mallignum root plank", @@ -209311,7 +209176,7 @@ "examine": "An insignia representing Kodai, Xeric's fearsome wizards.", "wiki_name": "Kodai insignia", "wiki_url": "https://oldschool.runescape.wiki/w/Kodai_insignia", - "price": 95530745 + "price": 120316500 }, "21046": { "id": 21046, @@ -209359,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": 366603989.5 + "price": 395121063 }, "21052": { "id": 21052, @@ -209753,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": 3077688.5 + "price": 6347459 }, "21081": { "id": 21081, @@ -209791,7 +209656,7 @@ "slot": "ring", "requirements": null }, - "price": 955 + "price": 2000 }, "21084": { "id": 21084, @@ -209829,7 +209694,7 @@ "slot": "ring", "requirements": null }, - "price": 660.5 + "price": 2571 }, "21087": { "id": 21087, @@ -209867,7 +209732,7 @@ "slot": "ring", "requirements": null }, - "price": 1461.5 + "price": 6009 }, "21090": { "id": 21090, @@ -209905,7 +209770,7 @@ "slot": "neck", "requirements": null }, - "price": 612 + "price": 1986 }, "21093": { "id": 21093, @@ -209943,7 +209808,7 @@ "slot": "neck", "requirements": null }, - "price": 571 + "price": 876 }, "21096": { "id": 21096, @@ -209981,7 +209846,7 @@ "slot": "neck", "requirements": null }, - "price": 644.5 + "price": 1277 }, "21099": { "id": 21099, @@ -209999,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": 509 + "price": 239 }, "21102": { "id": 21102, @@ -210017,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, @@ -210035,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": 2147.5 + "price": 2256 }, "21108": { "id": 21108, @@ -210073,7 +209938,7 @@ "slot": "neck", "requirements": null }, - "price": 612.5 + "price": 2550 }, "21111": { "id": 21111, @@ -210111,7 +209976,7 @@ "slot": "neck", "requirements": null }, - "price": 810 + "price": 1172 }, "21114": { "id": 21114, @@ -210149,7 +210014,7 @@ "slot": "neck", "requirements": null }, - "price": 2517 + "price": 2401 }, "21117": { "id": 21117, @@ -210187,7 +210052,7 @@ "slot": "hands", "requirements": null }, - "price": 964 + "price": 2125 }, "21120": { "id": 21120, @@ -210225,7 +210090,7 @@ "slot": "hands", "requirements": null }, - "price": 633.5 + "price": 793 }, "21123": { "id": 21123, @@ -210263,7 +210128,7 @@ "slot": "hands", "requirements": null }, - "price": 2010 + "price": 2503 }, "21126": { "id": 21126, @@ -210301,7 +210166,7 @@ "slot": "ring", "requirements": null }, - "price": 894 + "price": 3600 }, "21129": { "id": 21129, @@ -210339,7 +210204,7 @@ "slot": "ring", "requirements": null }, - "price": 1209.5 + "price": 2923 }, "21132": { "id": 21132, @@ -210521,7 +210386,7 @@ "slot": "ring", "requirements": null }, - "price": 692 + "price": 1650 }, "21143": { "id": 21143, @@ -210559,7 +210424,7 @@ "slot": "neck", "requirements": null }, - "price": 1491.5 + "price": 2237 }, "21146": { "id": 21146, @@ -210597,7 +210462,7 @@ "slot": "neck", "requirements": null }, - "price": 856.5 + "price": 2101 }, "21149": { "id": 21149, @@ -210779,7 +210644,7 @@ "slot": "neck", "requirements": null }, - "price": 756.5 + "price": 607 }, "21160": { "id": 21160, @@ -210817,7 +210682,7 @@ "slot": "neck", "requirements": null }, - "price": 1040.5 + "price": 710 }, "21163": { "id": 21163, @@ -210855,7 +210720,7 @@ "slot": "neck", "requirements": null }, - "price": 1060.5 + "price": 1499 }, "21166": { "id": 21166, @@ -210893,7 +210758,7 @@ "slot": "neck", "requirements": null }, - "price": 2640.5 + "price": 2923 }, "21169": { "id": 21169, @@ -211075,7 +210940,7 @@ "slot": "hands", "requirements": null }, - "price": 1507 + "price": 2267 }, "21180": { "id": 21180, @@ -211113,7 +210978,7 @@ "slot": "hands", "requirements": null }, - "price": 658.5 + "price": 492 }, "21183": { "id": 21183, @@ -211151,7 +211016,7 @@ "slot": "hands", "requirements": null }, - "price": 2104.5 + "price": 2643 }, "21186": { "id": 21186, @@ -211495,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": 216126 + "price": 303391 }, "21205": { "id": 21205, @@ -212237,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": 2027 + "price": 1680 }, "21259": { "id": 21259, @@ -212431,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": 8604500 + "price": 9087499 }, "21273": { "id": 21273, @@ -212450,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, @@ -212559,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": 2462929 + "price": 1865531 }, "21282": { "id": 21282, @@ -212819,7 +212684,7 @@ "defence": 60 } }, - "price": 741281 + "price": 511081 }, "21301": { "id": 21301, @@ -212859,7 +212724,7 @@ "defence": 60 } }, - "price": 970098.5 + "price": 750684 }, "21304": { "id": 21304, @@ -212899,7 +212764,7 @@ "defence": 60 } }, - "price": 800296.5 + "price": 615423 }, "21307": { "id": 21307, @@ -213063,7 +212928,7 @@ "slayer": 65 } }, - "price": 284 + "price": 283 }, "21318": { "id": 21318, @@ -213102,7 +212967,7 @@ "ranged": 65 } }, - "price": 300 + "price": 320 }, "21320": { "id": 21320, @@ -213141,7 +213006,7 @@ "ranged": 65 } }, - "price": 867 + "price": 1 }, "21322": { "id": 21322, @@ -213180,7 +213045,7 @@ "ranged": 65 } }, - "price": 810.5 + "price": 308 }, "21324": { "id": 21324, @@ -213219,7 +213084,7 @@ "ranged": 65 } }, - "price": 537 + "price": 843 }, "21326": { "id": 21326, @@ -213258,7 +213123,7 @@ "ranged": 50 } }, - "price": 282.5 + "price": 219 }, "21328": { "id": 21328, @@ -213371,7 +213236,7 @@ "ranged": 50 } }, - "price": 349 + "price": 401 }, "21334": { "id": 21334, @@ -213410,7 +213275,7 @@ "ranged": 50 } }, - "price": 529.5 + "price": 646 }, "21336": { "id": 21336, @@ -213449,7 +213314,7 @@ "ranged": 50 } }, - "price": 1099 + "price": 1313 }, "21338": { "id": 21338, @@ -213466,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, @@ -213507,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": { @@ -213541,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": { @@ -213580,7 +213445,7 @@ "examine": "Maybe I can make something with this.", "wiki_name": "Amethyst", "wiki_url": "https://oldschool.runescape.wiki/w/Amethyst", - "price": 4519 + "price": 3515 }, "21350": { "id": 21350, @@ -213597,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": 314 + "price": 246 }, "21352": { "id": 21352, @@ -213614,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, @@ -213701,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": 345599.5 + "price": 152103 }, "21389": { "id": 21389, @@ -213737,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": { @@ -214215,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": 438 + "price": 298 }, "21480": { "id": 21480, @@ -214233,7 +214098,7 @@ "examine": "This sapling is ready to be replanted in a tree patch.", "wiki_name": "Mahogany sapling", "wiki_url": "https://oldschool.runescape.wiki/w/Mahogany_sapling", - "price": 2106.5 + "price": 1791 }, "21483": { "id": 21483, @@ -214251,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": 365.5 + "price": 678 }, "21486": { "id": 21486, @@ -214268,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": 44.5 + "price": 15 }, "21488": { "id": 21488, @@ -214285,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": 1177 + "price": 868 }, "21490": { "id": 21490, @@ -214302,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": 82.5 + "price": 98 }, "21504": { "id": 21504, @@ -214320,7 +214185,7 @@ "examine": "Seaweed of large size.", "wiki_name": "Giant seaweed", "wiki_url": "https://oldschool.runescape.wiki/w/Giant_seaweed", - "price": 281.5 + "price": 177 }, "21507": { "id": 21507, @@ -214368,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": 927 + "price": 988 }, "21515": { "id": 21515, @@ -214386,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": 787.5 + "price": 1084 }, "21518": { "id": 21518, @@ -214404,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": 629.5 + "price": 1314 }, "21521": { "id": 21521, @@ -214422,21 +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": 1471 - }, - "21524": { - "id": 21524, - "name": "Clue scroll (elite)", - "members": true, - "cost": 20, - "lowalch": 8, - "highalch": 12, - "weight": 0.02, - "release_date": "2017-09-07", - "examine": "A clue!", - "wiki_name": "Clue scroll (elite, anagram 12)", - "wiki_url": "https://oldschool.runescape.wiki/w/Clue_scroll_(elite,_anagram_12)", - "price": 0 + "price": 1700 }, "21528": { "id": 21528, @@ -214679,7 +214530,7 @@ "examine": "A large crystal of calcium carbonate.", "wiki_name": "Calcite", "wiki_url": "https://oldschool.runescape.wiki/w/Calcite", - "price": 45.5 + "price": 66 }, "21545": { "id": 21545, @@ -214696,7 +214547,7 @@ "examine": "A phosphate rich mineral dust.", "wiki_name": "Pyrophosphite", "wiki_url": "https://oldschool.runescape.wiki/w/Pyrophosphite", - "price": 37 + "price": 40 }, "21547": { "id": 21547, @@ -214769,7 +214620,7 @@ "examine": "A form of currency on Fossil Island.", "wiki_name": "Numulite", "wiki_url": "https://oldschool.runescape.wiki/w/Numulite", - "price": 26.5 + "price": 33 }, "21562": { "id": 21562, @@ -215206,7 +215057,7 @@ "examine": "One of the ingredients for making ultra compost.", "wiki_name": "Volcanic ash", "wiki_url": "https://oldschool.runescape.wiki/w/Volcanic_ash", - "price": 88 + "price": 85 }, "21624": { "id": 21624, @@ -215237,7 +215088,7 @@ "examine": "A Sulliuscep mushroom cap. Edible? Probably...", "wiki_name": "Sulliuscep cap", "wiki_url": "https://oldschool.runescape.wiki/w/Sulliuscep_cap", - "price": 3466.5 + "price": 4100 }, "21629": { "id": 21629, @@ -215343,7 +215194,7 @@ "defence": 75 } }, - "price": 18738310.5 + "price": 23100000 }, "21637": { "id": 21637, @@ -215361,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": 19171998.5 + "price": 22150002 }, "21640": { "id": 21640, @@ -215443,7 +215294,7 @@ "defence": 50 } }, - "price": 395003 + "price": 227013 }, "21646": { "id": 21646, @@ -215592,7 +215443,7 @@ } ] }, - "price": 1214334 + "price": 1600002 }, "21652": { "id": 21652, @@ -215610,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": 3217.5 + "price": 4200 }, "21655": { "id": 21655, @@ -215810,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": 5526 + "price": 5200 }, "21687": { "id": 21687, @@ -215844,7 +215695,7 @@ "examine": "Mmm mushroom pie.", "wiki_name": "Mushroom pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Mushroom_pie#Full", - "price": 3310.5 + "price": 2458 }, "21693": { "id": 21693, @@ -216216,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": 4788111.5 + "price": 7656600 }, "21733": { "id": 21733, @@ -216256,7 +216107,7 @@ "defence": 75 } }, - "price": 4976007 + "price": 7933584 }, "21736": { "id": 21736, @@ -216297,7 +216148,7 @@ "strength": 50 } }, - "price": 46812 + "price": 71764 }, "21739": { "id": 21739, @@ -216338,7 +216189,7 @@ "defence": 50 } }, - "price": 19558 + "price": 29950 }, "21742": { "id": 21742, @@ -216407,7 +216258,7 @@ } ] }, - "price": 176603 + "price": 529228 }, "21745": { "id": 21745, @@ -216425,7 +216276,7 @@ "examine": "Stones aren't very useful in this capacity.", "wiki_name": "Jar of stone", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_stone", - "price": 3501500.5 + "price": 3203350 }, "21748": { "id": 21748, @@ -216505,7 +216356,7 @@ "examine": "Smash gargoyles from a distance.", "wiki_name": "Rock thrownhammer", "wiki_url": "https://oldschool.runescape.wiki/w/Rock_thrownhammer", - "price": 228.5 + "price": 259 }, "21756": { "id": 21756, @@ -216535,12 +216386,12 @@ }, "21759": { "id": 21759, - "name": "Hosidius favour certificate", + "name": "Certificate", "members": true, "cost": 50, "weight": 0.01, "release_date": "2017-11-09", - "examine": "I can use this to gain Hosidius Favour.", + "examine": "It's a certificate.", "wiki_name": "Hosidius favour certificate", "wiki_url": "https://oldschool.runescape.wiki/w/Hosidius_favour_certificate", "price": 0 @@ -216677,12 +216528,12 @@ }, "21775": { "id": 21775, - "name": "Piscarilius favour certificate", + "name": "Certificate", "members": true, "cost": 50, "weight": 0.01, "release_date": "2017-11-09", - "examine": "I can use this to gain Piscarilius Favour.", + "examine": "It's a certificate.", "wiki_name": "Piscarilius favour certificate", "wiki_url": "https://oldschool.runescape.wiki/w/Piscarilius_favour_certificate", "price": 0 @@ -217223,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": 320.5 + "price": 272 }, "21804": { "id": 21804, @@ -217241,7 +217092,7 @@ "examine": "An ancient crystal containing magical energy.", "wiki_name": "Ancient crystal", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_crystal", - "price": 150469.5 + "price": 149868 }, "21807": { "id": 21807, @@ -217277,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, @@ -217367,7 +217218,7 @@ "slot": "hands", "requirements": null }, - "price": 43021.5 + "price": 43021 }, "21820": { "id": 21820, @@ -217384,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, @@ -217434,7 +217285,7 @@ "slot": "head", "requirements": null }, - "price": 4298 + "price": 23000 }, "21841": { "id": 21841, @@ -217943,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": 221 + "price": 259 }, "21882": { "id": 21882, @@ -217961,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": 124999998 + "price": 174499998 }, "21885": { "id": 21885, @@ -217979,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": 101500000 + "price": 114640944 }, "21888": { "id": 21888, @@ -217992,7 +217843,7 @@ "highalch": 24000, "weight": 2.267, "release_date": "2018-01-04", - "examine": "You really don't want to wear it inside-out.", + "examine": "You don't want to wear it inside-out.", "wiki_name": "Turquoise slayer helmet", "wiki_url": "https://oldschool.runescape.wiki/w/Turquoise_slayer_helmet", "equipment": { @@ -218091,7 +217942,7 @@ "defence": 60 } }, - "price": 2435643.5 + "price": 3116501 }, "21895": { "id": 21895, @@ -218131,7 +217982,7 @@ "defence": 60 } }, - "price": 53287210 + "price": 72445989 }, "21898": { "id": 21898, @@ -218315,7 +218166,7 @@ } ] }, - "price": 1654199 + "price": 1698183 }, "21905": { "id": 21905, @@ -218354,7 +218205,7 @@ "ranged": 64 } }, - "price": 1029 + "price": 624 }, "21907": { "id": 21907, @@ -218435,7 +218286,7 @@ "examine": "A pair of dragon crossbow limbs.", "wiki_name": "Dragon limbs", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_limbs", - "price": 1619053 + "price": 1670348 }, "21921": { "id": 21921, @@ -218453,7 +218304,7 @@ "examine": "An unstrung dragon crossbow.", "wiki_name": "Dragon crossbow (u)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_crossbow_(u)", - "price": 1620556.5 + "price": 1411083 }, "21924": { "id": 21924, @@ -218492,7 +218343,7 @@ "ranged": 64 } }, - "price": 1498 + "price": 1539 }, "21926": { "id": 21926, @@ -218531,7 +218382,7 @@ "ranged": 64 } }, - "price": 1764 + "price": 1406 }, "21928": { "id": 21928, @@ -218570,7 +218421,7 @@ "ranged": 64 } }, - "price": 1922 + "price": 1714 }, "21930": { "id": 21930, @@ -218587,7 +218438,7 @@ "examine": "Unfeathered dragon crossbow bolts.", "wiki_name": "Dragon bolts (unf)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragon_bolts_(unf)", - "price": 1101 + "price": 632 }, "21932": { "id": 21932, @@ -218626,7 +218477,7 @@ "ranged": 64 } }, - "price": 1251.5 + "price": 896 }, "21934": { "id": 21934, @@ -218665,7 +218516,7 @@ "ranged": 64 } }, - "price": 476 + "price": 677 }, "21936": { "id": 21936, @@ -218704,7 +218555,7 @@ "ranged": 64 } }, - "price": 715.5 + "price": 776 }, "21938": { "id": 21938, @@ -218743,7 +218594,7 @@ "ranged": 64 } }, - "price": 582 + "price": 544 }, "21940": { "id": 21940, @@ -218782,7 +218633,7 @@ "ranged": 64 } }, - "price": 1295 + "price": 683 }, "21942": { "id": 21942, @@ -218821,7 +218672,7 @@ "ranged": 64 } }, - "price": 940.5 + "price": 911 }, "21944": { "id": 21944, @@ -218860,7 +218711,7 @@ "ranged": 64 } }, - "price": 1288.5 + "price": 824 }, "21946": { "id": 21946, @@ -218899,7 +218750,7 @@ "ranged": 64 } }, - "price": 1304 + "price": 939 }, "21948": { "id": 21948, @@ -218938,7 +218789,7 @@ "ranged": 64 } }, - "price": 1203 + "price": 901 }, "21950": { "id": 21950, @@ -218995,7 +218846,7 @@ "examine": "A magic crossbow stock.", "wiki_name": "Magic stock", "wiki_url": "https://oldschool.runescape.wiki/w/Magic_stock", - "price": 109.5 + "price": 491 }, "21955": { "id": 21955, @@ -219034,7 +218885,7 @@ "ranged": 64 } }, - "price": 1217 + "price": 919 }, "21957": { "id": 21957, @@ -219073,7 +218924,7 @@ "ranged": 64 } }, - "price": 1050 + "price": 650 }, "21959": { "id": 21959, @@ -219112,7 +218963,7 @@ "ranged": 64 } }, - "price": 1069.5 + "price": 660 }, "21961": { "id": 21961, @@ -219151,7 +219002,7 @@ "ranged": 64 } }, - "price": 1593.5 + "price": 670 }, "21963": { "id": 21963, @@ -219190,7 +219041,7 @@ "ranged": 64 } }, - "price": 1165 + "price": 807 }, "21965": { "id": 21965, @@ -219229,7 +219080,7 @@ "ranged": 64 } }, - "price": 767 + "price": 652 }, "21967": { "id": 21967, @@ -219268,7 +219119,7 @@ "ranged": 64 } }, - "price": 1246.5 + "price": 762 }, "21969": { "id": 21969, @@ -219307,7 +219158,7 @@ "ranged": 64 } }, - "price": 1277 + "price": 821 }, "21971": { "id": 21971, @@ -219346,7 +219197,7 @@ "ranged": 64 } }, - "price": 2010.5 + "price": 1121 }, "21973": { "id": 21973, @@ -219403,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, @@ -219421,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": 12038.5 + "price": 11516 }, "21981": { "id": 21981, @@ -219439,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": 8122 + "price": 9200 }, "21984": { "id": 21984, @@ -219475,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, @@ -219519,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": 21055.5 + "price": 41320 }, "21997": { "id": 21997, @@ -219537,7 +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": 338.5 + "price": 1 }, "22002": { "id": 22002, @@ -219615,7 +219466,7 @@ "defence": 75 } }, - "price": 8933729.5 + "price": 6283826 }, "22006": { "id": 22006, @@ -219633,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": 8889775.5 + "price": 6283500 }, "22009": { "id": 22009, @@ -220513,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": 1811974.5 + "price": 1670141 }, "22100": { "id": 22100, @@ -220531,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": 47465691 + "price": 65300000 }, "22103": { "id": 22103, @@ -220549,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": 394053.5 + "price": 827500 }, "22106": { "id": 22106, @@ -220567,7 +220418,7 @@ "examine": "Very healthy.", "wiki_name": "Jar of decay", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_decay", - "price": 38704.5 + "price": 20000 }, "22109": { "id": 22109, @@ -220709,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": 330 + "price": 305 }, "22121": { "id": 22121, @@ -220747,7 +220598,7 @@ "slot": "head", "requirements": null }, - "price": 60 + "price": 45 }, "22124": { "id": 22124, @@ -220765,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": 11078 + "price": 9040 }, "22127": { "id": 22127, @@ -221949,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": 1161 + "price": 914 }, "22195": { "id": 22195, @@ -221967,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": 1128 + "price": 1735 }, "22198": { "id": 22198, @@ -221985,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": 1368.5 + "price": 1337 }, "22201": { "id": 22201, @@ -222003,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": 1770 + "price": 2346 }, "22204": { "id": 22204, @@ -222021,7 +221872,7 @@ "examine": "Feed and catch the birds by placing this in the right spot.", "wiki_name": "Redwood bird house", "wiki_url": "https://oldschool.runescape.wiki/w/Redwood_bird_house", - "price": 1540.5 + "price": 1738 }, "22207": { "id": 22207, @@ -222066,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": 10158 + "price": 10776 }, "22212": { "id": 22212, @@ -222084,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": 7743 + "price": 8868 }, "22215": { "id": 22215, @@ -222102,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": 4869.5 + "price": 5369 }, "22218": { "id": 22218, @@ -222120,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": 2377.5 + "price": 2596 }, "22221": { "id": 22221, @@ -222138,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": 3338 + "price": 10403 }, "22224": { "id": 22224, @@ -222156,7 +222007,7 @@ "examine": "One dose of fishy extended super anti-firebreath potion.", "wiki_name": "Extended super antifire mix (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Extended_super_antifire_mix#1_dose", - "price": 1600 + "price": 16950 }, "22227": { "id": 22227, @@ -222310,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": 29779.5 + "price": 36452 }, "22234": { "id": 22234, @@ -222364,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": 9407106 + "price": 11762525 }, "22239": { "id": 22239, @@ -222382,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": 2627827 + "price": 4275504 }, "22242": { "id": 22242, @@ -222472,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": 6857705 + "price": 7760184 }, "22249": { "id": 22249, @@ -222588,7 +222439,7 @@ "defence": 30 } }, - "price": 1.5 + "price": 1 }, "22257": { "id": 22257, @@ -222628,7 +222479,7 @@ "defence": 40 } }, - "price": 4.5 + "price": 55 }, "22260": { "id": 22260, @@ -222668,7 +222519,7 @@ "defence": 40 } }, - "price": 170 + "price": 119 }, "22263": { "id": 22263, @@ -222708,7 +222559,7 @@ "defence": 40 } }, - "price": 547 + "price": 794 }, "22266": { "id": 22266, @@ -222748,7 +222599,7 @@ "defence": 40 } }, - "price": 318.5 + "price": 465 }, "22269": { "id": 22269, @@ -222789,7 +222640,7 @@ "defence": 10 } }, - "price": 127 + "price": 90 }, "22272": { "id": 22272, @@ -222830,7 +222681,7 @@ "defence": 30 } }, - "price": 480 + "price": 268 }, "22275": { "id": 22275, @@ -222871,7 +222722,7 @@ "defence": 40 } }, - "price": 3526 + "price": 2913 }, "22278": { "id": 22278, @@ -222912,7 +222763,7 @@ "defence": 40 } }, - "price": 4371.5 + "price": 5630 }, "22281": { "id": 22281, @@ -222953,7 +222804,7 @@ "defence": 40 } }, - "price": 6590 + "price": 8107 }, "22284": { "id": 22284, @@ -222994,7 +222845,7 @@ "defence": 40 } }, - "price": 22273.5 + "price": 19324 }, "22287": { "id": 22287, @@ -223140,7 +222991,7 @@ } ] }, - "price": 5593593.5 + "price": 8477778 }, "22292": { "id": 22292, @@ -223272,7 +223123,7 @@ } ] }, - "price": 8009939.5 + "price": 10749588 }, "22296": { "id": 22296, @@ -223355,7 +223206,7 @@ } ] }, - "price": 8532396.5 + "price": 12580144 }, "22299": { "id": 22299, @@ -223373,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, @@ -223409,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, @@ -223801,7 +223652,7 @@ } ] }, - "price": 49354741.5 + "price": 62750701 }, "22325": { "id": 22325, @@ -223820,7 +223671,7 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Scythe_of_vitur#Charged", "equipment": { "attack_stab": 70, - "attack_slash": 110, + "attack_slash": 125, "attack_crush": 30, "attack_magic": -6, "attack_ranged": 0, @@ -223913,7 +223764,7 @@ "defence": 75 } }, - "price": 15550000 + "price": 15294469 }, "22327": { "id": 22327, @@ -223953,7 +223804,7 @@ "defence": 75 } }, - "price": 17039989 + "price": 16041963 }, "22328": { "id": 22328, @@ -223993,7 +223844,7 @@ "defence": 75 } }, - "price": 12474089 + "price": 10860002 }, "22330": { "id": 22330, @@ -224485,24 +224336,24 @@ }, "22365": { "id": 22365, - "name": "Shayzien favour certificate", + "name": "Certificate", "members": true, "cost": 50, "weight": 0.01, "release_date": "2018-04-19", - "examine": "I can use this to gain Shayzien Favour.", + "examine": "It's a certificate.", "wiki_name": "Shayzien favour certificate", "wiki_url": "https://oldschool.runescape.wiki/w/Shayzien_favour_certificate", "price": 0 }, "22367": { "id": 22367, - "name": "Kourend favour certificate", + "name": "Certificate", "members": true, "cost": 50, "weight": 0.01, "release_date": "2018-04-19", - "examine": "I can use this to gain Kourend favour.", + "examine": "It's a certificate.", "wiki_name": "Kourend favour certificate", "wiki_url": "https://oldschool.runescape.wiki/w/Kourend_favour_certificate", "price": 0 @@ -224587,7 +224438,7 @@ } ] }, - "price": 8133133 + "price": 10105815 }, "22370": { "id": 22370, @@ -224682,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": 8293750 + "price": 10225000 }, "22374": { "id": 22374, @@ -225325,7 +225176,7 @@ "examine": "A coagulated concoction.", "wiki_name": "Bloody bracer", "wiki_url": "https://oldschool.runescape.wiki/w/Bloody_bracer", - "price": 5469 + "price": 901 }, "22433": { "id": 22433, @@ -225492,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": 45693221.5 + "price": 42482558 }, "22441": { "id": 22441, @@ -225524,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, @@ -225542,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, @@ -225560,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, @@ -225578,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, @@ -225614,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": 4600 + "price": 4545 }, "22461": { "id": 22461, @@ -225632,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, @@ -225650,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, @@ -225668,7 +225519,7 @@ "examine": "2 doses of bastion potion.", "wiki_name": "Bastion potion (2 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Bastion_potion#2_dose", - "price": 14909 + "price": 12400 }, "22470": { "id": 22470, @@ -225686,7 +225537,7 @@ "examine": "1 dose of bastion potion.", "wiki_name": "Bastion potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Bastion_potion#1_dose", - "price": 6288 + "price": 7537 }, "22473": { "id": 22473, @@ -225732,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": 81010210 + "price": 55843635 }, "22481": { "id": 22481, @@ -225800,7 +225651,7 @@ } ] }, - "price": 91964778 + "price": 83860954 }, "22486": { "id": 22486, @@ -225876,7 +225727,7 @@ } ] }, - "price": 719699999.5 + "price": 1199809502 }, "22494": { "id": 22494, @@ -226585,7 +226436,7 @@ } ] }, - "price": 5293959.5 + "price": 3174297 }, "22545": { "id": 22545, @@ -226724,7 +226575,7 @@ } ] }, - "price": 14940438.5 + "price": 16700265 }, "22550": { "id": 22550, @@ -226856,7 +226707,7 @@ } ] }, - "price": 2549500 + "price": 2077962 }, "22555": { "id": 22555, @@ -226958,7 +226809,7 @@ "slot": "neck", "requirements": null }, - "price": 713207 + "price": 550266 }, "22586": { "id": 22586, @@ -227043,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": 49 + "price": 128 }, "22595": { "id": 22595, @@ -227060,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": 47 + "price": 135 }, "22597": { "id": 22597, @@ -227077,7 +226928,7 @@ "examine": "A green salt that, when burned with other salts provides various benefits.", "wiki_name": "Urt salt", "wiki_url": "https://oldschool.runescape.wiki/w/Urt_salt", - "price": 46.5 + "price": 118 }, "22599": { "id": 22599, @@ -227094,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, @@ -227111,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": 1094 + "price": 1212 }, "22603": { "id": 22603, @@ -227128,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": 957.5 + "price": 997 }, "22606": { "id": 22606, @@ -228764,7 +228615,7 @@ } ] }, - "price": 39562.5 + "price": 37809 }, "22734": { "id": 22734, @@ -228839,7 +228690,7 @@ } ] }, - "price": 38008.5 + "price": 51004 }, "22737": { "id": 22737, @@ -228914,7 +228765,7 @@ } ] }, - "price": 34461.5 + "price": 36590 }, "22740": { "id": 22740, @@ -228989,7 +228840,7 @@ } ] }, - "price": 67000 + "price": 44530 }, "22743": { "id": 22743, @@ -229176,12 +229027,12 @@ }, "22760": { "id": 22760, - "name": "Lovakengj favour certificate", + "name": "Certificate", "members": true, "cost": 50, "weight": 0.01, "release_date": "2019-01-10", - "examine": "I can use this to gain Lovakengj Favour.", + "examine": "It's a certificate.", "wiki_name": "Lovakengj favour certificate", "wiki_url": "https://oldschool.runescape.wiki/w/Lovakengj_favour_certificate", "price": 0 @@ -229386,12 +229237,12 @@ }, "22777": { "id": 22777, - "name": "Arceuus favour certificate", + "name": "Certificate", "members": true, "cost": 50, "weight": 0.01, "release_date": "2019-01-10", - "examine": "I can use this to gain Arceuus favour.", + "examine": "It's a certificate.", "wiki_name": "Arceuus favour certificate", "wiki_url": "https://oldschool.runescape.wiki/w/Arceuus_favour_certificate", "price": 0 @@ -229412,7 +229263,7 @@ "examine": "I wonder how Wyrms have bones...", "wiki_name": "Wyrm bones", "wiki_url": "https://oldschool.runescape.wiki/w/Wyrm_bones", - "price": 1493.5 + "price": 1561 }, "22783": { "id": 22783, @@ -229430,7 +229281,7 @@ "examine": "The bones of a ferocious Drake.", "wiki_name": "Drake bones", "wiki_url": "https://oldschool.runescape.wiki/w/Drake_bones", - "price": 3153 + "price": 4000 }, "22786": { "id": 22786, @@ -229448,7 +229299,7 @@ "examine": "The bones of a hydra.", "wiki_name": "Hydra bones", "wiki_url": "https://oldschool.runescape.wiki/w/Hydra_bones", - "price": 6478 + "price": 6047 }, "22789": { "id": 22789, @@ -229466,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": 1672.5 + "price": 1870 }, "22792": { "id": 22792, @@ -229500,7 +229351,7 @@ "examine": "Mmm dragonfruit pie.", "wiki_name": "Dragonfruit pie (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonfruit_pie#Full", - "price": 683.5 + "price": 523 }, "22798": { "id": 22798, @@ -229604,7 +229455,7 @@ } ] }, - "price": 5142 + "price": 6370 }, "22806": { "id": 22806, @@ -229671,7 +229522,7 @@ } ] }, - "price": 5344 + "price": 5963 }, "22808": { "id": 22808, @@ -229738,7 +229589,7 @@ } ] }, - "price": 5494.5 + "price": 6399 }, "22810": { "id": 22810, @@ -229805,7 +229656,7 @@ } ] }, - "price": 6176.5 + "price": 7067 }, "22812": { "id": 22812, @@ -229980,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 + "price": 12 }, "22820": { "id": 22820, @@ -230012,7 +229863,7 @@ "examine": "A large Bluegill.", "wiki_name": "Bluegill", "wiki_url": "https://oldschool.runescape.wiki/w/Bluegill", - "price": 156.5 + "price": 10 }, "22829": { "id": 22829, @@ -230030,7 +229881,7 @@ "examine": "The most common of the tench.", "wiki_name": "Common tench", "wiki_url": "https://oldschool.runescape.wiki/w/Common_tench", - "price": 556 + "price": 629 }, "22832": { "id": 22832, @@ -230048,7 +229899,7 @@ "examine": "A very spotty eel.", "wiki_name": "Mottled eel", "wiki_url": "https://oldschool.runescape.wiki/w/Mottled_eel", - "price": 57 + "price": 500 }, "22835": { "id": 22835, @@ -230066,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, @@ -230419,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": 72405.5 + "price": 65531 }, "22859": { "id": 22859, @@ -230437,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, @@ -230483,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": 165621 + "price": 168655 }, "22869": { "id": 22869, @@ -230500,7 +230351,7 @@ "examine": "For growing a Celastrus tree.", "wiki_name": "Celastrus seed", "wiki_url": "https://oldschool.runescape.wiki/w/Celastrus_seed", - "price": 72311.5 + "price": 63526 }, "22871": { "id": 22871, @@ -230517,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, @@ -230534,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": 3 + "price": 58 }, "22875": { "id": 22875, @@ -230565,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": 165000 + "price": 164591 }, "22879": { "id": 22879, @@ -230582,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": 2776 + "price": 4300 }, "22881": { "id": 22881, @@ -230641,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": 3180 + "price": 5282 }, "22929": { "id": 22929, @@ -230659,7 +230510,7 @@ "examine": "A large ripe dragonfruit.", "wiki_name": "Dragonfruit", "wiki_url": "https://oldschool.runescape.wiki/w/Dragonfruit", - "price": 893 + "price": 933 }, "22932": { "id": 22932, @@ -230677,7 +230528,7 @@ "examine": "A fully bloomed White lily.", "wiki_name": "White lily", "wiki_url": "https://oldschool.runescape.wiki/w/White_lily", - "price": 623 + "price": 555 }, "22935": { "id": 22935, @@ -230848,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": 3471.5 + "price": 1827 }, "22951": { "id": 22951, @@ -230891,7 +230742,7 @@ "ranged": 70 } }, - "price": 500885 + "price": 615307 }, "22954": { "id": 22954, @@ -230931,7 +230782,7 @@ "prayer": 60 } }, - "price": 1838578.5 + "price": 2762362 }, "22957": { "id": 22957, @@ -230949,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": 464466 + "price": 586757 }, "22960": { "id": 22960, @@ -230967,7 +230818,7 @@ "examine": "The tooth of a ferocious drake. They could be combined with holy sandals.", "wiki_name": "Drake's tooth", "wiki_url": "https://oldschool.runescape.wiki/w/Drake's_tooth", - "price": 82210.5 + "price": 90000 }, "22963": { "id": 22963, @@ -231003,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": 34715150 + "price": 63000000 }, "22969": { "id": 22969, @@ -231083,7 +230934,7 @@ "slot": "ring", "requirements": null }, - "price": 2193300 + "price": 4418419 }, "22978": { "id": 22978, @@ -231158,7 +231009,7 @@ } ] }, - "price": 36989727.5 + "price": 68882376 }, "22981": { "id": 22981, @@ -231213,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": 10450890.5 + "price": 9598864 }, "22986": { "id": 22986, @@ -231267,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": 125250 + "price": 119197 }, "22991": { "id": 22991, @@ -231313,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": 538000 + "price": 1156547 }, "22997": { "id": 22997, @@ -231345,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": 12000 + "price": 10683 }, "23002": { "id": 23002, @@ -231363,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": 12569.5 + "price": 13619 }, "23007": { "id": 23007, @@ -231613,7 +231464,7 @@ "slayer": 44 } }, - "price": 386 + "price": 835 }, "23040": { "id": 23040, @@ -231690,7 +231541,7 @@ "defence": 20 } }, - "price": 27161.5 + "price": 32431 }, "23050": { "id": 23050, @@ -231731,7 +231582,7 @@ "defence": 20 } }, - "price": 85239 + "price": 75766 }, "23053": { "id": 23053, @@ -231772,7 +231623,7 @@ "defence": 20 } }, - "price": 83404.5 + "price": 84745 }, "23056": { "id": 23056, @@ -231813,7 +231664,7 @@ "defence": 20 } }, - "price": 31791.5 + "price": 20231 }, "23059": { "id": 23059, @@ -231854,7 +231705,7 @@ "defence": 20 } }, - "price": 46787 + "price": 27374 }, "23062": { "id": 23062, @@ -231886,7 +231737,7 @@ "examine": "Looks unstable.", "wiki_name": "Jar of chemicals", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_chemicals", - "price": 70886 + "price": 89313 }, "23067": { "id": 23067, @@ -232080,7 +231931,7 @@ "highalch": 0, "weight": 0.1, "release_date": "2019-02-07", - "examine": "I love rubbing things!", + "examine": "Good for rubbing.", "wiki_name": "Antique lamp (Architectural Alliance)", "wiki_url": "https://oldschool.runescape.wiki/w/Antique_lamp_(Architectural_Alliance)", "price": 0 @@ -232324,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": 169572 + "price": 178599 }, "23113": { "id": 23113, @@ -232360,7 +232211,7 @@ "examine": "A set containing dark mystic hat, robe top and bottom, gloves and boots.", "wiki_name": "Mystic set (dark)", "wiki_url": "https://oldschool.runescape.wiki/w/Mystic_set_(dark)", - "price": 314416.5 + "price": 304161 }, "23119": { "id": 23119, @@ -232378,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": 318662 + "price": 302754 }, "23122": { "id": 23122, @@ -232457,7 +232308,7 @@ "examine": "A set containing a gilded dragonhide body, chaps and vambraces.", "wiki_name": "Gilded dragonhide set", "wiki_url": "https://oldschool.runescape.wiki/w/Gilded_dragonhide_set", - "price": 17192221.5 + "price": 22402521 }, "23127": { "id": 23127, @@ -232560,7 +232411,7 @@ "slot": "ring", "requirements": null }, - "price": 2472958.5 + "price": 5165356 }, "23188": { "id": 23188, @@ -232601,7 +232452,7 @@ "ranged": 70 } }, - "price": 120801.5 + "price": 321502 }, "23191": { "id": 23191, @@ -232642,7 +232493,7 @@ "ranged": 70 } }, - "price": 162500 + "price": 264569 }, "23194": { "id": 23194, @@ -232683,7 +232534,7 @@ "ranged": 70 } }, - "price": 236458 + "price": 328335 }, "23197": { "id": 23197, @@ -232724,7 +232575,7 @@ "ranged": 70 } }, - "price": 172500 + "price": 349500 }, "23200": { "id": 23200, @@ -232765,7 +232616,7 @@ "ranged": 70 } }, - "price": 247394.5 + "price": 345250 }, "23203": { "id": 23203, @@ -232806,7 +232657,7 @@ "ranged": 70 } }, - "price": 180000 + "price": 244494 }, "23206": { "id": 23206, @@ -232879,7 +232730,7 @@ } ] }, - "price": 12383.5 + "price": 16030 }, "23209": { "id": 23209, @@ -232918,7 +232769,7 @@ "defence": 40 } }, - "price": 40137.5 + "price": 38979 }, "23212": { "id": 23212, @@ -232957,7 +232808,7 @@ "defence": 40 } }, - "price": 42799 + "price": 37963 }, "23215": { "id": 23215, @@ -232996,7 +232847,7 @@ "defence": 40 } }, - "price": 37896.5 + "price": 37475 }, "23218": { "id": 23218, @@ -233035,7 +232886,7 @@ "defence": 40 } }, - "price": 36758 + "price": 43154 }, "23221": { "id": 23221, @@ -233112,7 +232963,7 @@ "slot": "cape", "requirements": null }, - "price": 6090.5 + "price": 43309 }, "23227": { "id": 23227, @@ -233130,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": 151194.5 + "price": 10686 }, "23230": { "id": 23230, @@ -233185,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": 11289 + "price": 5189 }, "23235": { "id": 23235, @@ -233267,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": 14388 + "price": 10388 }, "23240": { "id": 23240, @@ -233341,7 +233192,7 @@ "defence": 65 } }, - "price": 47150000 + "price": 90500000 }, "23245": { "id": 23245, @@ -233392,7 +233243,7 @@ "slot": "legs", "requirements": null }, - "price": 2141087 + "price": 3313967 }, "23249": { "id": 23249, @@ -233432,7 +233283,7 @@ "ranged": 40 } }, - "price": 114000 + "price": 233133 }, "23252": { "id": 23252, @@ -233470,7 +233321,7 @@ "slot": "head", "requirements": null }, - "price": 52258 + "price": 97673 }, "23255": { "id": 23255, @@ -233508,7 +233359,7 @@ "slot": "head", "requirements": null }, - "price": 20350 + "price": 32533 }, "23258": { "id": 23258, @@ -233546,7 +233397,7 @@ "slot": "head", "requirements": null }, - "price": 337558.5 + "price": 724551 }, "23261": { "id": 23261, @@ -233585,7 +233436,7 @@ "ranged": 40 } }, - "price": 5891700.5 + "price": 6944999 }, "23264": { "id": 23264, @@ -233625,7 +233476,7 @@ "defence": 40 } }, - "price": 1960000 + "price": 3480001 }, "23267": { "id": 23267, @@ -233664,7 +233515,7 @@ "ranged": 40 } }, - "price": 9164900 + "price": 12589999 }, "23270": { "id": 23270, @@ -233702,7 +233553,7 @@ "slot": "head", "requirements": null }, - "price": 8316.5 + "price": 5934 }, "23273": { "id": 23273, @@ -233740,7 +233591,7 @@ "slot": "head", "requirements": null }, - "price": 9204 + "price": 23327 }, "23276": { "id": 23276, @@ -233815,7 +233666,7 @@ } ] }, - "price": 4710647 + "price": 6337043 }, "23279": { "id": 23279, @@ -233890,7 +233741,7 @@ } ] }, - "price": 5295577.5 + "price": 7101109 }, "23282": { "id": 23282, @@ -233955,7 +233806,7 @@ } ] }, - "price": 4000000 + "price": 5550000 }, "23285": { "id": 23285, @@ -233992,7 +233843,7 @@ "slot": "feet", "requirements": null }, - "price": 620250 + "price": 940000 }, "23288": { "id": 23288, @@ -234029,7 +233880,7 @@ "slot": "feet", "requirements": null }, - "price": 63065 + "price": 83892 }, "23291": { "id": 23291, @@ -234066,7 +233917,7 @@ "slot": "feet", "requirements": null }, - "price": 27500 + "price": 36820 }, "23294": { "id": 23294, @@ -234103,7 +233954,7 @@ "slot": "feet", "requirements": null }, - "price": 29079.5 + "price": 33821 }, "23297": { "id": 23297, @@ -234140,7 +233991,7 @@ "slot": "cape", "requirements": null }, - "price": 29191 + "price": 38350 }, "23300": { "id": 23300, @@ -234177,7 +234028,7 @@ "slot": "cape", "requirements": null }, - "price": 249055.5 + "price": 392500 }, "23303": { "id": 23303, @@ -234214,7 +234065,7 @@ "slot": "body", "requirements": null }, - "price": 43786 + "price": 30091 }, "23306": { "id": 23306, @@ -234251,7 +234102,7 @@ "slot": "legs", "requirements": null }, - "price": 30116 + "price": 14750 }, "23309": { "id": 23309, @@ -234288,7 +234139,7 @@ "slot": "neck", "requirements": null }, - "price": 10000 + "price": 3355 }, "23312": { "id": 23312, @@ -234325,7 +234176,7 @@ "slot": "head", "requirements": null }, - "price": 4679 + "price": 12091 }, "23315": { "id": 23315, @@ -234362,7 +234213,7 @@ "slot": "body", "requirements": null }, - "price": 4713.5 + "price": 4940 }, "23318": { "id": 23318, @@ -234399,7 +234250,7 @@ "slot": "legs", "requirements": null }, - "price": 3938.5 + "price": 13288 }, "23321": { "id": 23321, @@ -234416,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": 5782 + "price": 3322 }, "23324": { "id": 23324, @@ -234433,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": 11261 + "price": 15798 }, "23327": { "id": 23327, @@ -234450,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": 12153.5 + "price": 12941 }, "23330": { "id": 23330, @@ -234825,7 +234676,7 @@ } ] }, - "price": 1450000000 + "price": 1540833500 }, "23345": { "id": 23345, @@ -234866,7 +234717,7 @@ "defence": 65 } }, - "price": 2147483647 + "price": 1998000944 }, "23348": { "id": 23348, @@ -234884,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": 2483783 + "price": 3129634 }, "23351": { "id": 23351, @@ -234922,7 +234773,7 @@ "slot": "cape", "requirements": null }, - "price": 5311485.5 + "price": 4449951 }, "23354": { "id": 23354, @@ -234959,7 +234810,7 @@ "slot": "neck", "requirements": null }, - "price": 395563.5 + "price": 455867 }, "23357": { "id": 23357, @@ -235025,7 +234876,7 @@ } ] }, - "price": 110237 + "price": 143000 }, "23360": { "id": 23360, @@ -235090,7 +234941,7 @@ } ] }, - "price": 2080977.5 + "price": 3428574 }, "23363": { "id": 23363, @@ -235170,7 +235021,7 @@ } ] }, - "price": 47442 + "price": 145862 }, "23366": { "id": 23366, @@ -235209,7 +235060,7 @@ "defence": 10 } }, - "price": 2356.5 + "price": 3644 }, "23369": { "id": 23369, @@ -235248,7 +235099,7 @@ "defence": 10 } }, - "price": 2063.5 + "price": 2190 }, "23372": { "id": 23372, @@ -235326,7 +235177,7 @@ "defence": 10 } }, - "price": 25855.5 + "price": 2122 }, "23378": { "id": 23378, @@ -235365,7 +235216,7 @@ "defence": 10 } }, - "price": 2300 + "price": 15063 }, "23381": { "id": 23381, @@ -235404,7 +235255,7 @@ "ranged": 1 } }, - "price": 60774 + "price": 129834 }, "23384": { "id": 23384, @@ -235441,7 +235292,7 @@ "slot": "legs", "requirements": null }, - "price": 11080.5 + "price": 27055 }, "23387": { "id": 23387, @@ -235458,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": 48493.5 + "price": 10786 }, "23389": { "id": 23389, @@ -235496,7 +235347,7 @@ "slot": "feet", "requirements": null }, - "price": 540366.5 + "price": 900546 }, "23392": { "id": 23392, @@ -235574,7 +235425,7 @@ "defence": 30 } }, - "price": 19668.5 + "price": 9082 }, "23398": { "id": 23398, @@ -235652,7 +235503,7 @@ "defence": 30 } }, - "price": 9258 + "price": 10733 }, "23404": { "id": 23404, @@ -235729,7 +235580,7 @@ "slot": "head", "requirements": null }, - "price": 10202 + "price": 58500 }, "23410": { "id": 23410, @@ -235766,7 +235617,7 @@ "slot": "cape", "requirements": null }, - "price": 12794.5 + "price": 34000 }, "23413": { "id": 23413, @@ -236423,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": 138880 + "price": 110910 }, "23495": { "id": 23495, @@ -236469,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": 33241.5 + "price": 35668 }, "23502": { "id": 23502, @@ -236597,7 +236448,7 @@ "examine": "A giant sac of red spider eggs, hopefully none of them hatch.", "wiki_name": "Giant egg sac (Full)", "wiki_url": "https://oldschool.runescape.wiki/w/Giant_egg_sac#Full", - "price": 61212 + "price": 43141 }, "23520": { "id": 23520, @@ -236649,7 +236500,7 @@ "slot": "head", "requirements": null }, - "price": 27710 + "price": 23000 }, "23525": { "id": 23525, @@ -236667,7 +236518,7 @@ "examine": "Stop staring!", "wiki_name": "Jar of eyes", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_eyes", - "price": 175000 + "price": 463635 }, "23528": { "id": 23528, @@ -236742,7 +236593,7 @@ } ] }, - "price": 127041.5 + "price": 249939 }, "23533": { "id": 23533, @@ -238814,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": 4850000 + "price": 9515062 }, "23670": { "id": 23670, @@ -239211,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": 20355.5 + "price": 27628 }, "23688": { "id": 23688, @@ -239229,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": 14853 + "price": 19431 }, "23691": { "id": 23691, @@ -239247,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": 10403 + "price": 14068 }, "23694": { "id": 23694, @@ -239265,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": 5118 + "price": 6707 }, "23697": { "id": 23697, @@ -239283,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": 2669 + "price": 2469 }, "23700": { "id": 23700, @@ -239301,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": 1478.5 + "price": 1409 }, "23703": { "id": 23703, @@ -239319,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": 642.5 + "price": 633 }, "23706": { "id": 23706, @@ -239337,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": 625.5 + "price": 302 }, "23709": { "id": 23709, @@ -239355,7 +239206,7 @@ "examine": "4 doses of divine super strength potion.", "wiki_name": "Divine super strength potion (4 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_strength_potion#4_dose", - "price": 4905 + "price": 7960 }, "23712": { "id": 23712, @@ -239373,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": 4304.5 + "price": 4103 }, "23715": { "id": 23715, @@ -239391,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": 2308.5 + "price": 6204 }, "23718": { "id": 23718, @@ -239409,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": 1140 + "price": 24777 }, "23721": { "id": 23721, @@ -239427,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": 3919 + "price": 7815 }, "23724": { "id": 23724, @@ -239445,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": 2906.5 + "price": 2626 }, "23727": { "id": 23727, @@ -239463,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": 1555 + "price": 5750 }, "23730": { "id": 23730, @@ -239481,7 +239332,7 @@ "examine": "1 dose of divine super defence potion.", "wiki_name": "Divine super defence potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_super_defence_potion#1_dose", - "price": 1114 + "price": 743 }, "23733": { "id": 23733, @@ -239499,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": 4973.5 + "price": 6349 }, "23736": { "id": 23736, @@ -239517,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": 3638 + "price": 5001 }, "23739": { "id": 23739, @@ -239535,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": 2700 + "price": 3463 }, "23742": { "id": 23742, @@ -239553,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": 1413 + "price": 1820 }, "23745": { "id": 23745, @@ -239571,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": 1369 + "price": 962 }, "23748": { "id": 23748, @@ -239589,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": 442.5 + "price": 342 }, "23751": { "id": 23751, @@ -239607,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": 621 + "price": 322 }, "23754": { "id": 23754, @@ -239625,7 +239476,7 @@ "examine": "1 dose of divine magic potion.", "wiki_name": "Divine magic potion (1 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Divine_magic_potion#1_dose", - "price": 535 + "price": 316 }, "23757": { "id": 23757, @@ -240263,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", @@ -243067,7 +242866,7 @@ "examine": "Makes a dragon pickaxe more beautiful.", "wiki_name": "Zalcano shard", "wiki_url": "https://oldschool.runescape.wiki/w/Zalcano_shard", - "price": 81830.5 + "price": 56376 }, "23911": { "id": 23911, @@ -243473,7 +243272,7 @@ "slot": "ring", "requirements": null }, - "price": 4449500.5 + "price": 6031366 }, "23946": { "id": 23946, @@ -243504,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": 5100 + "price": 6000 }, "23951": { "id": 23951, @@ -243535,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": 17967102.5 + "price": 14772535 }, "23956": { "id": 23956, @@ -243552,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, @@ -243569,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": 2073940.5 + "price": 1713279 }, "23962": { "id": 23962, @@ -244281,7 +244080,7 @@ } ] }, - "price": 104248261.5 + "price": 129175500 }, "24000": { "id": 24000, @@ -244346,7 +244145,7 @@ } ] }, - "price": 248324 + "price": 310000 }, "24003": { "id": 24003, @@ -244384,7 +244183,7 @@ "slot": "feet", "requirements": null }, - "price": 9159 + "price": 7342 }, "24006": { "id": 24006, @@ -244421,7 +244220,7 @@ "slot": "hands", "requirements": null }, - "price": 10718 + "price": 9606 }, "24009": { "id": 24009, @@ -244457,7 +244256,7 @@ "slot": "body", "requirements": null }, - "price": 5360 + "price": 6387 }, "24012": { "id": 24012, @@ -244493,7 +244292,7 @@ "slot": "legs", "requirements": null }, - "price": 9277 + "price": 4083 }, "24015": { "id": 24015, @@ -244529,7 +244328,7 @@ "slot": "body", "requirements": null }, - "price": 8234.5 + "price": 6637 }, "24018": { "id": 24018, @@ -244565,7 +244364,7 @@ "slot": "legs", "requirements": null }, - "price": 9473.5 + "price": 22859 }, "24021": { "id": 24021, @@ -244601,7 +244400,7 @@ "slot": "body", "requirements": null }, - "price": 3168 + "price": 3463 }, "24024": { "id": 24024, @@ -244637,7 +244436,7 @@ "slot": "legs", "requirements": null }, - "price": 7908 + "price": 2776 }, "24027": { "id": 24027, @@ -244673,7 +244472,7 @@ "slot": "body", "requirements": null }, - "price": 5705 + "price": 4006 }, "24030": { "id": 24030, @@ -244763,7 +244562,7 @@ "defence": 40 } }, - "price": 1610000 + "price": 2292438 }, "24037": { "id": 24037, @@ -244801,7 +244600,7 @@ "defence": 40 } }, - "price": 1225000 + "price": 2577500 }, "24040": { "id": 24040, @@ -244839,7 +244638,7 @@ "defence": 40 } }, - "price": 1453643.5 + "price": 2751035 }, "24043": { "id": 24043, @@ -244878,7 +244677,7 @@ "defence": 40 } }, - "price": 131517 + "price": 332278 }, "24046": { "id": 24046, @@ -244917,7 +244716,7 @@ "defence": 40 } }, - "price": 317500 + "price": 460000 }, "24049": { "id": 24049, @@ -245868,7 +245667,7 @@ } ] }, - "price": 23951500.5 + "price": 25900000 }, "24147": { "id": 24147, @@ -247155,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": 629474 + "price": 468023 }, "24189": { "id": 24189, @@ -247844,7 +247643,7 @@ } ] }, - "price": 11121082 + "price": 9553000 }, "24222": { "id": 24222, @@ -248094,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": 542657 + "price": 400000 }, "24232": { "id": 24232, @@ -248485,7 +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": 35150 + "price": 26739 }, "24254": { "id": 24254, @@ -248529,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", @@ -248670,7 +248483,7 @@ "examine": "The jaw of a Basilisk Knight.", "wiki_name": "Basilisk jaw", "wiki_url": "https://oldschool.runescape.wiki/w/Basilisk_jaw", - "price": 19214804.5 + "price": 22731969 }, "24271": { "id": 24271, @@ -248842,7 +248655,7 @@ "defence": 40 } }, - "price": 441120.5 + "price": 673674 }, "24291": { "id": 24291, @@ -248882,7 +248695,7 @@ "defence": 40 } }, - "price": 2135554.5 + "price": 1552349 }, "24294": { "id": 24294, @@ -248922,7 +248735,7 @@ "defence": 40 } }, - "price": 821106.5 + "price": 1123093 }, "24297": { "id": 24297, @@ -249495,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": 3575000 + "price": 3484568 }, "24336": { "id": 24336, @@ -249511,7 +249324,7 @@ "examine": "A teleport to your target.", "wiki_name": "Target teleport", "wiki_url": "https://oldschool.runescape.wiki/w/Target_teleport", - "price": 7239 + "price": 5406 }, "24338": { "id": 24338, @@ -250209,7 +250022,7 @@ "slot": "head", "requirements": null }, - "price": 1074900 + "price": 1507542 }, "24389": { "id": 24389, @@ -250247,7 +250060,7 @@ "slot": "body", "requirements": null }, - "price": 4305665 + "price": 3998733 }, "24391": { "id": 24391, @@ -250285,7 +250098,7 @@ "slot": "legs", "requirements": null }, - "price": 626364 + "price": 423392 }, "24393": { "id": 24393, @@ -250323,7 +250136,7 @@ "slot": "feet", "requirements": null }, - "price": 1121421 + "price": 752501 }, "24395": { "id": 24395, @@ -250396,7 +250209,7 @@ } ] }, - "price": 869002.5 + "price": 1232998 }, "24397": { "id": 24397, @@ -250434,7 +250247,7 @@ "slot": "head", "requirements": null }, - "price": 255000 + "price": 350128 }, "24399": { "id": 24399, @@ -250472,7 +250285,7 @@ "slot": "body", "requirements": null }, - "price": 638277.5 + "price": 683000 }, "24401": { "id": 24401, @@ -250510,7 +250323,7 @@ "slot": "legs", "requirements": null }, - "price": 89931 + "price": 145677 }, "24403": { "id": 24403, @@ -250548,7 +250361,7 @@ "slot": "feet", "requirements": null }, - "price": 243833 + "price": 306667 }, "24405": { "id": 24405, @@ -250586,7 +250399,7 @@ "slot": "head", "requirements": null }, - "price": 487500 + "price": 415500 }, "24407": { "id": 24407, @@ -250624,7 +250437,7 @@ "slot": "body", "requirements": null }, - "price": 419420 + "price": 496560 }, "24409": { "id": 24409, @@ -250662,7 +250475,7 @@ "slot": "legs", "requirements": null }, - "price": 20500 + "price": 65556 }, "24411": { "id": 24411, @@ -250700,7 +250513,7 @@ "slot": "feet", "requirements": null }, - "price": 62000 + "price": 58207 }, "24413": { "id": 24413, @@ -250773,7 +250586,7 @@ } ] }, - "price": 549999.5 + "price": 257000 }, "24416": { "id": 24416, @@ -250862,7 +250675,7 @@ } ] }, - "price": 204217122.5 + "price": 307539339 }, "24418": { "id": 24418, @@ -250916,7 +250729,7 @@ "defence": 30 } }, - "price": 44214649 + "price": 58593012 }, "24420": { "id": 24420, @@ -250957,7 +250770,7 @@ "defence": 30 } }, - "price": 44873129.5 + "price": 45778172 }, "24421": { "id": 24421, @@ -250998,7 +250811,7 @@ "defence": 30 } }, - "price": 49500000 + "price": 59390102 }, "24422": { "id": 24422, @@ -251081,7 +250894,7 @@ } ] }, - "price": 29316910 + "price": 57427843 }, "24423": { "id": 24423, @@ -251616,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": 763676 + "price": 570000 }, "24463": { "id": 24463, @@ -251634,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": 4395000 + "price": 4219997 }, "24466": { "id": 24466, @@ -251652,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": 2187016.5 + "price": 2097000 }, "24469": { "id": 24469, @@ -251670,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": 1136710 + "price": 1088856 }, "24472": { "id": 24472, @@ -251688,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": 1411094.5 + "price": 1988000 }, "24475": { "id": 24475, @@ -251706,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": 7962268 + "price": 6718593 }, "24478": { "id": 24478, @@ -251842,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": 141340271 + "price": 164049014 }, "24491": { "id": 24491, @@ -251874,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": 768619.5 + "price": 4772468 }, "24511": { "id": 24511, @@ -251892,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": 294096642.5 + "price": 545142500 }, "24514": { "id": 24514, @@ -251910,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": 96949949.5 + "price": 117641446 }, "24517": { "id": 24517, @@ -251928,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": 265456626 + "price": 359522557 }, "24520": { "id": 24520, @@ -252677,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": 38092.5 + "price": 28673 }, "24587": { "id": 24587, @@ -252694,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": 2554627.5 + "price": 2000000 }, "24589": { "id": 24589, @@ -252712,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": 701.5 + "price": 331 }, "24592": { "id": 24592, @@ -252730,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": 1386 + "price": 358 }, "24595": { "id": 24595, @@ -252743,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": 592.5 + "price": 165 }, "24598": { "id": 24598, @@ -252765,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, @@ -252822,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": 662 + "price": 264 }, "24613": { "id": 24613, @@ -252844,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": 228.5 + "price": 69 }, "24615": { "id": 24615, @@ -252861,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": 95.5 + "price": 76 }, "24617": { "id": 24617, @@ -252963,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": 112 + "price": 87 }, "24623": { "id": 24623, @@ -252981,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, @@ -252999,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": 20343 + "price": 13515 }, "24629": { "id": 24629, @@ -253017,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": 8158.5 + "price": 20000 }, "24632": { "id": 24632, @@ -253035,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": 6395.5 + "price": 4441 }, "24635": { "id": 24635, @@ -253053,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, @@ -253071,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, @@ -253089,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, @@ -253107,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, @@ -254219,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": 135090.5 + "price": 45359 }, "24743": { "id": 24743, @@ -254525,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": 61.5 + "price": 46 }, "24777": { "id": 24777, @@ -254543,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": 6354097 + "price": 7878543 }, "24780": { "id": 24780, @@ -254594,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": 2100 + "price": 500 }, "24785": { "id": 24785, @@ -254611,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": 114 + "price": 101 }, "24788": { "id": 24788, @@ -255569,7 +255383,7 @@ "agility": 70 } }, - "price": 41033500 + "price": 22363124 }, "24847": { "id": 24847, @@ -256579,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": 1026 + "price": 1030 }, "24951": { "id": 24951, @@ -256596,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": 860.5 + "price": 1099 }, "24953": { "id": 24953, @@ -256613,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": 912 + "price": 1000 }, "24955": { "id": 24955, @@ -256630,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": 445 + "price": 561 }, "24957": { "id": 24957, @@ -256647,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": 1390 + "price": 1306 }, "24959": { "id": 24959, @@ -256664,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": 1295.5 + "price": 856 }, "24961": { "id": 24961, @@ -256681,7 +256495,7 @@ "examine": "A teleport to Catherby.", "wiki_name": "Catherby teleport (tablet)", "wiki_url": "https://oldschool.runescape.wiki/w/Catherby_teleport_(tablet)", - "price": 1325 + "price": 1321 }, "24963": { "id": 24963, @@ -256698,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": 1438.5 + "price": 1205 }, "24971": { "id": 24971, @@ -257010,7 +256824,7 @@ "slot": "head", "requirements": null }, - "price": 534841 + "price": 1025500 }, "25004": { "id": 25004, @@ -257048,7 +256862,7 @@ "slot": "body", "requirements": null }, - "price": 2583722.5 + "price": 1878500 }, "25007": { "id": 25007, @@ -257086,7 +256900,7 @@ "slot": "legs", "requirements": null }, - "price": 756665 + "price": 899500 }, "25010": { "id": 25010, @@ -257124,7 +256938,7 @@ "slot": "feet", "requirements": null }, - "price": 1080710 + "price": 4195000 }, "25013": { "id": 25013, @@ -257197,7 +257011,7 @@ } ] }, - "price": 1000066 + "price": 6250000 }, "25016": { "id": 25016, @@ -257235,7 +257049,7 @@ "slot": "head", "requirements": null }, - "price": 110440.5 + "price": 188725 }, "25019": { "id": 25019, @@ -257273,7 +257087,7 @@ "slot": "body", "requirements": null }, - "price": 223999 + "price": 518936 }, "25022": { "id": 25022, @@ -257311,7 +257125,7 @@ "slot": "legs", "requirements": null }, - "price": 58782.5 + "price": 86549 }, "25025": { "id": 25025, @@ -257349,7 +257163,7 @@ "slot": "feet", "requirements": null }, - "price": 332833 + "price": 599870 }, "25028": { "id": 25028, @@ -257387,7 +257201,7 @@ "slot": "head", "requirements": null }, - "price": 58313 + "price": 182178 }, "25031": { "id": 25031, @@ -257425,7 +257239,7 @@ "slot": "body", "requirements": null }, - "price": 231096.5 + "price": 430000 }, "25034": { "id": 25034, @@ -257463,7 +257277,7 @@ "slot": "legs", "requirements": null }, - "price": 61261 + "price": 14066 }, "25037": { "id": 25037, @@ -257501,7 +257315,7 @@ "slot": "feet", "requirements": null }, - "price": 179176.5 + "price": 6926 }, "25042": { "id": 25042, @@ -257896,7 +257710,7 @@ } ] }, - "price": 316694.5 + "price": 82720 }, "25059": { "id": 25059, @@ -258325,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": 1093819 + "price": 764961 }, "25090": { "id": 25090, @@ -258343,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": 360009 + "price": 554717 }, "25093": { "id": 25093, @@ -258361,7 +258175,7 @@ "examine": "A globe which can be built into a statue in a PoH hotspot in your League Trophy Room.", "wiki_name": "Trailblazer globe", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_globe", - "price": 2436086 + "price": 2429710 }, "25096": { "id": 25096, @@ -258379,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": 6244857 + "price": 2348603 }, "25099": { "id": 25099, @@ -258397,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": 255589.5 + "price": 432177 }, "25102": { "id": 25102, @@ -258685,32 +258499,25 @@ }, "weapon": { "attack_speed": 5, - "weapon_type": "stab_sword", + "weapon_type": "unarmed", "stances": [ { - "combat_style": "stab", - "attack_type": "stab", + "combat_style": "punch", + "attack_type": "crush", "attack_style": "accurate", "experience": "attack", "boosts": null }, { - "combat_style": "lunge", - "attack_type": "stab", - "attack_style": "aggressive", - "experience": "strength", - "boosts": null - }, - { - "combat_style": "slash", - "attack_type": "slash", + "combat_style": "kick", + "attack_type": "crush", "attack_style": "aggressive", "experience": "strength", "boosts": null }, { "combat_style": "block", - "attack_type": "stab", + "attack_type": "crush", "attack_style": "defensive", "experience": "defence", "boosts": null @@ -258909,7 +258716,7 @@ "examine": "Ground down bone fragments.", "wiki_name": "Bone fragments", "wiki_url": "https://oldschool.runescape.wiki/w/Bone_fragments", - "price": 607.5 + "price": 549 }, "25145": { "id": 25145, @@ -260351,7 +260158,7 @@ "highalch": 0, "weight": 0.007, "release_date": "2021-01-06", - "examine": "Increases melee, ranged and magic damage & accuracy by 15%{{Sic|The correct value is 1/6th, equal to 16.67%.}} against the undead.", + "examine": "Increases melee, ranged and magic damage & accuracy by 15%{{Sic|The correct value for melee and ranged is 1/6th, equal to 16.67%.}} against the undead.", "wiki_name": "Salve amulet(i) (Soul Wars)", "wiki_url": "https://oldschool.runescape.wiki/w/Salve_amulet(i)#Soul_Wars", "equipment": { @@ -261766,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": 1424327.5 + "price": 770000 }, "25383": { "id": 25383, @@ -261783,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": 1262149.5 + "price": 2404681 }, "25386": { "id": 25386, @@ -261800,7 +261607,7 @@ "examine": "A set containing Trailblazer boots, Trailblazer trousers, Trailblazer top and Trailblazer hood.", "wiki_name": "Trailblazer relic hunter (t3) armour set", "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_relic_hunter_(t3)_armour_set", - "price": 5532500 + "price": 9369935 }, "25389": { "id": 25389, @@ -261840,7 +261647,7 @@ "defence": 50 } }, - "price": 103487.5 + "price": 87758 }, "25392": { "id": 25392, @@ -261880,7 +261687,7 @@ "defence": 50 } }, - "price": 12802.5 + "price": 5211 }, "25395": { "id": 25395, @@ -261920,7 +261727,7 @@ "defence": 50 } }, - "price": 30217.5 + "price": 23526 }, "25398": { "id": 25398, @@ -261960,7 +261767,7 @@ "defence": 50 } }, - "price": 47313 + "price": 38799 }, "25401": { "id": 25401, @@ -262000,7 +261807,7 @@ "defence": 50 } }, - "price": 129884.5 + "price": 82628 }, "25404": { "id": 25404, @@ -262040,7 +261847,7 @@ "defence": 60 } }, - "price": 140750 + "price": 161500 }, "25407": { "id": 25407, @@ -262080,7 +261887,7 @@ "defence": 60 } }, - "price": 28047 + "price": 44992 }, "25410": { "id": 25410, @@ -262120,7 +261927,7 @@ "defence": 60 } }, - "price": 34001.5 + "price": 44000 }, "25413": { "id": 25413, @@ -262160,7 +261967,7 @@ "defence": 60 } }, - "price": 61249 + "price": 89970 }, "25416": { "id": 25416, @@ -262175,6 +261982,7 @@ "lowalch": 32000, "highalch": 48000, "weight": 3.628, + "buy_limit": 70, "release_date": "2021-01-27", "examine": "Strong leg protection.", "wiki_name": "Bloodbark legs", @@ -262200,7 +262008,7 @@ "defence": 60 } }, - "price": 135000.5 + "price": 142625 }, "25419": { "id": 25419, @@ -262218,7 +262026,7 @@ "examine": "The remains of a deadly shade.", "wiki_name": "Urium remains", "wiki_url": "https://oldschool.runescape.wiki/w/Urium_remains", - "price": 5381 + "price": 6451 }, "25422": { "id": 25422, @@ -262456,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": 1083.5 + "price": 977 }, "25445": { "id": 25445, @@ -262474,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": 2393 + "price": 225 }, "25448": { "id": 25448, @@ -262492,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": 3930.5 + "price": 958 }, "25451": { "id": 25451, @@ -262510,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": 11430.5 + "price": 11403 }, "25454": { "id": 25454, @@ -262528,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, @@ -262926,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": 2347.5 + "price": 2828 }, "25481": { "id": 25481, @@ -262944,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": 2421 + "price": 8000 }, "25484": { "id": 25484, @@ -263806,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": 177870.5 + "price": 36896 }, "25524": { "id": 25524, @@ -263824,7 +263632,7 @@ "examine": "Don't breathe in.", "wiki_name": "Jar of smoke", "wiki_url": "https://oldschool.runescape.wiki/w/Jar_of_smoke", - "price": 34968 + "price": 21067 }, "25527": { "id": 25527, @@ -264381,7 +264189,7 @@ "slot": "shield", "requirements": null }, - "price": 294199 + "price": 913224 }, "25578": { "id": 25578, @@ -264398,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": 820 + "price": 1734 }, "25580": { "id": 25580, @@ -266601,7 +266409,7 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Holy_scythe_of_vitur#Charged", "equipment": { "attack_stab": 70, - "attack_slash": 110, + "attack_slash": 125, "attack_crush": 30, "attack_magic": -6, "attack_ranged": 0, @@ -266739,7 +266547,7 @@ "wiki_url": "https://oldschool.runescape.wiki/w/Sanguine_scythe_of_vitur#Charged", "equipment": { "attack_stab": 70, - "attack_slash": 110, + "attack_slash": 125, "attack_crush": 30, "attack_magic": -6, "attack_ranged": 0, @@ -267178,7 +266986,7 @@ "examine": "A heap of ashes.", "wiki_name": "Fiendish ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Fiendish_ashes", - "price": 133 + "price": 104 }, "25769": { "id": 25769, @@ -267195,7 +267003,7 @@ "examine": "A heap of ashes.", "wiki_name": "Vile ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Vile_ashes", - "price": 669 + "price": 204 }, "25772": { "id": 25772, @@ -267212,7 +267020,7 @@ "examine": "A heap of ashes.", "wiki_name": "Malicious ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Malicious_ashes", - "price": 1265.5 + "price": 1503 }, "25775": { "id": 25775, @@ -267230,7 +267038,7 @@ "examine": "A heap of ashes.", "wiki_name": "Abyssal ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Abyssal_ashes", - "price": 2182 + "price": 2300 }, "25778": { "id": 25778, @@ -267248,7 +267056,7 @@ "examine": "A heap of ashes.", "wiki_name": "Infernal ashes", "wiki_url": "https://oldschool.runescape.wiki/w/Infernal_ashes", - "price": 3736.5 + "price": 3571 }, "25781": { "id": 25781, @@ -267603,6 +267411,7 @@ "25820": { "id": 25820, "name": "Antique lamp", + "members": true, "cost": 1, "lowalch": 0, "highalch": 0, @@ -267709,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, @@ -267753,7 +267562,7 @@ "examine": "I need to cook this first.", "wiki_name": "Raw boar meat", "wiki_url": "https://oldschool.runescape.wiki/w/Raw_boar_meat", - "price": 1144.5 + "price": 176 }, "25836": { "id": 25836, @@ -267949,7 +267758,7 @@ } ] }, - "price": 302.5 + "price": 268 }, "25851": { "id": 25851, @@ -268014,7 +267823,7 @@ } ] }, - "price": 308 + "price": 211 }, "25853": { "id": 25853, @@ -268031,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": 567.5 + "price": 460 }, "25855": { "id": 25855, @@ -268096,7 +267905,7 @@ } ] }, - "price": 320 + "price": 663 }, "25857": { "id": 25857, @@ -268161,7 +267970,7 @@ } ] }, - "price": 1045.5 + "price": 1304 }, "25859": { "id": 25859, @@ -268172,11 +267981,12 @@ "noteable": true, "cost": 500000, "weight": 0.018, + "buy_limit": 70, "release_date": "2021-06-30", "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": 101985000 + "price": 135339078 }, "25862": { "id": 25862, @@ -268244,7 +268054,7 @@ } ] }, - "price": 103752961.5 + "price": 134105582 }, "25865": { "id": 25865, @@ -270248,7 +270058,7 @@ "slot": "ring", "requirements": null }, - "price": 2177436 + "price": 1858971 }, "25979": { "id": 25979, @@ -270327,8 +270137,6 @@ "equipable_by_player": true, "equipable_weapon": true, "cost": 300000, - "lowalch": 120000, - "highalch": 180000, "weight": 3.218, "release_date": "2022-08-24", "examine": "A mystical-feeling polearm imbued with great power.", @@ -270388,7 +270196,9 @@ } ] }, - "price": 0 + "price": 0, + "lowalch": 120000, + "highalch": 180000 }, "25985": { "id": 25985, @@ -270429,7 +270239,7 @@ "prayer": 80 } }, - "price": 4721524 + "price": 4723201 }, "25990": { "id": 25990, @@ -272746,7 +272556,7 @@ } ] }, - "price": 25218758 + "price": 15217501 }, "26221": { "id": 26221, @@ -272784,7 +272594,7 @@ "slot": "body", "requirements": null }, - "price": 60417.5 + "price": 58260 }, "26223": { "id": 26223, @@ -272822,7 +272632,7 @@ "slot": "legs", "requirements": null }, - "price": 46362.5 + "price": 53226 }, "26225": { "id": 26225, @@ -272860,7 +272670,7 @@ "slot": "head", "requirements": null }, - "price": 37413 + "price": 29266 }, "26227": { "id": 26227, @@ -272898,7 +272708,7 @@ "slot": "hands", "requirements": null }, - "price": 33000 + "price": 28800 }, "26229": { "id": 26229, @@ -272936,7 +272746,7 @@ "slot": "feet", "requirements": null }, - "price": 29690 + "price": 22785 }, "26231": { "id": 26231, @@ -272953,7 +272763,7 @@ "examine": "An ancient magical shard.", "wiki_name": "Nihil shard", "wiki_url": "https://oldschool.runescape.wiki/w/Nihil_shard", - "price": 2859 + "price": 5249 }, "26233": { "id": 26233, @@ -273025,7 +272835,7 @@ } ] }, - "price": 62071500 + "price": 36833293 }, "26235": { "id": 26235, @@ -273040,6 +272850,7 @@ "lowalch": 80000, "highalch": 120000, "weight": 1, + "buy_limit": 7, "release_date": "2022-01-05", "examine": "A pair of ancient vambraces.", "wiki_name": "Zaryte vambraces", @@ -273062,7 +272873,7 @@ "slot": "hands", "requirements": null }, - "price": 150619809 + "price": 115250000 }, "26237": { "id": 26237, @@ -273128,7 +272939,7 @@ "slot": "head", "requirements": null }, - "price": 4989904.5 + "price": 4576624 }, "26243": { "id": 26243, @@ -273165,7 +272976,7 @@ "slot": "body", "requirements": null }, - "price": 68535555.5 + "price": 58002121 }, "26245": { "id": 26245, @@ -273202,7 +273013,7 @@ "slot": "legs", "requirements": null }, - "price": 33333292.5 + "price": 29132804 }, "26247": { "id": 26247, @@ -273434,7 +273245,7 @@ "examine": "The gold standard of gold.", "wiki_name": "Condensed gold", "wiki_url": "https://oldschool.runescape.wiki/w/Condensed_gold", - "price": 9116404.5 + "price": 9769405 }, "26269": { "id": 26269, @@ -274090,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": 1770.5 + "price": 7235 }, "26342": { "id": 26342, @@ -274108,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": 1444.5 + "price": 4815 }, "26344": { "id": 26344, @@ -274126,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": 658 + "price": 4256 }, "26346": { "id": 26346, @@ -274144,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": 424.5 + "price": 5000 }, "26348": { "id": 26348, @@ -274173,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": 4556 + "price": 728 }, "26353": { "id": 26353, @@ -274190,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": 961.5 + "price": 5161 }, "26356": { "id": 26356, @@ -274278,7 +274089,7 @@ "examine": "Dust from a crushed magical shard.", "wiki_name": "Nihil dust", "wiki_url": "https://oldschool.runescape.wiki/w/Nihil_dust", - "price": 2867.5 + "price": 5324 }, "26370": { "id": 26370, @@ -274295,7 +274106,7 @@ "examine": "Brimming with potential.", "wiki_name": "Ancient hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Ancient_hilt", - "price": 59224218 + "price": 36205749 }, "26372": { "id": 26372, @@ -274312,7 +274123,7 @@ "examine": "The horn of a proud nihil.", "wiki_name": "Nihil horn", "wiki_url": "https://oldschool.runescape.wiki/w/Nihil_horn", - "price": 366204444 + "price": 333283330 }, "26374": { "id": 26374, @@ -274377,7 +274188,7 @@ } ] }, - "price": 420010000 + "price": 394445746 }, "26376": { "id": 26376, @@ -274414,7 +274225,7 @@ "slot": "head", "requirements": null }, - "price": 268668629 + "price": 230683000 }, "26378": { "id": 26378, @@ -274451,7 +274262,7 @@ "slot": "body", "requirements": null }, - "price": 399297038 + "price": 372334710 }, "26380": { "id": 26380, @@ -274488,7 +274299,7 @@ "slot": "legs", "requirements": null }, - "price": 318147500 + "price": 292857161 }, "26382": { "id": 26382, @@ -274525,7 +274336,7 @@ "slot": "head", "requirements": null }, - "price": 280690471.5 + "price": 241606961 }, "26384": { "id": 26384, @@ -274562,7 +274373,7 @@ "slot": "body", "requirements": null }, - "price": 431556056 + "price": 393763035 }, "26386": { "id": 26386, @@ -274599,7 +274410,7 @@ "slot": "legs", "requirements": null }, - "price": 336455500 + "price": 304875000 }, "26388": { "id": 26388, @@ -274630,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, @@ -274661,7 +274472,7 @@ "examine": "High grade material.", "wiki_name": "Bandosian components", "wiki_url": "https://oldschool.runescape.wiki/w/Bandosian_components", - "price": 9544000 + "price": 8730611 }, "26417": { "id": 26417, @@ -274692,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": 1404438.5 + "price": 1365444 }, "26424": { "id": 26424, @@ -274764,7 +274575,7 @@ } ] }, - "price": 715125 + "price": 110282 }, "26427": { "id": 26427, @@ -274801,7 +274612,7 @@ "slot": "head", "requirements": null }, - "price": 641112 + "price": 291679 }, "26430": { "id": 26430, @@ -274838,7 +274649,7 @@ "slot": "body", "requirements": null }, - "price": 90217 + "price": 78984 }, "26433": { "id": 26433, @@ -274875,7 +274686,7 @@ "slot": "legs", "requirements": null }, - "price": 99678.5 + "price": 64771 }, "26436": { "id": 26436, @@ -274912,7 +274723,7 @@ "slot": "feet", "requirements": null }, - "price": 94914.5 + "price": 47487 }, "26439": { "id": 26439, @@ -274949,7 +274760,7 @@ "slot": "head", "requirements": null }, - "price": 1300000 + "price": 682250 }, "26442": { "id": 26442, @@ -274986,7 +274797,7 @@ "slot": "body", "requirements": null }, - "price": 100129 + "price": 475000 }, "26445": { "id": 26445, @@ -275023,7 +274834,7 @@ "slot": "legs", "requirements": null }, - "price": 196214 + "price": 98857 }, "26448": { "id": 26448, @@ -275060,7 +274871,7 @@ "slot": "feet", "requirements": null }, - "price": 173263.5 + "price": 197947 }, "26451": { "id": 26451, @@ -275097,7 +274908,7 @@ "slot": "head", "requirements": null }, - "price": 7008000 + "price": 5295375 }, "26454": { "id": 26454, @@ -275134,7 +274945,7 @@ "slot": "body", "requirements": null }, - "price": 2250200 + "price": 1900000 }, "26457": { "id": 26457, @@ -275171,7 +274982,7 @@ "slot": "legs", "requirements": null }, - "price": 2143500 + "price": 1247500 }, "26460": { "id": 26460, @@ -275208,7 +275019,7 @@ "slot": "feet", "requirements": null }, - "price": 1950004.5 + "price": 857661 }, "26463": { "id": 26463, @@ -275498,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": 1276638.5 + "price": 876381 }, "26482": { "id": 26482, @@ -275905,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": 1331252.5 + "price": 750795 }, "26503": { "id": 26503, @@ -276299,7 +276110,7 @@ } ] }, - "price": 3364495.5 + "price": 2119998 }, "26520": { "id": 26520, @@ -276373,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": 1273801.5 + "price": 1139315 }, "26531": { "id": 26531, @@ -276561,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": 61397.5 + "price": 55779 }, "26544": { "id": 26544, @@ -276701,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": 1035744 + "price": 531997 }, "26557": { "id": 26557, @@ -276718,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": 3675000 + "price": 4449998 }, "26560": { "id": 26560, @@ -276735,7 +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": 14779944 + "price": 11005061 }, "26567": { "id": 26567, @@ -280208,7 +280019,7 @@ "highalch": 0, "weight": 0.007, "release_date": "2022-07-06", - "examine": "Increases melee, ranged and magic damage & accuracy by 15%{{Sic|The correct value is 1/6th, equal to 16.67%.}} against the undead.", + "examine": "Increases melee, ranged and magic damage & accuracy by 15%{{Sic|The correct value for melee and ranged is 1/6th, equal to 16.67%.}} against the undead.", "wiki_name": "Salve amulet(i) (Emir's Arena)", "wiki_url": "https://oldschool.runescape.wiki/w/Salve_amulet(i)#Emir's_Arena", "equipment": { @@ -280567,7 +280378,7 @@ "slot": "head", "requirements": null }, - "price": 127.5 + "price": 60 }, "26792": { "id": 26792, @@ -280599,7 +280410,7 @@ "examine": "A mysterious power emanates from the talisman...", "wiki_name": "Catalytic talisman", "wiki_url": "https://oldschool.runescape.wiki/w/Catalytic_talisman", - "price": 1900 + "price": 7991 }, "26801": { "id": 26801, @@ -280637,7 +280448,7 @@ "slot": "head", "requirements": null }, - "price": 775 + "price": 1000 }, "26804": { "id": 26804, @@ -280674,7 +280485,7 @@ "slot": "head", "requirements": null }, - "price": 3636 + "price": 1225 }, "26807": { "id": 26807, @@ -280759,7 +280570,7 @@ "slot": "ring", "requirements": null }, - "price": 386192.5 + "price": 808389 }, "26818": { "id": 26818, @@ -282183,7 +281994,7 @@ "cost": 0, "weight": 0.1, "release_date": "2022-04-13", - "examine": "The bottle is hot to touch. I should probably be wearing gloves.", + "examine": "The bottle is hot to the touch. I should probably be wearing gloves.", "wiki_name": "Special hot sauce", "wiki_url": "https://oldschool.runescape.wiki/w/Special_hot_sauce", "price": 0 @@ -282960,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": 4310 + "price": 4657 }, "27000": { "id": 27000, @@ -283343,7 +283154,7 @@ "examine": "Only Kovac knows what's gone into this.", "wiki_name": "Kovac's grog", "wiki_url": "https://oldschool.runescape.wiki/w/Kovac's_grog", - "price": 32651 + "price": 50000 }, "27017": { "id": 27017, @@ -284845,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": 1773.5 + "price": 2194 }, "27205": { "id": 27205, @@ -284862,7 +284673,7 @@ "examine": "3 doses of Menaphite remedy.", "wiki_name": "Menaphite remedy (3 dose)", "wiki_url": "https://oldschool.runescape.wiki/w/Menaphite_remedy#3_dose", - "price": 1309 + "price": 1310 }, "27208": { "id": 27208, @@ -284879,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": 892 + "price": 956 }, "27211": { "id": 27211, @@ -284896,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": 405 + "price": 716 }, "27214": { "id": 27214, @@ -285012,7 +284823,7 @@ "defence": 30 } }, - "price": 7891058.5 + "price": 7442503 }, "27229": { "id": 27229, @@ -285052,7 +284863,7 @@ "defence": 30 } }, - "price": 59895606.5 + "price": 56199489 }, "27232": { "id": 27232, @@ -285092,7 +284903,7 @@ "defence": 30 } }, - "price": 40817252.5 + "price": 39971701 }, "27235": { "id": 27235, @@ -285132,7 +284943,7 @@ "defence": 80 } }, - "price": 17925000 + "price": 19512332 }, "27238": { "id": 27238, @@ -285172,7 +284983,7 @@ "defence": 80 } }, - "price": 100262212.5 + "price": 105124309 }, "27241": { "id": 27241, @@ -285212,7 +285023,7 @@ "defence": 80 } }, - "price": 71128888.5 + "price": 78527665 }, "27246": { "id": 27246, @@ -285606,7 +285417,7 @@ "examine": "High grade material.", "wiki_name": "Armadylean plate", "wiki_url": "https://oldschool.runescape.wiki/w/Armadylean_plate", - "price": 10148999.5 + "price": 11843835 }, "27272": { "id": 27272, @@ -285624,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": 1854 + "price": 2023 }, "27275": { "id": 27275, @@ -285755,7 +285566,7 @@ } ] }, - "price": 1286522499.5 + "price": 1403630163 }, "27279": { "id": 27279, @@ -285819,8 +285630,6 @@ "equipable_by_player": true, "equipable_weapon": true, "cost": 300000, - "lowalch": 120000, - "highalch": 180000, "weight": 3.218, "release_date": "2022-08-24", "examine": "A mystical-feeling polearm imbued with destructive power.", @@ -285880,7 +285689,9 @@ } ] }, - "price": 0 + "price": 0, + "lowalch": 120000, + "highalch": 180000 }, "27289": { "id": 27289, @@ -285904,8 +285715,6 @@ "equipable_by_player": true, "equipable_weapon": true, "cost": 300000, - "lowalch": 120000, - "highalch": 180000, "weight": 3.218, "release_date": "2022-08-24", "examine": "A mystical-feeling polearm imbued with radiating power.", @@ -285965,7 +285774,9 @@ } ] }, - "price": 0 + "price": 0, + "lowalch": 120000, + "highalch": 180000 }, "27293": { "id": 27293, @@ -286482,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": 189058999.5 + "price": 199972500 }, "27358": { "id": 27358, @@ -288661,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", @@ -290444,7 +290255,7 @@ } ] }, - "price": 37774424 + "price": 68043500 }, "27614": { "id": 27614, @@ -290461,7 +290272,7 @@ "examine": "A broken shard of an ancient weapon.", "wiki_name": "Venator shard", "wiki_url": "https://oldschool.runescape.wiki/w/Venator_shard", - "price": 7365370.5 + "price": 13397627 }, "27616": { "id": 27616, @@ -290478,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": 12 + "price": 9 }, "27622": { "id": 27622, @@ -290678,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": 1630.5 + "price": 7400 }, "27632": { "id": 27632, @@ -290695,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": 841 + "price": 3247 }, "27635": { "id": 27635, @@ -290712,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": 682 + "price": 2370 }, "27638": { "id": 27638, @@ -290729,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": 437.5 + "price": 1820 }, "27641": { "id": 27641, @@ -290742,11 +290553,12 @@ "lowalch": 240000, "highalch": 360000, "weight": 0.45, + "buy_limit": 8, "release_date": "2023-01-11", "examine": "This heart holds an ancient magical power within.", "wiki_name": "Saturated heart", "wiki_url": "https://oldschool.runescape.wiki/w/Saturated_heart", - "price": 92137500 + "price": 113983888 }, "27643": { "id": 27643, @@ -290941,7 +290753,7 @@ } ] }, - "price": 15257365.5 + "price": 16952500 }, "27655": { "id": 27655, @@ -291078,7 +290890,7 @@ } ] }, - "price": 5599629 + "price": 3393045 }, "27660": { "id": 27660, @@ -291212,7 +291024,7 @@ } ] }, - "price": 2737975 + "price": 2396477 }, "27665": { "id": 27665, @@ -291293,7 +291105,7 @@ "examine": "The claws of a great bear. They seem to maintain some of his power, somehow.", "wiki_name": "Claws of callisto", "wiki_url": "https://oldschool.runescape.wiki/w/Claws_of_callisto", - "price": 98817 + "price": 85204 }, "27670": { "id": 27670, @@ -291311,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": 84999 + "price": 91891 }, "27673": { "id": 27673, @@ -291329,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": 129601.5 + "price": 121830 }, "27676": { "id": 27676, @@ -291408,7 +291220,7 @@ } ] }, - "price": 2639332 + "price": 2471822 }, "27679": { "id": 27679, @@ -291501,7 +291313,7 @@ "examine": "The hilt of a broken sword.", "wiki_name": "Voidwaker hilt", "wiki_url": "https://oldschool.runescape.wiki/w/Voidwaker_hilt", - "price": 48760844.5 + "price": 32967801 }, "27684": { "id": 27684, @@ -291518,7 +291330,7 @@ "examine": "The blade of a broken sword.", "wiki_name": "Voidwaker blade", "wiki_url": "https://oldschool.runescape.wiki/w/Voidwaker_blade", - "price": 25661049 + "price": 24555389 }, "27687": { "id": 27687, @@ -291535,7 +291347,7 @@ "examine": "The gem of a broken sword.", "wiki_name": "Voidwaker gem", "wiki_url": "https://oldschool.runescape.wiki/w/Voidwaker_gem", - "price": 73462499.5 + "price": 30009755 }, "27690": { "id": 27690, @@ -291551,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", @@ -291609,7 +291422,7 @@ } ] }, - "price": 151649212.5 + "price": 86408037 }, "27693": { "id": 27693, @@ -293203,7 +293016,7 @@ } ] }, - "price": 2689444 + "price": 2251499 }, "27788": { "id": 27788, @@ -298675,6 +298488,7 @@ "28132": { "id": 28132, "name": "Dusty lamp", + "members": true, "cost": 1, "weight": 0.1, "release_date": "2023-06-14", @@ -298904,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": 485000 + "price": 446000 }, "28149": { "id": 28149, @@ -298921,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": 539998.5 + "price": 595475 }, "28152": { "id": 28152, @@ -298937,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, @@ -298971,7 +298785,7 @@ "examine": "Mmm this looks tasty.", "wiki_name": "Forester's ration", "wiki_url": "https://oldschool.runescape.wiki/w/Forester's_ration", - "price": 25 + "price": 47 }, "28159": { "id": 28159, @@ -298987,7 +298801,7 @@ "examine": "An ingredient for the secateurs attachment.", "wiki_name": "Secateurs blade", "wiki_url": "https://oldschool.runescape.wiki/w/Secateurs_blade", - "price": 3306 + "price": 3540 }, "28161": { "id": 28161, @@ -299003,7 +298817,7 @@ "examine": "Collects leaves when chopping trees.", "wiki_name": "Secateurs attachment", "wiki_url": "https://oldschool.runescape.wiki/w/Secateurs_attachment", - "price": 60 + "price": 87 }, "28163": { "id": 28163, @@ -299020,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": 871000 + "price": 2474996 }, "28166": { "id": 28166, @@ -299037,7 +298851,7 @@ "examine": "A step-by-step guide to crafting your very own clothes pouch!", "wiki_name": "Clothes pouch blueprint", "wiki_url": "https://oldschool.runescape.wiki/w/Clothes_pouch_blueprint", - "price": 876500 + "price": 2420000 }, "28169": { "id": 28169, @@ -299048,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", @@ -299189,14 +299003,12 @@ "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": 1687500 + "price": 2104901 }, "28179": { "id": 28179, "name": "Leprechaun charm", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -299205,14 +299017,12 @@ "examine": "They're magicly expeditious.", "wiki_name": "Leprechaun charm", "wiki_url": "https://oldschool.runescape.wiki/w/Leprechaun_charm", - "price": 2685.5 + "price": 4523 }, "28181": { "id": 28181, "name": "Clover insignia", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 100, "lowalch": 40, @@ -299221,7 +299031,7 @@ "examine": "I wonder how these can be used to attract a leprechaun?", "wiki_name": "Clover insignia", "wiki_url": "https://oldschool.runescape.wiki/w/Clover_insignia", - "price": 18694 + "price": 16750 }, "28183": { "id": 28183, @@ -299237,9 +299047,7 @@ "28184": { "id": 28184, "name": "Bee on a stick", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -299248,14 +299056,12 @@ "examine": "A handy helper for spreading pollen.", "wiki_name": "Bee on a stick", "wiki_url": "https://oldschool.runescape.wiki/w/Bee_on_a_stick", - "price": 7000 + "price": 10693 }, "28190": { "id": 28190, "name": "Powdered pollen", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 100, "lowalch": 40, @@ -299264,7 +299070,7 @@ "examine": "Carefully processed pollen that might make bees friendly.", "wiki_name": "Powdered pollen", "wiki_url": "https://oldschool.runescape.wiki/w/Powdered_pollen", - "price": 75000.5 + "price": 92500 }, "28192": { "id": 28192, @@ -299293,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": 25.5 + "price": 32 }, "28196": { "id": 28196, @@ -299365,7 +299171,7 @@ } ] }, - "price": 2395000 + "price": 1325000 }, "28199": { "id": 28199, @@ -299437,7 +299243,7 @@ } ] }, - "price": 1350000 + "price": 1005500 }, "28202": { "id": 28202, @@ -299509,7 +299315,7 @@ } ] }, - "price": 750000 + "price": 1025504 }, "28205": { "id": 28205, @@ -299581,7 +299387,7 @@ } ] }, - "price": 725000 + "price": 1450005 }, "28208": { "id": 28208, @@ -299653,7 +299459,7 @@ } ] }, - "price": 699498.5 + "price": 1375000 }, "28211": { "id": 28211, @@ -299725,7 +299531,7 @@ } ] }, - "price": 1528000 + "price": 1405000 }, "28214": { "id": 28214, @@ -299797,7 +299603,7 @@ } ] }, - "price": 1578038 + "price": 2275500 }, "28217": { "id": 28217, @@ -299869,7 +299675,7 @@ } ] }, - "price": 1697947 + "price": 2367440 }, "28220": { "id": 28220, @@ -299883,7 +299689,7 @@ "highalch": 96, "weight": 1.36, "release_date": "2023-06-28", - "examine": "A woodcutter's axe.", + "examine": "A very powerful felling axe.", "wiki_name": "Crystal 2h axe (Active)", "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_2h_axe#Active", "equipment": { @@ -299952,7 +299758,7 @@ "highalch": 96, "weight": 1.814, "release_date": "2023-06-28", - "examine": "A woodcutter's axe.", + "examine": "A very powerful felling axe.", "wiki_name": "Crystal 2h axe (Inactive)", "wiki_url": "https://oldschool.runescape.wiki/w/Crystal_2h_axe#Inactive", "equipment": { @@ -300028,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, @@ -300038,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, @@ -300046,7 +299852,7 @@ "requirements": null }, "weapon": { - "attack_speed": 5, + "attack_speed": 7, "weapon_type": "axe", "stances": [ { @@ -300079,7 +299885,7 @@ } ] }, - "price": 0 + "price": 2147483647 }, "28229": { "id": 28229, @@ -300388,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", @@ -300481,7 +300287,7 @@ "examine": "A dense clump of corroded metal.", "wiki_name": "Chromium ingot", "wiki_url": "https://oldschool.runescape.wiki/w/Chromium_ingot", - "price": 96607 + "price": 99905 }, "28279": { "id": 28279, @@ -300610,7 +300416,7 @@ "examine": "The icon of a berserker.", "wiki_name": "Berserker icon", "wiki_url": "https://oldschool.runescape.wiki/w/Berserker_icon", - "price": 2047499.5 + "price": 4690250 }, "28298": { "id": 28298, @@ -300627,7 +300433,7 @@ "examine": "The icon of an archer.", "wiki_name": "Archer icon", "wiki_url": "https://oldschool.runescape.wiki/w/Archer_icon", - "price": 3516543 + "price": 2070000 }, "28301": { "id": 28301, @@ -300644,7 +300450,7 @@ "examine": "The icon of a warrior.", "wiki_name": "Warrior icon", "wiki_url": "https://oldschool.runescape.wiki/w/Warrior_icon", - "price": 61594.5 + "price": 82053 }, "28304": { "id": 28304, @@ -300661,7 +300467,7 @@ "examine": "The icon of an archer.", "wiki_name": "Seers icon", "wiki_url": "https://oldschool.runescape.wiki/w/Seers_icon", - "price": 395000 + "price": 560000 }, "28307": { "id": 28307, @@ -300698,7 +300504,7 @@ "slot": "ring", "requirements": null }, - "price": 183851899 + "price": 168659944 }, "28310": { "id": 28310, @@ -300735,7 +300541,7 @@ "slot": "ring", "requirements": null }, - "price": 101350589.5 + "price": 45800501 }, "28313": { "id": 28313, @@ -300772,7 +300578,7 @@ "slot": "ring", "requirements": null }, - "price": 64194998 + "price": 61400598 }, "28316": { "id": 28316, @@ -300809,7 +300615,7 @@ "slot": "ring", "requirements": null }, - "price": 83827901.5 + "price": 38399500 }, "28319": { "id": 28319, @@ -301007,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": 1661300.5 + "price": 700000 }, "28336": { "id": 28336, @@ -301536,7 +301342,7 @@ "cost": 30, "weight": 0.007, "release_date": "2023-07-26", - "examine": "You can obtain some more in the Stranglewood.", + "examine": "A strange herb.", "wiki_name": "Korbal herb", "wiki_url": "https://oldschool.runescape.wiki/w/Korbal_herb", "price": 0 @@ -301748,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", @@ -302518,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", @@ -303297,7 +303103,7 @@ "highalch": 0, "weight": 0.4, "release_date": "2023-08-23", - "examine": "A power enhancing sigil not yet attuned to you.", + "examine": "A sigil attuned to you with great power.", "wiki_name": "Sigil of the lightbearer (Un-attuned)", "wiki_url": "https://oldschool.runescape.wiki/w/Sigil_of_the_lightbearer#Un-attuned", "price": 0 @@ -303314,7 +303120,7 @@ "highalch": 6000, "weight": 0.4, "release_date": "2023-08-23", - "examine": "A sigil attuned to you with great power.", + "examine": "A power enhancing sigil not yet attuned to you.", "wiki_name": "Sigil of the lightbearer (Attuned)", "wiki_url": "https://oldschool.runescape.wiki/w/Sigil_of_the_lightbearer#Attuned", "price": 0 @@ -304152,7 +303958,7 @@ "highalch": 6000, "weight": 1, "release_date": "2023-08-23", - "examine": "A magic rock! This one gives you a random blighted weapon instead.", + "examine": "A magic rock! This one gives you a random corrupted weapon instead.", "wiki_name": "Trinket of advanced weaponry", "wiki_url": "https://oldschool.runescape.wiki/w/Trinket_of_advanced_weaponry", "price": 0 @@ -304181,6 +303987,7 @@ "cost": 30, "weight": 0.01, "release_date": "2023-09-13", + "examine": "Opens a chest in Golrie's caves.", "wiki_name": "Chest key (The Path of Glouphrie)", "wiki_url": "https://oldschool.runescape.wiki/w/Chest_key_(The_Path_of_Glouphrie)", "price": 0 @@ -304296,7 +304103,7 @@ } ] }, - "price": 148470.5 + "price": 166310 }, "28585": { "id": 28585, @@ -304363,6 +304170,7 @@ "28587": { "id": 28587, "name": "Magic lamp (strength)", + "members": true, "cost": 1, "lowalch": 0, "highalch": 0, @@ -304376,6 +304184,7 @@ "28588": { "id": 28588, "name": "Magic lamp (slayer)", + "members": true, "cost": 1, "lowalch": 0, "highalch": 0, @@ -304389,6 +304198,7 @@ "28589": { "id": 28589, "name": "Magic lamp (thieving)", + "members": true, "cost": 1, "lowalch": 0, "highalch": 0, @@ -304402,6 +304212,7 @@ "28590": { "id": 28590, "name": "Magic lamp (magic)", + "members": true, "cost": 1, "lowalch": 0, "highalch": 0, @@ -304870,13 +304681,12 @@ "examine": "Used to provide additional planks at the sawmill.", "wiki_name": "Sawmill voucher", "wiki_url": "https://oldschool.runescape.wiki/w/Sawmill_voucher", - "price": 3000 + "price": 1700 }, "28630": { "id": 28630, "name": "Twitcher's gloves", "members": true, - "stackable": true, "equipable": true, "equipable_by_player": true, "cost": 6, @@ -304893,8 +304703,8 @@ "attack_magic": 0, "attack_ranged": 0, "defence_stab": 0, - "defence_slash": 0, - "defence_crush": 0, + "defence_slash": 1, + "defence_crush": 2, "defence_magic": 0, "defence_ranged": 0, "melee_strength": 0, @@ -304909,9 +304719,7 @@ "28644": { "id": 28644, "name": "Smoker fuel", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 100, "lowalch": 40, @@ -304920,14 +304728,12 @@ "examine": "This fuel is used to create Smoker canisters that can pacify wild bees.", "wiki_name": "Smoker fuel", "wiki_url": "https://oldschool.runescape.wiki/w/Smoker_fuel", - "price": 52825 + "price": 80525 }, "28646": { "id": 28646, "name": "Smoker canister", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -304936,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": 5519.5 + "price": 10415 }, "28649": { "id": 28649, @@ -304967,9 +304773,7 @@ "28651": { "id": 28651, "name": "Crystal charm", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -304983,9 +304787,7 @@ "28653": { "id": 28653, "name": "Petal circlet", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -304994,7 +304796,7 @@ "examine": "These can be used to attract a Dryad.", "wiki_name": "Petal circlet", "wiki_url": "https://oldschool.runescape.wiki/w/Petal_circlet", - "price": 7722 + "price": 10500 }, "28655": { "id": 28655, @@ -305025,7 +304827,7 @@ "ranged_strength": 0, "magic_damage": 0, "prayer": 0, - "slot": "head", + "slot": "neck", "requirements": null }, "price": 0 @@ -305033,8 +304835,6 @@ "28657": { "id": 28657, "name": "Padded spoon", - "members": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -305048,9 +304848,7 @@ "28659": { "id": 28659, "name": "Egg cushion", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -305059,7 +304857,7 @@ "examine": "A tiny cushion, just about big enough for an egg.", "wiki_name": "Egg cushion", "wiki_url": "https://oldschool.runescape.wiki/w/Egg_cushion", - "price": 48333 + "price": 57500 }, "28661": { "id": 28661, @@ -305091,9 +304889,7 @@ "28665": { "id": 28665, "name": "Trap disarmer", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 1000, "lowalch": 400, @@ -305102,14 +304898,12 @@ "examine": "Used to safely disarm fox poacher traps.", "wiki_name": "Trap disarmer", "wiki_url": "https://oldschool.runescape.wiki/w/Trap_disarmer", - "price": 8500 + "price": 9981 }, "28667": { "id": 28667, "name": "Trap disarmer blueprint", - "members": true, "tradeable": true, - "tradeable_on_ge": true, "stackable": true, "cost": 100, "lowalch": 40, @@ -305118,7 +304912,7 @@ "examine": "A step-by-step guide to crafting a set of trap disarmers.", "wiki_name": "Trap disarmer blueprint", "wiki_url": "https://oldschool.runescape.wiki/w/Trap_disarmer_blueprint", - "price": 222602 + "price": 100500 }, "28669": { "id": 28669, @@ -305178,22 +304972,42 @@ "28672": { "id": 28672, "name": "Fancier boots", - "incomplete": true, "equipable": true, + "equipable_by_player": true, "cost": 1, "lowalch": 0, "highalch": 0, + "weight": 0.01, + "examine": "The ultimate boots from the Stronghold of Security.", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -3, + "attack_ranged": -1, + "defence_stab": 1, + "defence_slash": 2, + "defence_crush": 3, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "feet", + "requirements": null + }, "price": 0 }, "28674": { "id": 28674, "name": "Sturdy beehive parts", - "incomplete": true, "members": true, "stackable": true, "cost": 5000, "lowalch": 2000, "highalch": 3000, + "examine": "A sturdy piece of a beehive, useful for constructing your own beehive.", "price": 0 }, "28676": { @@ -305215,5 +305029,7330 @@ "lowalch": 0, "highalch": 0, "price": 0 + }, + "28682": { + "id": 28682, + "name": "Dinh's blazing bulwark", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 560000, + "lowalch": 224000, + "highalch": 336000, + "weight": 30, + "release_date": "2023-11-29", + "examine": "Hot to the touch.", + "wiki_name": "Dinh's blazing bulwark", + "wiki_url": "https://oldschool.runescape.wiki/w/Dinh's_blazing_bulwark", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 124, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 106, + "defence_slash": 109, + "defence_crush": 109, + "defence_magic": -10, + "defence_ranged": 148, + "melee_strength": 38, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 5, + "weapon_type": "bulwark", + "stances": [ + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": null, + "attack_style": null, + "experience": null, + "boosts": null + } + ] + }, + "price": 0 + }, + "28684": { + "id": 28684, + "name": "Trailblazer reloaded bulwark ornament kit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 5000, + "lowalch": 2000, + "highalch": 3000, + "weight": 0.5, + "release_date": "2023-11-29", + "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": 7431999 + }, + "28687": { + "id": 28687, + "name": "Blazing blowpipe (empty)", + "members": true, + "cost": 120000, + "lowalch": 48000, + "highalch": 72000, + "weight": 0.3, + "release_date": "2023-11-29", + "examine": "An uncharged Toxic Blowpipe that fires darts coated with venom... And fire.", + "wiki_name": "Blazing blowpipe (Empty)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blazing_blowpipe#Empty", + "price": 0 + }, + "28688": { + "id": 28688, + "name": "Blazing blowpipe", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 120000, + "lowalch": 48000, + "highalch": 72000, + "weight": 0.5, + "release_date": "2023-11-29", + "examine": "A Toxic Blowpipe that fires darts coated with venom... And fire.", + "wiki_name": "Blazing blowpipe (Charged)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blazing_blowpipe#Charged", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 30, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 20, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 3, + "weapon_type": "thrown", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 0 + }, + "28690": { + "id": 28690, + "name": "Trailblazer reloaded blowpipe ornament kit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 5000, + "lowalch": 2000, + "highalch": 3000, + "weight": 0.1, + "release_date": "2023-11-29", + "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": 5031868 + }, + "28693": { + "id": 28693, + "name": "Trailblazer reloaded alchemy scroll", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 25000, + "lowalch": 10000, + "highalch": 15000, + "weight": 0.1, + "release_date": "2023-11-29", + "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": 1515253 + }, + "28696": { + "id": 28696, + "name": "Trailblazer reloaded vengeance scroll", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 25000, + "lowalch": 10000, + "highalch": 15000, + "weight": 0.1, + "release_date": "2023-11-29", + "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": 6056988 + }, + "28699": { + "id": 28699, + "name": "Trailblazer reloaded death scroll", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 25000, + "lowalch": 10000, + "highalch": 15000, + "weight": 0.1, + "buy_limit": 5, + "release_date": "2023-11-29", + "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": 2970342 + }, + "28702": { + "id": 28702, + "name": "Trailblazer reloaded banner", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1000, + "lowalch": 400, + "highalch": 600, + "weight": 2.267, + "release_date": "2023-11-29", + "examine": "A banner showcasing the colours of Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded banner", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_banner", + "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": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "banner", + "stances": [ + { + "combat_style": "lunge", + "attack_type": "stab", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "swipe", + "attack_type": "slash", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "stab", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 300000 + }, + "28705": { + "id": 28705, + "name": "Trailblazer reloaded home teleport scroll", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 25000, + "lowalch": 10000, + "highalch": 15000, + "weight": 0.1, + "buy_limit": 5, + "release_date": "2023-11-29", + "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": 881999 + }, + "28708": { + "id": 28708, + "name": "Trailblazer reloaded rejuvenation pool scroll", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 25000, + "lowalch": 10000, + "highalch": 15000, + "weight": 0.1, + "release_date": "2023-11-29", + "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": 8143173 + }, + "28711": { + "id": 28711, + "name": "Trailblazer reloaded rejuvenation pool", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28712": { + "id": 28712, + "name": "Trailblazer reloaded headband (t1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.453, + "release_date": "2023-11-29", + "examine": "The headgear of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded headband (t1)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_headband_(t1)", + "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": 67221 + }, + "28715": { + "id": 28715, + "name": "Trailblazer reloaded top (t1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.907, + "release_date": "2023-11-29", + "examine": "The shirt of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded top (t1)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_top_(t1)", + "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": 35500 + }, + "28718": { + "id": 28718, + "name": "Trailblazer reloaded trousers (t1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.907, + "release_date": "2023-11-29", + "examine": "The trousers of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded trousers (t1)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_trousers_(t1)", + "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": 52500 + }, + "28721": { + "id": 28721, + "name": "Trailblazer reloaded boots (t1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.34, + "release_date": "2023-11-29", + "examine": "The boots of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded boots (t1)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_boots_(t1)", + "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": "feet", + "requirements": null + }, + "price": 35000 + }, + "28724": { + "id": 28724, + "name": "Trailblazer reloaded headband (t2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.453, + "release_date": "2023-11-29", + "examine": "The headgear of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded headband (t2)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_headband_(t2)", + "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": 441520 + }, + "28727": { + "id": 28727, + "name": "Trailblazer reloaded top (t2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.907, + "release_date": "2023-11-29", + "examine": "The shirt of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded top (t2)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_top_(t2)", + "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": 67326 + }, + "28730": { + "id": 28730, + "name": "Trailblazer reloaded trousers (t2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.907, + "release_date": "2023-11-29", + "examine": "The trousers of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded trousers (t2)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_trousers_(t2)", + "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": 191176 + }, + "28733": { + "id": 28733, + "name": "Trailblazer reloaded boots (t2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.34, + "release_date": "2023-11-29", + "examine": "The boots of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded boots (t2)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_boots_(t2)", + "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": "feet", + "requirements": null + }, + "price": 195055 + }, + "28736": { + "id": 28736, + "name": "Trailblazer reloaded headband (t3)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.453, + "release_date": "2023-11-29", + "examine": "The headgear of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded headband (t3)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_headband_(t3)", + "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": 8727000 + }, + "28739": { + "id": 28739, + "name": "Trailblazer reloaded top (t3)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.907, + "release_date": "2023-11-29", + "examine": "The shirt of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded top (t3)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_top_(t3)", + "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": 2524999 + }, + "28742": { + "id": 28742, + "name": "Trailblazer reloaded trousers (t3)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.907, + "release_date": "2023-11-29", + "examine": "The trousers of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded trousers (t3)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_trousers_(t3)", + "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": 1632000 + }, + "28745": { + "id": 28745, + "name": "Trailblazer reloaded boots (t3)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 0.34, + "release_date": "2023-11-29", + "examine": "The boots of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded boots (t3)", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_boots_(t3)", + "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": "feet", + "requirements": null + }, + "price": 1738856 + }, + "28748": { + "id": 28748, + "name": "Trailblazer reloaded torch", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 1.814, + "release_date": "2023-11-29", + "examine": "The torch of a Trailblazer Reloaded Relic Hunter.", + "wiki_name": "Trailblazer reloaded torch", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_torch", + "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": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "spiked", + "stances": [ + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "spike", + "attack_type": "stab", + "attack_style": "controlled", + "experience": "shared", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 3343212 + }, + "28751": { + "id": 28751, + "name": "Trailblazer reloaded dragon trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "A Dragon Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded dragon trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_dragon_trophy", + "equipment": { + "attack_stab": -100, + "attack_slash": -100, + "attack_crush": -50, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": -10, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "blunt", + "stances": [ + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 0 + }, + "28753": { + "id": 28753, + "name": "Trailblazer reloaded rune trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "A Rune Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded rune trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_rune_trophy", + "equipment": { + "attack_stab": -100, + "attack_slash": -100, + "attack_crush": -50, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": -10, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "blunt", + "stances": [ + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 0 + }, + "28755": { + "id": 28755, + "name": "Trailblazer reloaded adamant trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "An Adamant Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded adamant trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_adamant_trophy", + "equipment": { + "attack_stab": -100, + "attack_slash": -100, + "attack_crush": -50, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": -10, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "blunt", + "stances": [ + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 0 + }, + "28757": { + "id": 28757, + "name": "Trailblazer reloaded mithril trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "A Mithril Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded mithril trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_mithril_trophy", + "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 + }, + "28759": { + "id": 28759, + "name": "Trailblazer reloaded steel trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "A Steel Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded steel trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_steel_trophy", + "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 + }, + "28761": { + "id": 28761, + "name": "Trailblazer reloaded iron trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "An Iron Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded iron trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_iron_trophy", + "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 + }, + "28763": { + "id": 28763, + "name": "Trailblazer reloaded bronze trophy", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2023-11-29", + "examine": "A Bronze Trophy awarded for participating in Leagues IV: Trailblazer Reloaded.", + "wiki_name": "Trailblazer reloaded bronze trophy", + "wiki_url": "https://oldschool.runescape.wiki/w/Trailblazer_reloaded_bronze_trophy", + "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 + }, + "28765": { + "id": 28765, + "name": "Globetrotter pendant", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.002, + "release_date": "2023-11-15", + "examine": "A pendant which can whisk you to all sorts of locations.", + "wiki_name": "Globetrotter pendant", + "wiki_url": "https://oldschool.runescape.wiki/w/Globetrotter_pendant", + "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 + }, + "28767": { + "id": 28767, + "name": "Banker's note", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.001, + "release_date": "2023-11-15", + "examine": "A magical note that fell out of a banker's pocket.", + "wiki_name": "Banker's note (item)", + "wiki_url": "https://oldschool.runescape.wiki/w/Banker's_note_(item)", + "price": 0 + }, + "28769": { + "id": 28769, + "name": "Guardian horn", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.2, + "release_date": "2023-11-15", + "examine": "A horn to call your loyal guardian.", + "wiki_name": "Guardian horn", + "wiki_url": "https://oldschool.runescape.wiki/w/Guardian_horn", + "price": 0 + }, + "28771": { + "id": 28771, + "name": "Sage's greaves", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2023-11-15", + "examine": "Greaves that give you blazing speed.", + "wiki_name": "Sage's greaves", + "wiki_url": "https://oldschool.runescape.wiki/w/Sage's_greaves", + "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": "feet", + "requirements": null + }, + "price": 0 + }, + "28773": { + "id": 28773, + "name": "Sage's axe", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2023-11-15", + "examine": "A precisely carved weapon to be used at a precise time.", + "wiki_name": "Sage's axe", + "wiki_url": "https://oldschool.runescape.wiki/w/Sage's_axe", + "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": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 3, + "weapon_type": "thrown", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 0 + }, + "28775": { + "id": 28775, + "name": "Ruinous powers", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.3, + "release_date": "2023-11-15", + "examine": "A powerful tome filled with the knowledge of dangerous prayers.", + "wiki_name": "Ruinous powers (item)", + "wiki_url": "https://oldschool.runescape.wiki/w/Ruinous_powers_(item)", + "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": -1, + "slot": "shield", + "requirements": null + }, + "price": 0 + }, + "28777": { + "id": 28777, + "name": "Trailblazer reloaded relic hunter (t1) armour set", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 50000, + "lowalch": 20000, + "highalch": 30000, + "weight": 0.05, + "release_date": "2023-11-29", + "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": 116767 + }, + "28780": { + "id": 28780, + "name": "Trailblazer reloaded relic hunter (t2) armour set", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 50000, + "lowalch": 20000, + "highalch": 30000, + "weight": 0.05, + "release_date": "2023-11-29", + "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": 1615356 + }, + "28783": { + "id": 28783, + "name": "Trailblazer reloaded relic hunter (t3) armour set", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 50000, + "lowalch": 20000, + "highalch": 30000, + "weight": 0.05, + "release_date": "2023-11-29", + "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": 8947500 + }, + "28786": { + "id": 28786, + "name": "Icy jumper", + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "weight": 0.3, + "release_date": "2023-12-12", + "examine": "The coolest jumper ever!", + "wiki_name": "Icy jumper", + "wiki_url": "https://oldschool.runescape.wiki/w/Icy_jumper", + "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 + }, + "28788": { + "id": 28788, + "name": "Snowglobe helmet", + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "weight": 0.113, + "release_date": "2023-12-12", + "examine": "Festive, functional, and fashionable!", + "wiki_name": "Snowglobe helmet", + "wiki_url": "https://oldschool.runescape.wiki/w/Snowglobe_helmet", + "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 + }, + "28790": { + "id": 28790, + "name": "Kourend castle teleport", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2024-01-10", + "examine": "A teleport to Kourend Castle.", + "wiki_name": "Kourend castle teleport (tablet)", + "wiki_url": "https://oldschool.runescape.wiki/w/Kourend_castle_teleport_(tablet)", + "price": 758 + }, + "28792": { + "id": 28792, + "name": "Bone mace", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "weight": 1.814, + "release_date": "2024-01-24", + "examine": "A spiky mace hardened with Scurrius' spine.", + "wiki_name": "Bone mace", + "wiki_url": "https://oldschool.runescape.wiki/w/Bone_mace", + "equipment": { + "attack_stab": 40, + "attack_slash": -2, + "attack_crush": 60, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 55, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "spiked", + "stances": [ + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "spike", + "attack_type": "stab", + "attack_style": "controlled", + "experience": "shared", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 0 + }, + "28794": { + "id": 28794, + "name": "Bone shortbow", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "weight": 1.36, + "release_date": "2024-01-24", + "examine": "A shortbow made out of yew and Scurrius' spine, but still effective.", + "wiki_name": "Bone shortbow", + "wiki_url": "https://oldschool.runescape.wiki/w/Bone_shortbow", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 69, + "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": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "bow", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 0, + "lowalch": 0, + "highalch": 0 + }, + "28796": { + "id": 28796, + "name": "Bone staff", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1, + "weight": 2.267, + "release_date": "2024-01-24", + "examine": "It's a slightly magical stick intertwined with Scurrius' spine.", + "wiki_name": "Bone staff", + "wiki_url": "https://oldschool.runescape.wiki/w/Bone_staff", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 14, + "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": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "powered_staff", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "magic", + "boosts": "accuracy and damage" + }, + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "magic", + "boosts": "accuracy and damage" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "magic and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 0 + }, + "28798": { + "id": 28798, + "name": "Scurrius' spine", + "members": true, + "cost": 1000, + "weight": 0.3, + "release_date": "2024-01-24", + "examine": "This can be attached to a Battlestaff, Rune Mace or Yew Shortbow.", + "wiki_name": "Scurrius' spine", + "wiki_url": "https://oldschool.runescape.wiki/w/Scurrius'_spine", + "price": 0 + }, + "28800": { + "id": 28800, + "name": "Antique lamp", + "members": true, + "cost": 50, + "weight": 0.1, + "release_date": "2024-01-24", + "examine": "Wonder what happens if I rub it...", + "wiki_name": "Antique lamp (Historian Aldo)", + "wiki_url": "https://oldschool.runescape.wiki/w/Antique_lamp_(Historian_Aldo)", + "price": 0 + }, + "28801": { + "id": 28801, + "name": "Scurry", + "members": true, + "cost": 1, + "weight": 0.015, + "release_date": "2024-01-24", + "examine": "I wonder if it sits.", + "wiki_name": "Scurry", + "wiki_url": "https://oldschool.runescape.wiki/w/Scurry", + "price": 0 + }, + "28803": { + "id": 28803, + "name": "Grubby key", + "members": true, + "cost": 30, + "weight": 0.01, + "release_date": "2024-02-21", + "examine": "A key found while tracking zombies.", + "wiki_name": "Grubby key (Defender of Varrock)", + "wiki_url": "https://oldschool.runescape.wiki/w/Grubby_key_(Defender_of_Varrock)", + "price": 0 + }, + "28804": { + "id": 28804, + "name": "Bottle", + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.04, + "release_date": "2024-02-21", + "examine": "An empty bottle.", + "wiki_name": "Bottle (Defender of Varrock)", + "wiki_url": "https://oldschool.runescape.wiki/w/Bottle_(Defender_of_Varrock)", + "price": 0 + }, + "28805": { + "id": 28805, + "name": "Bottle of mist", + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.04, + "release_date": "2024-02-21", + "examine": "A bottle of red mist.", + "wiki_name": "Bottle of mist", + "wiki_url": "https://oldschool.runescape.wiki/w/Bottle_of_mist", + "price": 0 + }, + "28806": { + "id": 28806, + "name": "Imbued barronite", + "members": true, + "cost": 30, + "weight": 0.2, + "release_date": "2024-02-21", + "examine": "A deposit of strange glowing ore that has been imbued with chaos magic.", + "wiki_name": "Imbued barronite", + "wiki_url": "https://oldschool.runescape.wiki/w/Imbued_barronite", + "price": 0 + }, + "28807": { + "id": 28807, + "name": "Shield of arrav", + "members": true, + "cost": 30, + "weight": 3.628, + "release_date": "2024-02-21", + "examine": "The legendary Shield of Arrav.", + "wiki_name": "Shield of arrav (item)", + "wiki_url": "https://oldschool.runescape.wiki/w/Shield_of_arrav_(item)", + "price": 0 + }, + "28808": { + "id": 28808, + "name": "List of elders", + "members": true, + "cost": 30, + "weight": 0.005, + "release_date": "2024-02-21", + "examine": "This lists each of the founding elders of the Council of Avarrocka.", + "wiki_name": "List of elders", + "wiki_url": "https://oldschool.runescape.wiki/w/List_of_elders", + "price": 0 + }, + "28809": { + "id": 28809, + "name": "Elias white", + "members": true, + "cost": 1, + "weight": 0.001, + "release_date": "2024-02-21", + "examine": "A wise explorer.", + "wiki_name": "Elias white (item)", + "wiki_url": "https://oldschool.runescape.wiki/w/Elias_white_(item)", + "price": 0 + }, + "28810": { + "id": 28810, + "name": "Zombie axe", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 160000, + "lowalch": 64000, + "highalch": 96000, + "weight": 2.721, + "release_date": "2024-02-21", + "examine": "A rusty yet powerful axe.", + "wiki_name": "Zombie axe", + "wiki_url": "https://oldschool.runescape.wiki/w/Zombie_axe", + "equipment": { + "attack_stab": -3, + "attack_slash": 105, + "attack_crush": 90, + "attack_magic": 0, + "attack_ranged": 0, + "defence_stab": -1, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": -1, + "melee_strength": 107, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 5, + "weapon_type": "axe", + "stances": [ + { + "combat_style": "chop", + "attack_type": "slash", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "hack", + "attack_type": "slash", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "smash", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "slash", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 1772500 + }, + "28813": { + "id": 28813, + "name": "Broken zombie axe", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 160000, + "lowalch": 64000, + "highalch": 96000, + "weight": 2.721, + "release_date": "2024-02-21", + "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": 1743006 + }, + "28816": { + "id": 28816, + "name": "Stone tablet", + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.8, + "release_date": "2003-07-09", + "examine": "An old stone slab with writing on it.", + "wiki_name": "Stone tablet", + "wiki_url": "https://oldschool.runescape.wiki/w/Stone_tablet", + "price": 0 + }, + "28817": { + "id": 28817, + "name": "Granite tablet", + "incomplete": true, + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "price": 0 + }, + "28818": { + "id": 28818, + "name": "Slate tablet", + "incomplete": true, + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "price": 0 + }, + "28819": { + "id": 28819, + "name": "Shale tablet", + "incomplete": true, + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "price": 0 + }, + "28820": { + "id": 28820, + "name": "Antique lamp", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.1, + "release_date": "2024-02-21", + "examine": "I wonder what happens if I rub it...", + "wiki_name": "Antique lamp (Varrock Museum) (Defender of Varrock)", + "wiki_url": "https://oldschool.runescape.wiki/w/Antique_lamp_(Varrock_Museum)#Defender_of_Varrock", + "price": 0 + }, + "28821": { + "id": 28821, + "name": "Wealthy citizen", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "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", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28824": { + "id": 28824, + "name": "Civitas illa fortis teleport", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2024-03-20", + "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": 951 + }, + "28826": { + "id": 28826, + "name": "Dizana's quiver (broken)", + "members": true, + "cost": 80000, + "lowalch": 32000, + "highalch": 48000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A broken Quiver awarded to those who have proved their worth in the Colosseum.", + "wiki_name": "Dizana's quiver (Broken)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_quiver#Broken", + "price": 0 + }, + "28828": { + "id": 28828, + "name": "Blessed dizana's quiver (broken)", + "members": true, + "cost": 100000, + "lowalch": 40000, + "highalch": 60000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A broken Quiver awarded to those who have proved their worth in the Colosseum. Blessed by Ralos.", + "wiki_name": "Blessed dizana's quiver (Broken)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_dizana's_quiver#Broken", + "price": 0 + }, + "28830": { + "id": 28830, + "name": "Dizana's max cape (broken)", + "members": true, + "cost": 99000, + "lowalch": 39600, + "highalch": 59400, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "The cape worn by only the most experienced players.", + "wiki_name": "Dizana's max cape (Broken)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_max_cape#Broken", + "price": 0 + }, + "28831": { + "id": 28831, + "name": "Immature tecu salamander", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 200, + "lowalch": 80, + "highalch": 120, + "weight": 6, + "release_date": "2024-03-20", + "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": 171 + }, + "28834": { + "id": 28834, + "name": "Tecu salamander", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 200, + "lowalch": 80, + "highalch": 120, + "weight": 6, + "release_date": "2024-03-20", + "examine": "I thought this would be slimier.", + "wiki_name": "Tecu salamander", + "wiki_url": "https://oldschool.runescape.wiki/w/Tecu_salamander", + "equipment": { + "attack_stab": 0, + "attack_slash": 77, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 87, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 91, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 5, + "weapon_type": "salamander", + "stances": [ + { + "combat_style": "scorch", + "attack_type": "slash", + "attack_style": null, + "experience": "strength", + "boosts": null + }, + { + "combat_style": "flare", + "attack_type": "ranged", + "attack_style": null, + "experience": "ranged", + "boosts": null + }, + { + "combat_style": "blaze", + "attack_type": "magic", + "attack_style": null, + "experience": "magic", + "boosts": null + } + ] + }, + "price": 831475 + }, + "28837": { + "id": 28837, + "name": "Irit tar", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "release_date": "2024-03-20", + "examine": "A dark, thick, foul-smelling, tar-like substance.", + "wiki_name": "Irit tar", + "wiki_url": "https://oldschool.runescape.wiki/w/Irit_tar", + "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": 60, + "magic_damage": 0, + "prayer": 0, + "slot": "ammo", + "requirements": null + }, + "price": 9 + }, + "28863": { + "id": 28863, + "name": "Sunlight moth", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28864": { + "id": 28864, + "name": "Moonlight moth", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28865": { + "id": 28865, + "name": "Pyre fox", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28866": { + "id": 28866, + "name": "Embertailed jerboa", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28867": { + "id": 28867, + "name": "Sunlight antelope", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28868": { + "id": 28868, + "name": "Moonlight antelope", + "incomplete": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28869": { + "id": 28869, + "name": "Hunters' sunlight crossbow", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 1300, + "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", + "wiki_url": "https://oldschool.runescape.wiki/w/Hunters'_sunlight_crossbow", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 79, + "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": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "crossbow", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 2973 + }, + "28872": { + "id": 28872, + "name": "Sunlight antler bolts", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 31, + "lowalch": 12, + "highalch": 18, + "release_date": "2024-03-20", + "examine": "Bolts made from the antlers of a sunlight antelope.", + "wiki_name": "Sunlight antler bolts", + "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_antler_bolts", + "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": 55, + "magic_damage": 0, + "prayer": 0, + "slot": "ammo", + "requirements": null + }, + "price": 91 + }, + "28878": { + "id": 28878, + "name": "Moonlight antler bolts", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "equipable": true, + "equipable_by_player": true, + "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", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_antler_bolts", + "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": 60, + "magic_damage": 0, + "prayer": 0, + "slot": "ammo", + "requirements": null + }, + "price": 221 + }, + "28884": { + "id": 28884, + "name": "Sunlight antler", + "incomplete": true, + "members": true, + "noteable": true, + "cost": 31, + "lowalch": 12, + "highalch": 18, + "price": 0 + }, + "28887": { + "id": 28887, + "name": "Moonlight antler", + "members": true, + "noteable": true, + "cost": 31, + "lowalch": 12, + "highalch": 18, + "weight": 0.005, + "release_date": "2024-03-20", + "examine": "Antler of a moonlight antelope.", + "wiki_name": "Moonlight antler", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_antler", + "price": 0 + }, + "28890": { + "id": 28890, + "name": "Sunlight moth", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "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": 474 + }, + "28893": { + "id": 28893, + "name": "Moonlight moth", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "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)", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_moth_(item)", + "price": 1086 + }, + "28896": { + "id": 28896, + "name": "Rum", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 5, + "lowalch": 2, + "highalch": 3, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A strong spirit with a bold flavour.", + "wiki_name": "Rum", + "wiki_url": "https://oldschool.runescape.wiki/w/Rum", + "price": 5050 + }, + "28899": { + "id": 28899, + "name": "Wyrmling bones", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.8, + "buy_limit": 3000, + "release_date": "2024-03-20", + "examine": "Ew it's a pile of bones.", + "wiki_name": "Wyrmling bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Wyrmling_bones", + "price": 304 + }, + "28902": { + "id": 28902, + "name": "Dizana's max cape", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 99000, + "lowalch": 39600, + "highalch": 59400, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "The cape worn by only the most experienced players.", + "wiki_name": "Dizana's max cape (Normal)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_max_cape#Normal", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 18, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 3, + "magic_damage": 0, + "prayer": 0, + "slot": "cape", + "requirements": null + }, + "price": 0 + }, + "28904": { + "id": 28904, + "name": "Dizana's max hood", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "The hood worn by only the most experienced players.", + "wiki_name": "Dizana's max hood", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_max_hood", + "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 + }, + "28906": { + "id": 28906, + "name": "Dizana's max cape (l)", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 99000, + "lowalch": 39600, + "highalch": 59400, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "The cape worn by only the most experienced players.", + "wiki_name": "Dizana's max cape (Locked)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_max_cape#Locked", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 18, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 3, + "magic_damage": 0, + "prayer": 0, + "slot": "cape", + "requirements": null + }, + "price": 0 + }, + "28919": { + "id": 28919, + "name": "Tonalztics of ralos (uncharged)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 150000, + "lowalch": 60000, + "highalch": 90000, + "weight": 3, + "release_date": "2024-03-20", + "examine": "A rebounding throwing weapon of devastating proportions.", + "wiki_name": "Tonalztics of ralos (Uncharged)", + "wiki_url": "https://oldschool.runescape.wiki/w/Tonalztics_of_ralos#Uncharged", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 115, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 55, + "magic_damage": 0, + "prayer": 2, + "slot": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 7, + "weapon_type": "thrown", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 91779315 + }, + "28922": { + "id": 28922, + "name": "Tonalztics of ralos", + "members": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 150000, + "lowalch": 60000, + "highalch": 90000, + "weight": 3, + "release_date": "2024-03-20", + "examine": "A rebounding throwing weapon of devastating proportions.", + "wiki_name": "Tonalztics of ralos (Charged)", + "wiki_url": "https://oldschool.runescape.wiki/w/Tonalztics_of_ralos#Charged", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 115, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 55, + "magic_damage": 0, + "prayer": 2, + "slot": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 7, + "weapon_type": "thrown", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 0 + }, + "28924": { + "id": 28924, + "name": "Sunfire splinters", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "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": 489 + }, + "28929": { + "id": 28929, + "name": "Sunfire rune", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "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": 113 + }, + "28931": { + "id": 28931, + "name": "Searing page", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 200, + "lowalch": 80, + "highalch": 120, + "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": 14798 + }, + "28933": { + "id": 28933, + "name": "Sunfire fanatic helm", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 15000, + "lowalch": 6000, + "highalch": 9000, + "weight": 2.267, + "release_date": "2024-03-20", + "examine": "A helmet forged from sunfire.", + "wiki_name": "Sunfire fanatic helm", + "wiki_url": "https://oldschool.runescape.wiki/w/Sunfire_fanatic_helm", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -6, + "attack_ranged": -3, + "defence_stab": 30, + "defence_slash": 32, + "defence_crush": 27, + "defence_magic": -1, + "defence_ranged": 30, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 6, + "slot": "head", + "requirements": null + }, + "price": 1761000 + }, + "28936": { + "id": 28936, + "name": "Sunfire fanatic cuirass", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 20000, + "lowalch": 8000, + "highalch": 12000, + "weight": 8.618, + "release_date": "2024-03-20", + "examine": "A cuirass forged from sunfire.", + "wiki_name": "Sunfire fanatic cuirass", + "wiki_url": "https://oldschool.runescape.wiki/w/Sunfire_fanatic_cuirass", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -30, + "attack_ranged": -15, + "defence_stab": 82, + "defence_slash": 80, + "defence_crush": 72, + "defence_magic": -6, + "defence_ranged": 80, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 10, + "slot": "body", + "requirements": null + }, + "price": 7489178 + }, + "28939": { + "id": 28939, + "name": "Sunfire fanatic chausses", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 20000, + "lowalch": 8000, + "highalch": 12000, + "weight": 7.711, + "release_date": "2024-03-20", + "examine": "Chausses forged from sunfire.", + "wiki_name": "Sunfire fanatic chausses", + "wiki_url": "https://oldschool.runescape.wiki/w/Sunfire_fanatic_chausses", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -4, + "attack_ranged": -11, + "defence_stab": 51, + "defence_slash": 49, + "defence_crush": 47, + "defence_magic": -4, + "defence_ranged": 49, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 8, + "slot": "legs", + "requirements": null + }, + "price": 10688820 + }, + "28942": { + "id": 28942, + "name": "Echo crystal", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 500, + "lowalch": 200, + "highalch": 300, + "weight": 0.5, + "release_date": "2024-03-20", + "examine": "A crystal of rebounding potential.", + "wiki_name": "Echo crystal", + "wiki_url": "https://oldschool.runescape.wiki/w/Echo_crystal", + "price": 5451844 + }, + "28945": { + "id": 28945, + "name": "Echo boots", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 305000, + "lowalch": 122000, + "highalch": 183000, + "weight": 7, + "release_date": "2024-03-20", + "examine": "Thick, stony boots. There's a giant crystal in the middle of them.", + "wiki_name": "Echo boots", + "wiki_url": "https://oldschool.runescape.wiki/w/Echo_boots", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -3, + "attack_ranged": -1, + "defence_stab": 32, + "defence_slash": 32, + "defence_crush": 32, + "defence_magic": -3, + "defence_ranged": 24, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 4, + "slot": "feet", + "requirements": null + }, + "price": 0 + }, + "28947": { + "id": 28947, + "name": "Dizana's quiver (uncharged)", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 80000, + "lowalch": 32000, + "highalch": 48000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A quiver awarded to those who have proved their worth in the Colosseum.", + "wiki_name": "Dizana's quiver (Uncharged)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_quiver#Uncharged", + "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": "cape", + "requirements": null + }, + "price": 0 + }, + "28949": { + "id": 28949, + "name": "Dizana's quiver (uncharged) (l)", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 80000, + "lowalch": 32000, + "highalch": 48000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A quiver awarded to those who have proved their worth in the Colosseum.", + "wiki_name": "Dizana's quiver (Uncharged + Locked)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_quiver#Uncharged_+_Locked", + "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": "cape", + "requirements": null + }, + "price": 0 + }, + "28951": { + "id": 28951, + "name": "Dizana's quiver", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 80000, + "lowalch": 32000, + "highalch": 48000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A quiver awarded to those who have proved their worth in the Colosseum. Can be blessed at a Shrine of Ralos.", + "wiki_name": "Dizana's quiver (Charged)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_quiver#Charged", + "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": "cape", + "requirements": null + }, + "price": 0 + }, + "28953": { + "id": 28953, + "name": "Dizana's quiver (l)", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 80000, + "lowalch": 32000, + "highalch": 48000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A quiver awarded to those who have proved their worth in the Colosseum. Can be blessed at a Shrine of Ralos.", + "wiki_name": "Dizana's quiver (Charged + Locked)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dizana's_quiver#Charged_+_Locked", + "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": "cape", + "requirements": null + }, + "price": 0 + }, + "28955": { + "id": 28955, + "name": "Blessed dizana's quiver", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 100000, + "lowalch": 40000, + "highalch": 60000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A quiver awarded to those who have proved their worth in the Colosseum. It's been blessed by Ralos.", + "wiki_name": "Blessed dizana's quiver (Normal)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_dizana's_quiver#Normal", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 18, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 3, + "magic_damage": 0, + "prayer": 0, + "slot": "cape", + "requirements": null + }, + "price": 0 + }, + "28957": { + "id": 28957, + "name": "Blessed dizana's quiver (l)", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 100000, + "lowalch": 40000, + "highalch": 60000, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "A quiver awarded to those who have proved their worth in the Colosseum. It's been blessed by Ralos.", + "wiki_name": "Blessed dizana's quiver (Locked)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_dizana's_quiver#Locked", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 18, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 0, + "ranged_strength": 3, + "magic_damage": 0, + "prayer": 0, + "slot": "cape", + "requirements": null + }, + "price": 0 + }, + "28958": { + "id": 28958, + "name": "Scrawled poem", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "I guess I should be flattered.", + "wiki_name": "Scrawled poem", + "wiki_url": "https://oldschool.runescape.wiki/w/Scrawled_poem", + "price": 0 + }, + "28960": { + "id": 28960, + "name": "Smol heredit", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.015, + "release_date": "2024-03-20", + "examine": "Still somewhat imposing, I suppose.", + "wiki_name": "Smol heredit", + "wiki_url": "https://oldschool.runescape.wiki/w/Smol_heredit", + "price": 0 + }, + "28962": { + "id": 28962, + "name": "Quetzin", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.015, + "release_date": "2024-03-20", + "examine": "Is this bird tailing me?", + "wiki_name": "Quetzin", + "wiki_url": "https://oldschool.runescape.wiki/w/Quetzin", + "price": 0 + }, + "28964": { + "id": 28964, + "name": "Enchanted water talisman", + "members": true, + "cost": 30, + "weight": 0.015, + "release_date": "2024-03-20", + "examine": "It seems to be inert...", + "wiki_name": "Enchanted water talisman", + "wiki_url": "https://oldschool.runescape.wiki/w/Enchanted_water_talisman", + "price": 0 + }, + "28965": { + "id": 28965, + "name": "Enchanted earth talisman", + "members": true, + "cost": 30, + "weight": 0.015, + "release_date": "2024-03-20", + "examine": "It seems to be inert...", + "wiki_name": "Enchanted earth talisman", + "wiki_url": "https://oldschool.runescape.wiki/w/Enchanted_earth_talisman", + "price": 0 + }, + "28966": { + "id": 28966, + "name": "Infused water talisman", + "members": true, + "cost": 30, + "weight": 0.015, + "release_date": "2024-03-20", + "examine": "It rumbles near water...", + "wiki_name": "Infused water talisman", + "wiki_url": "https://oldschool.runescape.wiki/w/Infused_water_talisman", + "price": 0 + }, + "28967": { + "id": 28967, + "name": "Infused earth talisman", + "members": true, + "cost": 30, + "weight": 0.015, + "release_date": "2024-03-20", + "examine": "It thrums when pressed against the walls...", + "wiki_name": "Infused earth talisman", + "wiki_url": "https://oldschool.runescape.wiki/w/Infused_earth_talisman", + "price": 0 + }, + "28968": { + "id": 28968, + "name": "Building supplies", + "members": true, + "cost": 30, + "weight": 5.15, + "release_date": "2024-03-20", + "examine": "Everything you might need to build a camp.", + "wiki_name": "Building supplies", + "wiki_url": "https://oldschool.runescape.wiki/w/Building_supplies", + "price": 0 + }, + "28969": { + "id": 28969, + "name": "Moss lizard tail", + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "The tail from a moss lizard.", + "wiki_name": "Moss lizard tail", + "wiki_url": "https://oldschool.runescape.wiki/w/Moss_lizard_tail", + "price": 0 + }, + "28970": { + "id": 28970, + "name": "Bream scales", + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "Flaked off but still shiny.", + "wiki_name": "Bream scales", + "wiki_url": "https://oldschool.runescape.wiki/w/Bream_scales", + "price": 0 + }, + "28972": { + "id": 28972, + "name": "Varlamore invitation", + "members": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "An invitation to the Kingdom of Varlamore.", + "wiki_name": "Varlamore invitation", + "wiki_url": "https://oldschool.runescape.wiki/w/Varlamore_invitation", + "price": 0 + }, + "28973": { + "id": 28973, + "name": "Varlamore crest", + "members": true, + "cost": 30, + "weight": 4.535, + "release_date": "2024-03-20", + "examine": "The crest of the Varlamorian Royal Family.", + "wiki_name": "Varlamore crest", + "wiki_url": "https://oldschool.runescape.wiki/w/Varlamore_crest", + "price": 0 + }, + "28974": { + "id": 28974, + "name": "Incriminating letter", + "members": true, + "cost": 30, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "A letter about something called Twilight's Promise.", + "wiki_name": "Incriminating letter", + "wiki_url": "https://oldschool.runescape.wiki/w/Incriminating_letter", + "price": 0 + }, + "28975": { + "id": 28975, + "name": "Quetzal feed", + "members": true, + "cost": 30, + "weight": 0.1, + "release_date": "2024-03-20", + "examine": "Nice and tasty, for a quetzal at least.", + "wiki_name": "Quetzal feed (Twilight's Promise)", + "wiki_url": "https://oldschool.runescape.wiki/w/Quetzal_feed_(Twilight's_Promise)", + "price": 0 + }, + "28976": { + "id": 28976, + "name": "Stolen amulet", + "members": true, + "cost": 30, + "weight": 0.007, + "release_date": "2024-03-20", + "examine": "Not as valuable as it looks.", + "wiki_name": "Stolen amulet", + "wiki_url": "https://oldschool.runescape.wiki/w/Stolen_amulet", + "price": 0 + }, + "28977": { + "id": 28977, + "name": "Knight of varlamore", + "incomplete": true, + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "28978": { + "id": 28978, + "name": "Smooth leaf", + "members": true, + "cost": 30, + "weight": 0.007, + "release_date": "2024-03-20", + "examine": "A smooth leaf.", + "wiki_name": "Smooth leaf", + "wiki_url": "https://oldschool.runescape.wiki/w/Smooth_leaf", + "price": 0 + }, + "28979": { + "id": 28979, + "name": "Sticky leaf", + "members": true, + "cost": 30, + "weight": 0.007, + "release_date": "2024-03-20", + "examine": "A tacky leaf.", + "wiki_name": "Sticky leaf", + "wiki_url": "https://oldschool.runescape.wiki/w/Sticky_leaf", + "price": 0 + }, + "28980": { + "id": 28980, + "name": "Makeshift poultice", + "members": true, + "cost": 30, + "weight": 0.325, + "release_date": "2024-03-20", + "examine": "Leaves tied with a jerboa tail... It could work.", + "wiki_name": "Makeshift poultice", + "wiki_url": "https://oldschool.runescape.wiki/w/Makeshift_poultice", + "price": 0 + }, + "28981": { + "id": 28981, + "name": "Fur sample", + "members": true, + "cost": 30, + "weight": 3, + "release_date": "2024-03-20", + "examine": "A chunk of fluff from Kiko's bed.", + "wiki_name": "Fur sample", + "wiki_url": "https://oldschool.runescape.wiki/w/Fur_sample", + "price": 0 + }, + "28982": { + "id": 28982, + "name": "Trimmed fur", + "members": true, + "cost": 30, + "weight": 3, + "release_date": "2024-03-20", + "examine": "A close match to the fur sample.", + "wiki_name": "Trimmed fur", + "wiki_url": "https://oldschool.runescape.wiki/w/Trimmed_fur", + "price": 0 + }, + "28983": { + "id": 28983, + "name": "Fox's report", + "members": true, + "cost": 30, + "weight": 0.02, + "release_date": "2024-03-20", + "examine": "I need to deliver this to the Hunter Guild.", + "wiki_name": "Fox's report", + "wiki_url": "https://oldschool.runescape.wiki/w/Fox's_report", + "price": 0 + }, + "28984": { + "id": 28984, + "name": "Baby dragon bonemeal", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1.5, + "release_date": "2024-03-20", + "examine": "A pot of crushed baby wyrm bones.", + "wiki_name": "Baby dragon bonemeal (Varlamore)", + "wiki_url": "https://oldschool.runescape.wiki/w/Baby_dragon_bonemeal_(Varlamore)", + "price": 0 + }, + "28986": { + "id": 28986, + "name": "Love letter", + "members": true, + "cost": 30, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "A love letter. It's awful.", + "wiki_name": "Love letter", + "wiki_url": "https://oldschool.runescape.wiki/w/Love_letter", + "price": 0 + }, + "28987": { + "id": 28987, + "name": "Plushy", + "members": true, + "cost": 30, + "weight": 0.001, + "release_date": "2024-03-20", + "examine": "An adorable plushy.", + "wiki_name": "Plushy", + "wiki_url": "https://oldschool.runescape.wiki/w/Plushy", + "price": 0 + }, + "28988": { + "id": 28988, + "name": "Blue moon spear", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 100000, + "lowalch": 40000, + "highalch": 60000, + "weight": 3, + "release_date": "2024-03-20", + "examine": "A magical staff of ancient origin...", + "wiki_name": "Blue moon spear", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_spear", + "equipment": { + "attack_stab": 70, + "attack_slash": 62, + "attack_crush": 62, + "attack_magic": 30, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 71, + "ranged_strength": 0, + "magic_damage": 5, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 5, + "weapon_type": "bladed_staff", + "stances": [ + { + "combat_style": "jab", + "attack_type": "stab", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "swipe", + "attack_type": "slash", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "fend", + "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": 404952 + }, + "28991": { + "id": 28991, + "name": "Atlatl dart", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 490, + "lowalch": 196, + "highalch": 294, + "buy_limit": 11000, + "release_date": "2024-03-20", + "examine": "Quite big for a dart.", + "wiki_name": "Atlatl dart", + "wiki_url": "https://oldschool.runescape.wiki/w/Atlatl_dart", + "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": "ammo", + "requirements": null + }, + "price": 69 + }, + "28997": { + "id": 28997, + "name": "Dual macuahuitl", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 3.628, + "release_date": "2024-03-20", + "examine": "A brutal pair.", + "wiki_name": "Dual macuahuitl", + "wiki_url": "https://oldschool.runescape.wiki/w/Dual_macuahuitl", + "equipment": { + "attack_stab": 115, + "attack_slash": -4, + "attack_crush": 121, + "attack_magic": -4, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 81, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "spiked", + "stances": [ + { + "combat_style": "pound", + "attack_type": "crush", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "pummel", + "attack_type": "crush", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "spike", + "attack_type": "stab", + "attack_style": "controlled", + "experience": "shared", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "crush", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 1693789 + }, + "29000": { + "id": 29000, + "name": "Eclipse atlatl", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 160000, + "lowalch": 64000, + "highalch": 96000, + "weight": 3.628, + "release_date": "2024-03-20", + "examine": "A powerful thrown weapon forged from an eclipse.", + "wiki_name": "Eclipse atlatl", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_atlatl", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 87, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 40, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "thrown", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 2126906 + }, + "29004": { + "id": 29004, + "name": "Eclipse moon chestplate", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 3, + "release_date": "2024-03-20", + "examine": "The chestplate of the Eclipse Moon.", + "wiki_name": "Eclipse moon chestplate (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_chestplate#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": 31, + "defence_stab": 15, + "defence_slash": 18, + "defence_crush": 57, + "defence_magic": 55, + "defence_ranged": 32, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 888553 + }, + "29007": { + "id": 29007, + "name": "Eclipse moon tassets", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The tassets of the Eclipse Moon.", + "wiki_name": "Eclipse moon tassets (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_tassets#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": 17, + "defence_stab": 9, + "defence_slash": 13, + "defence_crush": 37, + "defence_magic": 31, + "defence_ranged": 17, + "melee_strength": 1, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 951033 + }, + "29010": { + "id": 29010, + "name": "Eclipse moon helm", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.907, + "release_date": "2024-03-20", + "examine": "The helm of the Eclipse Moon.", + "wiki_name": "Eclipse moon helm (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_helm#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -6, + "attack_ranged": 8, + "defence_stab": 2, + "defence_slash": 3, + "defence_crush": 14, + "defence_magic": 10, + "defence_ranged": 4, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 843207 + }, + "29013": { + "id": 29013, + "name": "Blue moon chestplate", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 3.175, + "release_date": "2024-03-20", + "examine": "The chestplate of the Blue Moon.", + "wiki_name": "Blue moon chestplate (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_chestplate#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 30, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 51, + "defence_magic": 28, + "defence_ranged": 0, + "melee_strength": 2, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 1736763 + }, + "29016": { + "id": 29016, + "name": "Blue moon tassets", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "weight": 1.36, + "release_date": "2024-03-20", + "examine": "The tassets of the Blue Moon.", + "wiki_name": "Blue moon tassets (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_tassets#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 22, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 23, + "defence_magic": 32, + "defence_ranged": 0, + "melee_strength": 1, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 2219975 + }, + "29019": { + "id": 29019, + "name": "Blue moon helm", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "The helm of the Blue Moon.", + "wiki_name": "Blue moon helm (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_helm#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 6, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 10, + "defence_magic": 6, + "defence_ranged": 0, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 693128 + }, + "29022": { + "id": 29022, + "name": "Blood moon chestplate", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 5.443, + "release_date": "2024-03-20", + "examine": "The chestplate of the Blood Moon.", + "wiki_name": "Blood moon chestplate (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_chestplate#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": -10, + "defence_stab": 60, + "defence_slash": 80, + "defence_crush": 80, + "defence_magic": 40, + "defence_ranged": 79, + "melee_strength": 4, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 1414261 + }, + "29025": { + "id": 29025, + "name": "Blood moon tassets", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "weight": 4.082, + "release_date": "2024-03-20", + "examine": "The tassets of the Blood Moon.", + "wiki_name": "Blood moon tassets (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_tassets#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -21, + "attack_ranged": -7, + "defence_stab": 30, + "defence_slash": 50, + "defence_crush": 49, + "defence_magic": 32, + "defence_ranged": 46, + "melee_strength": 2, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 3626898 + }, + "29028": { + "id": 29028, + "name": "Blood moon helm", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The helm of the Blood Moon.", + "wiki_name": "Blood moon helm (New)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_helm#New", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -6, + "attack_ranged": -2, + "defence_stab": 20, + "defence_slash": 31, + "defence_crush": 34, + "defence_magic": 7, + "defence_ranged": 29, + "melee_strength": 4, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 650937 + }, + "29031": { + "id": 29031, + "name": "Eclipse moon chestplate", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 3, + "release_date": "2024-03-20", + "examine": "The chestplate of the Eclipse Moon.", + "wiki_name": "Eclipse moon chestplate (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_chestplate#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": 31, + "defence_stab": 15, + "defence_slash": 18, + "defence_crush": 57, + "defence_magic": 55, + "defence_ranged": 32, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 0 + }, + "29033": { + "id": 29033, + "name": "Eclipse moon tassets", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The tassets of the Eclipse Moon.", + "wiki_name": "Eclipse moon tassets (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_tassets#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": 17, + "defence_stab": 9, + "defence_slash": 13, + "defence_crush": 37, + "defence_magic": 31, + "defence_ranged": 17, + "melee_strength": 1, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 0 + }, + "29035": { + "id": 29035, + "name": "Eclipse moon helm", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.907, + "release_date": "2024-03-20", + "examine": "The helm of the Eclipse Moon.", + "wiki_name": "Eclipse moon helm (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_moon_helm#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -6, + "attack_ranged": 8, + "defence_stab": 2, + "defence_slash": 3, + "defence_crush": 14, + "defence_magic": 10, + "defence_ranged": 4, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 0 + }, + "29037": { + "id": 29037, + "name": "Blue moon chestplate", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 3.175, + "release_date": "2024-03-20", + "examine": "The chestplate of the Blue Moon.", + "wiki_name": "Blue moon chestplate (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_chestplate#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 30, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 51, + "defence_magic": 28, + "defence_ranged": 0, + "melee_strength": 2, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 0 + }, + "29039": { + "id": 29039, + "name": "Blue moon tassets", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "weight": 1.36, + "release_date": "2024-03-20", + "examine": "The tassets of the Blue Moon.", + "wiki_name": "Blue moon tassets (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_tassets#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 22, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 23, + "defence_magic": 32, + "defence_ranged": 0, + "melee_strength": 1, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 0 + }, + "29041": { + "id": 29041, + "name": "Blue moon helm", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.453, + "release_date": "2024-03-20", + "examine": "The helm of the Blue Moon.", + "wiki_name": "Blue moon helm (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_moon_helm#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 6, + "attack_ranged": 0, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 10, + "defence_magic": 6, + "defence_ranged": 0, + "melee_strength": 3, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 0 + }, + "29043": { + "id": 29043, + "name": "Blood moon chestplate", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "weight": 5.443, + "release_date": "2024-03-20", + "examine": "The chestplate of the Blood Moon.", + "wiki_name": "Blood moon chestplate (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_chestplate#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": -10, + "defence_stab": 60, + "defence_slash": 80, + "defence_crush": 80, + "defence_magic": 40, + "defence_ranged": 79, + "melee_strength": 4, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 0 + }, + "29045": { + "id": 29045, + "name": "Blood moon tassets", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "weight": 4.082, + "release_date": "2024-03-20", + "examine": "The tassets of the Blood Moon.", + "wiki_name": "Blood moon tassets (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_tassets#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -21, + "attack_ranged": -7, + "defence_stab": 30, + "defence_slash": 50, + "defence_crush": 49, + "defence_magic": 32, + "defence_ranged": 46, + "melee_strength": 2, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 0 + }, + "29047": { + "id": 29047, + "name": "Blood moon helm", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.907, + "release_date": "2024-03-20", + "examine": "The helm of the Blood Moon.", + "wiki_name": "Blood moon helm (Used)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blood_moon_helm#Used", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -6, + "attack_ranged": -2, + "defence_stab": 20, + "defence_slash": 31, + "defence_crush": 34, + "defence_magic": 7, + "defence_ranged": 29, + "melee_strength": 4, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "head", + "requirements": null + }, + "price": 0 + }, + "29049": { + "id": 29049, + "name": "Eclipse moon chestplate (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "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": 242148 + }, + "29052": { + "id": 29052, + "name": "Eclipse moon tassets (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "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": 204027 + }, + "29055": { + "id": 29055, + "name": "Eclipse moon helm (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.907, + "release_date": "2024-03-20", + "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": 105205 + }, + "29058": { + "id": 29058, + "name": "Blue moon chestplate (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "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": 898606 + }, + "29061": { + "id": 29061, + "name": "Blue moon tassets (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "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": 1568456 + }, + "29064": { + "id": 29064, + "name": "Blue moon helm (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "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": 195000 + }, + "29067": { + "id": 29067, + "name": "Blood moon chestplate (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 290010, + "lowalch": 116004, + "highalch": 174006, + "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": 925750 + }, + "29070": { + "id": 29070, + "name": "Blood moon tassets (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 289910, + "lowalch": 115964, + "highalch": 173946, + "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": 2997796 + }, + "29073": { + "id": 29073, + "name": "Blood moon helm (broken)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 103000, + "lowalch": 41200, + "highalch": 61800, + "weight": 0.907, + "release_date": "2024-03-20", + "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": 178968 + }, + "29076": { + "id": 29076, + "name": "Raw moss lizard", + "members": true, + "cost": 20, + "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, + "lowalch": 8, + "highalch": 12 + }, + "29077": { + "id": 29077, + "name": "Cooked moss lizard", + "members": true, + "cost": 50, + "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, + "lowalch": 20, + "highalch": 30 + }, + "29078": { + "id": 29078, + "name": "Moonlight grub", + "members": true, + "cost": 50, + "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, + "lowalch": 20, + "highalch": 30 + }, + "29079": { + "id": 29079, + "name": "Moonlight grub paste", + "members": true, + "cost": 50, + "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, + "lowalch": 20, + "highalch": 30 + }, + "29080": { + "id": 29080, + "name": "Moonlight potion(4)", + "members": true, + "cost": 1000, + "lowalch": 400, + "highalch": 600, + "weight": 0.02, + "release_date": "2024-03-20", + "examine": "4 doses of a moonlight potion.", + "wiki_name": "Moonlight potion (4 dose)", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_potion#4_dose", + "price": 0 + }, + "29081": { + "id": 29081, + "name": "Moonlight potion(3)", + "members": true, + "cost": 750, + "lowalch": 300, + "highalch": 450, + "weight": 0.02, + "release_date": "2024-03-20", + "examine": "3 doses of a moonlight potion.", + "wiki_name": "Moonlight potion (3 dose)", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_potion#3_dose", + "price": 0 + }, + "29082": { + "id": 29082, + "name": "Moonlight potion(2)", + "members": true, + "cost": 500, + "lowalch": 200, + "highalch": 300, + "weight": 0.02, + "release_date": "2024-03-20", + "examine": "2 doses of a moonlight potion.", + "wiki_name": "Moonlight potion (2 dose)", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_potion#2_dose", + "price": 0 + }, + "29083": { + "id": 29083, + "name": "Moonlight potion(1)", + "members": true, + "cost": 250, + "lowalch": 100, + "highalch": 150, + "weight": 0.02, + "release_date": "2024-03-20", + "examine": "1 dose of a moonlight potion.", + "wiki_name": "Moonlight potion (1 dose)", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_potion#1_dose", + "price": 0 + }, + "29084": { + "id": 29084, + "name": "Sulphur blades", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 30000, + "lowalch": 12000, + "highalch": 18000, + "weight": 1.814, + "release_date": "2024-03-20", + "examine": "Are these explosive?", + "wiki_name": "Sulphur blades", + "wiki_url": "https://oldschool.runescape.wiki/w/Sulphur_blades", + "equipment": { + "attack_stab": 11, + "attack_slash": 72, + "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": 64, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "2h", + "requirements": null + }, + "weapon": { + "attack_speed": 4, + "weapon_type": "slash_sword", + "stances": [ + { + "combat_style": "chop", + "attack_type": "slash", + "attack_style": "accurate", + "experience": "attack", + "boosts": null + }, + { + "combat_style": "slash", + "attack_type": "slash", + "attack_style": "aggressive", + "experience": "strength", + "boosts": null + }, + { + "combat_style": "lunge", + "attack_type": "stab", + "attack_style": "controlled", + "experience": "shared", + "boosts": null + }, + { + "combat_style": "block", + "attack_type": "slash", + "attack_style": "defensive", + "experience": "defence", + "boosts": null + } + ] + }, + "price": 30000 + }, + "29087": { + "id": 29087, + "name": "Sulphurous essence", + "members": true, + "stackable": true, + "cost": 10, + "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, + "lowalch": 4, + "highalch": 6 + }, + "29088": { + "id": 29088, + "name": "Calcified deposit", + "members": true, + "cost": 200, + "lowalch": 80, + "highalch": 120, + "weight": 0.2, + "release_date": "2024-03-20", + "examine": "A deposit of calcified rock with bits of bone. It looks quite smashable.", + "wiki_name": "Calcified deposit", + "wiki_url": "https://oldschool.runescape.wiki/w/Calcified_deposit", + "price": 0 + }, + "29090": { + "id": 29090, + "name": "Calcified moth", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 10000, + "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": 5075, + "lowalch": 4000, + "highalch": 6000 + }, + "29098": { + "id": 29098, + "name": "Not meat", + "members": true, + "tradeable": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "Don't eat this.", + "wiki_name": "Not meat", + "wiki_url": "https://oldschool.runescape.wiki/w/Not_meat", + "price": 176 + }, + "29101": { + "id": 29101, + "name": "Raw barb-tailed kebbit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "Ouch!", + "wiki_name": "Raw barb-tailed kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_barb-tailed_kebbit", + "price": 205 + }, + "29104": { + "id": 29104, + "name": "Raw wild kebbit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "Better cook this carefully.", + "wiki_name": "Raw wild kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_wild_kebbit", + "price": 1026 + }, + "29107": { + "id": 29107, + "name": "Raw dashing kebbit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw dashing kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_dashing_kebbit", + "price": 830 + }, + "29110": { + "id": 29110, + "name": "Raw pyre fox", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw pyre fox", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_pyre_fox", + "price": 255 + }, + "29113": { + "id": 29113, + "name": "Raw moonlight antelope", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw moonlight antelope", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_moonlight_antelope", + "price": 2384 + }, + "29116": { + "id": 29116, + "name": "Raw sunlight antelope", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw sunlight antelope", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_sunlight_antelope", + "price": 522 + }, + "29119": { + "id": 29119, + "name": "Raw graahk", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw graahk", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_graahk", + "price": 270 + }, + "29122": { + "id": 29122, + "name": "Raw larupia", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw larupia", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_larupia", + "price": 371 + }, + "29125": { + "id": 29125, + "name": "Raw kyatt", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.34, + "release_date": "2024-03-20", + "examine": "I should probably cook this first.", + "wiki_name": "Raw kyatt", + "wiki_url": "https://oldschool.runescape.wiki/w/Raw_kyatt", + "price": 129 + }, + "29128": { + "id": 29128, + "name": "Cooked wild kebbit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked wild kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_wild_kebbit", + "price": 65 + }, + "29131": { + "id": 29131, + "name": "Cooked barb-tailed kebbit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked barb-tailed kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_barb-tailed_kebbit", + "price": 240 + }, + "29134": { + "id": 29134, + "name": "Cooked dashing kebbit", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "I should eat this quickly.", + "wiki_name": "Cooked dashing kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_dashing_kebbit", + "price": 1328 + }, + "29137": { + "id": 29137, + "name": "Cooked pyre fox", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked pyre fox", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_pyre_fox", + "price": 500 + }, + "29140": { + "id": 29140, + "name": "Cooked sunlight antelope", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked sunlight antelope", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_sunlight_antelope", + "price": 846 + }, + "29143": { + "id": 29143, + "name": "Cooked moonlight antelope", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked moonlight antelope", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_moonlight_antelope", + "price": 2974 + }, + "29146": { + "id": 29146, + "name": "Cooked larupia", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked larupia", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_larupia", + "price": 330 + }, + "29149": { + "id": 29149, + "name": "Cooked graahk", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked graahk", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_graahk", + "price": 105 + }, + "29152": { + "id": 29152, + "name": "Cooked kyatt", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 4, + "lowalch": 1, + "highalch": 2, + "weight": 0.283, + "release_date": "2024-03-20", + "examine": "Mmm, this looks tasty.", + "wiki_name": "Cooked kyatt", + "wiki_url": "https://oldschool.runescape.wiki/w/Cooked_kyatt", + "price": 274 + }, + "29155": { + "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!", + "wiki_name": "Burnt kebbit", + "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_kebbit", + "price": 0 + }, + "29157": { + "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!", + "wiki_name": "Burnt large beast", + "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_large_beast", + "price": 0 + }, + "29159": { + "id": 29159, + "name": "Burnt antelope", + "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!", + "wiki_name": "Burnt antelope", + "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_antelope", + "price": 0 + }, + "29161": { + "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!", + "wiki_name": "Burnt fox meat", + "wiki_url": "https://oldschool.runescape.wiki/w/Burnt_fox_meat", + "price": 0 + }, + "29163": { + "id": 29163, + "name": "Fox fur", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 3, + "release_date": "2024-03-20", + "examine": "This would make warm clothing.", + "wiki_name": "Fox fur", + "wiki_url": "https://oldschool.runescape.wiki/w/Fox_fur", + "price": 358 + }, + "29166": { + "id": 29166, + "name": "Jerboa tail", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "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": 121 + }, + "29168": { + "id": 29168, + "name": "Sunlight antelope antler", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.3, + "release_date": "2024-03-20", + "examine": "I don't think I can stick it back on.", + "wiki_name": "Sunlight antelope antler", + "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_antelope_antler", + "price": 628 + }, + "29171": { + "id": 29171, + "name": "Moonlight antelope antler", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 1, + "release_date": "2024-03-20", + "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": 2136 + }, + "29174": { + "id": 29174, + "name": "Moonlight antelope fur", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 3, + "release_date": "2024-03-20", + "examine": "I can make something out of this.", + "wiki_name": "Moonlight antelope fur", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_antelope_fur", + "price": 803 + }, + "29177": { + "id": 29177, + "name": "Sunlight antelope fur", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 3, + "release_date": "2024-03-20", + "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 + }, + "29180": { + "id": 29180, + "name": "Sapphire glacialis mix (2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 800 + }, + "29183": { + "id": 29183, + "name": "Snowy knight mix (2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 50, + "lowalch": 20, + "highalch": 30, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 3000 + }, + "29186": { + "id": 29186, + "name": "Ruby harvest mix (2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 18, + "lowalch": 7, + "highalch": 10, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 718 + }, + "29189": { + "id": 29189, + "name": "Black warlock mix (2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 70, + "lowalch": 28, + "highalch": 42, + "weight": 0.02, + "release_date": "2024-03-20", + "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 + }, + "29192": { + "id": 29192, + "name": "Sunlight moth mix (2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 1916 + }, + "29195": { + "id": 29195, + "name": "Moonlight moth mix (2)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 30, + "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 + }, + "29198": { + "id": 29198, + "name": "Sapphire glacialis mix (1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.02, + "release_date": "2024-03-20", + "examine": "There's a sapphire glacialis butterfly in here.", + "wiki_name": "Sapphire glacialis mix (1 dose)", + "wiki_url": "https://oldschool.runescape.wiki/w/Sapphire_glacialis_mix#1_dose", + "price": 700 + }, + "29201": { + "id": 29201, + "name": "Snowy knight mix (1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 50, + "lowalch": 20, + "highalch": 30, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 95 + }, + "29204": { + "id": 29204, + "name": "Ruby harvest mix (1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 18, + "lowalch": 7, + "highalch": 10, + "weight": 0.02, + "release_date": "2024-03-20", + "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 + }, + "29207": { + "id": 29207, + "name": "Black warlock mix (1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 70, + "lowalch": 28, + "highalch": 42, + "weight": 0.02, + "release_date": "2024-03-20", + "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 + }, + "29210": { + "id": 29210, + "name": "Sunlight moth mix (1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 754 + }, + "29213": { + "id": 29213, + "name": "Moonlight moth mix (1)", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 30, + "lowalch": 12, + "highalch": 18, + "weight": 0.02, + "release_date": "2024-03-20", + "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": 1336 + }, + "29216": { + "id": 29216, + "name": "Raw bream", + "members": true, + "cost": 1, + "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, + "lowalch": 0, + "highalch": 0 + }, + "29217": { + "id": 29217, + "name": "Cooked bream", + "members": true, + "cost": 1, + "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, + "lowalch": 0, + "highalch": 0 + }, + "29218": { + "id": 29218, + "name": "Jaguar fur", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 80, + "lowalch": 32, + "highalch": 48, + "weight": 3, + "release_date": "2024-03-20", + "examine": "This would make nice clothing.", + "wiki_name": "Jaguar fur", + "wiki_url": "https://oldschool.runescape.wiki/w/Jaguar_fur", + "price": 2804 + }, + "29221": { + "id": 29221, + "name": "Chinchompa tuft", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A tuft of chinchompa fur.", + "wiki_name": "Chinchompa tuft", + "wiki_url": "https://oldschool.runescape.wiki/w/Chinchompa_tuft", + "price": 0 + }, + "29222": { + "id": 29222, + "name": "Tailfeathers", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "Tailfeathers of a wagtail.", + "wiki_name": "Tailfeathers", + "wiki_url": "https://oldschool.runescape.wiki/w/Tailfeathers", + "price": 0 + }, + "29223": { + "id": 29223, + "name": "Kebbity tuft", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "I'm not even sure which of them this came from.", + "wiki_name": "Kebbity tuft", + "wiki_url": "https://oldschool.runescape.wiki/w/Kebbity_tuft", + "price": 0 + }, + "29224": { + "id": 29224, + "name": "Blue butterfly wing", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The wingtip of a sapphire glacialis butterfly.", + "wiki_name": "Blue butterfly wing", + "wiki_url": "https://oldschool.runescape.wiki/w/Blue_butterfly_wing", + "price": 0 + }, + "29225": { + "id": 29225, + "name": "Swamp lizard claw", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The oversized claw of a swamp lizard.", + "wiki_name": "Swamp lizard claw", + "wiki_url": "https://oldschool.runescape.wiki/w/Swamp_lizard_claw", + "price": 0 + }, + "29226": { + "id": 29226, + "name": "Larupia ear", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "Do you think it heard me coming?", + "wiki_name": "Larupia ear", + "wiki_url": "https://oldschool.runescape.wiki/w/Larupia_ear", + "price": 0 + }, + "29227": { + "id": 29227, + "name": "White butterfly wing", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The wingtip of a snowy knight butterfly.", + "wiki_name": "White butterfly wing", + "wiki_url": "https://oldschool.runescape.wiki/w/White_butterfly_wing", + "price": 0 + }, + "29228": { + "id": 29228, + "name": "Large jerboa tail", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "Does this make it a fully fledged fire tail?", + "wiki_name": "Large jerboa tail", + "wiki_url": "https://oldschool.runescape.wiki/w/Large_jerboa_tail", + "price": 0 + }, + "29229": { + "id": 29229, + "name": "Graahk horn spur", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "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 + }, + "29230": { + "id": 29230, + "name": "Black butterfly wing", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The wingtip of a black warlock butterfly.", + "wiki_name": "Black butterfly wing", + "wiki_url": "https://oldschool.runescape.wiki/w/Black_butterfly_wing", + "price": 0 + }, + "29231": { + "id": 29231, + "name": "Orange salamander claw", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The oversized claw of an orange salamander.", + "wiki_name": "Orange salamander claw", + "wiki_url": "https://oldschool.runescape.wiki/w/Orange_salamander_claw", + "price": 0 + }, + "29232": { + "id": 29232, + "name": "Kyatt tooth chip", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "CHOMP.", + "wiki_name": "Kyatt tooth chip", + "wiki_url": "https://oldschool.runescape.wiki/w/Kyatt_tooth_chip", + "price": 0 + }, + "29233": { + "id": 29233, + "name": "Fox fluff", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "Oh, this is fantastic!", + "wiki_name": "Fox fluff", + "wiki_url": "https://oldschool.runescape.wiki/w/Fox_fluff", + "price": 0 + }, + "29234": { + "id": 29234, + "name": "Red salamander claw", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The oversized claw of a red salamander.", + "wiki_name": "Red salamander claw", + "wiki_url": "https://oldschool.runescape.wiki/w/Red_salamander_claw", + "price": 0 + }, + "29235": { + "id": 29235, + "name": "Red chinchompa tuft", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A tuft of chinchompa fur... but red.", + "wiki_name": "Red chinchompa tuft", + "wiki_url": "https://oldschool.runescape.wiki/w/Red_chinchompa_tuft", + "price": 0 + }, + "29236": { + "id": 29236, + "name": "Antelope hoof shard", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A shard of sunlit antelope hoof.", + "wiki_name": "Antelope hoof shard (sunlight)", + "wiki_url": "https://oldschool.runescape.wiki/w/Antelope_hoof_shard_(sunlight)", + "price": 0 + }, + "29237": { + "id": 29237, + "name": "Sunlight moth wing", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The wingtip of a sunlight moth.", + "wiki_name": "Sunlight moth wing", + "wiki_url": "https://oldschool.runescape.wiki/w/Sunlight_moth_wing", + "price": 0 + }, + "29238": { + "id": 29238, + "name": "Salamander claw", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The oversized claw of a tecu salamander.", + "wiki_name": "Salamander claw", + "wiki_url": "https://oldschool.runescape.wiki/w/Salamander_claw", + "price": 0 + }, + "29239": { + "id": 29239, + "name": "Herby tuft", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "Does this fur smell odd to you?", + "wiki_name": "Herby tuft", + "wiki_url": "https://oldschool.runescape.wiki/w/Herby_tuft", + "price": 0 + }, + "29240": { + "id": 29240, + "name": "Moonlight moth wing", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A stray wingtip from a moonlight moth.", + "wiki_name": "Moonlight moth wing", + "wiki_url": "https://oldschool.runescape.wiki/w/Moonlight_moth_wing", + "price": 0 + }, + "29241": { + "id": 29241, + "name": "Antelope hoof shard", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A shard of darkened antelope hoof.", + "wiki_name": "Antelope hoof shard (moonlight)", + "wiki_url": "https://oldschool.runescape.wiki/w/Antelope_hoof_shard_(moonlight)", + "price": 0 + }, + "29242": { + "id": 29242, + "name": "Hunters' loot sack (basic)", + "members": true, + "stackable": true, + "cost": 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, + "lowalch": 0, + "highalch": 0 + }, + "29244": { + "id": 29244, + "name": "Hunters' loot sack (adept)", + "members": true, + "stackable": true, + "cost": 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, + "lowalch": 0, + "highalch": 0 + }, + "29246": { + "id": 29246, + "name": "Hunters' loot sack (expert)", + "members": true, + "stackable": true, + "cost": 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, + "lowalch": 0, + "highalch": 0 + }, + "29248": { + "id": 29248, + "name": "Hunters' loot sack (master)", + "members": true, + "stackable": true, + "cost": 1, + "release_date": "2024-03-20", + "examine": "I wonder what might be caught in this.", + "wiki_name": "Hunters' loot sack (tier 3)", + "wiki_url": "https://oldschool.runescape.wiki/w/Hunters'_loot_sack_(tier_3)", + "price": 0 + }, + "29250": { + "id": 29250, + "name": "Hunters' loot sack", + "incomplete": true, + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "price": 0 + }, + "29251": { + "id": 29251, + "name": "Basic quetzal whistle blueprint", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "A simple blueprint for a quetzal whistle.", + "wiki_name": "Basic quetzal whistle blueprint", + "wiki_url": "https://oldschool.runescape.wiki/w/Basic_quetzal_whistle_blueprint", + "price": 0 + }, + "29253": { + "id": 29253, + "name": "Enhanced quetzal whistle blueprint", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 5000, + "lowalch": 2000, + "highalch": 3000, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "An enhanced blueprint for a quetzal whistle.", + "wiki_name": "Enhanced quetzal whistle blueprint", + "wiki_url": "https://oldschool.runescape.wiki/w/Enhanced_quetzal_whistle_blueprint", + "price": 5842 + }, + "29256": { + "id": 29256, + "name": "Perfected quetzal whistle blueprint", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 7500, + "lowalch": 3000, + "highalch": 4500, + "weight": 0.004, + "release_date": "2024-03-20", + "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": 6755 + }, + "29259": { + "id": 29259, + "name": "Torn enhanced quetzal whistle blueprint", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "An enhanced blueprint for a quetzal whistle. It's been torn.", + "wiki_name": "Torn enhanced quetzal whistle blueprint", + "wiki_url": "https://oldschool.runescape.wiki/w/Torn_enhanced_quetzal_whistle_blueprint", + "price": 0 + }, + "29261": { + "id": 29261, + "name": "Torn perfected quetzal whistle blueprint", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "A perfected blueprint for a quetzal whistle. It's been torn.", + "wiki_name": "Torn perfected quetzal whistle blueprint", + "wiki_url": "https://oldschool.runescape.wiki/w/Torn_perfected_quetzal_whistle_blueprint", + "price": 0 + }, + "29263": { + "id": 29263, + "name": "Guild hunter headwear", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 500, + "weight": 1.36, + "release_date": "2024-03-20", + "examine": "The hat of the Hunters.", + "wiki_name": "Guild hunter headwear", + "wiki_url": "https://oldschool.runescape.wiki/w/Guild_hunter_headwear", + "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, + "lowalch": 200, + "highalch": 300 + }, + "29265": { + "id": 29265, + "name": "Guild hunter top", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 800, + "weight": 1.36, + "release_date": "2024-03-20", + "examine": "The top of the Hunters.", + "wiki_name": "Guild hunter top", + "wiki_url": "https://oldschool.runescape.wiki/w/Guild_hunter_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, + "lowalch": 320, + "highalch": 480 + }, + "29267": { + "id": 29267, + "name": "Guild hunter legs", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 700, + "weight": 1.36, + "release_date": "2024-03-20", + "examine": "The legs of the Hunters.", + "wiki_name": "Guild hunter legs", + "wiki_url": "https://oldschool.runescape.wiki/w/Guild_hunter_legs", + "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, + "lowalch": 280, + "highalch": 420 + }, + "29269": { + "id": 29269, + "name": "Guild hunter boots", + "members": true, + "equipable": true, + "equipable_by_player": true, + "cost": 200, + "weight": 1.36, + "release_date": "2024-03-20", + "examine": "The boots of the Hunters.", + "wiki_name": "Guild hunter boots", + "wiki_url": "https://oldschool.runescape.wiki/w/Guild_hunter_boots", + "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": "feet", + "requirements": null + }, + "price": 0, + "lowalch": 80, + "highalch": 120 + }, + "29271": { + "id": 29271, + "name": "Basic quetzal whistle", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "A simple quetzal whistle crafted from willow logs.", + "wiki_name": "Basic quetzal whistle", + "wiki_url": "https://oldschool.runescape.wiki/w/Basic_quetzal_whistle", + "price": 0 + }, + "29273": { + "id": 29273, + "name": "Enhanced quetzal whistle", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 0.004, + "release_date": "2024-03-20", + "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 + }, + "29275": { + "id": 29275, + "name": "Perfected quetzal whistle", + "members": true, + "cost": 10, + "lowalch": 4, + "highalch": 6, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "A perfected quetzal whistle crafted from redwood logs.", + "wiki_name": "Perfected quetzal whistle", + "wiki_url": "https://oldschool.runescape.wiki/w/Perfected_quetzal_whistle", + "price": 0 + }, + "29277": { + "id": 29277, + "name": "Trapper's tipple", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 2, + "lowalch": 0, + "highalch": 1, + "weight": 0.55, + "release_date": "2024-03-20", + "examine": "A glass of frothy ale.", + "wiki_name": "Trapper's tipple", + "wiki_url": "https://oldschool.runescape.wiki/w/Trapper's_tipple", + "price": 190 + }, + "29280": { + "id": 29280, + "name": "Mixed hide top", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 4000, + "lowalch": 1600, + "highalch": 2400, + "weight": 3, + "release_date": "2024-03-20", + "examine": "Made from the hide of a few different creatures.", + "wiki_name": "Mixed hide top", + "wiki_url": "https://oldschool.runescape.wiki/w/Mixed_hide_top", + "equipment": { + "attack_stab": 4, + "attack_slash": -2, + "attack_crush": -3, + "attack_magic": -15, + "attack_ranged": 27, + "defence_stab": 33, + "defence_slash": 39, + "defence_crush": 43, + "defence_magic": 30, + "defence_ranged": 32, + "melee_strength": 2, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "body", + "requirements": null + }, + "price": 15860 + }, + "29283": { + "id": 29283, + "name": "Mixed hide legs", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 4000, + "lowalch": 1600, + "highalch": 2400, + "weight": 2, + "release_date": "2024-03-20", + "examine": "Made from the hide of a few different creatures.", + "wiki_name": "Mixed hide legs", + "wiki_url": "https://oldschool.runescape.wiki/w/Mixed_hide_legs", + "equipment": { + "attack_stab": 3, + "attack_slash": -1, + "attack_crush": -2, + "attack_magic": -10, + "attack_ranged": 14, + "defence_stab": 20, + "defence_slash": 23, + "defence_crush": 22, + "defence_magic": 16, + "defence_ranged": 20, + "melee_strength": 0, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "legs", + "requirements": null + }, + "price": 15252 + }, + "29286": { + "id": 29286, + "name": "Mixed hide boots", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 4000, + "lowalch": 1600, + "highalch": 2400, + "weight": 2, + "release_date": "2024-03-20", + "examine": "Made from the hide of a few different creatures.", + "wiki_name": "Mixed hide boots", + "wiki_url": "https://oldschool.runescape.wiki/w/Mixed_hide_boots", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -10, + "attack_ranged": 5, + "defence_stab": 4, + "defence_slash": 5, + "defence_crush": 6, + "defence_magic": 3, + "defence_ranged": 3, + "melee_strength": 2, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "feet", + "requirements": null + }, + "price": 15650 + }, + "29289": { + "id": 29289, + "name": "Mixed hide cape", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "equipable": true, + "equipable_by_player": true, + "cost": 4000, + "lowalch": 1600, + "highalch": 2400, + "weight": 3, + "release_date": "2024-03-20", + "examine": "Made from the hide of a few different creatures.", + "wiki_name": "Mixed hide cape", + "wiki_url": "https://oldschool.runescape.wiki/w/Mixed_hide_cape", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": -15, + "attack_ranged": 5, + "defence_stab": 2, + "defence_slash": 2, + "defence_crush": 2, + "defence_magic": 5, + "defence_ranged": 1, + "melee_strength": 1, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 0, + "slot": "cape", + "requirements": null + }, + "price": 17034 + }, + "29292": { + "id": 29292, + "name": "Mixed hide base", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 9000, + "lowalch": 3600, + "highalch": 5400, + "weight": 1, + "release_date": "2024-03-20", + "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": 14367 + }, + "29295": { + "id": 29295, + "name": "Small meat pouch", + "members": true, + "cost": 3000, + "lowalch": 1200, + "highalch": 1800, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A small pouch for carrying raw meat.", + "wiki_name": "Small meat pouch", + "wiki_url": "https://oldschool.runescape.wiki/w/Small_meat_pouch", + "price": 0 + }, + "29297": { + "id": 29297, + "name": "Large meat pouch", + "members": true, + "cost": 7500, + "lowalch": 3000, + "highalch": 4500, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A large pouch for carrying raw meat.", + "wiki_name": "Large meat pouch", + "wiki_url": "https://oldschool.runescape.wiki/w/Large_meat_pouch", + "price": 0 + }, + "29299": { + "id": 29299, + "name": "Small fur pouch", + "members": true, + "cost": 3000, + "lowalch": 1200, + "highalch": 1800, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A small pouch for carrying animal furs.", + "wiki_name": "Small fur pouch", + "wiki_url": "https://oldschool.runescape.wiki/w/Small_fur_pouch", + "price": 0 + }, + "29301": { + "id": 29301, + "name": "Medium fur pouch", + "members": true, + "cost": 4500, + "lowalch": 1800, + "highalch": 2700, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A medium-sized pouch for carrying animal furs.", + "wiki_name": "Medium fur pouch", + "wiki_url": "https://oldschool.runescape.wiki/w/Medium_fur_pouch", + "price": 0 + }, + "29303": { + "id": 29303, + "name": "Large fur pouch", + "members": true, + "cost": 7500, + "lowalch": 3000, + "highalch": 4500, + "weight": 1, + "release_date": "2024-03-20", + "examine": "A large pouch for carrying animal furs.", + "wiki_name": "Large fur pouch", + "wiki_url": "https://oldschool.runescape.wiki/w/Large_fur_pouch", + "price": 0 + }, + "29305": { + "id": 29305, + "name": "Hunter's spear", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "equipable": true, + "equipable_by_player": true, + "equipable_weapon": true, + "cost": 350, + "lowalch": 140, + "highalch": 210, + "release_date": "2024-03-20", + "examine": "Throw it... Or don't.", + "wiki_name": "Hunter's spear", + "wiki_url": "https://oldschool.runescape.wiki/w/Hunter's_spear", + "equipment": { + "attack_stab": 0, + "attack_slash": 0, + "attack_crush": 0, + "attack_magic": 0, + "attack_ranged": 73, + "defence_stab": 0, + "defence_slash": 0, + "defence_crush": 0, + "defence_magic": 0, + "defence_ranged": 0, + "melee_strength": 48, + "ranged_strength": 0, + "magic_damage": 0, + "prayer": 1, + "slot": "weapon", + "requirements": null + }, + "weapon": { + "attack_speed": 6, + "weapon_type": "thrown", + "stances": [ + { + "combat_style": "accurate", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "accuracy and damage" + }, + { + "combat_style": "rapid", + "attack_type": null, + "attack_style": null, + "experience": "ranged", + "boosts": "attack speed by 1 tick" + }, + { + "combat_style": "longrange", + "attack_type": null, + "attack_style": null, + "experience": "ranged and defence", + "boosts": "attack range by 2 squares" + } + ] + }, + "price": 274 + }, + "29307": { + "id": 29307, + "name": "Quetzal feed", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "cost": 50, + "lowalch": 20, + "highalch": 30, + "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": 2528 + }, + "29309": { + "id": 29309, + "name": "Huntsman's kit", + "members": true, + "cost": 850, + "weight": 0.95, + "release_date": "2024-03-20", + "examine": "Holds assorted hunting equipment.", + "wiki_name": "Huntsman's kit", + "wiki_url": "https://oldschool.runescape.wiki/w/Huntsman's_kit", + "price": 0, + "lowalch": 340, + "highalch": 510 + }, + "29311": { + "id": 29311, + "name": "Hunter spear tips", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "stackable": true, + "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": 5 + }, + "29317": { + "id": 29317, + "name": "Tattered request note", + "members": true, + "cost": 6, + "lowalch": 2, + "highalch": 3, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "This looks ready to fall apart.", + "wiki_name": "Tattered request note", + "wiki_url": "https://oldschool.runescape.wiki/w/Tattered_request_note", + "price": 0 + }, + "29319": { + "id": 29319, + "name": "Guild history excerpt", + "members": true, + "cost": 6, + "lowalch": 2, + "highalch": 3, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "It appears to be copied from a book.", + "wiki_name": "Guild history excerpt", + "wiki_url": "https://oldschool.runescape.wiki/w/Guild_history_excerpt", + "price": 0 + }, + "29321": { + "id": 29321, + "name": "Apatura's note", + "members": true, + "cost": 6, + "lowalch": 2, + "highalch": 3, + "weight": 0.004, + "release_date": "2024-03-20", + "examine": "Should I be reading this?", + "wiki_name": "Apatura's note", + "wiki_url": "https://oldschool.runescape.wiki/w/Apatura's_note", + "price": 0 + }, + "29323": { + "id": 29323, + "name": "Apatura's key", + "members": true, + "cost": 20, + "lowalch": 8, + "highalch": 12, + "weight": 0.01, + "release_date": "2024-03-20", + "examine": "I can use this to open the Hunter Guild chest.", + "wiki_name": "Apatura's key", + "wiki_url": "https://oldschool.runescape.wiki/w/Apatura's_key", + "price": 0 + }, + "29325": { + "id": 29325, + "name": "House keys", + "members": true, + "stackable": true, + "cost": 500, + "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, + "lowalch": 200, + "highalch": 300 + }, + "29332": { + "id": 29332, + "name": "Valuables", + "members": true, + "stackable": true, + "cost": 45, + "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, + "lowalch": 18, + "highalch": 27 + }, + "29338": { + "id": 29338, + "name": "Blessed bone statuette", + "members": true, + "cost": 2000, + "lowalch": 800, + "highalch": 1200, + "weight": 0.028, + "release_date": "2024-03-20", + "examine": "A statuette carved from the finest blessed bone.", + "wiki_name": "Blessed bone statuette (1)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_bone_statuette#1", + "price": 0 + }, + "29340": { + "id": 29340, + "name": "Blessed bone statuette", + "members": true, + "cost": 2000, + "lowalch": 800, + "highalch": 1200, + "weight": 0.028, + "release_date": "2024-03-20", + "examine": "A statuette carved from the finest blessed bone.", + "wiki_name": "Blessed bone statuette (2)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_bone_statuette#2", + "price": 0 + }, + "29342": { + "id": 29342, + "name": "Blessed bone statuette", + "members": true, + "cost": 2000, + "lowalch": 800, + "highalch": 1200, + "weight": 0.028, + "release_date": "2024-03-20", + "examine": "A statuette carved from the finest blessed bone.", + "wiki_name": "Blessed bone statuette (3)", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_bone_statuette#3", + "price": 0 + }, + "29344": { + "id": 29344, + "name": "Blessed bones", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.5, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_bones", + "price": 0 + }, + "29346": { + "id": 29346, + "name": "Blessed bat bones", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.3, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessd bat bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessd_bat_bones", + "price": 0 + }, + "29348": { + "id": 29348, + "name": "Blessed big bones", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed big bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_big_bones", + "price": 0 + }, + "29350": { + "id": 29350, + "name": "Blessed zogre bones", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed zogre bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_zogre_bones", + "price": 0 + }, + "29352": { + "id": 29352, + "name": "Blessed babydragon bones", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed babydragon bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_babydragon_bones", + "price": 0 + }, + "29354": { + "id": 29354, + "name": "Blessed babywyrm bones", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed babywyrm bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_babywyrm_bones", + "price": 0 + }, + "29356": { + "id": 29356, + "name": "Blessed dragon bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 1.5, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed dragon bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_dragon_bones", + "price": 0 + }, + "29358": { + "id": 29358, + "name": "Blessed lava dragon bones", + "members": true, + "cost": 150, + "lowalch": 60, + "highalch": 90, + "weight": 1.6, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed lava dragon bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_lava_dragon_bones", + "price": 0 + }, + "29360": { + "id": 29360, + "name": "Blessed wyvern bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 0.5, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed wyvern bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_wyvern_bones", + "price": 0 + }, + "29362": { + "id": 29362, + "name": "Blessed superior dragon bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 1.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed superior dragon bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_superior_dragon_bones", + "price": 0 + }, + "29364": { + "id": 29364, + "name": "Blessed wyrm bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 1.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed wyrm bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_wyrm_bones", + "price": 0 + }, + "29366": { + "id": 29366, + "name": "Blessed drake bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 1.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed drake bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_drake_bones", + "price": 0 + }, + "29368": { + "id": 29368, + "name": "Blessed hydra bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 1.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed hydra bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_hydra_bones", + "price": 0 + }, + "29370": { + "id": 29370, + "name": "Blessed fayrg bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed fayrg bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_fayrg_bones", + "price": 0 + }, + "29372": { + "id": 29372, + "name": "Blessed raurg bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed raurg bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_raurg_bones", + "price": 0 + }, + "29374": { + "id": 29374, + "name": "Blessed ourg bones", + "members": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Blessed ourg bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_ourg_bones", + "price": 0 + }, + "29376": { + "id": 29376, + "name": "Dagannoth bones", + "members": true, + "cost": 150, + "lowalch": 60, + "highalch": 90, + "weight": 1.5, + "release_date": "2024-03-20", + "examine": "Bones blessed at an exposed altar.", + "wiki_name": "Dagannoth bones (blessed)", + "wiki_url": "https://oldschool.runescape.wiki/w/Dagannoth_bones_(blessed)", + "price": 0 + }, + "29378": { + "id": 29378, + "name": "Sun-kissed bones", + "members": true, + "noteable": true, + "cost": 160, + "lowalch": 64, + "highalch": 96, + "weight": 1.8, + "release_date": "2024-03-20", + "examine": "These bones have been left out a little too long.", + "wiki_name": "Sun-kissed bones", + "wiki_url": "https://oldschool.runescape.wiki/w/Sun-kissed_bones", + "price": 0 + }, + "29381": { + "id": 29381, + "name": "Blessed bone shards", + "members": true, + "stackable": true, + "cost": 18, + "release_date": "2024-03-20", + "examine": "Blessed bones that have been broken down into smaller pieces.", + "wiki_name": "Blessed bone shards", + "wiki_url": "https://oldschool.runescape.wiki/w/Blessed_bone_shards", + "price": 0 + }, + "29382": { + "id": 29382, + "name": "Jug of sunfire wine", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.3, + "release_date": "2024-03-20", + "examine": "A jug of sunfire wine. Not for drinking.", + "wiki_name": "Jug of sunfire wine", + "wiki_url": "https://oldschool.runescape.wiki/w/Jug_of_sunfire_wine", + "price": 0 + }, + "29384": { + "id": 29384, + "name": "Jug of blessed sunfire wine", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.3, + "release_date": "2024-03-20", + "examine": "A jug of sunfire wine that's been blessed by Ralos. Not for drinking.", + "wiki_name": "Jug of blessed sunfire wine", + "wiki_url": "https://oldschool.runescape.wiki/w/Jug_of_blessed_sunfire_wine", + "price": 0 + }, + "29386": { + "id": 29386, + "name": "Jug of blessed wine", + "members": true, + "cost": 1, + "lowalch": 0, + "highalch": 0, + "weight": 0.3, + "release_date": "2024-03-20", + "examine": "A jug of wine that's been blessed by Ralos.", + "wiki_name": "Jug of blessed wine", + "wiki_url": "https://oldschool.runescape.wiki/w/Jug_of_blessed_wine", + "price": 0 + }, + "29388": { + "id": 29388, + "name": "Token", + "members": true, + "cost": 123, + "lowalch": 49, + "highalch": 73, + "weight": 0.123, + "release_date": "2024-03-20", + "examine": "A small token.", + "wiki_name": "Token (Moons of Peril)", + "wiki_url": "https://oldschool.runescape.wiki/w/Token_(Moons_of_Peril)", + "price": 0 + }, + "29408": { + "id": 29408, + "name": "A nice key", + "members": true, + "cost": 123, + "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, + "lowalch": 49, + "highalch": 73 + }, + "29409": { + "id": 29409, + "name": "Sunbeam ale", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 8, + "lowalch": 3, + "highalch": 4, + "weight": 0.55, + "release_date": "2024-03-20", + "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": 390 + }, + "29412": { + "id": 29412, + "name": "Steamforge brew", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 8, + "lowalch": 3, + "highalch": 4, + "weight": 0.55, + "release_date": "2024-03-20", + "examine": "A dwarven delight from Cam Torum.", + "wiki_name": "Steamforge brew", + "wiki_url": "https://oldschool.runescape.wiki/w/Steamforge_brew", + "price": 18 + }, + "29415": { + "id": 29415, + "name": "Eclipse wine", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 1000, + "lowalch": 400, + "highalch": 600, + "weight": 1, + "release_date": "2024-03-20", + "examine": "The finest Aldarin Red available.", + "wiki_name": "Eclipse wine", + "wiki_url": "https://oldschool.runescape.wiki/w/Eclipse_wine", + "price": 1300 + }, + "29418": { + "id": 29418, + "name": "Moon-lite", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 15, + "lowalch": 6, + "highalch": 9, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "A popular spirit all across Varlamore.", + "wiki_name": "Moon-lite", + "wiki_url": "https://oldschool.runescape.wiki/w/Moon-lite", + "price": 175 + }, + "29421": { + "id": 29421, + "name": "Sun-shine", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 100, + "lowalch": 40, + "highalch": 60, + "weight": 0.8, + "release_date": "2024-03-20", + "examine": "A highly desirable liquor.", + "wiki_name": "Sun-shine", + "wiki_url": "https://oldschool.runescape.wiki/w/Sun-shine", + "price": 138 + }, + "29424": { + "id": 29424, + "name": "Sunfire fanatic armour set", + "members": true, + "tradeable": true, + "tradeable_on_ge": true, + "noteable": true, + "cost": 55000, + "lowalch": 22000, + "highalch": 33000, + "weight": 0.05, + "release_date": "2024-03-20", + "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": 20895000 + }, + "29427": { + "id": 29427, + "name": "Herbalist's notes", + "members": true, + "cost": 30, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "Some notes written by an unknown herbalist.", + "wiki_name": "Herbalist's notes", + "wiki_url": "https://oldschool.runescape.wiki/w/Herbalist's_notes", + "price": 0 + }, + "29428": { + "id": 29428, + "name": "Chef's notes", + "members": true, + "cost": 30, + "weight": 0.003, + "release_date": "2024-03-20", + "examine": "Some notes written by an unknown chef.", + "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/data/monsters_data.json b/src/data/monsters_data.json index 26099211f..9bd862565 100644 --- a/src/data/monsters_data.json +++ b/src/data/monsters_data.json @@ -10679,6 +10679,46 @@ "slayerXP": 408.5, "assignableSlayerMasters": ["turael", "spria", "chaeldar", "duradel", "nieve"] }, + "7222": { + "members": true, + "combatLevel": 200, + "hitpoints": 500, + "maxHit": 13, + "attackType": ["melee", "ranged", "magic"], + "attackSpeed": 4, + "aggressive": true, + "poisonous": false, + "immuneToPoison": false, + "immuneToVenom": false, + "attributes": [], + "category": ["rats"], + "examineText": "You're never more than six feet away from one.", + "wikiName": "Scurrius (Solo)", + "wikiURL": "https://oldschool.runescape.wiki/w/Scurrius#Solo", + "attackLevel": 300, + "strengthLevel": 100, + "defenceLevel": 60, + "magicLevel": 50, + "rangedLevel": 50, + "attackStab": 0, + "attackSlash": 0, + "attackCrush": 0, + "attackMagic": 150, + "attackRanged": 150, + "defenceStab": 20, + "defenceSlash": 20, + "defenceCrush": 20, + "defenceMagic": 10, + "defenceRanged": 20, + "attackAccuracy": 0, + "meleeStrength": 0, + "rangedStrength": 0, + "magicDamage": 0, + "isSlayerMonster": true, + "slayerLevelRequired": 1, + "slayerXP": 600, + "assignableSlayerMasters": ["turael", "spria"] + }, "7272": { "members": true, "combatLevel": 89, diff --git a/src/meta/types.ts b/src/meta/types.ts index ca2eed77a..1593f6fad 100644 --- a/src/meta/types.ts +++ b/src/meta/types.ts @@ -88,6 +88,7 @@ export interface BossRecords { kraken: MinigameScore; kreeArra: MinigameScore; krilTsutsaroth: MinigameScore; + lunarChests: MinigameScore; mimic: MinigameScore; nex: MinigameScore; nightmare: MinigameScore; @@ -98,6 +99,7 @@ export interface BossRecords { scorpia: MinigameScore; scurrius: MinigameScore; skotizo: MinigameScore; + solHeredit: MinigameScore; spindel: MinigameScore; tempoross: MinigameScore; theGauntlet: MinigameScore; diff --git a/src/simulation/monsters/bosses/Scurrius.ts b/src/simulation/monsters/bosses/Scurrius.ts new file mode 100644 index 000000000..674212b6a --- /dev/null +++ b/src/simulation/monsters/bosses/Scurrius.ts @@ -0,0 +1,38 @@ +import LootTable from "../../../structures/LootTable"; +import SimpleMonster from "../../../structures/SimpleMonster"; + +const ScurriusTable = new LootTable({ limit: 100 }) + .every("Big bones") + .every("Raw rat meat") + .add("Adamant platebody", 1, 6) + .add("Rune med helm", 1, 6) + .add("Rune full helm", 1, 6) + .add("Rune sq shield", 1, 6) + .add("Rune chainbody", 1, 6) + .add("Rune battleaxe", 1, 6) + .add("Adamant arrow", [20, 50], 6) + .add("Rune arrow", [20, 50], 6) + .add("Chaos rune", [70, 125], 6) + .add("Death rune", [40, 90], 3) + .add("Law rune", [10, 30], 3) + .add("Trout", [1, 3], 6) + .add("Tuna", [1, 3], 6) + .add("Lobster", [1, 3], 6) + .add("Prayer potion(4)", 1, 6) + .add("Shark", 1, 3) + .add("Ranging potion(1)", 1, 3) + .add("Super strength(1)", 1, 3) + .add("Cheese", 1, 1) + .add("Coins", [1000, 9000], 6) + .tertiary(25, "Clue scroll (medium)") + .tertiary(33, "Scurrius' spine") + .tertiary(400, "Long bone") + .tertiary(3000, "Scurry") + .tertiary(5012, "Curved bone"); + +export default new SimpleMonster({ + id: 7222, + name: "Scurrius", + table: ScurriusTable, + aliases: ["scurrius"], +}); diff --git a/src/simulation/monsters/bosses/index.ts b/src/simulation/monsters/bosses/index.ts index 23bc18803..ac07e0e37 100644 --- a/src/simulation/monsters/bosses/index.ts +++ b/src/simulation/monsters/bosses/index.ts @@ -17,6 +17,7 @@ import KrilTsutsaroth from "./KrilTsutsaroth"; import Obor from "./Obor"; import PhantomMuspah from "./PhantomMuspah"; import Sarachnis from "./Sarachnis"; +import Scurrius from "./Scurrius"; import Skotizo from "./Skotizo"; import { TheLeviathan } from "./TheLeviathan"; import { TheWhisperer } from "./TheWhisperer"; @@ -54,6 +55,7 @@ export const allBosses = { AwakenedTheLeviathan, AwakenedTheWhisperer, AwakenedVardorvis, + Scurrius, ...allWildyBosses, ...allSlayerBosses, }; diff --git a/src/simulation/monsters/bosses/wildy/Callisto.ts b/src/simulation/monsters/bosses/wildy/Callisto.ts index 7a96e049d..28b874ca5 100644 --- a/src/simulation/monsters/bosses/wildy/Callisto.ts +++ b/src/simulation/monsters/bosses/wildy/Callisto.ts @@ -23,8 +23,13 @@ const CallistoTable = new LootTable() .every(CallistoUniqueTable) /* Weapons and armour */ - .add("Rune pickaxe", 3, 12) - .add("Rune 2h sword", 1, 3) + .add("Rune pickaxe", 5, 8) + .add("Rune 2h sword", 3, 3) + .add("Mystic earth staff", 4, 2) + .add("Mystic robe top", 4, 2) + .add("Mystic robe bottom", 4, 2) + .add("Rune kiteshield", 4, 2) + .add("Rune platebody", 4, 2) /* Runes and ammunition */ .add("Blood rune", 500, 7) @@ -52,17 +57,18 @@ const CallistoTable = new LootTable() .add("Snapdragon seed", 8, 5) /* Other */ - .add("Coins", 50_000, 21) + .add("Coins", 50_000, 10) .add("Dark crab", 50, 5) .add("Super restore(4)", 10, 5) .add("Supercompost", 225, 4) .add("Dragon bones", 75, 3) - .add("Blighted anglerfish", 45, 1) + .add("Wilderness crabs teleport", 4, 3) + .add("Blighted anglerfish", 100, 1) /* Tertiary */ .tertiary(100, "Clue scroll (elite)") .tertiary(400, "Long bone") - .tertiary(2000, "Callisto cub") + .tertiary(1500, "Callisto cub") .tertiary(5013, "Curved bone"); const CallistoTotalTable = new LootTable().every(CallistoSecondarySupplyTable).every(CallistoTable); diff --git a/src/simulation/monsters/bosses/wildy/ChaosElemental.ts b/src/simulation/monsters/bosses/wildy/ChaosElemental.ts index 9bdaba099..509ea4e45 100644 --- a/src/simulation/monsters/bosses/wildy/ChaosElemental.ts +++ b/src/simulation/monsters/bosses/wildy/ChaosElemental.ts @@ -1,19 +1,13 @@ import LootTable from "../../../../structures/LootTable"; import SimpleMonster from "../../../../structures/SimpleMonster"; -import HerbDropTable from "../../../subtables/HerbDropTable"; -import RareDropTable, { GemTable } from "../../../subtables/RareDropTable"; +import RareDropTable from "../../../subtables/RareDropTable"; const ChaosElementalMinorTable = new LootTable() - .add("Anchovy pizza", 3) - .add("Babydragon bones", 2) - .add("Bat bones", 5) - .add("Big bones", 3) - .add("Bones", 4) - .add("Dragon bones") - .add("Super attack(4)") - .add("Super defence(4)") - .add("Super strength(4)") - .add("Tuna", 5); + .add("Blighted anglerfish", 2, 1) + .add("Blighted karambwan", 3, 1) + .add("Blighted super restore(4)", 1, 1) + .add("Dragon bones", 1, 1) + .add("Super combat potion(1)", 1, 1); const ChaosElementalTable = new LootTable() .every(ChaosElementalMinorTable, 1) @@ -22,27 +16,48 @@ const ChaosElementalTable = new LootTable() .oneIn(256, "Dragon pickaxe") /* Weapons and armour */ - .add("Dragon dagger", 1, 11) - .add("Dragon 2h sword", 1, 1) + .add("Rune dart", 100, 5) + .add("Rune platelegs", 1, 4) + .add("Rune plateskirt", 1, 4) + .add("Rune 2h sword", 1, 3) + .add("Rune battleaxe", 1, 3) + .add("Rune full helm", 1, 3) + .add("Rune kiteshield", 1, 3) + .add("Mystic air staff", 1, 3) + .add("Mystic water staff", 1, 3) + .add("Mystic earth staff", 1, 3) + .add("Mystic fire staff", 1, 3) + .add("Dragon dagger", 1, 2) + .add("Dragon 2h sword", 1, 2) + .add("Dragon platelegs", 1, 2) + .add("Dragon plateskirt", 1, 2) /* Runes and ammunition */ - .add("Air rune", 500, 10) - .add("Blood rune", 75, 10) - .add("Chaos rune", 250, 10) - .add("Death rune", 125, 10) - .add("Mithril dart", 300, 10) - .add("Rune arrow", 150, 10) + .add("Chaos rune", [300, 500], 8) + .add("Blood rune", [100, 250], 8) + .add("Rune arrow", 150, 5) + + /* Herbs */ + .add("Grimy ranarr weed", [5, 8], 4) + .add("Grimy snapdragon", [5, 8], 4) + .add("Grimy avantoe", [5, 8], 3) + .add("Grimy kwuarm", [5, 8], 3) + + /* Resources */ + .add("Coal", [75, 150], 5) + .add("Mahogany plank", [8, 16], 5) + .add("Runite bar", [3, 5], 4) + .add("Adamantite bar", [8, 12], 4) /* Other */ - .add("Strange fruit", 10, 13) - .add("Antidote++(4)", 1, 10) - .add("Weapon poison(++)", 1, 10) - .add("Coins", 7500, 8) + .add("Coins", [20_005, 29_995], 7) + .add("Blighted ancient ice sack", [20, 40], 5) + .add("Blighted karambwan", [15, 25], 4) + .add("Blighted anglerfish", [10, 15], 4) + .add("Wilderness crabs teleport", 2, 2) /* Subtables */ - .add(HerbDropTable, 1, 4) - .add(RareDropTable, 1, 8) - .add(GemTable, 1, 3); + .add(RareDropTable, 1, 8); export default new SimpleMonster({ id: 2054, diff --git a/src/simulation/monsters/bosses/wildy/Scorpia.ts b/src/simulation/monsters/bosses/wildy/Scorpia.ts index d66fb47e5..c056c5d9a 100644 --- a/src/simulation/monsters/bosses/wildy/Scorpia.ts +++ b/src/simulation/monsters/bosses/wildy/Scorpia.ts @@ -1,6 +1,5 @@ import LootTable from "../../../../structures/LootTable"; import SimpleMonster from "../../../../structures/SimpleMonster"; -import RareDropTable, { GemTable } from "../../../subtables/RareDropTable"; const ScorpiaUniqueTable = new LootTable().add("Odium shard 3").add("Malediction shard 3"); @@ -11,44 +10,43 @@ const ScorpiaTable = new LootTable() .add(ScorpiaUniqueTable, 1, 1) /* Weapons and armour */ - .add("Rune pickaxe", 1, 5) + .add("Battlestaff", [5, 8], 6) .add("Rune 2h sword", 1, 5) - .add("Rune spear", 1, 5) + .add("Rune pickaxe", 1, 5) + .add("Rune kiteshield", 1, 5) .add("Rune chainbody", 1, 4) + .add("Rune platelegs", 1, 4) .add("Rune scimitar", 1, 4) - .add("Rune sword", 1, 4) .add("Rune warhammer", 1, 4) + .add("Mystic earth staff", 1, 4) + .add("Mystic robe top", 1, 1) + .add("Mystic robe bottom", 1, 1) .add("Dragon scimitar", 1, 1) + .add("Dragon 2h sword", 1, 1) + + /* Runes */ + .add("Death rune", [100, 150], 8) + .add("Blood rune", [100, 150], 8) + .add("Chaos rune", [150, 200], 8) + + /* Herbs */ + .add("Grimy kwuarm", [10, 15], 5) + .add("Grimy dwarf weed", [10, 15], 5) + .add("Grimy torstol", [10, 15], 5) + .add("Grimy snapdragon", [4, 7], 5) /* Materials */ - .add( - [ - ["Uncut emerald", 6], - ["Uncut sapphire", 4], - ], - 1, - 5, - ) - .add("Grimy kwuarm", 4, 8) - .add("Bucket of sand", 25, 6) - .add("Cactus spine", 10, 6) - - /* Consumables */ - .add("Admiral pie", 3, 8) - .add("Prayer potion(4)", 1, 8) - .add("Shark", 1, 8) - .add("Anchovy pizza", 8, 4) - .add("Superantipoison(4)", 1, 2) + .add("Uncut ruby", [15, 20], 6) + .add("Uncut diamond", [10, 15], 4) + .add("Runite ore", 3, 4) + .add("Dragon javelin heads", [30, 50], 4) + .add("Onyx bolt tips", [6, 10], 2) /* Other */ - .add("Coins", [499, 3998], 18) - .add("Phoenix necklace", 1, 7) - .add("Dust rune", 30, 4) - .add("Weapon poison(++)", 1, 4) - - /* Subtables */ - .add(RareDropTable, 1, 4) - .add(GemTable, 1, 4); + .add("Coins", [25_002, 34_962], 7) + .add("Blighted anglerfish", [15, 25], 5) + .add("Blighted super restore(4)", 5, 5) + .add("Wilderness crabs teleport", 2, 2); export default new SimpleMonster({ id: 6615, diff --git a/src/simulation/monsters/bosses/wildy/Spindel.ts b/src/simulation/monsters/bosses/wildy/Spindel.ts index 20b3dd3e1..f6c8b693b 100644 --- a/src/simulation/monsters/bosses/wildy/Spindel.ts +++ b/src/simulation/monsters/bosses/wildy/Spindel.ts @@ -26,7 +26,7 @@ const SpindelTable = new LootTable() /* Weapons and armour */ .add("Rune pickaxe", 1, 12) - .add("Rune knife", 30, 3) + .add("Rune knife", 30, 5) .add("Rune 2h sword", 1, 3) /* Runes and ammunition */ diff --git a/src/simulation/monsters/bosses/wildy/Venenatis.ts b/src/simulation/monsters/bosses/wildy/Venenatis.ts index 9a71d79b3..183df1115 100644 --- a/src/simulation/monsters/bosses/wildy/Venenatis.ts +++ b/src/simulation/monsters/bosses/wildy/Venenatis.ts @@ -21,9 +21,13 @@ const VenenatisTable = new LootTable() .every(VenenatisUniqueTable) /* Weapons and armour */ - .add("Rune pickaxe", 3, 12) - .add("Rune knife", 150, 3) + .add("Rune pickaxe", 5, 8) + .add("Rune knife", 150, 5) .add("Rune dart", 150, 3) + .add("Mystic air staff", 4, 2) + .add("Rune platelegs", 4, 2) + .add("Rune sq shield", 4, 2) + .add("Dragon dagger", 6, 2) /* Runes and ammunition */ .add("Chaos rune", 500, 7) @@ -42,22 +46,23 @@ const VenenatisTable = new LootTable() .add("Uncut dragonstone", 5, 2) .add("Uncut ruby", 75, 1) .add("Unicorn horn", 225, 1) - .add("Grimy ranarr weed", 50, 1) + .add("Grimy ranarr weed", 45, 1) .add("Grimy snapdragon", 150, 1) .add("Grimy toadflax", 45, 1) /* Other */ - .add("Coins", 50_000, 21) + .add("Coins", 50_000, 10) .add("Super restore(4)", 10, 5) .add("Dark crab", 50, 5) .add("Supercompost", 225, 4) .add("Antidote++(4)", 20, 3) - .add("Blighted anglerfish", 45, 1) + .add("Wilderness crabs teleport", 4, 3) + .add("Blighted anglerfish", 100, 1) /* Tertiary */ .tertiary(100, "Clue scroll (elite)") .tertiary(400, "Long bone") - .tertiary(2000, "Venenatis spiderling") + .tertiary(1500, "Venenatis spiderling") .tertiary(5013, "Curved bone"); const VenenatisTotalTable = new LootTable().every(VenenatisSecondarySupplyTable).every(VenenatisTable); diff --git a/src/simulation/monsters/bosses/wildy/Vetion.ts b/src/simulation/monsters/bosses/wildy/Vetion.ts index 6f72bc2fc..50dc32b93 100644 --- a/src/simulation/monsters/bosses/wildy/Vetion.ts +++ b/src/simulation/monsters/bosses/wildy/Vetion.ts @@ -26,9 +26,14 @@ const VetionTable = new LootTable() .every(VetionUniqueTable) /* Weapons and armour */ - .add("Rune pickaxe", 3, 12) + .add("Rune pickaxe", 5, 8) .add("Rune dart", 150, 3) .add("Rune knife", 150, 3) + .add("Mystic fire staff", 4, 2) + .add("Mystic water staff", 4, 2) + .add("Mystic robe top", 4, 2) + .add("Mystic robe bottom", 4, 2) + .add("Rune full helm", 4, 2) /* Runes and ammunition */ .add("Chaos rune", 900, 7) @@ -53,17 +58,18 @@ const VetionTable = new LootTable() .add("Grimy toadflax", 45, 1) /* Other */ - .add("Coins", 50_000, 21) + .add("Coins", 50_000, 10) .add("Super restore(4)", 10, 5) .add("Sanfew serum(4)", 20, 5) .add("Dark crab", 50, 5) .add("Supercompost", 225, 4) - .add("Blighted anglerfish", 45, 1) + .add("Wilderness crabs teleport", 4, 3) + .add("Blighted anglerfish", 100, 1) /* Tertiary */ .tertiary(100, "Clue scroll (elite)") .tertiary(400, "Long bone") - .tertiary(2000, "Vet'ion jr.") + .tertiary(1500, "Vet'ion jr.") .tertiary(5000, "Skeleton champion scroll") .tertiary(5013, "Curved bone"); diff --git a/src/simulation/monsters/low/a-f/AbyssalDemon.ts b/src/simulation/monsters/low/a-f/AbyssalDemon.ts index 450061bdd..2177f94fe 100644 --- a/src/simulation/monsters/low/a-f/AbyssalDemon.ts +++ b/src/simulation/monsters/low/a-f/AbyssalDemon.ts @@ -3,6 +3,31 @@ import SimpleMonster from "../../../../structures/SimpleMonster"; import HerbDropTable from "../../../subtables/HerbDropTable"; import RareDropTable, { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 14500) + .add("Blighted anglerfish", [1, 2], 10800) + .add("Blighted manta ray", [1, 2], 7190) + .add("Blighted karambwan", [1, 2], 7190) + .add("Blighted teleport spell sack", [1, 10], 7190) + .add("Blighted ancient ice sack", [1, 10], 7190) + .add("Blighted vengeance sack", [1, 10], 7190) + .add("Blighted super restore(4)", 1, 3600) + .add("Revenant cave teleport", 1, 3600) + .add("Dareeyak teleport", 1, 720) + .add("Wilderness crabs teleport", 1, 720) + .add("Carrallanger teleport", 1, 720) + .add("Paddewwa teleport", 1, 720) + .add("Annakarl teleport", 1, 720) + .add("Lassar teleport", 1, 720) + .add("Kharyrll teleport", 1, 720) + .add("Senntisten teleport", 1, 720) + .add("Ghorrock teleport", 1, 720) + .add("Target teleport", 1, 720) + .add("Magic shortbow scroll", 1, 288) + .add("Ring of wealth scroll", 1, 288) + .add("Trouver parchment", 2, 72) + .add("Looting bag note", 1, 72); + export const AbyssalDemonPreTable = new LootTable() /* Weapons and armour */ .add("Black sword", 1, 4) @@ -53,9 +78,15 @@ const AbyssalDemonTable = new LootTable() .tertiary(1200, "Clue scroll (elite)") .tertiary(6000, "Abyssal head"); +const AbyssalDemonWildyCaveTable = new LootTable() + .every(AbyssalDemonTable) + .add(WildySlayerCaveTable, 1, 80) + .add(new LootTable(), 1, 20); + export default new SimpleMonster({ id: 415, name: "Abyssal Demon", table: AbyssalDemonTable, + wildyCaveTable: AbyssalDemonWildyCaveTable, aliases: ["abbys", "abby demon", "abby demons", "abyssal demons", "abyssal demon"], }); diff --git a/src/simulation/monsters/low/a-f/Ankou.ts b/src/simulation/monsters/low/a-f/Ankou.ts index 6b546f588..e05f5397f 100644 --- a/src/simulation/monsters/low/a-f/Ankou.ts +++ b/src/simulation/monsters/low/a-f/Ankou.ts @@ -4,6 +4,31 @@ import CommonSeedDropTable from "../../../subtables/CommonSeedDropTable"; import HerbDropTable from "../../../subtables/HerbDropTable"; import { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 11900) + .add("Blighted anglerfish", [1, 2], 8930) + .add("Blighted manta ray", [1, 2], 8930) + .add("Blighted karambwan", [1, 2], 5950) + .add("Blighted teleport spell sack", [1, 10], 5950) + .add("Blighted ancient ice sack", [1, 10], 5950) + .add("Blighted vengeance sack", [1, 10], 5950) + .add("Blighted super restore(4)", 1, 2980) + .add("Revenant cave teleport", 1, 2980) + .add("Dareeyak teleport", 1, 595) + .add("Wilderness crabs teleport", 1, 595) + .add("Carrallanger teleport", 1, 595) + .add("Paddewwa teleport", 1, 595) + .add("Annakarl teleport", 1, 595) + .add("Lassar teleport", 1, 595) + .add("Kharyrll teleport", 1, 595) + .add("Senntisten teleport", 1, 595) + .add("Ghorrock teleport", 1, 595) + .add("Target teleport", 1, 595) + .add("Magic shortbow scroll", 1, 238) + .add("Ring of wealth scroll", 1, 238) + .add("Trouver parchment", 2, 59) + .add("Looting bag note", 1, 59); + const AnkouTable = new LootTable({ limit: 100 }) .every("Bones") @@ -45,9 +70,15 @@ const AnkouTable = new LootTable({ limit: 100 }) /* Tertiary */ .tertiary(512, "Clue scroll (hard)"); +const AnkouWildyCaveTable = new LootTable() + .every(AnkouTable) + .add(WildySlayerCaveTable, 1, 66) + .add(new LootTable(), 1, 34); + export default new SimpleMonster({ id: 2514, name: "Ankou", table: AnkouTable, + wildyCaveTable: AnkouWildyCaveTable, aliases: ["ankou", "ank"], }); diff --git a/src/simulation/monsters/low/a-f/BlackDemon.ts b/src/simulation/monsters/low/a-f/BlackDemon.ts index 6b87db580..f57c3e5d4 100644 --- a/src/simulation/monsters/low/a-f/BlackDemon.ts +++ b/src/simulation/monsters/low/a-f/BlackDemon.ts @@ -3,6 +3,31 @@ import SimpleMonster from "../../../../structures/SimpleMonster"; import HerbDropTable from "../../../subtables/HerbDropTable"; import RareDropTable, { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 8200) + .add("Blighted anglerfish", [1, 2], 6150) + .add("Blighted manta ray", [1, 2], 6150) + .add("Blighted karambwan", [1, 2], 4100) + .add("Blighted teleport spell sack", [1, 10], 4100) + .add("Blighted ancient ice sack", [1, 10], 4100) + .add("Blighted vengeance sack", [1, 10], 4100) + .add("Blighted super restore(4)", 1, 2050) + .add("Revenant cave teleport", 1, 2050) + .add("Dareeyak teleport", 1, 410) + .add("Wilderness crabs teleport", 1, 410) + .add("Carrallanger teleport", 1, 410) + .add("Paddewwa teleport", 1, 410) + .add("Annakarl teleport", 1, 410) + .add("Lassar teleport", 1, 410) + .add("Kharyrll teleport", 1, 410) + .add("Senntisten teleport", 1, 410) + .add("Ghorrock teleport", 1, 410) + .add("Target teleport", 1, 410) + .add("Magic shortbow scroll", 1, 164) + .add("Ring of wealth scroll", 1, 164) + .add("Trouver parchment", 2, 41) + .add("Looting bag note", 1, 41); + const BlackDemonTable = new LootTable() .every("Malicious ashes") @@ -44,9 +69,15 @@ const BlackDemonTable = new LootTable() .tertiary(35, "Ensouled demon head") .tertiary(128, "Clue scroll (hard)"); +const BlackDemonWildyCaveTable = new LootTable() + .every(BlackDemonTable) + .add(WildySlayerCaveTable, 1, 91) + .add(new LootTable(), 1, 9); + export default new SimpleMonster({ id: 240, name: "Black Demon", table: BlackDemonTable, + wildyCaveTable: BlackDemonWildyCaveTable, aliases: ["black demon"], }); diff --git a/src/simulation/monsters/low/a-f/BlackDragon.ts b/src/simulation/monsters/low/a-f/BlackDragon.ts index 3e6985584..fa11f9f1c 100644 --- a/src/simulation/monsters/low/a-f/BlackDragon.ts +++ b/src/simulation/monsters/low/a-f/BlackDragon.ts @@ -2,6 +2,31 @@ import LootTable from "../../../../structures/LootTable"; import SimpleMonster from "../../../../structures/SimpleMonster"; import RareDropTable, { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 8200) + .add("Blighted anglerfish", [1, 2], 6150) + .add("Blighted manta ray", [1, 2], 6150) + .add("Blighted karambwan", [1, 2], 4100) + .add("Blighted teleport spell sack", [1, 10], 4100) + .add("Blighted ancient ice sack", [1, 10], 4100) + .add("Blighted vengeance sack", [1, 10], 4100) + .add("Blighted super restore(4)", 1, 2050) + .add("Revenant cave teleport", 1, 2050) + .add("Dareeyak teleport", 1, 410) + .add("Wilderness crabs teleport", 1, 410) + .add("Carrallanger teleport", 1, 410) + .add("Paddewwa teleport", 1, 410) + .add("Annakarl teleport", 1, 410) + .add("Lassar teleport", 1, 410) + .add("Kharyrll teleport", 1, 410) + .add("Senntisten teleport", 1, 410) + .add("Ghorrock teleport", 1, 410) + .add("Target teleport", 1, 410) + .add("Magic shortbow scroll", 1, 164) + .add("Ring of wealth scroll", 1, 164) + .add("Trouver parchment", 2, 41) + .add("Looting bag note", 1, 41); + const BlackDragonTable = new LootTable() .every("Dragon bones") .every("Black dragonhide") @@ -43,9 +68,15 @@ const BlackDragonTable = new LootTable() .tertiary(500, "Clue scroll (elite)") .tertiary(10_000, "Draconic visage"); +const BlackDragonWildyCaveTable = new LootTable() + .every(BlackDragonTable) + .add(WildySlayerCaveTable, 1, 91) + .add(new LootTable(), 1, 9); + export default new SimpleMonster({ id: 252, name: "Black Dragon", table: BlackDragonTable, + wildyCaveTable: BlackDragonWildyCaveTable, aliases: ["black dragon", "black drags"], }); diff --git a/src/simulation/monsters/low/a-f/DustDevil.ts b/src/simulation/monsters/low/a-f/DustDevil.ts index 54f02dd00..9bb930439 100644 --- a/src/simulation/monsters/low/a-f/DustDevil.ts +++ b/src/simulation/monsters/low/a-f/DustDevil.ts @@ -3,6 +3,31 @@ import SimpleMonster from "../../../../structures/SimpleMonster"; import HerbDropTable from "../../../subtables/HerbDropTable"; import { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 11500) + .add("Blighted anglerfish", [1, 2], 8620) + .add("Blighted manta ray", [1, 2], 8620) + .add("Blighted karambwan", [1, 2], 5780) + .add("Blighted teleport spell sack", [1, 10], 5780) + .add("Blighted ancient ice sack", [1, 10], 5780) + .add("Blighted vengeance sack", [1, 10], 5780) + .add("Blighted super restore(4)", 1, 2880) + .add("Revenant cave teleport", 1, 2880) + .add("Dareeyak teleport", 1, 577) + .add("Wilderness crabs teleport", 1, 577) + .add("Carrallanger teleport", 1, 577) + .add("Paddewwa teleport", 1, 577) + .add("Annakarl teleport", 1, 577) + .add("Lassar teleport", 1, 577) + .add("Kharyrll teleport", 1, 577) + .add("Senntisten teleport", 1, 577) + .add("Ghorrock teleport", 1, 577) + .add("Target teleport", 1, 577) + .add("Magic shortbow scroll", 1, 231) + .add("Ring of wealth scroll", 1, 231) + .add("Trouver parchment", 2, 58) + .add("Looting bag note", 1, 58); + export const DustDevilPreTable = new LootTable() /* Weapons and armour */ .add("Adamant axe", 1, 3) @@ -41,9 +66,15 @@ export const DustDevilPreTable = new LootTable() const DustDevilTable = new LootTable().every("Bones").every(DustDevilPreTable); +const DustDevilWildyCaveTable = new LootTable() + .every(DustDevilTable) + .add(WildySlayerCaveTable, 1, 64) + .add(new LootTable(), 1, 36); + export default new SimpleMonster({ id: 423, name: "Dust Devil", table: DustDevilTable, + wildyCaveTable: DustDevilWildyCaveTable, aliases: ["dust devil", "dusty", "dusties"], }); diff --git a/src/simulation/monsters/low/g-m/GreaterDemon.ts b/src/simulation/monsters/low/g-m/GreaterDemon.ts index b3e44f017..d4bc979aa 100644 --- a/src/simulation/monsters/low/g-m/GreaterDemon.ts +++ b/src/simulation/monsters/low/g-m/GreaterDemon.ts @@ -2,6 +2,31 @@ import LootTable from "../../../../structures/LootTable"; import SimpleMonster from "../../../../structures/SimpleMonster"; import { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 12200) + .add("Blighted anglerfish", [1, 2], 9170) + .add("Blighted manta ray", [1, 2], 9170) + .add("Blighted karambwan", [1, 2], 6130) + .add("Blighted teleport spell sack", [1, 10], 6130) + .add("Blighted ancient ice sack", [1, 10], 6130) + .add("Blighted vengeance sack", [1, 10], 6130) + .add("Blighted super restore(4)", 1, 3070) + .add("Revenant cave teleport", 1, 3070) + .add("Dareeyak teleport", 1, 613) + .add("Wilderness crabs teleport", 1, 613) + .add("Carrallanger teleport", 1, 613) + .add("Paddewwa teleport", 1, 613) + .add("Annakarl teleport", 1, 613) + .add("Lassar teleport", 1, 613) + .add("Kharyrll teleport", 1, 613) + .add("Senntisten teleport", 1, 613) + .add("Ghorrock teleport", 1, 613) + .add("Target teleport", 1, 613) + .add("Magic shortbow scroll", 1, 245) + .add("Ring of wealth scroll", 1, 245) + .add("Trouver parchment", 2, 61) + .add("Looting bag note", 1, 61); + const GreaterDemonTable = new LootTable({ limit: 128 }) .every("Vile ashes") @@ -38,9 +63,15 @@ const GreaterDemonTable = new LootTable({ limit: 128 }) .tertiary(40, "Ensouled demon head") .tertiary(128, "Clue scroll (hard)"); +const GreaterDemonWildyCaveTable = new LootTable() + .every(GreaterDemonTable) + .add(WildySlayerCaveTable, 1, 68) + .add(new LootTable(), 1, 32); + export default new SimpleMonster({ id: 2025, name: "Greater Demon", table: GreaterDemonTable, + wildyCaveTable: GreaterDemonWildyCaveTable, aliases: ["greater demon", "greater", "greaters"], }); diff --git a/src/simulation/monsters/low/g-m/GreaterNechryael.ts b/src/simulation/monsters/low/g-m/GreaterNechryael.ts index 6e9ce6c71..da5ffda20 100644 --- a/src/simulation/monsters/low/g-m/GreaterNechryael.ts +++ b/src/simulation/monsters/low/g-m/GreaterNechryael.ts @@ -4,6 +4,31 @@ import HerbDropTable from "../../../subtables/HerbDropTable"; import { GemTable } from "../../../subtables/RareDropTable"; import RareSeedTable from "../../../subtables/RareSeedTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 16700) + .add("Blighted anglerfish", [1, 2], 12500) + .add("Blighted manta ray", [1, 2], 12500) + .add("Blighted karambwan", [1, 2], 8260) + .add("Blighted teleport spell sack", [1, 10], 8260) + .add("Blighted ancient ice sack", [1, 10], 8260) + .add("Blighted vengeance sack", [1, 10], 8260) + .add("Blighted super restore(4)", 1, 4150) + .add("Revenant cave teleport", 1, 4150) + .add("Dareeyak teleport", 1, 829) + .add("Wilderness crabs teleport", 1, 829) + .add("Carrallanger teleport", 1, 829) + .add("Paddewwa teleport", 1, 829) + .add("Annakarl teleport", 1, 829) + .add("Lassar teleport", 1, 829) + .add("Kharyrll teleport", 1, 829) + .add("Senntisten teleport", 1, 829) + .add("Ghorrock teleport", 1, 829) + .add("Target teleport", 1, 829) + .add("Magic shortbow scroll", 1, 332) + .add("Ring of wealth scroll", 1, 332) + .add("Trouver parchment", 2, 83) + .add("Looting bag note", 1, 83); + const GreaterNechryaelTable = new LootTable() .every("Malicious ashes") @@ -44,9 +69,15 @@ const GreaterNechryaelTable = new LootTable() /* Tertiary */ .tertiary(128, "Clue scroll (hard)"); +const GreaterNechryaelWildyCaveTable = new LootTable() + .every(GreaterNechryaelTable) + .add(WildySlayerCaveTable, 1, 92) + .add(new LootTable(), 1, 8); + export default new SimpleMonster({ id: 7278, name: "Greater Nechryael", table: GreaterNechryaelTable, + wildyCaveTable: GreaterNechryaelWildyCaveTable, aliases: ["greater nechryael", "greater nech", "greater nechs", "g nechs"], }); diff --git a/src/simulation/monsters/low/g-m/GreenDragon.ts b/src/simulation/monsters/low/g-m/GreenDragon.ts index c3726f30d..4755b373f 100644 --- a/src/simulation/monsters/low/g-m/GreenDragon.ts +++ b/src/simulation/monsters/low/g-m/GreenDragon.ts @@ -3,6 +3,31 @@ import SimpleMonster from "../../../../structures/SimpleMonster"; import HerbDropTable from "../../../subtables/HerbDropTable"; import { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 11100) + .add("Blighted anglerfish", [1, 2], 8400) + .add("Blighted manta ray", [1, 2], 8400) + .add("Blighted karambwan", [1, 2], 5590) + .add("Blighted teleport spell sack", [1, 10], 5590) + .add("Blighted ancient ice sack", [1, 10], 5590) + .add("Blighted vengeance sack", [1, 10], 5590) + .add("Blighted super restore(4)", 1, 2790) + .add("Revenant cave teleport", 1, 2790) + .add("Dareeyak teleport", 1, 559) + .add("Wilderness crabs teleport", 1, 559) + .add("Carrallanger teleport", 1, 559) + .add("Paddewwa teleport", 1, 559) + .add("Annakarl teleport", 1, 559) + .add("Lassar teleport", 1, 559) + .add("Kharyrll teleport", 1, 559) + .add("Senntisten teleport", 1, 559) + .add("Ghorrock teleport", 1, 559) + .add("Target teleport", 1, 559) + .add("Magic shortbow scroll", 1, 223) + .add("Ring of wealth scroll", 1, 223) + .add("Trouver parchment", 2, 56) + .add("Looting bag note", 1, 56); + const GreenDragonTable = new LootTable() .every("Dragon bones") .every("Green dragonhide") @@ -43,9 +68,15 @@ const GreenDragonTable = new LootTable() .tertiary(35, "Ensouled dragon head") .tertiary(128, "Clue scroll (hard)"); +const GreenDragonWildyCaveTable = new LootTable() + .every(GreenDragonTable) + .add(WildySlayerCaveTable, 1, 62) + .add(new LootTable(), 1, 38); + export default new SimpleMonster({ id: 260, name: "Green dragon", table: GreenDragonTable, + wildyCaveTable: GreenDragonWildyCaveTable, aliases: ["green dragon", "green drags"], }); diff --git a/src/simulation/monsters/low/g-m/Hellhound.ts b/src/simulation/monsters/low/g-m/Hellhound.ts index 25a7abc17..ab155f104 100644 --- a/src/simulation/monsters/low/g-m/Hellhound.ts +++ b/src/simulation/monsters/low/g-m/Hellhound.ts @@ -1,14 +1,45 @@ import LootTable from "../../../../structures/LootTable"; import SimpleMonster from "../../../../structures/SimpleMonster"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 7700) + .add("Blighted anglerfish", [1, 2], 5750) + .add("Blighted manta ray", [1, 2], 5750) + .add("Blighted karambwan", [1, 2], 3815) + .add("Blighted teleport spell sack", [1, 10], 3815) + .add("Blighted ancient ice sack", [1, 10], 3815) + .add("Blighted vengeance sack", [1, 10], 3815) + .add("Blighted super restore(4)", 1, 1915) + .add("Revenant cave teleport", 1, 1915) + .add("Dareeyak teleport", 1, 383) + .add("Wilderness crabs teleport", 1, 383) + .add("Carrallanger teleport", 1, 383) + .add("Paddewwa teleport", 1, 383) + .add("Annakarl teleport", 1, 383) + .add("Lassar teleport", 1, 383) + .add("Kharyrll teleport", 1, 383) + .add("Senntisten teleport", 1, 383) + .add("Ghorrock teleport", 1, 383) + .add("Target teleport", 1, 383) + .add("Magic shortbow scroll", 1, 153) + .add("Ring of wealth scroll", 1, 153) + .add("Trouver parchment", 2, 38) + .add("Looting bag note", 1, 38); + const HellhoundTable = new LootTable() .every("Vile ashes") .oneIn(32_768, "Smouldering stone") .tertiary(64, "Clue scroll (hard)"); +const HellhoundWildyCaveTable = new LootTable() + .every(HellhoundTable) + .add(WildySlayerCaveTable, 1, 85) + .add(new LootTable(), 1, 15); + export default new SimpleMonster({ id: 104, name: "Hellhound", table: HellhoundTable, + wildyCaveTable: HellhoundWildyCaveTable, aliases: ["hellhound", "hellh"], }); diff --git a/src/simulation/monsters/low/g-m/IceGiant.ts b/src/simulation/monsters/low/g-m/IceGiant.ts index cc62f46d3..e110448cf 100644 --- a/src/simulation/monsters/low/g-m/IceGiant.ts +++ b/src/simulation/monsters/low/g-m/IceGiant.ts @@ -3,6 +3,31 @@ import SimpleMonster from "../../../../structures/SimpleMonster"; import { GemTable } from "../../../subtables/RareDropTable"; import UncommonSeedDropTable from "../../../subtables/UncommonSeedDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 13200) + .add("Blighted anglerfish", [1, 2], 9900) + .add("Blighted manta ray", [1, 2], 9900) + .add("Blighted karambwan", [1, 2], 6580) + .add("Blighted teleport spell sack", [1, 10], 6580) + .add("Blighted ancient ice sack", [1, 10], 6580) + .add("Blighted vengeance sack", [1, 10], 6580) + .add("Blighted super restore(4)", 1, 3290) + .add("Revenant cave teleport", 1, 3290) + .add("Dareeyak teleport", 1, 657) + .add("Wilderness crabs teleport", 1, 657) + .add("Carrallanger teleport", 1, 657) + .add("Paddewwa teleport", 1, 657) + .add("Annakarl teleport", 1, 657) + .add("Lassar teleport", 1, 657) + .add("Kharyrll teleport", 1, 657) + .add("Senntisten teleport", 1, 657) + .add("Ghorrock teleport", 1, 657) + .add("Target teleport", 1, 657) + .add("Magic shortbow scroll", 1, 263) + .add("Ring of wealth scroll", 1, 263) + .add("Trouver parchment", 2, 66) + .add("Looting bag note", 1, 66); + const IceGiantTable = new LootTable() .every("Big bones") @@ -52,9 +77,15 @@ const IceGiantTable = new LootTable() .tertiary(5000, "Giant champion scroll") .tertiary(5013, "Curved bone"); +const IceGiantWildyCaveTable = new LootTable() + .every(IceGiantTable) + .add(WildySlayerCaveTable, 1, 73) + .add(new LootTable(), 1, 27); + export default new SimpleMonster({ id: 2085, name: "Ice giant", table: IceGiantTable, + wildyCaveTable: IceGiantWildyCaveTable, aliases: ["ice giant"], }); diff --git a/src/simulation/monsters/low/g-m/Jelly.ts b/src/simulation/monsters/low/g-m/Jelly.ts index 1b286925e..2779e7e67 100644 --- a/src/simulation/monsters/low/g-m/Jelly.ts +++ b/src/simulation/monsters/low/g-m/Jelly.ts @@ -2,6 +2,31 @@ import LootTable from "../../../../structures/LootTable"; import SimpleMonster from "../../../../structures/SimpleMonster"; import { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 6850) + .add("Blighted anglerfish", [1, 2], 5150) + .add("Blighted manta ray", [1, 2], 5150) + .add("Blighted karambwan", [1, 2], 3425) + .add("Blighted teleport spell sack", [1, 10], 3425) + .add("Blighted ancient ice sack", [1, 10], 3425) + .add("Blighted vengeance sack", [1, 10], 3425) + .add("Blighted super restore(4)", 1, 1710) + .add("Revenant cave teleport", 1, 1710) + .add("Dareeyak teleport", 1, 342) + .add("Wilderness crabs teleport", 1, 342) + .add("Carrallanger teleport", 1, 342) + .add("Paddewwa teleport", 1, 342) + .add("Annakarl teleport", 1, 342) + .add("Lassar teleport", 1, 342) + .add("Kharyrll teleport", 1, 342) + .add("Senntisten teleport", 1, 342) + .add("Ghorrock teleport", 1, 342) + .add("Target teleport", 1, 342) + .add("Magic shortbow scroll", 1, 137) + .add("Ring of wealth scroll", 1, 137) + .add("Trouver parchment", 2, 34) + .add("Looting bag note", 1, 34); + export const JellyPreTable = new LootTable() /* Weapons and armour */ .add("Steel battleaxe", 1, 11) @@ -33,9 +58,15 @@ const JellyTable = new LootTable() /* Tertiary */ .tertiary(128, "Clue scroll (hard)"); +const JellyWildyCaveTable = new LootTable() + .every(JellyTable) + .add(WildySlayerCaveTable, 1, 76) + .add(new LootTable(), 1, 24); + export default new SimpleMonster({ id: 437, name: "Jelly", table: JellyTable, + wildyCaveTable: JellyWildyCaveTable, aliases: ["jelly", "jello"], }); diff --git a/src/simulation/monsters/low/g-m/LavaDragon.ts b/src/simulation/monsters/low/g-m/LavaDragon.ts index d24b2a316..fbd0e47b7 100644 --- a/src/simulation/monsters/low/g-m/LavaDragon.ts +++ b/src/simulation/monsters/low/g-m/LavaDragon.ts @@ -50,6 +50,7 @@ export const LavaDragonTable = new LootTable() .add(GemTable, 1, 5) /* Tertiary */ + .tertiary(18, "Ensouled dragon head") .tertiary(250, "Clue scroll (elite)") .tertiary(10_000, "Draconic visage"); diff --git a/src/simulation/monsters/low/g-m/LesserDemon.ts b/src/simulation/monsters/low/g-m/LesserDemon.ts index 87b9c4ace..9ff6114c2 100644 --- a/src/simulation/monsters/low/g-m/LesserDemon.ts +++ b/src/simulation/monsters/low/g-m/LesserDemon.ts @@ -3,6 +3,31 @@ import SimpleMonster from "../../../../structures/SimpleMonster"; import HerbDropTable from "../../../subtables/HerbDropTable"; import { GemTable } from "../../../subtables/RareDropTable"; +const WildySlayerCaveTable = new LootTable() + .add("Blighted entangle sack", [1, 10], 11500) + .add("Blighted anglerfish", [1, 2], 8620) + .add("Blighted manta ray", [1, 2], 8620) + .add("Blighted karambwan", [1, 2], 5780) + .add("Blighted teleport spell sack", [1, 10], 5780) + .add("Blighted ancient ice sack", [1, 10], 5780) + .add("Blighted vengeance sack", [1, 10], 5780) + .add("Blighted super restore(4)", 1, 2880) + .add("Revenant cave teleport", 1, 2880) + .add("Dareeyak teleport", 1, 577) + .add("Wilderness crabs teleport", 1, 577) + .add("Carrallanger teleport", 1, 577) + .add("Paddewwa teleport", 1, 577) + .add("Annakarl teleport", 1, 577) + .add("Lassar teleport", 1, 577) + .add("Kharyrll teleport", 1, 577) + .add("Senntisten teleport", 1, 577) + .add("Ghorrock teleport", 1, 577) + .add("Target teleport", 1, 577) + .add("Magic shortbow scroll", 1, 231) + .add("Ring of wealth scroll", 1, 231) + .add("Trouver parchment", 2, 58) + .add("Looting bag note", 1, 58); + const LesserDemonTable = new LootTable() .every("Vile ashes") @@ -41,9 +66,15 @@ const LesserDemonTable = new LootTable() .tertiary(50, "Ensouled demon head") .tertiary(5000, "Lesser demon champion scroll"); +const LesserDemonWildyCaveTable = new LootTable() + .every(LesserDemonTable) + .add(WildySlayerCaveTable, 1, 64) + .add(new LootTable(), 1, 36); + export default new SimpleMonster({ id: 2005, name: "Lesser demon", table: LesserDemonTable, + wildyCaveTable: LesserDemonWildyCaveTable, aliases: ["lesser demon"], }); diff --git a/src/simulation/monsters/low/n-s/SpiritualMageZaros.ts b/src/simulation/monsters/low/n-s/SpiritualMageZaros.ts new file mode 100644 index 000000000..3034f3dda --- /dev/null +++ b/src/simulation/monsters/low/n-s/SpiritualMageZaros.ts @@ -0,0 +1,59 @@ +import LootTable from "../../../../structures/LootTable"; +import SimpleMonster from "../../../../structures/SimpleMonster"; +import { GemTable } from "../../../subtables/RareDropTable"; + +const SpiritualMageZarosTable = new LootTable() + + /* Ancient ceremonial robes */ + .add("Ancient ceremonial mask", 1, 1) + .add("Ancient ceremonial top", 1, 1) + .add("Ancient ceremonial legs", 1, 1) + .add("Ancient ceremonial gloves", 1, 1) + .add("Ancient ceremonial boots", 1, 1) + + /* Runes */ + .add("Air rune", 250, 35) + .add("Astral rune", [38, 98], 75) + .add("Blood rune", 25, 10) + .add("Lava rune", [30, 60], 45) + .add("Death rune", 25, 20) + .add("Mud rune", [40, 70], 35) + .add("Smoke rune", [100, 150], 10) + .add("Soul rune", 25, 15) + + /* Herbs */ + .add("Grimy avantoe", 1, 15.625) + .add("Grimy ranarr weed", 1, 12.5) + .add("Grimy snapdragon", 1, 12.5) + .add("Grimy torstol", 1, 44.375) + + /* Coins */ + .add("Coins", [1300, 1337], 30) + .add("Coins", [6900, 6942], 10) + + /* Potions */ + .add("Super defence(3)", 1, 10) + .add("Super restore(3)", 1, 45) + .add("Ancient brew(2)", 1, 55) + .add("Ancient brew(3)", 1, 29) + + /* Other */ + .add("Adamantite bar", [1, 4], 40) + .add("Blood essence", 1, 5) + .add("Coal", [1, 10], 40) + .add("Nihil shard", [5, 9], 5) + .add("Pure essence", 46, 40) + + /* RDT */ + .add(GemTable, 1, 5) + + /* Tertiary */ + .tertiary(96, "Clue scroll (hard)") + .tertiary(128, "Dragon boots"); + +export default new SimpleMonster({ + id: 11292, + name: "Spiritual Mage (Zaros)", + table: SpiritualMageZarosTable, + aliases: ["spiritual mage zaros"], +}); diff --git a/src/simulation/monsters/low/n-s/SpiritualRangerZaros.ts b/src/simulation/monsters/low/n-s/SpiritualRangerZaros.ts new file mode 100644 index 000000000..84a3ff808 --- /dev/null +++ b/src/simulation/monsters/low/n-s/SpiritualRangerZaros.ts @@ -0,0 +1,59 @@ +import LootTable from "../../../../structures/LootTable"; +import SimpleMonster from "../../../../structures/SimpleMonster"; +import { GemTable } from "../../../subtables/RareDropTable"; + +const SpiritualRangerZarosTable = new LootTable() + + /* Ancient ceremonial robes */ + .add("Ancient ceremonial mask", 1, 1) + .add("Ancient ceremonial top", 1, 1) + .add("Ancient ceremonial legs", 1, 1) + .add("Ancient ceremonial gloves", 1, 1) + .add("Ancient ceremonial boots", 1, 1) + + /* Runes and ammunition */ + .add("Adamant bolts", 15, 35) + .add("Nature rune", 1, 20) + .add("Chaos rune", 1, 15) + .add("Rune arrow", 12, 10) + .add("Rune arrow", 50, 10) + + /* Herbs */ + .add("Grimy avantoe", 1, 15.625) + .add("Grimy ranarr weed", 1, 12.5) + .add("Grimy snapdragon", 1, 12.5) + .add("Grimy torstol", 1, 9.375) + + /* Coins */ + .add("Coins", 500, 45) + .add("Coins", [1300, 1337], 30) + .add("Coins", 1, 10) + + /* Potions */ + .add("Ranging potion(2)", 1, 55) + .add("Prayer potion(2)", 1, 45) + .add("Super defence(1)", 1, 10) + + /* Other */ + .add("Mithril longsword", 1, 75) + .add("Adamantite bar", [1, 4], 40) + .add("Coal", [1, 10], 40) + .add("Pure essence", 23, 40) + .add("Blue dragon scale", 2, 35) + .add("Green d'hide body", 1, 35) + .add("Uncut diamond", 1, 20) + .add("Nihil shard", [2, 7], 5) + .add("Shark", 1, 5) + + /* RDT */ + .add(GemTable, 1, 5) + + /* Tertiary */ + .tertiary(128, "Clue scroll (hard)"); + +export default new SimpleMonster({ + id: 11291, + name: "Spiritual Ranger (Zaros)", + table: SpiritualRangerZarosTable, + aliases: ["spiritual ranger zaros"], +}); diff --git a/src/simulation/monsters/low/n-s/SpiritualWarriorZaros.ts b/src/simulation/monsters/low/n-s/SpiritualWarriorZaros.ts new file mode 100644 index 000000000..b2a0fdb69 --- /dev/null +++ b/src/simulation/monsters/low/n-s/SpiritualWarriorZaros.ts @@ -0,0 +1,59 @@ +import LootTable from "../../../../structures/LootTable"; +import SimpleMonster from "../../../../structures/SimpleMonster"; +import { GemTable } from "../../../subtables/RareDropTable"; + +const SpiritualWarriorZarosTable = new LootTable() + + /* Ancient ceremonial robes */ + .add("Ancient ceremonial mask", 1, 1) + .add("Ancient ceremonial top", 1, 1) + .add("Ancient ceremonial legs", 1, 1) + .add("Ancient ceremonial gloves", 1, 1) + .add("Ancient ceremonial boots", 1, 1) + + /* Runes */ + .add("Mind rune", 1, 35) + .add("Mud rune", 15, 35) + .add("Nature rune", 1, 20) + .add("Chaos rune", 1, 15) + .add("Air rune", 150, 10) + + /* Herbs */ + .add("Grimy avantoe", 1, 15.625) + .add("Grimy ranarr weed", 1, 12.5) + .add("Grimy snapdragon", 1, 12.5) + .add("Grimy torstol", 1, 9.375) + + /* Coins */ + .add("Coins", [400, 499], 45) + .add("Coins", [1300, 1337], 30) + .add("Coins", 1, 10) + + /* Potions */ + .add("Super attack(1)", 1, 55) + .add("Prayer potion(2)", 1, 45) + .add("Super defence(1)", 1, 10) + .add("Super strength(1)", 1, 10) + + /* Other */ + .add("Mithril longsword", 1, 75) + .add("Adamantite bar", [1, 4], 40) + .add("Coal", [1, 10], 40) + .add("Pure essence", 23, 40) + .add("Adamant chainbody", 1, 35) + .add("Potato cactus", 1, 35) + .add("Lobster", 1, 5) + .add("Nihil shard", [2, 5], 5) + + /* RDT */ + .add(GemTable, 1, 5) + + /* Tertiary */ + .tertiary(128, "Clue scroll (hard)"); + +export default new SimpleMonster({ + id: 11290, + name: "Spiritual Warrior (Zaros)", + table: SpiritualWarriorZarosTable, + aliases: ["spiritual warrior zaros"], +}); diff --git a/src/simulation/openables/MuddyChest.ts b/src/simulation/openables/MuddyChest.ts index f45ea7d3b..5a0c1e106 100644 --- a/src/simulation/openables/MuddyChest.ts +++ b/src/simulation/openables/MuddyChest.ts @@ -1,14 +1,24 @@ import LootTable from "../../structures/LootTable"; import SimpleOpenable from "../../structures/SimpleOpenable"; +//const rareLootTable = new LootTable() +//.add("Blighted manta ray", 25, 1) +//.add("Blighted karambwan", 25, 1) +//.add("Blighted manta ray", 25, 1) +//.add("Blighted ancient ice sack", 25, 1) +//.add("Blighted anglerfish", 15, 1) +//.add("Blighted super restore(4)", 3, 1) +//.add("Larran's key", 1, 1) + const MuddyChestTable = new LootTable() .every("Uncut ruby") - .every("Mithril bar") - .every("Mithril dagger") - .every("Anchovy pizza") - .every("Law rune", 2) - .every("Death rune", 2) - .every("Chaos rune", 10); + .every("Mithril bar", 2) + .every("Law rune", 5) + .every("Death rune", 5) + .every("Chaos rune", 15); + +//Add when rates are known +//.oneIn(10, rareLootTable); export default new SimpleOpenable({ id: 991, diff --git a/src/simulation/subtables/WildySlayerCaveTable.ts b/src/simulation/subtables/WildySlayerCaveTable.ts deleted file mode 100644 index f0e4a255d..000000000 --- a/src/simulation/subtables/WildySlayerCaveTable.ts +++ /dev/null @@ -1,28 +0,0 @@ -import LootTable from "../../structures/LootTable"; - -const WildySlayerCaveTable = new LootTable() - .add("Blighted entangle sack", [1, 10], 69) - .add("Blighted anglerfish", [1, 2], 93) - .add("Blighted manta ray", [1, 2], 93) - .add("Blighted karambwan", [1, 2], 139) - .add("Blighted teleport spell sack", [1, 10], 139) - .add("Blighted ancient spell sack", [1, 10], 139) - .add("Blighted vengeance spell sack", [1, 10], 139) - .add("Blighted super restore(4)", 1, 278) - .add("Revenant cave teleport", 1, 278) - .add("Dareeyak teleport (tablet)", 1, 1388) - .add("Wilderness crabs teleport", 1, 1388) - .add("Carrallanger teleport (tablet)", 1, 1388) - .add("Paddewwa teleport (tablet)", 1, 1388) - .add("Annakarl teleport (tablet)", 1, 1388) - .add("Lassar teleport (tablet)", 1, 1388) - .add("Kharyrll teleport (tablet)", 1, 1388) - .add("Senntisten teleport (tablet)", 1, 1388) - .add("Ghorrock teleport (tablet)", 1, 1388) - .add("Target teleport", 1, 1388) - .add("Magic shortbow scroll", 1, 3469) - .add("Ring of wealth scroll", 1, 3469) - .add("Trouver parchment", 2, 13_875) - .add("Looting bag note", 1, 13_875); - -export default WildySlayerCaveTable; 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 { diff --git a/src/structures/SimpleMonster.ts b/src/structures/SimpleMonster.ts index 81607a53b..6efe1ddd0 100644 --- a/src/structures/SimpleMonster.ts +++ b/src/structures/SimpleMonster.ts @@ -16,6 +16,7 @@ import Monster from "./Monster"; interface SimpleMonsterOptions extends MonsterOptions { table?: LootTable; onTaskTable?: LootTable; + wildyCaveTable?: LootTable; pickpocketTable?: LootTable; customKillLogic?: CustomKillLogic; } @@ -23,6 +24,7 @@ interface SimpleMonsterOptions extends MonsterOptions { export default class SimpleMonster extends Monster { public table?: LootTable; public onTaskTable?: LootTable; + public wildyCaveTable?: LootTable; public pickpocketTable?: LootTable; public customKillLogic?: CustomKillLogic; @@ -38,14 +40,14 @@ export default class SimpleMonster extends Monster { this.table = options.table; this.pickpocketTable = options.pickpocketTable; this.onTaskTable = options.onTaskTable; + this.wildyCaveTable = options.wildyCaveTable; this.customKillLogic = options.customKillLogic; } public kill(quantity = 1, options: MonsterKillOptions = {}): Bank { const loot = new Bank(); const canGetBrimKey = options.onSlayerTask && options.slayerMaster === MonsterSlayerMaster.Konar; - const canGetSlayersEnchantment = options.onSlayerTask && options.slayerMaster === MonsterSlayerMaster.Krystilia; - const canGetLarranKey = options.onSlayerTask && options.slayerMaster === MonsterSlayerMaster.Krystilia; + const wildySlayer = options.onSlayerTask && options.slayerMaster === MonsterSlayerMaster.Krystilia; const slayerMonster: boolean = Boolean(options.onSlayerTask && this.data.slayerLevelRequired > 1); for (let i = 0; i < quantity; i++) { @@ -54,17 +56,15 @@ export default class SimpleMonster extends Monster { loot.add("Brimstone key"); } } - if (canGetSlayersEnchantment && this.data.hitpoints) { + if (wildySlayer && this.data.hitpoints) { if (roll(getSlayersEnchantmentChanceFromHP(this.data.hitpoints))) { loot.add("Slayer's enchantment"); } - } - if (canGetLarranKey) { if (roll(getLarranKeyChanceFromCBLevel(this.data.combatLevel, slayerMonster))) { loot.add("Larran's key"); } } - if (options.inCatacombs && this.data.hitpoints && !canGetLarranKey) { + if (options.inCatacombs && this.data.hitpoints && !wildySlayer) { if (roll(getAncientShardChanceFromHP(this.data.hitpoints))) { loot.add("Ancient shard"); } @@ -74,7 +74,10 @@ export default class SimpleMonster extends Monster { } } if (options.onSlayerTask) { - if (this.onTaskTable) { + if (wildySlayer && this.wildyCaveTable) { + // Roll the monster's wildy slayer cave table + loot.add(this.wildyCaveTable.roll(1, options.lootTableOptions)); + } else if (this.onTaskTable) { // Roll the monster's "on-task" table. loot.add(this.onTaskTable.roll(1, options.lootTableOptions)); } else { diff --git a/src/util/util.ts b/src/util/util.ts index fcb8fbe75..ce640c360 100644 --- a/src/util/util.ts +++ b/src/util/util.ts @@ -56,7 +56,7 @@ export function resolvePlayerFromHiscores(csvData: string, accountType: keyof ty accumulativeIndex += CLUES.length; - for (let i = 0; i < 4; i++) { + for (let i = 0; i < 5; i++) { const minigameKey = MINIGAMES[i + 4]; const minigameData = { rank: Number(data[i + accumulativeIndex][0]), @@ -65,7 +65,7 @@ export function resolvePlayerFromHiscores(csvData: string, accountType: keyof ty resolvedPlayer.minigames[minigameKey] = minigameData; } - accumulativeIndex += 4; + accumulativeIndex += 5; for (let i = 0; i < mappedBossNames.length; i++) { if (!data[i + accumulativeIndex]) continue; diff --git a/test/Hiscores.test.ts b/test/Hiscores.test.ts index cdbd8d3a0..cf826fa83 100644 --- a/test/Hiscores.test.ts +++ b/test/Hiscores.test.ts @@ -11,9 +11,10 @@ test('Hiscores', async () => { expect(koru.bossRecords.dagannothPrime.score).toBeGreaterThanOrEqual(1); expect(koru.bossRecords.dagannothRex.score).toBeGreaterThanOrEqual(1); - const [lynxTitan, zulu, magnaboy, virtualMagnaboy, dmmTournyFaux] = await Promise.all([ + const [lynxTitan, zulu, b0aty, magnaboy, virtualMagnaboy, dmmTournyFaux] = await Promise.all([ Hiscores.fetch('Lynx Titan'), Hiscores.fetch('Zulu'), + Hiscores.fetch('B0aty'), Hiscores.fetch('Magnaboy'), Hiscores.fetch('Magnaboy', { virtualLevels: true }), Hiscores.fetch('Faux', { virtualLevels: true }) @@ -44,6 +45,10 @@ test('Hiscores', async () => { expect(zulu.bossRecords.nex.rank > 1).toBe(true); expect(zulu.bossRecords.nex.score > 150 && zulu.bossRecords.nex.score < 3000).toBe(true); + expect(b0aty.minigames.bountyHunterLegacy.score).toEqual(8) + expect(b0aty.minigames.bountyHunterLegacyRogue.score).toEqual(7) + expect(b0aty.minigames.colosseumGlory.score).toBeGreaterThan(30_000); + expect(magnaboy.clues.all.score).toBe(157); expect(magnaboy.clues.beginner.score).toBe(6);