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) 599 B
import { Item } from '../Item'; const gildedScimitarData = { id: 12389, name: "Gilded scimitar", iconUrl: "/assets/items/gilded-scimitar.png", examine: "Rune scimitar with gold plate.", value: 25600, highAlch: 15360, lowAlch: 10240, weight: 1.814, members: false, tradeable: true, equipable: true, releaseDate: "2014-06-12", destroy: "Wield", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Gilded_scimitar", }; export const GildedScimitar = Item.fromJson(gildedScimitarData);