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) • 561 B
JavaScript
import { Item } from '../Item';
const katanaData = {
id: 12357,
name: "Katana",
iconUrl: "/assets/items/12357.png",
examine: "Created by Hattori Hanzo in the Eastern Lands.",
value: 24000,
highAlch: 14400,
lowAlch: 9600,
weight: 0.453,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wield",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Katana",
};
export const Katana = Item.fromJson(katanaData);