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) • 592 B
JavaScript
import { Item } from '../Item';
const amuletOfGloryT4Data = {
id: 10354,
name: "Amulet of glory (t4)",
iconUrl: '/assets/items/10354.png',
examine: "A very powerful dragonstone amulet.",
value: 17625,
highAlch: 10575,
lowAlch: 7050,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Amulet_of_glory_(t4)',
};
export const AmuletOfGloryT4 = Item.fromJson(amuletOfGloryT4Data);