osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
22 lines (21 loc) • 587 B
JavaScript
import { Item } from '../Item';
const clueScrollEasyData = {
id: 2778,
name: 'Clue scroll (easy)',
iconUrl: '/assets/items/clue-scroll-easy.png',
examine: 'A clue for a treasure trail.',
value: 0,
highAlch: 0,
lowAlch: 0,
weight: 0,
members: true,
tradeable: false,
equipable: false,
releaseDate: '2016-07-28',
destroy: 'Drop',
questItem: false,
stackable: true,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Clue_scroll_(easy)',
};
export const ClueScrollEasy = Item.fromJson(clueScrollEasyData);