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) 558 B
import { Item } from '../Item'; const ringOfCoinsData = { id: 20017, name: "Ring of coins", iconUrl: "/assets/items/20017.png", examine: "A valuable ring.", value: 8000, highAlch: 4800, lowAlch: 3200, weight: 0.004, members: false, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Ring_of_coins", }; export const RingOfCoins = Item.fromJson(ringOfCoinsData);