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) • 594 B
JavaScript
import { Item } from '../Item';
const blackDragonhideData = {
id: 1747,
name: "Black dragonhide",
iconUrl: "/assets/items/1747.png",
examine: "The scaly rough hide from a Black Dragon.",
value: 150,
highAlch: 90,
lowAlch: 60,
weight: 3.175,
members: true,
tradeable: true,
equipable: false,
releaseDate: "2004-03-29",
destroy: "Drop",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Black_dragonhide",
};
export const BlackDragonhide = Item.fromJson(blackDragonhideData);