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) 584 B
import { Item } from '../Item'; const samuraiShirtData = { id: 20038, name: "Samurai shirt", iconUrl: "/assets/items/samurai-shirt.png", examine: "A type of shirt worn by the Samurai.", value: 7000, highAlch: 4200, lowAlch: 2800, weight: 2, members: true, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Samurai_shirt", }; export const SamuraiShirt = Item.fromJson(samuraiShirtData);