osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
23 lines (22 loc) • 545 B
JavaScript
import { Item } from '../Item';
const ropeData = {
destroy: 'Drop',
equipable: false,
examine: 'A sturdy rope with many uses.',
highAlch: 0,
id: 954,
lowAlch: 0,
members: false,
meleeStrength: 0,
name: 'Rope',
iconUrl: '/assets/items/rope.png',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Rope',
questItem: false,
releaseDate: '11 June 2001',
stackable: false,
tradeable: true,
value: 15,
weight: 0.3,
};
export const Rope = Item.fromJson(ropeData);