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) • 683 B
JavaScript
import { Item } from '../Item';
const dragonScimitarOrnamentKitData = {
id: 20002,
name: "Dragon scimitar ornament kit",
iconUrl: "/assets/items/dragon-scimitar-ornament-kit.png",
examine: "Use on the dragon scimitar to trim it with gold.",
value: 5000,
highAlch: 3000,
lowAlch: 2000,
weight: 0.5,
members: true,
tradeable: true,
equipable: false,
releaseDate: "2016-07-06",
destroy: "Drop",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Dragon_scimitar_ornament_kit",
};
export const DragonScimitarOrnamentKit = Item.fromJson(dragonScimitarOrnamentKitData);