UNPKG

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) 574 B
import { Item } from '../Item'; const mahoganyPlankData = { id: 8782, name: "Mahogany plank", iconUrl: "/assets/items/8782.png", examine: "A plank of expensive mahogany.", value: 1500, highAlch: 900, lowAlch: 600, weight: 0.8, members: true, tradeable: true, equipable: false, releaseDate: "2006-05-31", destroy: "Drop", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Mahogany_plank", }; export const MahoganyPlank = Item.fromJson(mahoganyPlankData);