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) • 528 B
JavaScript
import { Item } from '../Item';
const torstolData = {
id: 269,
name: "Torstol",
iconUrl: "/assets/items/torstol.png",
examine: "A powerful herb.",
value: 75,
highAlch: 45,
lowAlch: 30,
weight: 0.007,
members: true,
tradeable: true,
equipable: false,
releaseDate: "2002-12-12",
destroy: "Drop",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Torstol",
};
export const Torstol = Item.fromJson(torstolData);