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) • 575 B
JavaScript
import { Item } from '../Item';
const adamantLongswordData = {
id: 1301,
name: "Adamant longsword",
iconUrl: '/assets/items/1301.png',
examine: "A razor sharp longsword.",
value: 3200,
highAlch: 1920,
lowAlch: 1280,
weight: 0,
members: false,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Adamant_longsword',
};
export const AdamantLongsword = Item.fromJson(adamantLongswordData);